From patchwork Fri Oct 29 15:38:27 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thara Gopinath X-Patchwork-Id: 290592 X-Patchwork-Delegate: khilman@deeprootsystems.com Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9TFckX9013015 for ; Fri, 29 Oct 2010 15:38:48 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934042Ab0J2Pir (ORCPT ); Fri, 29 Oct 2010 11:38:47 -0400 Received: from bear.ext.ti.com ([192.94.94.41]:34629 "EHLO bear.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932704Ab0J2Pip (ORCPT ); Fri, 29 Oct 2010 11:38:45 -0400 Received: from dbdp31.itg.ti.com ([172.24.170.98]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id o9TFcbXX020220 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 29 Oct 2010 10:38:40 -0500 Received: from localhost.localdomain (localhost [127.0.0.1]) by dbdp31.itg.ti.com (8.13.8/8.13.8) with ESMTP id o9TFcTYx012648; Fri, 29 Oct 2010 21:08:35 +0530 (IST) From: Thara Gopinath To: linux-omap@vger.kernel.org Cc: paul@pwsan.com, khilman@deeprootsystems.com, b-cousson@ti.com, vishwanath.bs@ti.com, sawant@ti.com, Thara Gopinath Subject: [PATCH v2 13/14] OMAP3: Add voltage dependency table for VDD1. Date: Fri, 29 Oct 2010 21:08:27 +0530 Message-Id: <1288366708-32302-14-git-send-email-thara@ti.com> X-Mailer: git-send-email 1.7.0.4 In-Reply-To: <1288366708-32302-1-git-send-email-thara@ti.com> References: <1288366708-32302-1-git-send-email-thara@ti.com> Sender: linux-omap-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-omap@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Fri, 29 Oct 2010 15:38:48 +0000 (UTC) diff --git a/arch/arm/mach-omap2/voltage.c b/arch/arm/mach-omap2/voltage.c index 6f85f75..241fac5 100644 --- a/arch/arm/mach-omap2/voltage.c +++ b/arch/arm/mach-omap2/voltage.c @@ -350,6 +350,23 @@ static struct omap_volt_data omap44xx_vdd_core_volt_data[] = { {.volt_nominal = 1100000, .sr_errminlimit = 0xF9, .vp_errgain = 0x16}, }; +/* OMAP 3430 MPU Core VDD dependency table */ +static struct omap_vdd_dep_volt omap34xx_vdd1_vdd2_data[] = { + {.main_vdd_volt = 975000, .dep_vdd_volt = 1050000}, + {.main_vdd_volt = 1075000, .dep_vdd_volt = 1050000}, + {.main_vdd_volt = 1200000, .dep_vdd_volt = 1150000}, + {.main_vdd_volt = 1270000, .dep_vdd_volt = 1150000}, + {.main_vdd_volt = 1350000, .dep_vdd_volt = 1150000}, + {.main_vdd_volt = 0, .dep_vdd_volt = 0}, +}; + +static struct omap_vdd_dep_info omap34xx_vdd1_dep_info[] = { + { + .name = "core", + .dep_table = omap34xx_vdd1_vdd2_data, + }, +}; + /* By default VPFORCEUPDATE is the chosen method of voltage scaling */ static bool voltscale_vpforceupdate = true; @@ -574,6 +591,8 @@ static void __init omap3_vdd_data_configure(struct omap_vdd_info *vdd) vdd->volt_data = omap34xx_vdd1_volt_data; vdd->volt_data_count = ARRAY_SIZE(omap34xx_vdd1_volt_data); + vdd->dep_vdd_info = omap34xx_vdd1_dep_info; + vdd->nr_dep_vdd = ARRAY_SIZE(omap34xx_vdd1_dep_info); } vdd->vp_reg.tranxdone_status = OMAP3430_VP1_TRANXDONE_ST_MASK;