diff options
| author | SRICHARAN R <r.sricharan@ti.com> | 2013-02-12 01:33:43 +0000 | 
|---|---|---|
| committer | Tom Rini <trini@ti.com> | 2013-03-11 11:06:10 -0400 | 
| commit | 47abc3df701d8bc26f311350aa523fc1d0f8ad4e (patch) | |
| tree | 057c11204cfdc270720f49af35258b2708caa6e4 /arch/arm/include/asm/omap_common.h | |
| parent | afc2f9dcf1a4a478e51a84b1a162bca19c7b7715 (diff) | |
| download | olio-uboot-2014.01-47abc3df701d8bc26f311350aa523fc1d0f8ad4e.tar.xz olio-uboot-2014.01-47abc3df701d8bc26f311350aa523fc1d0f8ad4e.zip | |
ARM: OMAP4/5: clocks: Add the required OPP settings as per the latest addendum
Change OPP settings as per the latest 0.5 version of
addendum for OMAP5430 ES2.0. omap4/hw_data.c is touched
here to add dummy dividers.
While here correcting OPP_NOM mpu, core frequency for
OMAP4430 ES2.x
Note that OMAP5430 ES1.0 support is still kept alive and
would be removed in a cleanup later.
Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
Signed-off-by: R Sricharan <r.sricharan@ti.com>
Cc: Tom Rini <trini@ti.com>
Cc: Nishanth Menon <nm@ti.com>
Diffstat (limited to 'arch/arm/include/asm/omap_common.h')
| -rw-r--r-- | arch/arm/include/asm/omap_common.h | 6 | 
1 files changed, 5 insertions, 1 deletions
| diff --git a/arch/arm/include/asm/omap_common.h b/arch/arm/include/asm/omap_common.h index 08395cacc..8a886ec93 100644 --- a/arch/arm/include/asm/omap_common.h +++ b/arch/arm/include/asm/omap_common.h @@ -426,8 +426,10 @@ struct dpll_params {  	s8 m5_h12;  	s8 m6_h13;  	s8 m7_h14; +	s8 h21;  	s8 h22;  	s8 h23; +	s8 h24;  };  struct dpll_regs { @@ -441,9 +443,11 @@ struct dpll_regs {  	u32 cm_div_m5_h12_dpll;  	u32 cm_div_m6_h13_dpll;  	u32 cm_div_m7_h14_dpll; -	u32 reserved[3]; +	u32 reserved[2]; +	u32 cm_div_h21_dpll;  	u32 cm_div_h22_dpll;  	u32 cm_div_h23_dpll; +	u32 cm_div_h24_dpll;  };  struct dplls { |