Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 1 | /* |
| 2 | * clock_ti814x.c |
| 3 | * |
| 4 | * Clocks for TI814X based boards |
| 5 | * |
| 6 | * Copyright (C) 2013, Texas Instruments, Incorporated |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License as |
| 10 | * published by the Free Software Foundation; either version 2 of |
| 11 | * the License, or (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR /PURPOSE. See the |
| 16 | * GNU General Public License for more details. |
| 17 | */ |
| 18 | |
| 19 | #include <common.h> |
| 20 | #include <asm/arch/cpu.h> |
| 21 | #include <asm/arch/clock.h> |
| 22 | #include <asm/arch/hardware.h> |
| 23 | #include <asm/io.h> |
| 24 | |
| 25 | /* PRCM */ |
| 26 | #define PRCM_MOD_EN 0x2 |
| 27 | |
| 28 | /* CLK_SRC */ |
| 29 | #define OSC_SRC0 0 |
| 30 | #define OSC_SRC1 1 |
| 31 | |
| 32 | #define L3_OSC_SRC OSC_SRC0 |
| 33 | |
| 34 | #define OSC_0_FREQ 20 |
| 35 | |
| 36 | #define DCO_HS2_MIN 500 |
| 37 | #define DCO_HS2_MAX 1000 |
| 38 | #define DCO_HS1_MIN 1000 |
| 39 | #define DCO_HS1_MAX 2000 |
| 40 | |
| 41 | #define SELFREQDCO_HS2 0x00000801 |
| 42 | #define SELFREQDCO_HS1 0x00001001 |
| 43 | |
| 44 | #define MPU_N 0x1 |
| 45 | #define MPU_M 0x3C |
| 46 | #define MPU_M2 1 |
| 47 | #define MPU_CLKCTRL 0x1 |
| 48 | |
| 49 | #define L3_N 19 |
| 50 | #define L3_M 880 |
| 51 | #define L3_M2 4 |
| 52 | #define L3_CLKCTRL 0x801 |
| 53 | |
| 54 | #define DDR_N 19 |
| 55 | #define DDR_M 666 |
| 56 | #define DDR_M2 2 |
| 57 | #define DDR_CLKCTRL 0x801 |
| 58 | |
| 59 | /* ADPLLJ register values */ |
| 60 | #define ADPLLJ_CLKCTRL_HS2 0x00000801 /* HS2 mode, TINT2 = 1 */ |
| 61 | #define ADPLLJ_CLKCTRL_HS1 0x00001001 /* HS1 mode, TINT2 = 1 */ |
| 62 | #define ADPLLJ_CLKCTRL_CLKDCOLDOEN (1 << 29) |
| 63 | #define ADPLLJ_CLKCTRL_IDLE (1 << 23) |
| 64 | #define ADPLLJ_CLKCTRL_CLKOUTEN (1 << 20) |
| 65 | #define ADPLLJ_CLKCTRL_CLKOUTLDOEN (1 << 19) |
| 66 | #define ADPLLJ_CLKCTRL_CLKDCOLDOPWDNZ (1 << 17) |
| 67 | #define ADPLLJ_CLKCTRL_LPMODE (1 << 12) |
| 68 | #define ADPLLJ_CLKCTRL_DRIFTGUARDIAN (1 << 11) |
| 69 | #define ADPLLJ_CLKCTRL_REGM4XEN (1 << 10) |
| 70 | #define ADPLLJ_CLKCTRL_TINITZ (1 << 0) |
| 71 | #define ADPLLJ_CLKCTRL_CLKDCO (ADPLLJ_CLKCTRL_CLKDCOLDOEN | \ |
| 72 | ADPLLJ_CLKCTRL_CLKOUTEN | \ |
| 73 | ADPLLJ_CLKCTRL_CLKOUTLDOEN | \ |
| 74 | ADPLLJ_CLKCTRL_CLKDCOLDOPWDNZ) |
| 75 | |
| 76 | #define ADPLLJ_STATUS_PHASELOCK (1 << 10) |
| 77 | #define ADPLLJ_STATUS_FREQLOCK (1 << 9) |
| 78 | #define ADPLLJ_STATUS_PHSFRQLOCK (ADPLLJ_STATUS_PHASELOCK | \ |
| 79 | ADPLLJ_STATUS_FREQLOCK) |
| 80 | #define ADPLLJ_STATUS_BYPASSACK (1 << 8) |
| 81 | #define ADPLLJ_STATUS_BYPASS (1 << 0) |
| 82 | #define ADPLLJ_STATUS_BYPASSANDACK (ADPLLJ_STATUS_BYPASSACK | \ |
| 83 | ADPLLJ_STATUS_BYPASS) |
| 84 | |
| 85 | #define ADPLLJ_TENABLE_ENB (1 << 0) |
| 86 | #define ADPLLJ_TENABLEDIV_ENB (1 << 0) |
| 87 | |
| 88 | #define ADPLLJ_M2NDIV_M2SHIFT 16 |
| 89 | |
| 90 | #define MPU_PLL_BASE (PLL_SUBSYS_BASE + 0x048) |
| 91 | #define L3_PLL_BASE (PLL_SUBSYS_BASE + 0x110) |
| 92 | #define DDR_PLL_BASE (PLL_SUBSYS_BASE + 0x290) |
| 93 | |
| 94 | struct ad_pll { |
| 95 | unsigned int pwrctrl; |
| 96 | unsigned int clkctrl; |
| 97 | unsigned int tenable; |
| 98 | unsigned int tenablediv; |
| 99 | unsigned int m2ndiv; |
| 100 | unsigned int mn2div; |
| 101 | unsigned int fracdiv; |
| 102 | unsigned int bwctrl; |
| 103 | unsigned int fracctrl; |
| 104 | unsigned int status; |
| 105 | unsigned int m3div; |
| 106 | unsigned int rampctrl; |
| 107 | }; |
| 108 | |
| 109 | #define OSC_SRC_CTRL (PLL_SUBSYS_BASE + 0x2C0) |
| 110 | |
| 111 | /* PRCM */ |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 112 | #define ENET_CLKCTRL_CMPL 0x30000 |
| 113 | |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 114 | #define CM_DEFAULT_BASE (PRCM_BASE + 0x0500) |
| 115 | |
| 116 | struct cm_def { |
| 117 | unsigned int resv0[2]; |
| 118 | unsigned int l3fastclkstctrl; |
| 119 | unsigned int resv1[1]; |
| 120 | unsigned int pciclkstctrl; |
| 121 | unsigned int resv2[1]; |
| 122 | unsigned int ducaticlkstctrl; |
| 123 | unsigned int resv3[1]; |
| 124 | unsigned int emif0clkctrl; |
| 125 | unsigned int emif1clkctrl; |
| 126 | unsigned int dmmclkctrl; |
| 127 | unsigned int fwclkctrl; |
| 128 | unsigned int resv4[10]; |
| 129 | unsigned int usbclkctrl; |
| 130 | unsigned int resv5[1]; |
| 131 | unsigned int sataclkctrl; |
| 132 | unsigned int resv6[4]; |
| 133 | unsigned int ducaticlkctrl; |
| 134 | unsigned int pciclkctrl; |
| 135 | }; |
| 136 | |
| 137 | #define CM_ALWON_BASE (PRCM_BASE + 0x1400) |
| 138 | |
| 139 | struct cm_alwon { |
| 140 | unsigned int l3slowclkstctrl; |
| 141 | unsigned int ethclkstctrl; |
| 142 | unsigned int l3medclkstctrl; |
| 143 | unsigned int mmu_clkstctrl; |
| 144 | unsigned int mmucfg_clkstctrl; |
| 145 | unsigned int ocmc0clkstctrl; |
| 146 | unsigned int vcpclkstctrl; |
| 147 | unsigned int mpuclkstctrl; |
| 148 | unsigned int sysclk4clkstctrl; |
| 149 | unsigned int sysclk5clkstctrl; |
| 150 | unsigned int sysclk6clkstctrl; |
| 151 | unsigned int rtcclkstctrl; |
| 152 | unsigned int l3fastclkstctrl; |
| 153 | unsigned int resv0[67]; |
| 154 | unsigned int mcasp0clkctrl; |
| 155 | unsigned int mcasp1clkctrl; |
| 156 | unsigned int mcasp2clkctrl; |
| 157 | unsigned int mcbspclkctrl; |
| 158 | unsigned int uart0clkctrl; |
| 159 | unsigned int uart1clkctrl; |
| 160 | unsigned int uart2clkctrl; |
| 161 | unsigned int gpio0clkctrl; |
| 162 | unsigned int gpio1clkctrl; |
| 163 | unsigned int i2c0clkctrl; |
| 164 | unsigned int i2c1clkctrl; |
| 165 | unsigned int mcasp345clkctrl; |
| 166 | unsigned int atlclkctrl; |
| 167 | unsigned int mlbclkctrl; |
| 168 | unsigned int pataclkctrl; |
| 169 | unsigned int resv1[1]; |
| 170 | unsigned int uart3clkctrl; |
| 171 | unsigned int uart4clkctrl; |
| 172 | unsigned int uart5clkctrl; |
| 173 | unsigned int wdtimerclkctrl; |
| 174 | unsigned int spiclkctrl; |
| 175 | unsigned int mailboxclkctrl; |
| 176 | unsigned int spinboxclkctrl; |
| 177 | unsigned int mmudataclkctrl; |
| 178 | unsigned int resv2[2]; |
| 179 | unsigned int mmucfgclkctrl; |
| 180 | unsigned int resv3[2]; |
| 181 | unsigned int ocmc0clkctrl; |
| 182 | unsigned int vcpclkctrl; |
| 183 | unsigned int resv4[2]; |
| 184 | unsigned int controlclkctrl; |
| 185 | unsigned int resv5[2]; |
| 186 | unsigned int gpmcclkctrl; |
| 187 | unsigned int ethernet0clkctrl; |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 188 | unsigned int ethernet1clkctrl; |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 189 | unsigned int mpuclkctrl; |
| 190 | unsigned int debugssclkctrl; |
| 191 | unsigned int l3clkctrl; |
| 192 | unsigned int l4hsclkctrl; |
| 193 | unsigned int l4lsclkctrl; |
| 194 | unsigned int rtcclkctrl; |
| 195 | unsigned int tpccclkctrl; |
| 196 | unsigned int tptc0clkctrl; |
| 197 | unsigned int tptc1clkctrl; |
| 198 | unsigned int tptc2clkctrl; |
| 199 | unsigned int tptc3clkctrl; |
| 200 | unsigned int resv7[4]; |
| 201 | unsigned int dcan01clkctrl; |
| 202 | unsigned int mmchs0clkctrl; |
| 203 | unsigned int mmchs1clkctrl; |
| 204 | unsigned int mmchs2clkctrl; |
| 205 | unsigned int custefuseclkctrl; |
| 206 | }; |
| 207 | |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 208 | #define SATA_PLL_BASE (CTRL_BASE + 0x0720) |
| 209 | |
| 210 | struct sata_pll { |
| 211 | unsigned int pllcfg0; |
| 212 | unsigned int pllcfg1; |
| 213 | unsigned int pllcfg2; |
| 214 | unsigned int pllcfg3; |
| 215 | unsigned int pllcfg4; |
| 216 | unsigned int pllstatus; |
| 217 | unsigned int rxstatus; |
| 218 | unsigned int txstatus; |
| 219 | unsigned int testcfg; |
| 220 | }; |
| 221 | |
| 222 | #define SEL_IN_FREQ (0x1 << 31) |
| 223 | #define DIGCLRZ (0x1 << 30) |
| 224 | #define ENDIGLDO (0x1 << 4) |
| 225 | #define APLL_CP_CURR (0x1 << 3) |
| 226 | #define ENBGSC_REF (0x1 << 2) |
| 227 | #define ENPLLLDO (0x1 << 1) |
| 228 | #define ENPLL (0x1 << 0) |
| 229 | |
| 230 | #define SATA_PLLCFG0_1 (SEL_IN_FREQ | ENBGSC_REF) |
| 231 | #define SATA_PLLCFG0_2 (SEL_IN_FREQ | ENDIGLDO | ENBGSC_REF) |
| 232 | #define SATA_PLLCFG0_3 (SEL_IN_FREQ | ENDIGLDO | ENBGSC_REF | ENPLLLDO) |
| 233 | #define SATA_PLLCFG0_4 (SEL_IN_FREQ | DIGCLRZ | ENDIGLDO | ENBGSC_REF | \ |
| 234 | ENPLLLDO | ENPLL) |
| 235 | |
| 236 | #define PLL_LOCK (0x1 << 0) |
| 237 | |
| 238 | #define ENSATAMODE (0x1 << 31) |
| 239 | #define PLLREFSEL (0x1 << 30) |
| 240 | #define MDIVINT (0x4b << 18) |
| 241 | #define EN_CLKAUX (0x1 << 5) |
| 242 | #define EN_CLK125M (0x1 << 4) |
| 243 | #define EN_CLK100M (0x1 << 3) |
| 244 | #define EN_CLK50M (0x1 << 2) |
| 245 | |
| 246 | #define SATA_PLLCFG1 (ENSATAMODE | \ |
| 247 | PLLREFSEL | \ |
| 248 | MDIVINT | \ |
| 249 | EN_CLKAUX | \ |
| 250 | EN_CLK125M | \ |
| 251 | EN_CLK100M | \ |
| 252 | EN_CLK50M) |
| 253 | |
| 254 | #define DIGLDO_EN_CAPLESSMODE (0x1 << 22) |
| 255 | #define PLLDO_EN_LDO_STABLE (0x1 << 11) |
| 256 | #define PLLDO_EN_BUF_CUR (0x1 << 7) |
| 257 | #define PLLDO_EN_LP (0x1 << 6) |
| 258 | #define PLLDO_CTRL_TRIM_1_4V (0x10 << 1) |
| 259 | |
| 260 | #define SATA_PLLCFG3 (DIGLDO_EN_CAPLESSMODE | \ |
| 261 | PLLDO_EN_LDO_STABLE | \ |
| 262 | PLLDO_EN_BUF_CUR | \ |
| 263 | PLLDO_EN_LP | \ |
| 264 | PLLDO_CTRL_TRIM_1_4V) |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 265 | |
| 266 | const struct cm_alwon *cmalwon = (struct cm_alwon *)CM_ALWON_BASE; |
| 267 | const struct cm_def *cmdef = (struct cm_def *)CM_DEFAULT_BASE; |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 268 | const struct sata_pll *spll = (struct sata_pll *)SATA_PLL_BASE; |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 269 | |
| 270 | /* |
| 271 | * Enable the peripheral clock for required peripherals |
| 272 | */ |
| 273 | static void enable_per_clocks(void) |
| 274 | { |
| 275 | /* UART0 */ |
| 276 | writel(PRCM_MOD_EN, &cmalwon->uart0clkctrl); |
| 277 | while (readl(&cmalwon->uart0clkctrl) != PRCM_MOD_EN) |
| 278 | ; |
| 279 | |
| 280 | /* HSMMC1 */ |
| 281 | writel(PRCM_MOD_EN, &cmalwon->mmchs1clkctrl); |
| 282 | while (readl(&cmalwon->mmchs1clkctrl) != PRCM_MOD_EN) |
| 283 | ; |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 284 | |
| 285 | /* Ethernet */ |
| 286 | writel(PRCM_MOD_EN, &cmalwon->ethclkstctrl); |
| 287 | writel(PRCM_MOD_EN, &cmalwon->ethernet0clkctrl); |
| 288 | while ((readl(&cmalwon->ethernet0clkctrl) & ENET_CLKCTRL_CMPL) != 0) |
| 289 | ; |
| 290 | writel(PRCM_MOD_EN, &cmalwon->ethernet1clkctrl); |
| 291 | while ((readl(&cmalwon->ethernet1clkctrl) & ENET_CLKCTRL_CMPL) != 0) |
| 292 | ; |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 293 | } |
| 294 | |
| 295 | /* |
| 296 | * select the HS1 or HS2 for DCO Freq |
| 297 | * return : CLKCTRL |
| 298 | */ |
| 299 | static u32 pll_dco_freq_sel(u32 clkout_dco) |
| 300 | { |
| 301 | if (clkout_dco >= DCO_HS2_MIN && clkout_dco < DCO_HS2_MAX) |
| 302 | return SELFREQDCO_HS2; |
| 303 | else if (clkout_dco >= DCO_HS1_MIN && clkout_dco < DCO_HS1_MAX) |
| 304 | return SELFREQDCO_HS1; |
| 305 | else |
| 306 | return -1; |
| 307 | } |
| 308 | |
| 309 | /* |
| 310 | * select the sigma delta config |
| 311 | * return: sigma delta val |
| 312 | */ |
| 313 | static u32 pll_sigma_delta_val(u32 clkout_dco) |
| 314 | { |
| 315 | u32 sig_val = 0; |
| 316 | float frac_div; |
| 317 | |
| 318 | frac_div = (float) clkout_dco / 250; |
| 319 | frac_div = frac_div + 0.90; |
| 320 | sig_val = (int)frac_div; |
| 321 | sig_val = sig_val << 24; |
| 322 | |
| 323 | return sig_val; |
| 324 | } |
| 325 | |
| 326 | /* |
| 327 | * configure individual ADPLLJ |
| 328 | */ |
| 329 | static void pll_config(u32 base, u32 n, u32 m, u32 m2, |
| 330 | u32 clkctrl_val, int adpllj) |
| 331 | { |
| 332 | const struct ad_pll *adpll = (struct ad_pll *)base; |
| 333 | u32 m2nval, mn2val, read_clkctrl = 0, clkout_dco = 0; |
| 334 | u32 sig_val = 0, hs_mod = 0; |
| 335 | |
| 336 | m2nval = (m2 << ADPLLJ_M2NDIV_M2SHIFT) | n; |
| 337 | mn2val = m; |
| 338 | |
| 339 | /* calculate clkout_dco */ |
| 340 | clkout_dco = ((OSC_0_FREQ / (n+1)) * m); |
| 341 | |
| 342 | /* sigma delta & Hs mode selection skip for ADPLLS*/ |
| 343 | if (adpllj) { |
| 344 | sig_val = pll_sigma_delta_val(clkout_dco); |
| 345 | hs_mod = pll_dco_freq_sel(clkout_dco); |
| 346 | } |
| 347 | |
| 348 | /* by-pass pll */ |
| 349 | read_clkctrl = readl(&adpll->clkctrl); |
| 350 | writel((read_clkctrl | ADPLLJ_CLKCTRL_IDLE), &adpll->clkctrl); |
| 351 | while ((readl(&adpll->status) & ADPLLJ_STATUS_BYPASSANDACK) |
| 352 | != ADPLLJ_STATUS_BYPASSANDACK) |
| 353 | ; |
| 354 | |
| 355 | /* clear TINITZ */ |
| 356 | read_clkctrl = readl(&adpll->clkctrl); |
| 357 | writel((read_clkctrl & ~ADPLLJ_CLKCTRL_TINITZ), &adpll->clkctrl); |
| 358 | |
| 359 | /* |
| 360 | * ref_clk = 20/(n + 1); |
| 361 | * clkout_dco = ref_clk * m; |
| 362 | * clk_out = clkout_dco/m2; |
| 363 | */ |
| 364 | read_clkctrl = readl(&adpll->clkctrl) & |
| 365 | ~(ADPLLJ_CLKCTRL_LPMODE | |
| 366 | ADPLLJ_CLKCTRL_DRIFTGUARDIAN | |
| 367 | ADPLLJ_CLKCTRL_REGM4XEN); |
| 368 | writel(m2nval, &adpll->m2ndiv); |
| 369 | writel(mn2val, &adpll->mn2div); |
| 370 | |
| 371 | /* Skip for modena(ADPLLS) */ |
| 372 | if (adpllj) { |
| 373 | writel(sig_val, &adpll->fracdiv); |
| 374 | writel((read_clkctrl | hs_mod), &adpll->clkctrl); |
| 375 | } |
| 376 | |
| 377 | /* Load M2, N2 dividers of ADPLL */ |
| 378 | writel(ADPLLJ_TENABLEDIV_ENB, &adpll->tenablediv); |
| 379 | writel(~ADPLLJ_TENABLEDIV_ENB, &adpll->tenablediv); |
| 380 | |
| 381 | /* Load M, N dividers of ADPLL */ |
| 382 | writel(ADPLLJ_TENABLE_ENB, &adpll->tenable); |
| 383 | writel(~ADPLLJ_TENABLE_ENB, &adpll->tenable); |
| 384 | |
| 385 | /* Configure CLKDCOLDOEN,CLKOUTLDOEN,CLKOUT Enable BITS */ |
| 386 | read_clkctrl = readl(&adpll->clkctrl) & ~ADPLLJ_CLKCTRL_CLKDCO; |
| 387 | if (adpllj) |
| 388 | writel((read_clkctrl | ADPLLJ_CLKCTRL_CLKDCO), |
| 389 | &adpll->clkctrl); |
| 390 | |
| 391 | /* Enable TINTZ and disable IDLE(PLL in Active & Locked Mode */ |
| 392 | read_clkctrl = readl(&adpll->clkctrl) & ~ADPLLJ_CLKCTRL_IDLE; |
| 393 | writel((read_clkctrl | ADPLLJ_CLKCTRL_TINITZ), &adpll->clkctrl); |
| 394 | |
| 395 | /* Wait for phase and freq lock */ |
| 396 | while ((readl(&adpll->status) & ADPLLJ_STATUS_PHSFRQLOCK) != |
| 397 | ADPLLJ_STATUS_PHSFRQLOCK) |
| 398 | ; |
| 399 | } |
| 400 | |
| 401 | static void unlock_pll_control_mmr(void) |
| 402 | { |
| 403 | /* TRM 2.10.1.4 and 3.2.7-3.2.11 */ |
| 404 | writel(0x1EDA4C3D, 0x481C5040); |
| 405 | writel(0x2FF1AC2B, 0x48140060); |
| 406 | writel(0xF757FDC0, 0x48140064); |
| 407 | writel(0xE2BC3A6D, 0x48140068); |
| 408 | writel(0x1EBF131D, 0x4814006c); |
| 409 | writel(0x6F361E05, 0x48140070); |
| 410 | } |
| 411 | |
| 412 | static void mpu_pll_config(void) |
| 413 | { |
| 414 | pll_config(MPU_PLL_BASE, MPU_N, MPU_M, MPU_M2, MPU_CLKCTRL, 0); |
| 415 | } |
| 416 | |
| 417 | static void l3_pll_config(void) |
| 418 | { |
| 419 | u32 l3_osc_src, rd_osc_src = 0; |
| 420 | |
| 421 | l3_osc_src = L3_OSC_SRC; |
| 422 | rd_osc_src = readl(OSC_SRC_CTRL); |
| 423 | |
| 424 | if (OSC_SRC0 == l3_osc_src) |
| 425 | writel((rd_osc_src & 0xfffffffe)|0x0, OSC_SRC_CTRL); |
| 426 | else |
| 427 | writel((rd_osc_src & 0xfffffffe)|0x1, OSC_SRC_CTRL); |
| 428 | |
| 429 | pll_config(L3_PLL_BASE, L3_N, L3_M, L3_M2, L3_CLKCTRL, 1); |
| 430 | } |
| 431 | |
| 432 | void ddr_pll_config(unsigned int ddrpll_m) |
| 433 | { |
| 434 | pll_config(DDR_PLL_BASE, DDR_N, DDR_M, DDR_M2, DDR_CLKCTRL, 1); |
| 435 | } |
| 436 | |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 437 | void sata_pll_config(void) |
| 438 | { |
| 439 | /* |
| 440 | * This sequence for configuring the SATA PLL |
| 441 | * resident in the control module is documented |
| 442 | * in TI8148 TRM section 21.3.1 |
| 443 | */ |
| 444 | writel(SATA_PLLCFG1, &spll->pllcfg1); |
| 445 | udelay(50); |
| 446 | |
| 447 | writel(SATA_PLLCFG3, &spll->pllcfg3); |
| 448 | udelay(50); |
| 449 | |
| 450 | writel(SATA_PLLCFG0_1, &spll->pllcfg0); |
| 451 | udelay(50); |
| 452 | |
| 453 | writel(SATA_PLLCFG0_2, &spll->pllcfg0); |
| 454 | udelay(50); |
| 455 | |
| 456 | writel(SATA_PLLCFG0_3, &spll->pllcfg0); |
| 457 | udelay(50); |
| 458 | |
| 459 | writel(SATA_PLLCFG0_4, &spll->pllcfg0); |
| 460 | udelay(50); |
| 461 | |
| 462 | while (((readl(&spll->pllstatus) & PLL_LOCK) == 0)) |
| 463 | ; |
| 464 | } |
| 465 | |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 466 | void enable_emif_clocks(void) {}; |
| 467 | |
| 468 | void enable_dmm_clocks(void) |
| 469 | { |
| 470 | writel(PRCM_MOD_EN, &cmdef->fwclkctrl); |
| 471 | writel(PRCM_MOD_EN, &cmdef->l3fastclkstctrl); |
| 472 | writel(PRCM_MOD_EN, &cmdef->emif0clkctrl); |
| 473 | while ((readl(&cmdef->emif0clkctrl)) != PRCM_MOD_EN) |
| 474 | ; |
| 475 | writel(PRCM_MOD_EN, &cmdef->emif1clkctrl); |
| 476 | while ((readl(&cmdef->emif1clkctrl)) != PRCM_MOD_EN) |
| 477 | ; |
| 478 | while ((readl(&cmdef->l3fastclkstctrl) & 0x300) != 0x300) |
| 479 | ; |
| 480 | writel(PRCM_MOD_EN, &cmdef->dmmclkctrl); |
| 481 | while ((readl(&cmdef->dmmclkctrl)) != PRCM_MOD_EN) |
| 482 | ; |
| 483 | writel(PRCM_MOD_EN, &cmalwon->l3slowclkstctrl); |
| 484 | while ((readl(&cmalwon->l3slowclkstctrl) & 0x2100) != 0x2100) |
| 485 | ; |
| 486 | } |
| 487 | |
| 488 | /* |
| 489 | * Configure the PLL/PRCM for necessary peripherals |
| 490 | */ |
| 491 | void pll_init() |
| 492 | { |
| 493 | unlock_pll_control_mmr(); |
| 494 | |
| 495 | /* Enable the control module */ |
| 496 | writel(PRCM_MOD_EN, &cmalwon->controlclkctrl); |
| 497 | |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 498 | /* Configure PLLs */ |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 499 | mpu_pll_config(); |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 500 | l3_pll_config(); |
Matt Porter | d4f2409 | 2013-03-20 05:38:11 +0000 | [diff] [blame] | 501 | sata_pll_config(); |
Matt Porter | 57da666 | 2013-03-15 10:07:04 +0000 | [diff] [blame] | 502 | |
| 503 | /* Enable the required peripherals */ |
| 504 | enable_per_clocks(); |
| 505 | } |