diff options
author | Lokesh Vutla <lokeshvutla@ti.com> | 2014-05-15 11:08:40 +0530 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-05-23 19:40:04 -0400 |
commit | 4d6bf5542e93a9b503b077749f14c41b38a30e61 (patch) | |
tree | 713a0ef9561979c62abd21a36e281aeb002c4381 /arch/arm/cpu/armv7/omap5 | |
parent | 8b0d1bbc7e181945d84db667d63081a96ea40a47 (diff) | |
download | u-boot-4d6bf5542e93a9b503b077749f14c41b38a30e61.tar.gz u-boot-4d6bf5542e93a9b503b077749f14c41b38a30e61.tar.xz u-boot-4d6bf5542e93a9b503b077749f14c41b38a30e61.zip |
ARM: DRA72x: clocks: Update the hwdata
Adding the prcm, dplls, control module hooks for DRA72x.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Acked-by: Tom Rini <trini@ti.com>
Diffstat (limited to 'arch/arm/cpu/armv7/omap5')
-rw-r--r-- | arch/arm/cpu/armv7/omap5/hw_data.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/cpu/armv7/omap5/hw_data.c b/arch/arm/cpu/armv7/omap5/hw_data.c index 802b155f32..1a6798d8b9 100644 --- a/arch/arm/cpu/armv7/omap5/hw_data.c +++ b/arch/arm/cpu/armv7/omap5/hw_data.c @@ -590,6 +590,13 @@ void hw_data_init(void) *ctrl = &dra7xx_ctrl; break; + case DRA722_ES1_0: + *prcm = &dra7xx_prcm; + *dplls_data = &dra7xx_dplls; + *omap_vcores = &dra722_volts; + *ctrl = &dra7xx_ctrl; + break; + default: printf("\n INVALID OMAP REVISION "); } |