Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 | /* SPDX-License-Identifier: GPL-2.0+ */ /* * (C) Copyright 2018 * Mario Six, Guntermann & Drunck GmbH, mario.six@gdsys.cc */ /** * enum ratio - Description of a core clock ratio * @RAT_UNK: Unknown ratio * @RAT_BYP: Bypass * @RAT_1_TO_8: Ratio 1:8 * @RAT_1_TO_4: Ratio 1:4 * @RAT_1_TO_2: Ratio 1:2 * @RAT_1_TO_1: Ratio 1:1 * @RAT_1_5_TO_1: Ratio 1.5:1 * @RAT_2_TO_1: Ratio 2:1 * @RAT_2_5_TO_1: Ratio 2.5:1 * @RAT_3_TO_1: Ratio 3:1 */ #include <linux/bitops.h> enum ratio { RAT_UNK, RAT_BYP, RAT_1_TO_8, RAT_1_TO_4, RAT_1_TO_2, RAT_1_TO_1, RAT_1_5_TO_1, RAT_2_TO_1, RAT_2_5_TO_1, RAT_3_TO_1 }; /** * struct corecnf - Description for a core clock configuration * @core_csb_ratio: Core clock frequency to CSB clock frequency ratio * @vco_divider: VCO divider (Core VCO frequency = Core frequency * VCO divider) */ struct corecnf { int core_csb_ratio; int vco_divider; }; /* * Table with all valid Core CSB frequency ratio / VCO divider combinations as * indexed by the COREPLL field of the SPMR */ static const struct corecnf corecnf_tab[] = { {RAT_BYP, RAT_BYP}, /* 0x00 */ {RAT_BYP, RAT_BYP}, /* 0x01 */ {RAT_BYP, RAT_BYP}, /* 0x02 */ {RAT_BYP, RAT_BYP}, /* 0x03 */ {RAT_BYP, RAT_BYP}, /* 0x04 */ {RAT_BYP, RAT_BYP}, /* 0x05 */ {RAT_BYP, RAT_BYP}, /* 0x06 */ {RAT_BYP, RAT_BYP}, /* 0x07 */ {RAT_1_TO_1, RAT_1_TO_2}, /* 0x08 */ {RAT_1_TO_1, RAT_1_TO_4}, /* 0x09 */ {RAT_1_TO_1, RAT_1_TO_8}, /* 0x0A */ {RAT_1_TO_1, RAT_1_TO_8}, /* 0x0B */ {RAT_1_5_TO_1, RAT_1_TO_2}, /* 0x0C */ {RAT_1_5_TO_1, RAT_1_TO_4}, /* 0x0D */ {RAT_1_5_TO_1, RAT_1_TO_8}, /* 0x0E */ {RAT_1_5_TO_1, RAT_1_TO_8}, /* 0x0F */ {RAT_2_TO_1, RAT_1_TO_2}, /* 0x10 */ {RAT_2_TO_1, RAT_1_TO_4}, /* 0x11 */ {RAT_2_TO_1, RAT_1_TO_8}, /* 0x12 */ {RAT_2_TO_1, RAT_1_TO_8}, /* 0x13 */ {RAT_2_5_TO_1, RAT_1_TO_2}, /* 0x14 */ {RAT_2_5_TO_1, RAT_1_TO_4}, /* 0x15 */ {RAT_2_5_TO_1, RAT_1_TO_8}, /* 0x16 */ {RAT_2_5_TO_1, RAT_1_TO_8}, /* 0x17 */ {RAT_3_TO_1, RAT_1_TO_2}, /* 0x18 */ {RAT_3_TO_1, RAT_1_TO_4}, /* 0x19 */ {RAT_3_TO_1, RAT_1_TO_8}, /* 0x1A */ {RAT_3_TO_1, RAT_1_TO_8}, /* 0x1B */ }; /** * enum reg_type - Register to read a field from * @REG_SCCR: Use the SCCR register * @REG_SPMR: Use the SPMR register */ enum reg_type { REG_SCCR, REG_SPMR, }; /** * enum mode_type - Description of how to read a specific frequency value * @TYPE_INVALID: Unknown type, will provoke error * @TYPE_SCCR_STANDARD: Read a field from the SCCR register, and use it * as a divider for the CSB clock to compute the * frequency * @TYPE_SCCR_ONOFF: The field describes a bit flag that can turn the * clock on or off * @TYPE_SPMR_DIRECT_MULTIPLY: Read a field from the SPMR register, and use it * as a multiplier for the CSB clock to compute the * frequency * @TYPE_SPECIAL: The frequency is calculated in a non-standard way */ enum mode_type { TYPE_INVALID = 0, TYPE_SCCR_STANDARD, TYPE_SCCR_ONOFF, TYPE_SPMR_DIRECT_MULTIPLY, TYPE_SPECIAL, }; /* Map of each clock index to its human-readable name */ static const char * const names[] = { [MPC83XX_CLK_CORE] = "Core", [MPC83XX_CLK_CSB] = "Coherent System Bus", [MPC83XX_CLK_QE] = "QE", [MPC83XX_CLK_BRG] = "BRG", [MPC83XX_CLK_LBIU] = "Local Bus Controller", [MPC83XX_CLK_LCLK] = "Local Bus", [MPC83XX_CLK_MEM] = "DDR", [MPC83XX_CLK_MEM_SEC] = "DDR Secondary", [MPC83XX_CLK_ENC] = "SEC", [MPC83XX_CLK_I2C1] = "I2C1", [MPC83XX_CLK_I2C2] = "I2C2", [MPC83XX_CLK_TDM] = "TDM", [MPC83XX_CLK_SDHC] = "SDHC", [MPC83XX_CLK_TSEC1] = "TSEC1", [MPC83XX_CLK_TSEC2] = "TSEC2", [MPC83XX_CLK_USBDR] = "USB DR", [MPC83XX_CLK_USBMPH] = "USB MPH", [MPC83XX_CLK_PCIEXP1] = "PCIEXP1", [MPC83XX_CLK_PCIEXP2] = "PCIEXP2", [MPC83XX_CLK_SATA] = "SATA", [MPC83XX_CLK_DMAC] = "DMAC", [MPC83XX_CLK_PCI] = "PCI", }; /** * struct clk_mode - Structure for clock mode descriiptions * @low: The low bit of the data field to read for this mode (may not apply to * some modes) * @high: The high bit of the data field to read for this mode (may not apply to * some modes) * @type: The type of the mode description (one of enum mode_type) */ struct clk_mode { u8 low; u8 high; int type; }; /** * set_mode() - Build a clock mode description from data * @mode: The clock mode description to be filled out * @low: The low bit of the data field to read for this mode (may not apply to * some modes) * @high: The high bit of the data field to read for this mode (may not apply to * some modes) * @type: The type of the mode description (one of enum mode_type) * * Clock mode descriptions are a succinct description of how to read a specific * clock's rate from the hardware; usually by reading a specific field of a * register, such a s the SCCR register, but some types use different methods * for obtaining the clock rate. */ static void set_mode(struct clk_mode *mode, u8 low, u8 high, int type) { mode->low = low; mode->high = high; mode->type = type; } /** * retrieve_mode() - Get the clock mode description for a specific clock * @clk: The identifier of the clock for which the clock description should * be retrieved * @soc_type: The type of MPC83xx SoC for which the clock description should be * retrieved * @mode: Pointer to a clk_mode structure to be filled with data for the * clock * * Since some clock rate are stored in different places on different MPC83xx * SoCs, the SoC type has to be supplied along with the clock's identifier. * * Return: 0 if OK, -ve on error */ static int retrieve_mode(int clk, int soc_type, struct clk_mode *mode) { switch (clk) { case MPC83XX_CLK_CORE: case MPC83XX_CLK_CSB: case MPC83XX_CLK_QE: case MPC83XX_CLK_BRG: case MPC83XX_CLK_LCLK: case MPC83XX_CLK_I2C2: set_mode(mode, 0, 0, TYPE_SPECIAL); break; case MPC83XX_CLK_MEM: set_mode(mode, 1, 1, TYPE_SPMR_DIRECT_MULTIPLY); break; case MPC83XX_CLK_LBIU: case MPC83XX_CLK_MEM_SEC: set_mode(mode, 0, 0, TYPE_SPMR_DIRECT_MULTIPLY); break; case MPC83XX_CLK_TSEC1: set_mode(mode, 0, 1, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_TSEC2: if (soc_type == SOC_MPC8313) /* I2C and TSEC2 are the same register */ set_mode(mode, 2, 3, TYPE_SCCR_STANDARD); else /* FIXME(mario.six@gdsys.cc): This has separate enable/disable bit! */ set_mode(mode, 0, 1, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_SDHC: set_mode(mode, 4, 5, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_ENC: set_mode(mode, 6, 7, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_I2C1: if (soc_type == SOC_MPC8349) set_mode(mode, 2, 3, TYPE_SCCR_STANDARD); else /* I2C and ENC are the same register */ set_mode(mode, 6, 7, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_PCIEXP1: set_mode(mode, 10, 11, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_PCIEXP2: set_mode(mode, 12, 13, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_USBDR: if (soc_type == SOC_MPC8313 || soc_type == SOC_MPC8349) set_mode(mode, 10, 11, TYPE_SCCR_STANDARD); else set_mode(mode, 8, 9, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_USBMPH: set_mode(mode, 8, 9, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_PCI: set_mode(mode, 15, 15, TYPE_SCCR_ONOFF); break; case MPC83XX_CLK_DMAC: set_mode(mode, 26, 27, TYPE_SCCR_STANDARD); break; case MPC83XX_CLK_SATA: /* FIXME(mario.six@gdsys.cc): All SATA controllers must have the same clock ratio */ if (soc_type == SOC_MPC8379) { set_mode(mode, 24, 25, TYPE_SCCR_STANDARD); set_mode(mode, 26, 27, TYPE_SCCR_STANDARD); set_mode(mode, 28, 29, TYPE_SCCR_STANDARD); set_mode(mode, 30, 31, TYPE_SCCR_STANDARD); } else { set_mode(mode, 18, 19, TYPE_SCCR_STANDARD); set_mode(mode, 20, 21, TYPE_SCCR_STANDARD); } break; case MPC83XX_CLK_TDM: set_mode(mode, 26, 27, TYPE_SCCR_STANDARD); break; default: debug("%s: Unknown clock type %d on soc type %d\n", __func__, clk, soc_type); set_mode(mode, 0, 0, TYPE_INVALID); return -EINVAL; } return 0; } /** * get_spmr() - Read the SPMR (System PLL Mode Register) * @im: Pointer to the MPC83xx main register map in question * * Return: The SPMR value as a 32-bit number. */ static inline u32 get_spmr(immap_t *im) { u32 res = in_be32(&im->clk.spmr); return res; } /** * get_sccr() - Read the SCCR (System Clock Control Register) * @im: Pointer to the MPC83xx main register map in question * * Return: The SCCR value as a 32-bit number. */ static inline u32 get_sccr(immap_t *im) { u32 res = in_be32(&im->clk.sccr); return res; } /** * get_lcrr() - Read the LCRR (Clock Ratio Register) * @im: Pointer to the MPC83xx main register map in question * * Return: The LCRR value as a 32-bit number. */ static inline u32 get_lcrr(immap_t *im) { u32 res = in_be32(&im->im_lbc.lcrr); return res; } /** * get_pci_sync_in() - Read the PCI synchronization clock speed * @im: Pointer to the MPC83xx main register map in question * * Return: The PCI synchronization clock speed value as a 32-bit number. */ static inline u32 get_pci_sync_in(immap_t *im) { u8 clkin_div; clkin_div = (get_spmr(im) & SPMR_CKID) >> SPMR_CKID_SHIFT; return get_board_sys_clk() / (1 + clkin_div); } /** * get_csb_clk() - Read the CSB (Coherent System Bus) clock speed * @im: Pointer to the MPC83xx main register map in question * * Return: The CSB clock speed value as a 32-bit number. */ static inline u32 get_csb_clk(immap_t *im) { u8 spmf; spmf = (get_spmr(im) & SPMR_SPMF) >> SPMR_SPMF_SHIFT; return get_board_sys_clk() * spmf; } /** * spmr_field() - Read a specific SPMR field * @im: Pointer to the MPC83xx main register map in question * @mask: A bitmask that describes the bitfield to be read * * Return: The value of the bit field as a 32-bit number. */ static inline uint spmr_field(immap_t *im, u32 mask) { /* Extract shift from bitmask */ uint shift = mask ? ffs(mask) - 1 : 0; return (get_spmr(im) & mask) >> shift; } /** * sccr_field() - Read a specific SCCR field * @im: Pointer to the MPC83xx main register map in question * @mask: A bitmask that describes the bitfield to be read * * Return: The value of the bit field as a 32-bit number. */ static inline uint sccr_field(immap_t *im, u32 mask) { /* Extract shift from bitmask */ uint shift = mask ? ffs(mask) - 1 : 0; return (get_sccr(im) & mask) >> shift; } /** * lcrr_field() - Read a specific LCRR field * @im: Pointer to the MPC83xx main register map in question * @mask: A bitmask that describes the bitfield to be read * * Return: The value of the bit field as a 32-bit number. */ static inline uint lcrr_field(immap_t *im, u32 mask) { /* Extract shift from bitmask */ uint shift = mask ? ffs(mask) - 1 : 0; return (get_lcrr(im) & mask) >> shift; } |