Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2000-2002 |
| 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 5 | * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #include <common.h> |
| 27 | #include <mpc83xx.h> |
Kim Phillips | 54b2d43 | 2007-04-30 15:26:21 -0500 | [diff] [blame] | 28 | #include <command.h> |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 29 | #include <asm/processor.h> |
| 30 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 33 | /* ----------------------------------------------------------------- */ |
| 34 | |
| 35 | typedef enum { |
| 36 | _unk, |
| 37 | _off, |
| 38 | _byp, |
| 39 | _x8, |
| 40 | _x4, |
| 41 | _x2, |
| 42 | _x1, |
| 43 | _1x, |
| 44 | _1_5x, |
| 45 | _2x, |
| 46 | _2_5x, |
| 47 | _3x |
| 48 | } mult_t; |
| 49 | |
| 50 | typedef struct { |
| 51 | mult_t core_csb_ratio; |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 52 | mult_t vco_divider; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 53 | } corecnf_t; |
| 54 | |
Kim Phillips | a2873bd | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 55 | static corecnf_t corecnf_tab[] = { |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 56 | {_byp, _byp}, /* 0x00 */ |
| 57 | {_byp, _byp}, /* 0x01 */ |
| 58 | {_byp, _byp}, /* 0x02 */ |
| 59 | {_byp, _byp}, /* 0x03 */ |
| 60 | {_byp, _byp}, /* 0x04 */ |
| 61 | {_byp, _byp}, /* 0x05 */ |
| 62 | {_byp, _byp}, /* 0x06 */ |
| 63 | {_byp, _byp}, /* 0x07 */ |
| 64 | {_1x, _x2}, /* 0x08 */ |
| 65 | {_1x, _x4}, /* 0x09 */ |
| 66 | {_1x, _x8}, /* 0x0A */ |
| 67 | {_1x, _x8}, /* 0x0B */ |
| 68 | {_1_5x, _x2}, /* 0x0C */ |
| 69 | {_1_5x, _x4}, /* 0x0D */ |
| 70 | {_1_5x, _x8}, /* 0x0E */ |
| 71 | {_1_5x, _x8}, /* 0x0F */ |
| 72 | {_2x, _x2}, /* 0x10 */ |
| 73 | {_2x, _x4}, /* 0x11 */ |
| 74 | {_2x, _x8}, /* 0x12 */ |
| 75 | {_2x, _x8}, /* 0x13 */ |
| 76 | {_2_5x, _x2}, /* 0x14 */ |
| 77 | {_2_5x, _x4}, /* 0x15 */ |
| 78 | {_2_5x, _x8}, /* 0x16 */ |
| 79 | {_2_5x, _x8}, /* 0x17 */ |
| 80 | {_3x, _x2}, /* 0x18 */ |
| 81 | {_3x, _x4}, /* 0x19 */ |
| 82 | {_3x, _x8}, /* 0x1A */ |
| 83 | {_3x, _x8}, /* 0x1B */ |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 84 | }; |
| 85 | |
| 86 | /* ----------------------------------------------------------------- */ |
| 87 | |
| 88 | /* |
| 89 | * |
| 90 | */ |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 91 | int get_clocks(void) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 92 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | volatile immap_t *im = (immap_t *) CONFIG_SYS_IMMR; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 94 | u32 pci_sync_in; |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 95 | u8 spmf; |
| 96 | u8 clkin_div; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 97 | u32 sccr; |
| 98 | u32 corecnf_tab_index; |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 99 | u8 corepll; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 100 | u32 lcrr; |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 101 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 102 | u32 csb_clk; |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 103 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 104 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 105 | u32 tsec1_clk; |
| 106 | u32 tsec2_clk; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 107 | u32 usbdr_clk; |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 108 | #elif defined(CONFIG_MPC8309) |
| 109 | u32 usbdr_clk; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 110 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 111 | #ifdef CONFIG_MPC834x |
Scott Wood | 7c98e51 | 2007-04-16 14:34:19 -0500 | [diff] [blame] | 112 | u32 usbmph_clk; |
| 113 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 114 | u32 core_clk; |
| 115 | u32 i2c1_clk; |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 116 | #if !defined(CONFIG_MPC832x) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 117 | u32 i2c2_clk; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 118 | #endif |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 119 | #if defined(CONFIG_MPC8315) |
| 120 | u32 tdm_clk; |
| 121 | #endif |
Rini van Zetten | 27ef578 | 2010-04-15 16:03:05 +0200 | [diff] [blame] | 122 | #if defined(CONFIG_FSL_ESDHC) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 123 | u32 sdhc_clk; |
| 124 | #endif |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 125 | #if !defined(CONFIG_MPC8309) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 126 | u32 enc_clk; |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 127 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 128 | u32 lbiu_clk; |
| 129 | u32 lclk_clk; |
Kim Phillips | 35cf155 | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 130 | u32 mem_clk; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 131 | #if defined(CONFIG_MPC8360) |
Kim Phillips | 35cf155 | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 132 | u32 mem_sec_clk; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 133 | #endif |
Gerlando Falauto | 4b5282d | 2012-10-10 22:13:06 +0000 | [diff] [blame] | 134 | #if defined(CONFIG_QE) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 135 | u32 qepmf; |
| 136 | u32 qepdf; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 137 | u32 qe_clk; |
| 138 | u32 brg_clk; |
| 139 | #endif |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 140 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 141 | defined(CONFIG_MPC837x) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 142 | u32 pciexp1_clk; |
| 143 | u32 pciexp2_clk; |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 144 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 145 | #if defined(CONFIG_MPC837x) || defined(CONFIG_MPC8315) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 146 | u32 sata_clk; |
| 147 | #endif |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 148 | |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 149 | if ((im->sysconf.immrbar & IMMRBAR_BASE_ADDR) != (u32) im) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 150 | return -1; |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 151 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 152 | clkin_div = ((im->clk.spmr & SPMR_CKID) >> SPMR_CKID_SHIFT); |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 153 | |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 154 | if (im->reset.rcwh & HRCWH_PCI_HOST) { |
| 155 | #if defined(CONFIG_83XX_CLKIN) |
| 156 | pci_sync_in = CONFIG_83XX_CLKIN / (1 + clkin_div); |
| 157 | #else |
| 158 | pci_sync_in = 0xDEADBEEF; |
| 159 | #endif |
| 160 | } else { |
| 161 | #if defined(CONFIG_83XX_PCICLK) |
| 162 | pci_sync_in = CONFIG_83XX_PCICLK; |
| 163 | #else |
| 164 | pci_sync_in = 0xDEADBEEF; |
| 165 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 166 | } |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 167 | |
Joakim Tjernlund | 26e5f79 | 2011-01-27 16:30:54 +0100 | [diff] [blame] | 168 | spmf = (im->clk.spmr & SPMR_SPMF) >> SPMR_SPMF_SHIFT; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 169 | csb_clk = pci_sync_in * (1 + clkin_div) * spmf; |
| 170 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 171 | sccr = im->clk.sccr; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 172 | |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 173 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 174 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 175 | switch ((sccr & SCCR_TSEC1CM) >> SCCR_TSEC1CM_SHIFT) { |
| 176 | case 0: |
| 177 | tsec1_clk = 0; |
| 178 | break; |
| 179 | case 1: |
| 180 | tsec1_clk = csb_clk; |
| 181 | break; |
| 182 | case 2: |
| 183 | tsec1_clk = csb_clk / 2; |
| 184 | break; |
| 185 | case 3: |
| 186 | tsec1_clk = csb_clk / 3; |
| 187 | break; |
| 188 | default: |
| 189 | /* unkown SCCR_TSEC1CM value */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 190 | return -2; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 191 | } |
Gerlando Falauto | 8afad91 | 2012-10-10 22:13:07 +0000 | [diff] [blame] | 192 | #endif |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 193 | |
Gerlando Falauto | 8afad91 | 2012-10-10 22:13:07 +0000 | [diff] [blame] | 194 | #if defined(CONFIG_MPC830x) || defined(CONFIG_MPC831x) || \ |
| 195 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Scott Wood | 7c98e51 | 2007-04-16 14:34:19 -0500 | [diff] [blame] | 196 | switch ((sccr & SCCR_USBDRCM) >> SCCR_USBDRCM_SHIFT) { |
| 197 | case 0: |
| 198 | usbdr_clk = 0; |
| 199 | break; |
| 200 | case 1: |
| 201 | usbdr_clk = csb_clk; |
| 202 | break; |
| 203 | case 2: |
| 204 | usbdr_clk = csb_clk / 2; |
| 205 | break; |
| 206 | case 3: |
| 207 | usbdr_clk = csb_clk / 3; |
| 208 | break; |
| 209 | default: |
| 210 | /* unkown SCCR_USBDRCM value */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 211 | return -3; |
Scott Wood | 7c98e51 | 2007-04-16 14:34:19 -0500 | [diff] [blame] | 212 | } |
| 213 | #endif |
| 214 | |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 215 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC8315) || \ |
| 216 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 217 | switch ((sccr & SCCR_TSEC2CM) >> SCCR_TSEC2CM_SHIFT) { |
| 218 | case 0: |
| 219 | tsec2_clk = 0; |
| 220 | break; |
| 221 | case 1: |
| 222 | tsec2_clk = csb_clk; |
| 223 | break; |
| 224 | case 2: |
| 225 | tsec2_clk = csb_clk / 2; |
| 226 | break; |
| 227 | case 3: |
| 228 | tsec2_clk = csb_clk / 3; |
| 229 | break; |
| 230 | default: |
| 231 | /* unkown SCCR_TSEC2CM value */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 232 | return -4; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 233 | } |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 234 | #elif defined(CONFIG_MPC8313) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 235 | tsec2_clk = tsec1_clk; |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 236 | |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 237 | if (!(sccr & SCCR_TSEC1ON)) |
| 238 | tsec1_clk = 0; |
| 239 | if (!(sccr & SCCR_TSEC2ON)) |
| 240 | tsec2_clk = 0; |
| 241 | #endif |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 242 | |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 243 | #if defined(CONFIG_MPC834x) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 244 | switch ((sccr & SCCR_USBMPHCM) >> SCCR_USBMPHCM_SHIFT) { |
| 245 | case 0: |
| 246 | usbmph_clk = 0; |
| 247 | break; |
| 248 | case 1: |
| 249 | usbmph_clk = csb_clk; |
| 250 | break; |
| 251 | case 2: |
| 252 | usbmph_clk = csb_clk / 2; |
| 253 | break; |
| 254 | case 3: |
| 255 | usbmph_clk = csb_clk / 3; |
| 256 | break; |
| 257 | default: |
| 258 | /* unkown SCCR_USBMPHCM value */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 259 | return -5; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 260 | } |
| 261 | |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 262 | if (usbmph_clk != 0 && usbdr_clk != 0 && usbmph_clk != usbdr_clk) { |
| 263 | /* if USB MPH clock is not disabled and |
| 264 | * USB DR clock is not disabled then |
| 265 | * USB MPH & USB DR must have the same rate |
| 266 | */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 267 | return -6; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 268 | } |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 269 | #endif |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 270 | #if !defined(CONFIG_MPC8309) |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 271 | switch ((sccr & SCCR_ENCCM) >> SCCR_ENCCM_SHIFT) { |
| 272 | case 0: |
| 273 | enc_clk = 0; |
| 274 | break; |
| 275 | case 1: |
| 276 | enc_clk = csb_clk; |
| 277 | break; |
| 278 | case 2: |
| 279 | enc_clk = csb_clk / 2; |
| 280 | break; |
| 281 | case 3: |
| 282 | enc_clk = csb_clk / 3; |
| 283 | break; |
| 284 | default: |
| 285 | /* unkown SCCR_ENCCM value */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 286 | return -7; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 287 | } |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 288 | #endif |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 289 | |
Rini van Zetten | 27ef578 | 2010-04-15 16:03:05 +0200 | [diff] [blame] | 290 | #if defined(CONFIG_FSL_ESDHC) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 291 | switch ((sccr & SCCR_SDHCCM) >> SCCR_SDHCCM_SHIFT) { |
| 292 | case 0: |
| 293 | sdhc_clk = 0; |
| 294 | break; |
| 295 | case 1: |
| 296 | sdhc_clk = csb_clk; |
| 297 | break; |
| 298 | case 2: |
| 299 | sdhc_clk = csb_clk / 2; |
| 300 | break; |
| 301 | case 3: |
| 302 | sdhc_clk = csb_clk / 3; |
| 303 | break; |
| 304 | default: |
| 305 | /* unkown SCCR_SDHCCM value */ |
| 306 | return -8; |
| 307 | } |
| 308 | #endif |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 309 | #if defined(CONFIG_MPC8315) |
| 310 | switch ((sccr & SCCR_TDMCM) >> SCCR_TDMCM_SHIFT) { |
| 311 | case 0: |
| 312 | tdm_clk = 0; |
| 313 | break; |
| 314 | case 1: |
| 315 | tdm_clk = csb_clk; |
| 316 | break; |
| 317 | case 2: |
| 318 | tdm_clk = csb_clk / 2; |
| 319 | break; |
| 320 | case 3: |
| 321 | tdm_clk = csb_clk / 3; |
| 322 | break; |
| 323 | default: |
| 324 | /* unkown SCCR_TDMCM value */ |
| 325 | return -8; |
| 326 | } |
| 327 | #endif |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 328 | |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 329 | #if defined(CONFIG_MPC834x) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 330 | i2c1_clk = tsec2_clk; |
| 331 | #elif defined(CONFIG_MPC8360) |
| 332 | i2c1_clk = csb_clk; |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 333 | #elif defined(CONFIG_MPC832x) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 334 | i2c1_clk = enc_clk; |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 335 | #elif defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 336 | i2c1_clk = enc_clk; |
Rini van Zetten | 27ef578 | 2010-04-15 16:03:05 +0200 | [diff] [blame] | 337 | #elif defined(CONFIG_FSL_ESDHC) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 338 | i2c1_clk = sdhc_clk; |
Andre Schwarz | 1bda162 | 2011-04-14 14:57:40 +0200 | [diff] [blame] | 339 | #elif defined(CONFIG_MPC837x) |
| 340 | i2c1_clk = enc_clk; |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 341 | #elif defined(CONFIG_MPC8309) |
| 342 | i2c1_clk = csb_clk; |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 343 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 344 | #if !defined(CONFIG_MPC832x) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 345 | i2c2_clk = csb_clk; /* i2c-2 clk is equal to csb clk */ |
| 346 | #endif |
| 347 | |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 348 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 349 | defined(CONFIG_MPC837x) |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 350 | switch ((sccr & SCCR_PCIEXP1CM) >> SCCR_PCIEXP1CM_SHIFT) { |
| 351 | case 0: |
| 352 | pciexp1_clk = 0; |
| 353 | break; |
| 354 | case 1: |
| 355 | pciexp1_clk = csb_clk; |
| 356 | break; |
| 357 | case 2: |
| 358 | pciexp1_clk = csb_clk / 2; |
| 359 | break; |
| 360 | case 3: |
| 361 | pciexp1_clk = csb_clk / 3; |
| 362 | break; |
| 363 | default: |
| 364 | /* unkown SCCR_PCIEXP1CM value */ |
| 365 | return -9; |
| 366 | } |
| 367 | |
| 368 | switch ((sccr & SCCR_PCIEXP2CM) >> SCCR_PCIEXP2CM_SHIFT) { |
| 369 | case 0: |
| 370 | pciexp2_clk = 0; |
| 371 | break; |
| 372 | case 1: |
| 373 | pciexp2_clk = csb_clk; |
| 374 | break; |
| 375 | case 2: |
| 376 | pciexp2_clk = csb_clk / 2; |
| 377 | break; |
| 378 | case 3: |
| 379 | pciexp2_clk = csb_clk / 3; |
| 380 | break; |
| 381 | default: |
| 382 | /* unkown SCCR_PCIEXP2CM value */ |
| 383 | return -10; |
| 384 | } |
| 385 | #endif |
| 386 | |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 387 | #if defined(CONFIG_MPC837x) || defined(CONFIG_MPC8315) |
Dave Liu | a8cb43a | 2008-01-17 18:23:19 +0800 | [diff] [blame] | 388 | switch ((sccr & SCCR_SATA1CM) >> SCCR_SATA1CM_SHIFT) { |
| 389 | case 0: |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 390 | sata_clk = 0; |
| 391 | break; |
Dave Liu | a8cb43a | 2008-01-17 18:23:19 +0800 | [diff] [blame] | 392 | case 1: |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 393 | sata_clk = csb_clk; |
| 394 | break; |
Dave Liu | a8cb43a | 2008-01-17 18:23:19 +0800 | [diff] [blame] | 395 | case 2: |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 396 | sata_clk = csb_clk / 2; |
| 397 | break; |
Dave Liu | a8cb43a | 2008-01-17 18:23:19 +0800 | [diff] [blame] | 398 | case 3: |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 399 | sata_clk = csb_clk / 3; |
| 400 | break; |
| 401 | default: |
Kim Phillips | 9e89647 | 2008-01-16 12:06:16 -0600 | [diff] [blame] | 402 | /* unkown SCCR_SATACM value */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 403 | return -11; |
| 404 | } |
| 405 | #endif |
| 406 | |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 407 | lbiu_clk = csb_clk * |
Joakim Tjernlund | 26e5f79 | 2011-01-27 16:30:54 +0100 | [diff] [blame] | 408 | (1 + ((im->clk.spmr & SPMR_LBIUCM) >> SPMR_LBIUCM_SHIFT)); |
Becky Bruce | f51cdaf | 2010-06-17 11:37:20 -0500 | [diff] [blame] | 409 | lcrr = (im->im_lbc.lcrr & LCRR_CLKDIV) >> LCRR_CLKDIV_SHIFT; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 410 | switch (lcrr) { |
| 411 | case 2: |
| 412 | case 4: |
| 413 | case 8: |
| 414 | lclk_clk = lbiu_clk / lcrr; |
| 415 | break; |
| 416 | default: |
| 417 | /* unknown lcrr */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 418 | return -12; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 419 | } |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 420 | |
Kim Phillips | 35cf155 | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 421 | mem_clk = csb_clk * |
Joakim Tjernlund | 26e5f79 | 2011-01-27 16:30:54 +0100 | [diff] [blame] | 422 | (1 + ((im->clk.spmr & SPMR_DDRCM) >> SPMR_DDRCM_SHIFT)); |
| 423 | corepll = (im->clk.spmr & SPMR_COREPLL) >> SPMR_COREPLL_SHIFT; |
| 424 | |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 425 | #if defined(CONFIG_MPC8360) |
Kim Phillips | 35cf155 | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 426 | mem_sec_clk = csb_clk * (1 + |
Joakim Tjernlund | 26e5f79 | 2011-01-27 16:30:54 +0100 | [diff] [blame] | 427 | ((im->clk.spmr & SPMR_LBIUCM) >> SPMR_LBIUCM_SHIFT)); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 428 | #endif |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 429 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 430 | corecnf_tab_index = ((corepll & 0x1F) << 2) | ((corepll & 0x60) >> 5); |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 431 | if (corecnf_tab_index > (sizeof(corecnf_tab) / sizeof(corecnf_t))) { |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 432 | /* corecnf_tab_index is too high, possibly worng value */ |
| 433 | return -11; |
| 434 | } |
| 435 | switch (corecnf_tab[corecnf_tab_index].core_csb_ratio) { |
| 436 | case _byp: |
| 437 | case _x1: |
| 438 | case _1x: |
| 439 | core_clk = csb_clk; |
| 440 | break; |
| 441 | case _1_5x: |
| 442 | core_clk = (3 * csb_clk) / 2; |
| 443 | break; |
| 444 | case _2x: |
| 445 | core_clk = 2 * csb_clk; |
| 446 | break; |
| 447 | case _2_5x: |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 448 | core_clk = (5 * csb_clk) / 2; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 449 | break; |
| 450 | case _3x: |
| 451 | core_clk = 3 * csb_clk; |
| 452 | break; |
| 453 | default: |
| 454 | /* unkown core to csb ratio */ |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 455 | return -13; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 456 | } |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 457 | |
Gerlando Falauto | 4b5282d | 2012-10-10 22:13:06 +0000 | [diff] [blame] | 458 | #if defined(CONFIG_QE) |
Joakim Tjernlund | 26e5f79 | 2011-01-27 16:30:54 +0100 | [diff] [blame] | 459 | qepmf = (im->clk.spmr & SPMR_CEPMF) >> SPMR_CEPMF_SHIFT; |
| 460 | qepdf = (im->clk.spmr & SPMR_CEPDF) >> SPMR_CEPDF_SHIFT; |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 461 | qe_clk = (pci_sync_in * qepmf) / (1 + qepdf); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 462 | brg_clk = qe_clk / 2; |
| 463 | #endif |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 464 | |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 465 | gd->arch.csb_clk = csb_clk; |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 466 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 467 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 468 | gd->arch.tsec1_clk = tsec1_clk; |
| 469 | gd->arch.tsec2_clk = tsec2_clk; |
| 470 | gd->arch.usbdr_clk = usbdr_clk; |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 471 | #elif defined(CONFIG_MPC8309) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 472 | gd->arch.usbdr_clk = usbdr_clk; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 473 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 474 | #if defined(CONFIG_MPC834x) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 475 | gd->arch.usbmph_clk = usbmph_clk; |
Scott Wood | 7c98e51 | 2007-04-16 14:34:19 -0500 | [diff] [blame] | 476 | #endif |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 477 | #if defined(CONFIG_MPC8315) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 478 | gd->arch.tdm_clk = tdm_clk; |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 479 | #endif |
Rini van Zetten | 27ef578 | 2010-04-15 16:03:05 +0200 | [diff] [blame] | 480 | #if defined(CONFIG_FSL_ESDHC) |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame^] | 481 | gd->arch.sdhc_clk = sdhc_clk; |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 482 | #endif |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 483 | gd->arch.core_clk = core_clk; |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 484 | gd->arch.i2c1_clk = i2c1_clk; |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 485 | #if !defined(CONFIG_MPC832x) |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 486 | gd->arch.i2c2_clk = i2c2_clk; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 487 | #endif |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 488 | #if !defined(CONFIG_MPC8309) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 489 | gd->arch.enc_clk = enc_clk; |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 490 | #endif |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 491 | gd->arch.lbiu_clk = lbiu_clk; |
| 492 | gd->arch.lclk_clk = lclk_clk; |
Kim Phillips | 35cf155 | 2008-03-28 10:18:40 -0500 | [diff] [blame] | 493 | gd->mem_clk = mem_clk; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 494 | #if defined(CONFIG_MPC8360) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 495 | gd->arch.mem_sec_clk = mem_sec_clk; |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 496 | #endif |
Gerlando Falauto | 4b5282d | 2012-10-10 22:13:06 +0000 | [diff] [blame] | 497 | #if defined(CONFIG_QE) |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 498 | gd->arch.qe_clk = qe_clk; |
Simon Glass | 1206c18 | 2012-12-13 20:48:44 +0000 | [diff] [blame] | 499 | gd->arch.brg_clk = brg_clk; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 500 | #endif |
Bill Cook | 810cb19 | 2011-05-25 15:51:07 -0400 | [diff] [blame] | 501 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 502 | defined(CONFIG_MPC837x) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 503 | gd->arch.pciexp1_clk = pciexp1_clk; |
| 504 | gd->arch.pciexp2_clk = pciexp2_clk; |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 505 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 506 | #if defined(CONFIG_MPC837x) || defined(CONFIG_MPC8315) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 507 | gd->arch.sata_clk = sata_clk; |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 508 | #endif |
Kim Phillips | 8f9e0e9 | 2007-08-15 22:30:19 -0500 | [diff] [blame] | 509 | gd->pci_clk = pci_sync_in; |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 510 | gd->cpu_clk = gd->arch.core_clk; |
| 511 | gd->bus_clk = gd->arch.csb_clk; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 512 | return 0; |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 513 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | /******************************************** |
| 517 | * get_bus_freq |
| 518 | * return system bus freq in Hz |
| 519 | *********************************************/ |
Kim Phillips | f7fb2e7 | 2006-11-02 19:47:11 -0600 | [diff] [blame] | 520 | ulong get_bus_freq(ulong dummy) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 521 | { |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 522 | return gd->arch.csb_clk; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 523 | } |
| 524 | |
York Sun | d29d17d | 2011-08-26 11:32:44 -0700 | [diff] [blame] | 525 | /******************************************** |
| 526 | * get_ddr_freq |
| 527 | * return ddr bus freq in Hz |
| 528 | *********************************************/ |
| 529 | ulong get_ddr_freq(ulong dummy) |
| 530 | { |
| 531 | return gd->mem_clk; |
| 532 | } |
| 533 | |
Kim Phillips | a2873bd | 2012-10-29 13:34:39 +0000 | [diff] [blame] | 534 | static int do_clocks(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 535 | { |
Wolfgang Denk | 08ef89e | 2008-10-19 02:35:49 +0200 | [diff] [blame] | 536 | char buf[32]; |
| 537 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 538 | printf("Clock configuration:\n"); |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 539 | printf(" Core: %-4s MHz\n", |
| 540 | strmhz(buf, gd->arch.core_clk)); |
| 541 | printf(" Coherent System Bus: %-4s MHz\n", |
| 542 | strmhz(buf, gd->arch.csb_clk)); |
Gerlando Falauto | 4b5282d | 2012-10-10 22:13:06 +0000 | [diff] [blame] | 543 | #if defined(CONFIG_QE) |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 544 | printf(" QE: %-4s MHz\n", |
| 545 | strmhz(buf, gd->arch.qe_clk)); |
Simon Glass | 1206c18 | 2012-12-13 20:48:44 +0000 | [diff] [blame] | 546 | printf(" BRG: %-4s MHz\n", |
| 547 | strmhz(buf, gd->arch.brg_clk)); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 548 | #endif |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 549 | printf(" Local Bus Controller:%-4s MHz\n", |
| 550 | strmhz(buf, gd->arch.lbiu_clk)); |
| 551 | printf(" Local Bus: %-4s MHz\n", |
| 552 | strmhz(buf, gd->arch.lclk_clk)); |
Wolfgang Denk | 08ef89e | 2008-10-19 02:35:49 +0200 | [diff] [blame] | 553 | printf(" DDR: %-4s MHz\n", strmhz(buf, gd->mem_clk)); |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 554 | #if defined(CONFIG_MPC8360) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 555 | printf(" DDR Secondary: %-4s MHz\n", |
| 556 | strmhz(buf, gd->arch.mem_sec_clk)); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 557 | #endif |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 558 | #if !defined(CONFIG_MPC8309) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 559 | printf(" SEC: %-4s MHz\n", |
| 560 | strmhz(buf, gd->arch.enc_clk)); |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 561 | #endif |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 562 | printf(" I2C1: %-4s MHz\n", |
| 563 | strmhz(buf, gd->arch.i2c1_clk)); |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 564 | #if !defined(CONFIG_MPC832x) |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 565 | printf(" I2C2: %-4s MHz\n", |
| 566 | strmhz(buf, gd->arch.i2c2_clk)); |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 567 | #endif |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 568 | #if defined(CONFIG_MPC8315) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 569 | printf(" TDM: %-4s MHz\n", |
| 570 | strmhz(buf, gd->arch.tdm_clk)); |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 571 | #endif |
Rini van Zetten | 27ef578 | 2010-04-15 16:03:05 +0200 | [diff] [blame] | 572 | #if defined(CONFIG_FSL_ESDHC) |
Simon Glass | e9adeca | 2012-12-13 20:49:05 +0000 | [diff] [blame^] | 573 | printf(" SDHC: %-4s MHz\n", |
| 574 | strmhz(buf, gd->arch.sdhc_clk)); |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 575 | #endif |
Ilya Yanok | 7c619dd | 2010-06-28 16:44:33 +0400 | [diff] [blame] | 576 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 577 | defined(CONFIG_MPC834x) || defined(CONFIG_MPC837x) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 578 | printf(" TSEC1: %-4s MHz\n", |
| 579 | strmhz(buf, gd->arch.tsec1_clk)); |
| 580 | printf(" TSEC2: %-4s MHz\n", |
| 581 | strmhz(buf, gd->arch.tsec2_clk)); |
| 582 | printf(" USB DR: %-4s MHz\n", |
| 583 | strmhz(buf, gd->arch.usbdr_clk)); |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 584 | #elif defined(CONFIG_MPC8309) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 585 | printf(" USB DR: %-4s MHz\n", |
| 586 | strmhz(buf, gd->arch.usbdr_clk)); |
Dave Liu | 5f82043 | 2006-11-03 19:33:44 -0600 | [diff] [blame] | 587 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 588 | #if defined(CONFIG_MPC834x) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 589 | printf(" USB MPH: %-4s MHz\n", |
| 590 | strmhz(buf, gd->arch.usbmph_clk)); |
Scott Wood | 7c98e51 | 2007-04-16 14:34:19 -0500 | [diff] [blame] | 591 | #endif |
Bill Cook | 810cb19 | 2011-05-25 15:51:07 -0400 | [diff] [blame] | 592 | #if defined(CONFIG_MPC8308) || defined(CONFIG_MPC831x) || \ |
| 593 | defined(CONFIG_MPC837x) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 594 | printf(" PCIEXP1: %-4s MHz\n", |
| 595 | strmhz(buf, gd->arch.pciexp1_clk)); |
| 596 | printf(" PCIEXP2: %-4s MHz\n", |
| 597 | strmhz(buf, gd->arch.pciexp2_clk)); |
Dave Liu | 555da61 | 2007-09-18 12:36:58 +0800 | [diff] [blame] | 598 | #endif |
Peter Tyser | 2c7920a | 2009-05-22 17:23:25 -0500 | [diff] [blame] | 599 | #if defined(CONFIG_MPC837x) || defined(CONFIG_MPC8315) |
Simon Glass | c6731fe | 2012-12-13 20:48:47 +0000 | [diff] [blame] | 600 | printf(" SATA: %-4s MHz\n", |
| 601 | strmhz(buf, gd->arch.sata_clk)); |
Dave Liu | 03051c3 | 2007-09-18 12:36:11 +0800 | [diff] [blame] | 602 | #endif |
Jon Loeliger | de1d0a6 | 2005-08-01 13:20:47 -0500 | [diff] [blame] | 603 | return 0; |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 604 | } |
Kim Phillips | 54b2d43 | 2007-04-30 15:26:21 -0500 | [diff] [blame] | 605 | |
| 606 | U_BOOT_CMD(clocks, 1, 0, do_clocks, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 607 | "print clock configuration", |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 608 | " clocks" |
Kim Phillips | 54b2d43 | 2007-04-30 15:26:21 -0500 | [diff] [blame] | 609 | ); |