diff options
| author | SRICHARAN R <r.sricharan@ti.com> | 2012-06-12 19:53:31 +0000 | 
|---|---|---|
| committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:36 +0200 | 
| commit | 5e9cd44ca08a03fdf1b8271f265981bc0a038c8d (patch) | |
| tree | ef6741f12dea9d79636369da9f29d318e6d6edfc | |
| parent | dbf8fb6ad1fc8b1708e0460bf3b5b7b2035badea (diff) | |
| download | olio-uboot-2014.01-5e9cd44ca08a03fdf1b8271f265981bc0a038c8d.tar.xz olio-uboot-2014.01-5e9cd44ca08a03fdf1b8271f265981bc0a038c8d.zip | |
ARM: OMAP4/5: Move USB clocks to essential group.
USB clocks will be required for fastboot, tftp
related functionalities. Move these clocks to
essential group inorder to have the functionality
working when non-essential clocks are not enabled.
Signed-off-by: R Sricharan <r.sricharan@ti.com>
| -rw-r--r-- | arch/arm/cpu/armv7/omap4/clocks.c | 10 | ||||
| -rw-r--r-- | arch/arm/cpu/armv7/omap5/clocks.c | 6 | 
2 files changed, 7 insertions, 9 deletions
| diff --git a/arch/arm/cpu/armv7/omap4/clocks.c b/arch/arm/cpu/armv7/omap4/clocks.c index 484a96abf..5bd0a88fd 100644 --- a/arch/arm/cpu/armv7/omap4/clocks.c +++ b/arch/arm/cpu/armv7/omap4/clocks.c @@ -364,9 +364,6 @@ void enable_basic_clocks(void)  		&prcm->cm_l4per_gpio4_clkctrl,  		&prcm->cm_l4per_gpio5_clkctrl,  		&prcm->cm_l4per_gpio6_clkctrl, -		&prcm->cm_l3init_usbphy_clkctrl, -		&prcm->cm_clksel_usb_60mhz, -		&prcm->cm_l3init_hsusbtll_clkctrl,  		0  	}; @@ -377,7 +374,6 @@ void enable_basic_clocks(void)  		&prcm->cm_l4per_gptimer2_clkctrl,  		&prcm->cm_wkup_wdtimer2_clkctrl,  		&prcm->cm_l4per_uart3_clkctrl, -		&prcm->cm_l3init_hsusbhost_clkctrl,  		0  	}; @@ -414,6 +410,9 @@ void enable_basic_uboot_clocks(void)  	u32 *const clk_modules_hw_auto_essential[] = {  		&prcm->cm_l3init_hsusbotg_clkctrl,  		&prcm->cm_l3init_usbphy_clkctrl, +		&prcm->cm_l3init_usbphy_clkctrl, +		&prcm->cm_clksel_usb_60mhz, +		&prcm->cm_l3init_hsusbtll_clkctrl,  		0  	}; @@ -423,6 +422,7 @@ void enable_basic_uboot_clocks(void)  		&prcm->cm_l4per_i2c2_clkctrl,  		&prcm->cm_l4per_i2c3_clkctrl,  		&prcm->cm_l4per_i2c4_clkctrl, +		&prcm->cm_l3init_hsusbhost_clkctrl,  		0  	}; @@ -457,7 +457,6 @@ void enable_non_essential_clocks(void)  		&prcm->cm_l3instr_l3_instr_clkctrl,  		&prcm->cm_l3instr_intrconn_wp1_clkctrl,  		&prcm->cm_l3init_hsi_clkctrl, -		&prcm->cm_l3init_hsusbtll_clkctrl,  		0  	}; @@ -497,7 +496,6 @@ void enable_non_essential_clocks(void)  		&prcm->cm_cam_fdif_clkctrl,  		&prcm->cm_dss_dss_clkctrl,  		&prcm->cm_sgx_sgx_clkctrl, -		&prcm->cm_l3init_hsusbhost_clkctrl,  		0  	}; diff --git a/arch/arm/cpu/armv7/omap5/clocks.c b/arch/arm/cpu/armv7/omap5/clocks.c index d553d12b6..eecfbade3 100644 --- a/arch/arm/cpu/armv7/omap5/clocks.c +++ b/arch/arm/cpu/armv7/omap5/clocks.c @@ -394,6 +394,9 @@ void enable_basic_uboot_clocks(void)  		&prcm->cm_l4per_i2c2_clkctrl,  		&prcm->cm_l4per_i2c3_clkctrl,  		&prcm->cm_l4per_i2c4_clkctrl, +		&prcm->cm_l3init_hsusbtll_clkctrl, +		&prcm->cm_l3init_hsusbhost_clkctrl, +		&prcm->cm_l3init_fsusb_clkctrl,  		0  	}; @@ -432,7 +435,6 @@ void enable_non_essential_clocks(void)  		&prcm->cm_l3instr_l3_instr_clkctrl,  		&prcm->cm_l3instr_intrconn_wp1_clkctrl,  		&prcm->cm_l3init_hsi_clkctrl, -		&prcm->cm_l3init_hsusbtll_clkctrl,  		&prcm->cm_l4per_hdq1w_clkctrl,  		0  	}; @@ -471,8 +473,6 @@ void enable_non_essential_clocks(void)  		&prcm->cm_cam_fdif_clkctrl,  		&prcm->cm_dss_dss_clkctrl,  		&prcm->cm_sgx_sgx_clkctrl, -		&prcm->cm_l3init_hsusbhost_clkctrl, -		&prcm->cm_l3init_fsusb_clkctrl,  		0  	}; |