diff options
Diffstat (limited to 'arch/arm/cpu/armv7/omap5/hw_data.c')
| -rw-r--r-- | arch/arm/cpu/armv7/omap5/hw_data.c | 18 | 
1 files changed, 17 insertions, 1 deletions
| diff --git a/arch/arm/cpu/armv7/omap5/hw_data.c b/arch/arm/cpu/armv7/omap5/hw_data.c index ea3554d97..fbbc48662 100644 --- a/arch/arm/cpu/armv7/omap5/hw_data.c +++ b/arch/arm/cpu/armv7/omap5/hw_data.c @@ -247,6 +247,16 @@ static const struct dpll_params ddr_dpll_params_2128mhz[NUM_SYS_CLKS] = {  	{665, 23, 2, 1, 8, -1, -1, -1, -1, -1, -1, -1},		/* 38.4 MHz */  }; +static const struct dpll_params gmac_dpll_params_2000mhz[NUM_SYS_CLKS] = { +	{250, 2, 4, 10, 40, 8, 10, -1, -1, -1, -1, -1},		/* 12 MHz   */ +	{250, 4, 4, 10, 40, 8, 10, -1, -1, -1, -1, -1},		/* 20 MHz   */ +	{119, 1, 4, 10, 40, 8, 10, -1, -1, -1, -1, -1},		/* 16.8 MHz */ +	{625, 11, 4, 10, 40, 8, 10, -1, -1, -1, -1, -1},	/* 19.2 MHz */ +	{500, 12, 4, 10, 40, 8, 10, -1, -1, -1, -1, -1},	/* 26 MHz   */ +	{-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1},	/* 27 MHz   */ +	{625, 23, 4, 10, 40, 8, 10, -1, -1, -1, -1, -1},	/* 38.4 MHz */ +}; +  struct dplls omap5_dplls_es1 = {  	.mpu = mpu_dpll_params_800mhz,  	.core = core_dpll_params_2128mhz_ddr532, @@ -283,6 +293,7 @@ struct dplls dra7xx_dplls = {  	.iva = iva_dpll_params_2330mhz_dra7xx,  	.usb = usb_dpll_params_1920mhz,  	.ddr = ddr_dpll_params_2128mhz, +	.gmac = gmac_dpll_params_2000mhz,  };  struct pmic_data palmas = { @@ -382,6 +393,9 @@ void enable_basic_clocks(void)  		(*prcm)->cm_l3init_clkstctrl,  		(*prcm)->cm_memif_clkstctrl,  		(*prcm)->cm_l4cfg_clkstctrl, +#ifdef CONFIG_DRIVER_TI_CPSW +		(*prcm)->cm_gmac_clkstctrl, +#endif  		0  	}; @@ -409,6 +423,9 @@ void enable_basic_clocks(void)  		(*prcm)->cm_wkup_wdtimer2_clkctrl,  		(*prcm)->cm_l4per_uart3_clkctrl,  		(*prcm)->cm_l4per_i2c1_clkctrl, +#ifdef CONFIG_DRIVER_TI_CPSW +		(*prcm)->cm_gmac_gmac_clkctrl, +#endif  		0  	}; @@ -465,7 +482,6 @@ void enable_basic_uboot_clocks(void)  		(*prcm)->cm_l3init_fsusb_clkctrl,  		0  	}; -  	do_enable_clocks(clk_domains_essential,  			 clk_modules_hw_auto_essential,  			 clk_modules_explicit_en_essential, |