summaryrefslogtreecommitdiffstats
path: root/arch/arm/cpu/armv7/omap5/hw_data.c
diff options
context:
space:
mode:
authorLokesh Vutla <lokeshvutla@ti.com>2013-02-12 21:29:06 +0000
committerTom Rini <trini@ti.com>2013-03-11 11:06:11 -0400
commit8b12f1779e339e375151883b3d0aadbd4fdce894 (patch)
tree8cf40d7fd6bee47e84d7972f1549ca00b032e24d /arch/arm/cpu/armv7/omap5/hw_data.c
parentea8eff1fe080bef7c5cdfea734d8ac4cdd957c4c (diff)
downloadtalos-obmc-uboot-8b12f1779e339e375151883b3d0aadbd4fdce894.tar.gz
talos-obmc-uboot-8b12f1779e339e375151883b3d0aadbd4fdce894.zip
arm: dra7xx: Add control module changes
Control module register addresses are changed from OMAP5 to DRA7XX socs. So adding the necessary changes for the same. Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: R Sricharan <r.sricharan@ti.com> Reviewed-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap5/hw_data.c')
-rw-r--r--arch/arm/cpu/armv7/omap5/hw_data.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/cpu/armv7/omap5/hw_data.c b/arch/arm/cpu/armv7/omap5/hw_data.c
index b82205ae8e..7f1808ca71 100644
--- a/arch/arm/cpu/armv7/omap5/hw_data.c
+++ b/arch/arm/cpu/armv7/omap5/hw_data.c
@@ -550,6 +550,7 @@ void hw_data_init(void)
*prcm = &omap5_es1_prcm;
*dplls_data = &omap5_dplls_es1;
*omap_vcores = &omap5430_volts;
+ *ctrl = &omap5_ctrl;
break;
case OMAP5430_ES2_0:
@@ -557,19 +558,19 @@ void hw_data_init(void)
*prcm = &omap5_es2_prcm;
*dplls_data = &omap5_dplls_es2;
*omap_vcores = &omap5430_volts_es2;
+ *ctrl = &omap5_ctrl;
break;
case DRA752_ES1_0:
*prcm = &dra7xx_prcm;
*dplls_data = &dra7xx_dplls;
*omap_vcores = &omap5430_volts_es2;
+ *ctrl = &dra7xx_ctrl;
break;
default:
printf("\n INVALID OMAP REVISION ");
}
-
- *ctrl = &omap5_ctrl;
}
void get_ioregs(const struct ctrl_ioregs **regs)
OpenPOWER on IntegriCloud