wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2007 |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 3 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
| 4 | * |
| 5 | * See file CREDITS for list of people who contributed to this |
| 6 | * project. |
| 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 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 21 | * MA 02111-1307 USA |
| 22 | */ |
| 23 | |
| 24 | /* |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 25 | * CPU specific code |
| 26 | * |
| 27 | * written or collected and sometimes rewritten by |
| 28 | * Magnus Damm <damm@bitsmart.com> |
| 29 | * |
| 30 | * minor modifications by |
| 31 | * Wolfgang Denk <wd@denx.de> |
| 32 | */ |
| 33 | |
| 34 | #include <common.h> |
| 35 | #include <watchdog.h> |
| 36 | #include <command.h> |
| 37 | #include <asm/cache.h> |
| 38 | #include <ppc4xx.h> |
Ben Warren | 25a8590 | 2008-10-27 23:53:17 -0700 | [diff] [blame] | 39 | #include <netdev.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 40 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 41 | DECLARE_GLOBAL_DATA_PTR; |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 42 | |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 43 | void board_reset(void); |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 44 | |
Adam Graham | c9c11d7 | 2008-10-08 10:13:19 -0700 | [diff] [blame] | 45 | /* |
| 46 | * To provide an interface to detect CPU number for boards that support |
| 47 | * more then one CPU, we implement the "weak" default functions here. |
| 48 | * |
| 49 | * Returns CPU number |
| 50 | */ |
| 51 | int __get_cpu_num(void) |
| 52 | { |
| 53 | return NA_OR_UNKNOWN_CPU; |
| 54 | } |
| 55 | int get_cpu_num(void) __attribute__((weak, alias("__get_cpu_num"))); |
| 56 | |
Stefan Roese | 20b3c4b | 2009-07-06 11:44:33 +0200 | [diff] [blame] | 57 | #if defined(CONFIG_PCI) |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 58 | #if defined(CONFIG_405GP) || \ |
| 59 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
| 60 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 61 | |
| 62 | #define PCI_ASYNC |
| 63 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 64 | static int pci_async_enabled(void) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 65 | { |
| 66 | #if defined(CONFIG_405GP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 67 | return (mfdcr(CPC0_PSR) & PSR_PCI_ASYNC_EN); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 68 | #endif |
| 69 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 70 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 71 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
| 72 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 73 | unsigned long val; |
| 74 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 75 | mfsdr(SDR0_SDSTP1, val); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 76 | return (val & SDR0_SDSTP1_PAME_MASK); |
| 77 | #endif |
| 78 | } |
| 79 | #endif |
Stefan Roese | 20b3c4b | 2009-07-06 11:44:33 +0200 | [diff] [blame] | 80 | #endif /* CONFIG_PCI */ |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 81 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 82 | #if defined(CONFIG_PCI) && !defined(CONFIG_IOP480) && \ |
| 83 | !defined(CONFIG_405) && !defined(CONFIG_405EX) |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 84 | int pci_arbiter_enabled(void) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 85 | { |
| 86 | #if defined(CONFIG_405GP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 87 | return (mfdcr(CPC0_PSR) & PSR_PCI_ARBIT_EN); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 88 | #endif |
| 89 | |
| 90 | #if defined(CONFIG_405EP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 91 | return (mfdcr(CPC0_PCI) & CPC0_PCI_ARBIT_EN); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 92 | #endif |
| 93 | |
| 94 | #if defined(CONFIG_440GP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 95 | return (mfdcr(CPC0_STRP1) & CPC0_STRP1_PAE_MASK); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 96 | #endif |
| 97 | |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 98 | #if defined(CONFIG_440GX) || defined(CONFIG_440SP) || defined(CONFIG_440SPE) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 99 | unsigned long val; |
| 100 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 101 | mfsdr(SDR0_XCR, val); |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 102 | return (val & 0x80000000); |
| 103 | #endif |
| 104 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 105 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
| 106 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 107 | unsigned long val; |
| 108 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 109 | mfsdr(SDR0_PCI0, val); |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 110 | return (val & 0x80000000); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 111 | #endif |
| 112 | } |
| 113 | #endif |
| 114 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 115 | #if defined(CONFIG_405EP) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 116 | #define I2C_BOOTROM |
| 117 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 118 | static int i2c_bootrom_enabled(void) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 119 | { |
| 120 | #if defined(CONFIG_405EP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 121 | return (mfdcr(CPC0_BOOT) & CPC0_BOOT_SEP); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 122 | #else |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 123 | unsigned long val; |
| 124 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 125 | mfsdr(SDR0_SDCS0, val); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 126 | return (val & SDR0_SDCS_SDD); |
| 127 | #endif |
| 128 | } |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 129 | #endif |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 130 | |
| 131 | #if defined(CONFIG_440GX) |
| 132 | #define SDR0_PINSTP_SHIFT 29 |
| 133 | static char *bootstrap_str[] = { |
| 134 | "EBC (16 bits)", |
| 135 | "EBC (8 bits)", |
| 136 | "EBC (32 bits)", |
| 137 | "EBC (8 bits)", |
| 138 | "PCI", |
| 139 | "I2C (Addr 0x54)", |
| 140 | "Reserved", |
| 141 | "I2C (Addr 0x50)", |
| 142 | }; |
BenoƮt Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 143 | static char bootstrap_char[] = { 'A', 'B', 'C', 'B', 'D', 'E', 'x', 'F' }; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 144 | #endif |
| 145 | |
| 146 | #if defined(CONFIG_440SP) || defined(CONFIG_440SPE) |
| 147 | #define SDR0_PINSTP_SHIFT 30 |
| 148 | static char *bootstrap_str[] = { |
| 149 | "EBC (8 bits)", |
| 150 | "PCI", |
| 151 | "I2C (Addr 0x54)", |
| 152 | "I2C (Addr 0x50)", |
| 153 | }; |
BenoƮt Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 154 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D'}; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 155 | #endif |
| 156 | |
| 157 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) |
| 158 | #define SDR0_PINSTP_SHIFT 29 |
| 159 | static char *bootstrap_str[] = { |
| 160 | "EBC (8 bits)", |
| 161 | "PCI", |
| 162 | "NAND (8 bits)", |
| 163 | "EBC (16 bits)", |
| 164 | "EBC (16 bits)", |
| 165 | "I2C (Addr 0x54)", |
| 166 | "PCI", |
| 167 | "I2C (Addr 0x52)", |
| 168 | }; |
BenoƮt Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 169 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 170 | #endif |
| 171 | |
| 172 | #if defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
| 173 | #define SDR0_PINSTP_SHIFT 29 |
| 174 | static char *bootstrap_str[] = { |
| 175 | "EBC (8 bits)", |
| 176 | "EBC (16 bits)", |
| 177 | "EBC (16 bits)", |
| 178 | "NAND (8 bits)", |
| 179 | "PCI", |
| 180 | "I2C (Addr 0x54)", |
| 181 | "PCI", |
| 182 | "I2C (Addr 0x52)", |
| 183 | }; |
BenoƮt Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 184 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 185 | #endif |
| 186 | |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 187 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 188 | #define SDR0_PINSTP_SHIFT 29 |
| 189 | static char *bootstrap_str[] = { |
| 190 | "EBC (8 bits)", |
| 191 | "EBC (16 bits)", |
| 192 | "PCI", |
| 193 | "PCI", |
| 194 | "EBC (16 bits)", |
| 195 | "NAND (8 bits)", |
| 196 | "I2C (Addr 0x54)", /* A8 */ |
| 197 | "I2C (Addr 0x52)", /* A4 */ |
| 198 | }; |
| 199 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
| 200 | #endif |
| 201 | |
Feng Kan | 7d30793 | 2008-07-08 22:47:31 -0700 | [diff] [blame] | 202 | #if defined(CONFIG_460SX) |
| 203 | #define SDR0_PINSTP_SHIFT 29 |
| 204 | static char *bootstrap_str[] = { |
| 205 | "EBC (8 bits)", |
| 206 | "EBC (16 bits)", |
| 207 | "EBC (32 bits)", |
| 208 | "NAND (8 bits)", |
| 209 | "I2C (Addr 0x54)", /* A8 */ |
| 210 | "I2C (Addr 0x52)", /* A4 */ |
| 211 | }; |
| 212 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G' }; |
| 213 | #endif |
| 214 | |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 215 | #if defined(CONFIG_405EZ) |
| 216 | #define SDR0_PINSTP_SHIFT 28 |
| 217 | static char *bootstrap_str[] = { |
| 218 | "EBC (8 bits)", |
| 219 | "SPI (fast)", |
| 220 | "NAND (512 page, 4 addr cycle)", |
| 221 | "I2C (Addr 0x50)", |
| 222 | "EBC (32 bits)", |
| 223 | "I2C (Addr 0x50)", |
| 224 | "NAND (2K page, 5 addr cycle)", |
| 225 | "I2C (Addr 0x50)", |
| 226 | "EBC (16 bits)", |
| 227 | "Reserved", |
| 228 | "NAND (2K page, 4 addr cycle)", |
| 229 | "I2C (Addr 0x50)", |
| 230 | "NAND (512 page, 3 addr cycle)", |
| 231 | "I2C (Addr 0x50)", |
| 232 | "SPI (slow)", |
| 233 | "I2C (Addr 0x50)", |
| 234 | }; |
BenoƮt Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 235 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', \ |
| 236 | 'I', 'x', 'K', 'L', 'M', 'N', 'O', 'P' }; |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 237 | #endif |
| 238 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 239 | #if defined(CONFIG_405EX) |
| 240 | #define SDR0_PINSTP_SHIFT 29 |
| 241 | static char *bootstrap_str[] = { |
| 242 | "EBC (8 bits)", |
| 243 | "EBC (16 bits)", |
| 244 | "EBC (16 bits)", |
| 245 | "NAND (8 bits)", |
| 246 | "NAND (8 bits)", |
| 247 | "I2C (Addr 0x54)", |
| 248 | "EBC (8 bits)", |
| 249 | "I2C (Addr 0x52)", |
| 250 | }; |
| 251 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
| 252 | #endif |
| 253 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 254 | #if defined(SDR0_PINSTP_SHIFT) |
| 255 | static int bootstrap_option(void) |
| 256 | { |
| 257 | unsigned long val; |
| 258 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 259 | mfsdr(SDR0_PINSTP, val); |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 260 | return ((val & 0xf0000000) >> SDR0_PINSTP_SHIFT); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 261 | } |
| 262 | #endif /* SDR0_PINSTP_SHIFT */ |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 263 | |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 264 | |
| 265 | #if defined(CONFIG_440) |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 266 | static int do_chip_reset (unsigned long sys0, unsigned long sys1) |
| 267 | { |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 268 | /* Changes to CPC0_SYS0 and CPC0_SYS1 require chip |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 269 | * reset. |
| 270 | */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 271 | mtdcr (CPC0_CR0, mfdcr (CPC0_CR0) | 0x80000000); /* Set SWE */ |
| 272 | mtdcr (CPC0_SYS0, sys0); |
| 273 | mtdcr (CPC0_SYS1, sys1); |
| 274 | mtdcr (CPC0_CR0, mfdcr (CPC0_CR0) & ~0x80000000); /* Clr SWE */ |
Matthias Fuchs | 58ea142 | 2009-07-22 17:27:56 +0200 | [diff] [blame] | 275 | mtspr (SPRN_DBCR0, 0x20000000); /* Reset the chip */ |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 276 | |
| 277 | return 1; |
| 278 | } |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 279 | #endif |
| 280 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 281 | |
| 282 | int checkcpu (void) |
| 283 | { |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 284 | #if !defined(CONFIG_405) /* not used on Xilinx 405 FPGA implementations */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 285 | uint pvr = get_pvr(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 286 | ulong clock = gd->cpu_clk; |
| 287 | char buf[32]; |
Stefan Roese | 89bcc48 | 2009-07-29 08:45:27 +0200 | [diff] [blame] | 288 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 289 | u32 reg; |
| 290 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 291 | |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 292 | #if !defined(CONFIG_IOP480) |
Wolfgang Denk | ba999c5 | 2006-10-20 17:54:33 +0200 | [diff] [blame] | 293 | char addstr[64] = ""; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 294 | sys_info_t sys_info; |
Adam Graham | c9c11d7 | 2008-10-08 10:13:19 -0700 | [diff] [blame] | 295 | int cpu_num; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 296 | |
Adam Graham | c9c11d7 | 2008-10-08 10:13:19 -0700 | [diff] [blame] | 297 | cpu_num = get_cpu_num(); |
| 298 | if (cpu_num >= 0) |
| 299 | printf("CPU%d: ", cpu_num); |
| 300 | else |
| 301 | puts("CPU: "); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 302 | |
| 303 | get_sys_info(&sys_info); |
| 304 | |
Ricardo Ribalda Delgado | d865fd0 | 2008-07-17 11:44:12 +0200 | [diff] [blame] | 305 | #if defined(CONFIG_XILINX_440) |
| 306 | puts("IBM PowerPC 4"); |
| 307 | #else |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 308 | puts("AMCC PowerPC 4"); |
Ricardo Ribalda Delgado | d865fd0 | 2008-07-17 11:44:12 +0200 | [diff] [blame] | 309 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 310 | |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 311 | #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \ |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 312 | defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \ |
| 313 | defined(CONFIG_405EX) |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 314 | puts("05"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 315 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 316 | #if defined(CONFIG_440) |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 317 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 318 | puts("60"); |
| 319 | #else |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 320 | puts("40"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 321 | #endif |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 322 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 323 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 324 | switch (pvr) { |
| 325 | case PVR_405GP_RB: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 326 | puts("GP Rev. B"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 327 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 328 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 329 | case PVR_405GP_RC: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 330 | puts("GP Rev. C"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 331 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 332 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 333 | case PVR_405GP_RD: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 334 | puts("GP Rev. D"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 335 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 336 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 337 | #ifdef CONFIG_405GP |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 338 | case PVR_405GP_RE: /* 405GP rev E and 405CR rev C have same PVR */ |
| 339 | puts("GP Rev. E"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 340 | break; |
| 341 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 342 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 343 | case PVR_405CR_RA: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 344 | puts("CR Rev. A"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 345 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 346 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 347 | case PVR_405CR_RB: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 348 | puts("CR Rev. B"); |
| 349 | break; |
| 350 | |
| 351 | #ifdef CONFIG_405CR |
| 352 | case PVR_405CR_RC: /* 405GP rev E and 405CR rev C have same PVR */ |
| 353 | puts("CR Rev. C"); |
| 354 | break; |
| 355 | #endif |
| 356 | |
| 357 | case PVR_405GPR_RB: |
| 358 | puts("GPr Rev. B"); |
| 359 | break; |
| 360 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 361 | case PVR_405EP_RB: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 362 | puts("EP Rev. B"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 363 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 364 | |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 365 | case PVR_405EZ_RA: |
| 366 | puts("EZ Rev. A"); |
| 367 | break; |
| 368 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 369 | case PVR_405EX1_RA: |
| 370 | puts("EX Rev. A"); |
| 371 | strcpy(addstr, "Security support"); |
| 372 | break; |
| 373 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 374 | case PVR_405EXR2_RA: |
| 375 | puts("EXr Rev. A"); |
| 376 | strcpy(addstr, "No Security support"); |
| 377 | break; |
| 378 | |
Stefan Roese | 70fab19 | 2008-05-13 20:22:01 +0200 | [diff] [blame] | 379 | case PVR_405EX1_RC: |
| 380 | puts("EX Rev. C"); |
| 381 | strcpy(addstr, "Security support"); |
| 382 | break; |
| 383 | |
| 384 | case PVR_405EX2_RC: |
| 385 | puts("EX Rev. C"); |
| 386 | strcpy(addstr, "No Security support"); |
| 387 | break; |
| 388 | |
| 389 | case PVR_405EXR1_RC: |
| 390 | puts("EXr Rev. C"); |
| 391 | strcpy(addstr, "Security support"); |
| 392 | break; |
| 393 | |
| 394 | case PVR_405EXR2_RC: |
| 395 | puts("EXr Rev. C"); |
| 396 | strcpy(addstr, "No Security support"); |
| 397 | break; |
| 398 | |
Stefan Roese | 56f1481 | 2009-10-06 07:21:08 +0200 | [diff] [blame] | 399 | case PVR_405EX1_RD: |
| 400 | puts("EX Rev. D"); |
| 401 | strcpy(addstr, "Security support"); |
| 402 | break; |
| 403 | |
| 404 | case PVR_405EX2_RD: |
| 405 | puts("EX Rev. D"); |
| 406 | strcpy(addstr, "No Security support"); |
| 407 | break; |
| 408 | |
| 409 | case PVR_405EXR1_RD: |
| 410 | puts("EXr Rev. D"); |
| 411 | strcpy(addstr, "Security support"); |
| 412 | break; |
| 413 | |
| 414 | case PVR_405EXR2_RD: |
| 415 | puts("EXr Rev. D"); |
| 416 | strcpy(addstr, "No Security support"); |
| 417 | break; |
| 418 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 419 | #if defined(CONFIG_440) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 420 | case PVR_440GP_RB: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 421 | puts("GP Rev. B"); |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 422 | /* See errata 1.12: CHIP_4 */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 423 | if ((mfdcr(CPC0_SYS0) != mfdcr(CPC0_STRP0)) || |
| 424 | (mfdcr(CPC0_SYS1) != mfdcr(CPC0_STRP1)) ){ |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 425 | puts ( "\n\t CPC0_SYSx DCRs corrupted. " |
| 426 | "Resetting chip ...\n"); |
| 427 | udelay( 1000 * 1000 ); /* Give time for serial buf to clear */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 428 | do_chip_reset ( mfdcr(CPC0_STRP0), |
| 429 | mfdcr(CPC0_STRP1) ); |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 430 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 431 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 432 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 433 | case PVR_440GP_RC: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 434 | puts("GP Rev. C"); |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 435 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 436 | |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 437 | case PVR_440GX_RA: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 438 | puts("GX Rev. A"); |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 439 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 440 | |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 441 | case PVR_440GX_RB: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 442 | puts("GX Rev. B"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 443 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 444 | |
stroese | 0a7c539 | 2005-04-07 05:33:41 +0000 | [diff] [blame] | 445 | case PVR_440GX_RC: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 446 | puts("GX Rev. C"); |
stroese | 0a7c539 | 2005-04-07 05:33:41 +0000 | [diff] [blame] | 447 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 448 | |
Stefan Roese | 57275b6 | 2005-11-01 10:08:03 +0100 | [diff] [blame] | 449 | case PVR_440GX_RF: |
| 450 | puts("GX Rev. F"); |
| 451 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 452 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 453 | case PVR_440EP_RA: |
| 454 | puts("EP Rev. A"); |
| 455 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 456 | |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 457 | #ifdef CONFIG_440EP |
| 458 | case PVR_440EP_RB: /* 440EP rev B and 440GR rev A have same PVR */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 459 | puts("EP Rev. B"); |
| 460 | break; |
Stefan Roese | 512f8d5 | 2006-05-10 14:10:41 +0200 | [diff] [blame] | 461 | |
| 462 | case PVR_440EP_RC: /* 440EP rev C and 440GR rev B have same PVR */ |
| 463 | puts("EP Rev. C"); |
| 464 | break; |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 465 | #endif /* CONFIG_440EP */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 466 | |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 467 | #ifdef CONFIG_440GR |
| 468 | case PVR_440GR_RA: /* 440EP rev B and 440GR rev A have same PVR */ |
| 469 | puts("GR Rev. A"); |
| 470 | break; |
Stefan Roese | 512f8d5 | 2006-05-10 14:10:41 +0200 | [diff] [blame] | 471 | |
Stefan Roese | 5770a1e | 2006-05-18 19:21:53 +0200 | [diff] [blame] | 472 | case PVR_440GR_RB: /* 440EP rev C and 440GR rev B have same PVR */ |
Stefan Roese | 512f8d5 | 2006-05-10 14:10:41 +0200 | [diff] [blame] | 473 | puts("GR Rev. B"); |
| 474 | break; |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 475 | #endif /* CONFIG_440GR */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 476 | #endif /* CONFIG_440 */ |
| 477 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 478 | #ifdef CONFIG_440EPX |
| 479 | case PVR_440EPX1_RA: /* 440EPx rev A and 440GRx rev A have same PVR */ |
Stefan Roese | edf0b54 | 2006-10-18 15:59:35 +0200 | [diff] [blame] | 480 | puts("EPx Rev. A"); |
| 481 | strcpy(addstr, "Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 482 | break; |
| 483 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 484 | case PVR_440EPX2_RA: /* 440EPx rev A and 440GRx rev A have same PVR */ |
Stefan Roese | edf0b54 | 2006-10-18 15:59:35 +0200 | [diff] [blame] | 485 | puts("EPx Rev. A"); |
| 486 | strcpy(addstr, "No Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 487 | break; |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 488 | #endif /* CONFIG_440EPX */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 489 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 490 | #ifdef CONFIG_440GRX |
| 491 | case PVR_440GRX1_RA: /* 440EPx rev A and 440GRx rev A have same PVR */ |
Stefan Roese | edf0b54 | 2006-10-18 15:59:35 +0200 | [diff] [blame] | 492 | puts("GRx Rev. A"); |
| 493 | strcpy(addstr, "Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 494 | break; |
| 495 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 496 | case PVR_440GRX2_RA: /* 440EPx rev A and 440GRx rev A have same PVR */ |
Stefan Roese | edf0b54 | 2006-10-18 15:59:35 +0200 | [diff] [blame] | 497 | puts("GRx Rev. A"); |
| 498 | strcpy(addstr, "No Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 499 | break; |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 500 | #endif /* CONFIG_440GRX */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 501 | |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 502 | case PVR_440SP_6_RAB: |
| 503 | puts("SP Rev. A/B"); |
| 504 | strcpy(addstr, "RAID 6 support"); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 505 | break; |
| 506 | |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 507 | case PVR_440SP_RAB: |
| 508 | puts("SP Rev. A/B"); |
| 509 | strcpy(addstr, "No RAID 6 support"); |
| 510 | break; |
| 511 | |
| 512 | case PVR_440SP_6_RC: |
| 513 | puts("SP Rev. C"); |
| 514 | strcpy(addstr, "RAID 6 support"); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 515 | break; |
| 516 | |
Stefan Roese | e732fae | 2006-11-28 16:09:24 +0100 | [diff] [blame] | 517 | case PVR_440SP_RC: |
| 518 | puts("SP Rev. C"); |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 519 | strcpy(addstr, "No RAID 6 support"); |
| 520 | break; |
| 521 | |
| 522 | case PVR_440SPe_6_RA: |
| 523 | puts("SPe Rev. A"); |
| 524 | strcpy(addstr, "RAID 6 support"); |
Stefan Roese | e732fae | 2006-11-28 16:09:24 +0100 | [diff] [blame] | 525 | break; |
| 526 | |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 527 | case PVR_440SPe_RA: |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 528 | puts("SPe Rev. A"); |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 529 | strcpy(addstr, "No RAID 6 support"); |
| 530 | break; |
| 531 | |
| 532 | case PVR_440SPe_6_RB: |
| 533 | puts("SPe Rev. B"); |
| 534 | strcpy(addstr, "RAID 6 support"); |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 535 | break; |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 536 | |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 537 | case PVR_440SPe_RB: |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 538 | puts("SPe Rev. B"); |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 539 | strcpy(addstr, "No RAID 6 support"); |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 540 | break; |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 541 | |
Stefan Roese | 89bcc48 | 2009-07-29 08:45:27 +0200 | [diff] [blame] | 542 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 543 | case PVR_460EX_RA: |
| 544 | puts("EX Rev. A"); |
| 545 | strcpy(addstr, "No Security/Kasumi support"); |
| 546 | break; |
| 547 | |
| 548 | case PVR_460EX_SE_RA: |
| 549 | puts("EX Rev. A"); |
| 550 | strcpy(addstr, "Security/Kasumi support"); |
| 551 | break; |
| 552 | |
Stefan Roese | 89bcc48 | 2009-07-29 08:45:27 +0200 | [diff] [blame] | 553 | case PVR_460EX_RB: |
| 554 | puts("EX Rev. B"); |
| 555 | mfsdr(SDR0_ECID3, reg); |
| 556 | if (reg & 0x00100000) |
| 557 | strcpy(addstr, "No Security/Kasumi support"); |
| 558 | else |
| 559 | strcpy(addstr, "Security/Kasumi support"); |
| 560 | break; |
| 561 | |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 562 | case PVR_460GT_RA: |
| 563 | puts("GT Rev. A"); |
| 564 | strcpy(addstr, "No Security/Kasumi support"); |
| 565 | break; |
| 566 | |
| 567 | case PVR_460GT_SE_RA: |
| 568 | puts("GT Rev. A"); |
| 569 | strcpy(addstr, "Security/Kasumi support"); |
| 570 | break; |
| 571 | |
Stefan Roese | 89bcc48 | 2009-07-29 08:45:27 +0200 | [diff] [blame] | 572 | case PVR_460GT_RB: |
| 573 | puts("GT Rev. B"); |
| 574 | mfsdr(SDR0_ECID3, reg); |
| 575 | if (reg & 0x00100000) |
| 576 | strcpy(addstr, "No Security/Kasumi support"); |
| 577 | else |
| 578 | strcpy(addstr, "Security/Kasumi support"); |
| 579 | break; |
| 580 | #endif |
| 581 | |
Feng Kan | 7d30793 | 2008-07-08 22:47:31 -0700 | [diff] [blame] | 582 | case PVR_460SX_RA: |
| 583 | puts("SX Rev. A"); |
| 584 | strcpy(addstr, "Security support"); |
| 585 | break; |
| 586 | |
| 587 | case PVR_460SX_RA_V1: |
| 588 | puts("SX Rev. A"); |
| 589 | strcpy(addstr, "No Security support"); |
| 590 | break; |
| 591 | |
| 592 | case PVR_460GX_RA: |
| 593 | puts("GX Rev. A"); |
| 594 | strcpy(addstr, "Security support"); |
| 595 | break; |
| 596 | |
| 597 | case PVR_460GX_RA_V1: |
| 598 | puts("GX Rev. A"); |
| 599 | strcpy(addstr, "No Security support"); |
| 600 | break; |
| 601 | |
Ricardo Ribalda Delgado | d865fd0 | 2008-07-17 11:44:12 +0200 | [diff] [blame] | 602 | case PVR_VIRTEX5: |
| 603 | puts("x5 VIRTEX5"); |
| 604 | break; |
| 605 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 606 | default: |
Stefan Roese | 17f50f22 | 2005-08-04 17:09:16 +0200 | [diff] [blame] | 607 | printf (" UNKNOWN (PVR=%08x)", pvr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 608 | break; |
| 609 | } |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 610 | |
Stefan Roese | 08c6a26 | 2009-10-19 14:44:11 +0200 | [diff] [blame] | 611 | printf (" at %s MHz (PLB=%lu OPB=%lu EBC=%lu", |
| 612 | strmhz(buf, clock), |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 613 | sys_info.freqPLB / 1000000, |
| 614 | get_OPB_freq() / 1000000, |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 615 | sys_info.freqEBC / 1000000); |
Stefan Roese | 08c6a26 | 2009-10-19 14:44:11 +0200 | [diff] [blame] | 616 | #if defined(CONFIG_PCI) && \ |
| 617 | (defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \ |
| 618 | defined(CONFIG_440GR) || defined(CONFIG_440GRX)) |
| 619 | printf(" PCI=%lu MHz", sys_info.freqPCI / 1000000); |
| 620 | #endif |
| 621 | printf(")\n"); |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 622 | |
Stefan Roese | edf0b54 | 2006-10-18 15:59:35 +0200 | [diff] [blame] | 623 | if (addstr[0] != 0) |
| 624 | printf(" %s\n", addstr); |
| 625 | |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 626 | #if defined(I2C_BOOTROM) |
| 627 | printf (" I2C boot EEPROM %sabled\n", i2c_bootrom_enabled() ? "en" : "dis"); |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 628 | #endif /* I2C_BOOTROM */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 629 | #if defined(SDR0_PINSTP_SHIFT) |
BenoƮt Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 630 | printf (" Bootstrap Option %c - ", bootstrap_char[bootstrap_option()]); |
Stefan Roese | cf94098 | 2009-04-15 10:50:48 +0200 | [diff] [blame] | 631 | printf ("Boot ROM Location %s", bootstrap_str[bootstrap_option()]); |
| 632 | #ifdef CONFIG_NAND_U_BOOT |
| 633 | puts(", booting from NAND"); |
| 634 | #endif /* CONFIG_NAND_U_BOOT */ |
| 635 | putc('\n'); |
Wolfgang Denk | ba999c5 | 2006-10-20 17:54:33 +0200 | [diff] [blame] | 636 | #endif /* SDR0_PINSTP_SHIFT */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 637 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 638 | #if defined(CONFIG_PCI) && !defined(CONFIG_405EX) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 639 | printf (" Internal PCI arbiter %sabled", pci_arbiter_enabled() ? "en" : "dis"); |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 640 | #endif |
| 641 | |
Stefan Roese | 1bbae2b | 2009-05-27 10:34:32 +0200 | [diff] [blame] | 642 | #if defined(CONFIG_PCI) && defined(PCI_ASYNC) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 643 | if (pci_async_enabled()) { |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 644 | printf (", PCI async ext clock used"); |
| 645 | } else { |
| 646 | printf (", PCI sync clock at %lu MHz", |
| 647 | sys_info.freqPLB / sys_info.pllPciDiv / 1000000); |
| 648 | } |
| 649 | #endif |
| 650 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 651 | #if defined(CONFIG_PCI) && !defined(CONFIG_405EX) |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 652 | putc('\n'); |
| 653 | #endif |
| 654 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 655 | #if defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 656 | printf (" 16 kB I-Cache 16 kB D-Cache"); |
| 657 | #elif defined(CONFIG_440) |
| 658 | printf (" 32 kB I-Cache 32 kB D-Cache"); |
| 659 | #else |
| 660 | printf (" 16 kB I-Cache %d kB D-Cache", |
| 661 | ((pvr | 0x00000001) == PVR_405GPR_RB) ? 16 : 8); |
| 662 | #endif |
| 663 | #endif /* !defined(CONFIG_IOP480) */ |
| 664 | |
| 665 | #if defined(CONFIG_IOP480) |
| 666 | printf ("PLX IOP480 (PVR=%08x)", pvr); |
| 667 | printf (" at %s MHz:", strmhz(buf, clock)); |
| 668 | printf (" %u kB I-Cache", 4); |
| 669 | printf (" %u kB D-Cache", 2); |
| 670 | #endif |
| 671 | |
| 672 | #endif /* !defined(CONFIG_405) */ |
| 673 | |
| 674 | putc ('\n'); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 675 | |
| 676 | return 0; |
| 677 | } |
| 678 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 679 | int ppc440spe_revB() { |
| 680 | unsigned int pvr; |
| 681 | |
| 682 | pvr = get_pvr(); |
Stefan Roese | 5a5c569 | 2007-01-15 09:46:29 +0100 | [diff] [blame] | 683 | if ((pvr == PVR_440SPe_6_RB) || (pvr == PVR_440SPe_RB)) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 684 | return 1; |
| 685 | else |
| 686 | return 0; |
| 687 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 688 | |
| 689 | /* ------------------------------------------------------------------------- */ |
| 690 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 691 | int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 692 | { |
Stefan Roese | 1f94d16 | 2006-11-27 14:48:41 +0100 | [diff] [blame] | 693 | #if defined(CONFIG_BOARD_RESET) |
| 694 | board_reset(); |
Stefan Roese | 1729b92 | 2006-11-27 14:52:04 +0100 | [diff] [blame] | 695 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 696 | #if defined(CONFIG_SYS_4xx_RESET_TYPE) |
Matthias Fuchs | 58ea142 | 2009-07-22 17:27:56 +0200 | [diff] [blame] | 697 | mtspr(SPRN_DBCR0, CONFIG_SYS_4xx_RESET_TYPE << 28); |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 698 | #else |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 699 | /* |
| 700 | * Initiate system reset in debug control register DBCR |
| 701 | */ |
Matthias Fuchs | 58ea142 | 2009-07-22 17:27:56 +0200 | [diff] [blame] | 702 | mtspr(SPRN_DBCR0, 0x30000000); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 703 | #endif /* defined(CONFIG_SYS_4xx_RESET_TYPE) */ |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 704 | #endif /* defined(CONFIG_BOARD_RESET) */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 705 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 706 | return 1; |
| 707 | } |
| 708 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 709 | |
| 710 | /* |
| 711 | * Get timebase clock frequency |
| 712 | */ |
| 713 | unsigned long get_tbclk (void) |
| 714 | { |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 715 | #if !defined(CONFIG_IOP480) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 716 | sys_info_t sys_info; |
| 717 | |
| 718 | get_sys_info(&sys_info); |
| 719 | return (sys_info.freqProcessor); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 720 | #else |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 721 | return (66000000); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 722 | #endif |
| 723 | |
| 724 | } |
| 725 | |
| 726 | |
| 727 | #if defined(CONFIG_WATCHDOG) |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 728 | void watchdog_reset(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 729 | { |
| 730 | int re_enable = disable_interrupts(); |
| 731 | reset_4xx_watchdog(); |
| 732 | if (re_enable) enable_interrupts(); |
| 733 | } |
| 734 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 735 | void reset_4xx_watchdog(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 736 | { |
| 737 | /* |
| 738 | * Clear TSR(WIS) bit |
| 739 | */ |
Matthias Fuchs | 58ea142 | 2009-07-22 17:27:56 +0200 | [diff] [blame] | 740 | mtspr(SPRN_TSR, 0x40000000); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 741 | } |
| 742 | #endif /* CONFIG_WATCHDOG */ |
Ben Warren | 25a8590 | 2008-10-27 23:53:17 -0700 | [diff] [blame] | 743 | |
| 744 | /* |
| 745 | * Initializes on-chip ethernet controllers. |
| 746 | * to override, implement board_eth_init() |
| 747 | */ |
| 748 | int cpu_eth_init(bd_t *bis) |
| 749 | { |
| 750 | #if defined(CONFIG_PPC4xx_EMAC) |
| 751 | ppc_4xx_eth_initialize(bis); |
| 752 | #endif |
| 753 | return 0; |
| 754 | } |