Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 2 | /* |
| 3 | * |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 4 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 5 | * TsiChung Liew (Tsi-Chung.Liew@freescale.com) |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <common.h> |
| 9 | #include <asm/processor.h> |
| 10 | |
| 11 | #include <asm/immap.h> |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 12 | #include <asm/io.h> |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 13 | |
| 14 | DECLARE_GLOBAL_DATA_PTR; |
| 15 | |
| 16 | /* |
| 17 | * Low Power Divider specifications |
| 18 | */ |
| 19 | #define CLOCK_LPD_MIN (1 << 0) /* Divider (decoded) */ |
| 20 | #define CLOCK_LPD_MAX (1 << 15) /* Divider (decoded) */ |
| 21 | |
| 22 | #define CLOCK_PLL_FVCO_MAX 540000000 |
| 23 | #define CLOCK_PLL_FVCO_MIN 300000000 |
| 24 | |
| 25 | #define CLOCK_PLL_FSYS_MAX 266666666 |
| 26 | #define CLOCK_PLL_FSYS_MIN 100000000 |
| 27 | #define MHZ 1000000 |
| 28 | |
| 29 | void clock_enter_limp(int lpdiv) |
| 30 | { |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 31 | ccm_t *ccm = (ccm_t *)MMAP_CCM; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 32 | int i, j; |
| 33 | |
| 34 | /* Check bounds of divider */ |
| 35 | if (lpdiv < CLOCK_LPD_MIN) |
| 36 | lpdiv = CLOCK_LPD_MIN; |
| 37 | if (lpdiv > CLOCK_LPD_MAX) |
| 38 | lpdiv = CLOCK_LPD_MAX; |
| 39 | |
| 40 | /* Round divider down to nearest power of two */ |
| 41 | for (i = 0, j = lpdiv; j != 1; j >>= 1, i++) ; |
| 42 | |
| 43 | /* Apply the divider to the system clock */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 44 | clrsetbits_be16(&ccm->cdr, 0x0f00, CCM_CDR_LPDIV(i)); |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 45 | |
| 46 | /* Enable Limp Mode */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 47 | setbits_be16(&ccm->misccr, CCM_MISCCR_LIMP); |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 48 | } |
| 49 | |
| 50 | /* |
| 51 | * brief Exit Limp mode |
| 52 | * warning The PLL should be set and locked prior to exiting Limp mode |
| 53 | */ |
| 54 | void clock_exit_limp(void) |
| 55 | { |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 56 | ccm_t *ccm = (ccm_t *)MMAP_CCM; |
| 57 | pll_t *pll = (pll_t *)MMAP_PLL; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 58 | |
| 59 | /* Exit Limp mode */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 60 | clrbits_be16(&ccm->misccr, CCM_MISCCR_LIMP); |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 61 | |
| 62 | /* Wait for the PLL to lock */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 63 | while (!(in_be32(&pll->psr) & PLL_PSR_LOCK)) |
| 64 | ; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | /* |
| 68 | * get_clocks() fills in gd->cpu_clock and gd->bus_clk |
| 69 | */ |
| 70 | int get_clocks(void) |
| 71 | { |
| 72 | |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 73 | ccm_t *ccm = (ccm_t *)MMAP_CCM; |
| 74 | pll_t *pll = (pll_t *)MMAP_PLL; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 75 | int vco, temp, pcrvalue, pfdr; |
| 76 | u8 bootmode; |
| 77 | |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 78 | pcrvalue = in_be32(&pll->pcr) & 0xFF0F0FFF; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 79 | pfdr = pcrvalue >> 24; |
| 80 | |
TsiChung Liew | 39966e3 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 81 | if (pfdr == 0x1E) |
| 82 | bootmode = 0; /* Normal Mode */ |
| 83 | |
| 84 | #ifdef CONFIG_CF_SBF |
| 85 | bootmode = 3; /* Serial Mode */ |
| 86 | #endif |
| 87 | |
| 88 | if (bootmode == 0) { |
| 89 | /* Normal mode */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 90 | vco = ((in_be32(&pll->pcr) & 0xFF000000) >> 24) * CONFIG_SYS_INPUT_CLKSRC; |
TsiChung Liew | 39966e3 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 91 | if ((vco < CLOCK_PLL_FVCO_MIN) || (vco > CLOCK_PLL_FVCO_MAX)) { |
| 92 | /* Default value */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 93 | pcrvalue = (in_be32(&pll->pcr) & 0x00FFFFFF); |
TsiChung Liew | 39966e3 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 94 | pcrvalue |= 0x1E << 24; |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 95 | out_be32(&pll->pcr, pcrvalue); |
TsiChung Liew | 39966e3 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 96 | vco = |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 97 | ((in_be32(&pll->pcr) & 0xFF000000) >> 24) * |
TsiChung Liew | 39966e3 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 98 | CONFIG_SYS_INPUT_CLKSRC; |
| 99 | } |
Simon Glass | 568a7b6 | 2012-12-13 20:49:07 +0000 | [diff] [blame] | 100 | gd->arch.vco_clk = vco; /* Vco clock */ |
TsiChung Liew | 39966e3 | 2008-10-21 15:37:02 +0000 | [diff] [blame] | 101 | } else if (bootmode == 3) { |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 102 | /* serial mode */ |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 103 | vco = ((in_be32(&pll->pcr) & 0xFF000000) >> 24) * CONFIG_SYS_INPUT_CLKSRC; |
Simon Glass | 568a7b6 | 2012-12-13 20:49:07 +0000 | [diff] [blame] | 104 | gd->arch.vco_clk = vco; /* Vco clock */ |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 105 | } |
| 106 | |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 107 | if ((in_be16(&ccm->ccr) & CCM_MISCCR_LIMP) == CCM_MISCCR_LIMP) { |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 108 | /* Limp mode */ |
| 109 | } else { |
Simon Glass | 568a7b6 | 2012-12-13 20:49:07 +0000 | [diff] [blame] | 110 | gd->arch.inp_clk = CONFIG_SYS_INPUT_CLKSRC; /* Input clock */ |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 111 | |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 112 | temp = (in_be32(&pll->pcr) & PLL_PCR_OUTDIV1_MASK) + 1; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 113 | gd->cpu_clk = vco / temp; /* cpu clock */ |
| 114 | |
Alison Wang | 8bce3ec | 2012-03-26 21:49:03 +0000 | [diff] [blame] | 115 | temp = ((in_be32(&pll->pcr) & PLL_PCR_OUTDIV2_MASK) >> 4) + 1; |
Simon Glass | 568a7b6 | 2012-12-13 20:49:07 +0000 | [diff] [blame] | 116 | gd->arch.flb_clk = vco / temp; /* flexbus clock */ |
| 117 | gd->bus_clk = gd->arch.flb_clk; |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 118 | } |
| 119 | |
Heiko Schocher | f285074 | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 120 | #ifdef CONFIG_SYS_I2C_FSL |
Simon Glass | c2baaec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 121 | gd->arch.i2c1_clk = gd->bus_clk; |
TsiChung Liew | 0c1e325 | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 122 | #endif |
| 123 | |
TsiChungLiew | ae831cd | 2008-01-14 17:46:19 -0600 | [diff] [blame] | 124 | return (0); |
| 125 | } |