diff options
| author | SRICHARAN R <r.sricharan@ti.com> | 2013-02-12 01:33:42 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-11 11:06:10 -0400 | 
| commit | afc2f9dcf1a4a478e51a84b1a162bca19c7b7715 (patch) | |
| tree | ded3ec7c84a4306950d2b52f97989e64b852e994 /arch/arm/cpu/armv7/omap5/hw_data.c | |
| parent | eed7c0f727cf8255b193dfefd21d66dfd6dbae94 (diff) | |
| download | olio-uboot-2014.01-afc2f9dcf1a4a478e51a84b1a162bca19c7b7715.tar.xz olio-uboot-2014.01-afc2f9dcf1a4a478e51a84b1a162bca19c7b7715.zip | |
ARM: OMAP5: clock: Add the prcm register changes required for ES2.0
PRCM register addresses are changed from ES1.0 to ES2.0 due to
PER power domain getting moved to CORE power domain.
So adding the nessecary register changes for the same.
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Reviewed-by: Tom Rini <trini@ti.com>
Cc: 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.c | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/arch/arm/cpu/armv7/omap5/hw_data.c b/arch/arm/cpu/armv7/omap5/hw_data.c index 7ca6709d0..baf180809 100644 --- a/arch/arm/cpu/armv7/omap5/hw_data.c +++ b/arch/arm/cpu/armv7/omap5/hw_data.c @@ -451,6 +451,11 @@ void hw_data_init(void)  	*omap_vcores = &omap5432_volts;  	break; +	case OMAP5430_ES2_0: +	case OMAP5432_ES2_0: +	*prcm = &omap5_es2_prcm; +	break; +  	default:  		printf("\n INVALID OMAP REVISION ");  	} |