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> |
| 39 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 40 | DECLARE_GLOBAL_DATA_PTR; |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 41 | |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 42 | void board_reset(void); |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 43 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 44 | #if defined(CONFIG_405GP) || \ |
| 45 | defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
| 46 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 47 | |
| 48 | #define PCI_ASYNC |
| 49 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 50 | static int pci_async_enabled(void) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 51 | { |
| 52 | #if defined(CONFIG_405GP) |
| 53 | return (mfdcr(strap) & PSR_PCI_ASYNC_EN); |
| 54 | #endif |
| 55 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 56 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 57 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
| 58 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 59 | unsigned long val; |
| 60 | |
Wolfgang Denk | 7481266 | 2005-12-12 16:06:05 +0100 | [diff] [blame] | 61 | mfsdr(sdr_sdstp1, val); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 62 | return (val & SDR0_SDSTP1_PAME_MASK); |
| 63 | #endif |
| 64 | } |
| 65 | #endif |
| 66 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 67 | #if defined(CONFIG_PCI) && !defined(CONFIG_IOP480) && \ |
| 68 | !defined(CONFIG_405) && !defined(CONFIG_405EX) |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 69 | static int pci_arbiter_enabled(void) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 70 | { |
| 71 | #if defined(CONFIG_405GP) |
| 72 | return (mfdcr(strap) & PSR_PCI_ARBIT_EN); |
| 73 | #endif |
| 74 | |
| 75 | #if defined(CONFIG_405EP) |
| 76 | return (mfdcr(cpc0_pci) & CPC0_PCI_ARBIT_EN); |
| 77 | #endif |
| 78 | |
| 79 | #if defined(CONFIG_440GP) |
| 80 | return (mfdcr(cpc0_strp1) & CPC0_STRP1_PAE_MASK); |
| 81 | #endif |
| 82 | |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 83 | #if defined(CONFIG_440GX) || defined(CONFIG_440SP) || defined(CONFIG_440SPE) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 84 | unsigned long val; |
| 85 | |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 86 | mfsdr(sdr_xcr, val); |
| 87 | return (val & 0x80000000); |
| 88 | #endif |
| 89 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) || \ |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 90 | defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \ |
| 91 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Stefan Roese | 7372ca6 | 2007-02-02 12:44:22 +0100 | [diff] [blame] | 92 | unsigned long val; |
| 93 | |
| 94 | mfsdr(sdr_pci0, val); |
| 95 | return (val & 0x80000000); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 96 | #endif |
| 97 | } |
| 98 | #endif |
| 99 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 100 | #if defined(CONFIG_405EP) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 101 | #define I2C_BOOTROM |
| 102 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 103 | static int i2c_bootrom_enabled(void) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 104 | { |
| 105 | #if defined(CONFIG_405EP) |
| 106 | return (mfdcr(cpc0_boot) & CPC0_BOOT_SEP); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 107 | #else |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 108 | unsigned long val; |
| 109 | |
| 110 | mfsdr(sdr_sdcs, val); |
| 111 | return (val & SDR0_SDCS_SDD); |
| 112 | #endif |
| 113 | } |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 114 | #endif |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 115 | |
| 116 | #if defined(CONFIG_440GX) |
| 117 | #define SDR0_PINSTP_SHIFT 29 |
| 118 | static char *bootstrap_str[] = { |
| 119 | "EBC (16 bits)", |
| 120 | "EBC (8 bits)", |
| 121 | "EBC (32 bits)", |
| 122 | "EBC (8 bits)", |
| 123 | "PCI", |
| 124 | "I2C (Addr 0x54)", |
| 125 | "Reserved", |
| 126 | "I2C (Addr 0x50)", |
| 127 | }; |
Benoît Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 128 | static char bootstrap_char[] = { 'A', 'B', 'C', 'B', 'D', 'E', 'x', 'F' }; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 129 | #endif |
| 130 | |
| 131 | #if defined(CONFIG_440SP) || defined(CONFIG_440SPE) |
| 132 | #define SDR0_PINSTP_SHIFT 30 |
| 133 | static char *bootstrap_str[] = { |
| 134 | "EBC (8 bits)", |
| 135 | "PCI", |
| 136 | "I2C (Addr 0x54)", |
| 137 | "I2C (Addr 0x50)", |
| 138 | }; |
Benoît Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 139 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D'}; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 140 | #endif |
| 141 | |
| 142 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) |
| 143 | #define SDR0_PINSTP_SHIFT 29 |
| 144 | static char *bootstrap_str[] = { |
| 145 | "EBC (8 bits)", |
| 146 | "PCI", |
| 147 | "NAND (8 bits)", |
| 148 | "EBC (16 bits)", |
| 149 | "EBC (16 bits)", |
| 150 | "I2C (Addr 0x54)", |
| 151 | "PCI", |
| 152 | "I2C (Addr 0x52)", |
| 153 | }; |
Benoît Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 154 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 155 | #endif |
| 156 | |
| 157 | #if defined(CONFIG_440EPX) || defined(CONFIG_440GRX) |
| 158 | #define SDR0_PINSTP_SHIFT 29 |
| 159 | static char *bootstrap_str[] = { |
| 160 | "EBC (8 bits)", |
| 161 | "EBC (16 bits)", |
| 162 | "EBC (16 bits)", |
| 163 | "NAND (8 bits)", |
| 164 | "PCI", |
| 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 | |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 172 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 173 | #define SDR0_PINSTP_SHIFT 29 |
| 174 | static char *bootstrap_str[] = { |
| 175 | "EBC (8 bits)", |
| 176 | "EBC (16 bits)", |
| 177 | "PCI", |
| 178 | "PCI", |
| 179 | "EBC (16 bits)", |
| 180 | "NAND (8 bits)", |
| 181 | "I2C (Addr 0x54)", /* A8 */ |
| 182 | "I2C (Addr 0x52)", /* A4 */ |
| 183 | }; |
| 184 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
| 185 | #endif |
| 186 | |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 187 | #if defined(CONFIG_405EZ) |
| 188 | #define SDR0_PINSTP_SHIFT 28 |
| 189 | static char *bootstrap_str[] = { |
| 190 | "EBC (8 bits)", |
| 191 | "SPI (fast)", |
| 192 | "NAND (512 page, 4 addr cycle)", |
| 193 | "I2C (Addr 0x50)", |
| 194 | "EBC (32 bits)", |
| 195 | "I2C (Addr 0x50)", |
| 196 | "NAND (2K page, 5 addr cycle)", |
| 197 | "I2C (Addr 0x50)", |
| 198 | "EBC (16 bits)", |
| 199 | "Reserved", |
| 200 | "NAND (2K page, 4 addr cycle)", |
| 201 | "I2C (Addr 0x50)", |
| 202 | "NAND (512 page, 3 addr cycle)", |
| 203 | "I2C (Addr 0x50)", |
| 204 | "SPI (slow)", |
| 205 | "I2C (Addr 0x50)", |
| 206 | }; |
Benoît Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 207 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', \ |
| 208 | 'I', 'x', 'K', 'L', 'M', 'N', 'O', 'P' }; |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 209 | #endif |
| 210 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 211 | #if defined(CONFIG_405EX) |
| 212 | #define SDR0_PINSTP_SHIFT 29 |
| 213 | static char *bootstrap_str[] = { |
| 214 | "EBC (8 bits)", |
| 215 | "EBC (16 bits)", |
| 216 | "EBC (16 bits)", |
| 217 | "NAND (8 bits)", |
| 218 | "NAND (8 bits)", |
| 219 | "I2C (Addr 0x54)", |
| 220 | "EBC (8 bits)", |
| 221 | "I2C (Addr 0x52)", |
| 222 | }; |
| 223 | static char bootstrap_char[] = { 'A', 'B', 'C', 'D', 'E', 'G', 'F', 'H' }; |
| 224 | #endif |
| 225 | |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 226 | #if defined(SDR0_PINSTP_SHIFT) |
| 227 | static int bootstrap_option(void) |
| 228 | { |
| 229 | unsigned long val; |
| 230 | |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 231 | mfsdr(SDR_PINSTP, val); |
| 232 | return ((val & 0xf0000000) >> SDR0_PINSTP_SHIFT); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 233 | } |
| 234 | #endif /* SDR0_PINSTP_SHIFT */ |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 235 | |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 236 | |
| 237 | #if defined(CONFIG_440) |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 238 | static int do_chip_reset (unsigned long sys0, unsigned long sys1) |
| 239 | { |
| 240 | /* Changes to cpc0_sys0 and cpc0_sys1 require chip |
| 241 | * reset. |
| 242 | */ |
| 243 | mtdcr (cntrl0, mfdcr (cntrl0) | 0x80000000); /* Set SWE */ |
| 244 | mtdcr (cpc0_sys0, sys0); |
| 245 | mtdcr (cpc0_sys1, sys1); |
| 246 | mtdcr (cntrl0, mfdcr (cntrl0) & ~0x80000000); /* Clr SWE */ |
| 247 | mtspr (dbcr0, 0x20000000); /* Reset the chip */ |
| 248 | |
| 249 | return 1; |
| 250 | } |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 251 | #endif |
| 252 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 253 | |
| 254 | int checkcpu (void) |
| 255 | { |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 256 | #if !defined(CONFIG_405) /* not used on Xilinx 405 FPGA implementations */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 257 | uint pvr = get_pvr(); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 258 | ulong clock = gd->cpu_clk; |
| 259 | char buf[32]; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 260 | |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 261 | #if !defined(CONFIG_IOP480) |
Wolfgang Denk | ba999c5 | 2006-10-20 17:54:33 +0200 | [diff] [blame] | 262 | char addstr[64] = ""; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 263 | sys_info_t sys_info; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 264 | |
| 265 | puts ("CPU: "); |
| 266 | |
| 267 | get_sys_info(&sys_info); |
| 268 | |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 269 | puts("AMCC PowerPC 4"); |
| 270 | |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 271 | #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || \ |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 272 | defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \ |
| 273 | defined(CONFIG_405EX) |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 274 | puts("05"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 275 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 276 | #if defined(CONFIG_440) |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 277 | #if defined(CONFIG_460EX) || defined(CONFIG_460GT) |
| 278 | puts("60"); |
| 279 | #else |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 280 | puts("40"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 281 | #endif |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 282 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 283 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 284 | switch (pvr) { |
| 285 | case PVR_405GP_RB: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 286 | puts("GP Rev. B"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 287 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 288 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 289 | case PVR_405GP_RC: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 290 | puts("GP Rev. C"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 291 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 292 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 293 | case PVR_405GP_RD: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 294 | puts("GP Rev. D"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 295 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 296 | |
wdenk | 42dfe7a | 2004-03-14 22:25:36 +0000 | [diff] [blame] | 297 | #ifdef CONFIG_405GP |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 298 | case PVR_405GP_RE: /* 405GP rev E and 405CR rev C have same PVR */ |
| 299 | puts("GP Rev. E"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 300 | break; |
| 301 | #endif |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 302 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 303 | case PVR_405CR_RA: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 304 | puts("CR Rev. A"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 305 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 306 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 307 | case PVR_405CR_RB: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 308 | puts("CR Rev. B"); |
| 309 | break; |
| 310 | |
| 311 | #ifdef CONFIG_405CR |
| 312 | case PVR_405CR_RC: /* 405GP rev E and 405CR rev C have same PVR */ |
| 313 | puts("CR Rev. C"); |
| 314 | break; |
| 315 | #endif |
| 316 | |
| 317 | case PVR_405GPR_RB: |
| 318 | puts("GPr Rev. B"); |
| 319 | break; |
| 320 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 321 | case PVR_405EP_RB: |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 322 | puts("EP Rev. B"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 323 | break; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 324 | |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 325 | case PVR_405EZ_RA: |
| 326 | puts("EZ Rev. A"); |
| 327 | break; |
| 328 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 329 | case PVR_405EX1_RA: |
| 330 | puts("EX Rev. A"); |
| 331 | strcpy(addstr, "Security support"); |
| 332 | break; |
| 333 | |
| 334 | case PVR_405EX2_RA: |
| 335 | puts("EX Rev. A"); |
| 336 | strcpy(addstr, "No Security support"); |
| 337 | break; |
| 338 | |
| 339 | case PVR_405EXR1_RA: |
| 340 | puts("EXr Rev. A"); |
| 341 | strcpy(addstr, "Security support"); |
| 342 | break; |
| 343 | |
| 344 | case PVR_405EXR2_RA: |
| 345 | puts("EXr Rev. A"); |
| 346 | strcpy(addstr, "No Security support"); |
| 347 | break; |
| 348 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 349 | #if defined(CONFIG_440) |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 350 | case PVR_440GP_RB: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 351 | puts("GP Rev. B"); |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 352 | /* See errata 1.12: CHIP_4 */ |
| 353 | if ((mfdcr(cpc0_sys0) != mfdcr(cpc0_strp0)) || |
| 354 | (mfdcr(cpc0_sys1) != mfdcr(cpc0_strp1)) ){ |
| 355 | puts ( "\n\t CPC0_SYSx DCRs corrupted. " |
| 356 | "Resetting chip ...\n"); |
| 357 | udelay( 1000 * 1000 ); /* Give time for serial buf to clear */ |
| 358 | do_chip_reset ( mfdcr(cpc0_strp0), |
| 359 | mfdcr(cpc0_strp1) ); |
| 360 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 361 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 362 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 363 | case PVR_440GP_RC: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 364 | puts("GP Rev. C"); |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 365 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 366 | |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 367 | case PVR_440GX_RA: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 368 | puts("GX Rev. A"); |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 369 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 370 | |
wdenk | ba56f62 | 2004-02-06 23:19:44 +0000 | [diff] [blame] | 371 | case PVR_440GX_RB: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 372 | puts("GX Rev. B"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 373 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 374 | |
stroese | 0a7c539 | 2005-04-07 05:33:41 +0000 | [diff] [blame] | 375 | case PVR_440GX_RC: |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 376 | puts("GX Rev. C"); |
stroese | 0a7c539 | 2005-04-07 05:33:41 +0000 | [diff] [blame] | 377 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 378 | |
Stefan Roese | 57275b6 | 2005-11-01 10:08:03 +0100 | [diff] [blame] | 379 | case PVR_440GX_RF: |
| 380 | puts("GX Rev. F"); |
| 381 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 382 | |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 383 | case PVR_440EP_RA: |
| 384 | puts("EP Rev. A"); |
| 385 | break; |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 386 | |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 387 | #ifdef CONFIG_440EP |
| 388 | 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] | 389 | puts("EP Rev. B"); |
| 390 | break; |
Stefan Roese | 512f8d5 | 2006-05-10 14:10:41 +0200 | [diff] [blame] | 391 | |
| 392 | case PVR_440EP_RC: /* 440EP rev C and 440GR rev B have same PVR */ |
| 393 | puts("EP Rev. C"); |
| 394 | break; |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 395 | #endif /* CONFIG_440EP */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 396 | |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 397 | #ifdef CONFIG_440GR |
| 398 | case PVR_440GR_RA: /* 440EP rev B and 440GR rev A have same PVR */ |
| 399 | puts("GR Rev. A"); |
| 400 | break; |
Stefan Roese | 512f8d5 | 2006-05-10 14:10:41 +0200 | [diff] [blame] | 401 | |
Stefan Roese | 5770a1e | 2006-05-18 19:21:53 +0200 | [diff] [blame] | 402 | 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] | 403 | puts("GR Rev. B"); |
| 404 | break; |
Stefan Roese | 9a8d82f | 2005-10-04 15:00:30 +0200 | [diff] [blame] | 405 | #endif /* CONFIG_440GR */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 406 | #endif /* CONFIG_440 */ |
| 407 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 408 | #ifdef CONFIG_440EPX |
| 409 | 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] | 410 | puts("EPx Rev. A"); |
| 411 | strcpy(addstr, "Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 412 | break; |
| 413 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 414 | 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] | 415 | puts("EPx Rev. A"); |
| 416 | strcpy(addstr, "No Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 417 | break; |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 418 | #endif /* CONFIG_440EPX */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 419 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 420 | #ifdef CONFIG_440GRX |
| 421 | 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] | 422 | puts("GRx Rev. A"); |
| 423 | strcpy(addstr, "Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 424 | break; |
| 425 | |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 426 | 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] | 427 | puts("GRx Rev. A"); |
| 428 | strcpy(addstr, "No Security/Kasumi support"); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 429 | break; |
Stefan Roese | 2902fad | 2007-01-31 16:56:10 +0100 | [diff] [blame] | 430 | #endif /* CONFIG_440GRX */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 431 | |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 432 | case PVR_440SP_6_RAB: |
| 433 | puts("SP Rev. A/B"); |
| 434 | strcpy(addstr, "RAID 6 support"); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 435 | break; |
| 436 | |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 437 | case PVR_440SP_RAB: |
| 438 | puts("SP Rev. A/B"); |
| 439 | strcpy(addstr, "No RAID 6 support"); |
| 440 | break; |
| 441 | |
| 442 | case PVR_440SP_6_RC: |
| 443 | puts("SP Rev. C"); |
| 444 | strcpy(addstr, "RAID 6 support"); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 445 | break; |
| 446 | |
Stefan Roese | e732fae | 2006-11-28 16:09:24 +0100 | [diff] [blame] | 447 | case PVR_440SP_RC: |
| 448 | puts("SP Rev. C"); |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 449 | strcpy(addstr, "No RAID 6 support"); |
| 450 | break; |
| 451 | |
| 452 | case PVR_440SPe_6_RA: |
| 453 | puts("SPe Rev. A"); |
| 454 | strcpy(addstr, "RAID 6 support"); |
Stefan Roese | e732fae | 2006-11-28 16:09:24 +0100 | [diff] [blame] | 455 | break; |
| 456 | |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 457 | case PVR_440SPe_RA: |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 458 | puts("SPe Rev. A"); |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 459 | strcpy(addstr, "No RAID 6 support"); |
| 460 | break; |
| 461 | |
| 462 | case PVR_440SPe_6_RB: |
| 463 | puts("SPe Rev. B"); |
| 464 | strcpy(addstr, "RAID 6 support"); |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 465 | break; |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 466 | |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 467 | case PVR_440SPe_RB: |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 468 | puts("SPe Rev. B"); |
Stefan Roese | 9598177 | 2007-01-13 08:01:03 +0100 | [diff] [blame] | 469 | strcpy(addstr, "No RAID 6 support"); |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 470 | break; |
Marian Balakowicz | fe84b48 | 2006-07-03 23:42:36 +0200 | [diff] [blame] | 471 | |
Stefan Roese | 2801b2d | 2008-03-11 15:05:50 +0100 | [diff] [blame] | 472 | case PVR_460EX_RA: |
| 473 | puts("EX Rev. A"); |
| 474 | strcpy(addstr, "No Security/Kasumi support"); |
| 475 | break; |
| 476 | |
| 477 | case PVR_460EX_SE_RA: |
| 478 | puts("EX Rev. A"); |
| 479 | strcpy(addstr, "Security/Kasumi support"); |
| 480 | break; |
| 481 | |
| 482 | case PVR_460GT_RA: |
| 483 | puts("GT Rev. A"); |
| 484 | strcpy(addstr, "No Security/Kasumi support"); |
| 485 | break; |
| 486 | |
| 487 | case PVR_460GT_SE_RA: |
| 488 | puts("GT Rev. A"); |
| 489 | strcpy(addstr, "Security/Kasumi support"); |
| 490 | break; |
| 491 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 492 | default: |
Stefan Roese | 17f50f22 | 2005-08-04 17:09:16 +0200 | [diff] [blame] | 493 | printf (" UNKNOWN (PVR=%08x)", pvr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 494 | break; |
| 495 | } |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 496 | |
| 497 | printf (" at %s MHz (PLB=%lu, OPB=%lu, EBC=%lu MHz)\n", strmhz(buf, clock), |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 498 | sys_info.freqPLB / 1000000, |
| 499 | get_OPB_freq() / 1000000, |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 500 | sys_info.freqEBC / 1000000); |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 501 | |
Stefan Roese | edf0b54 | 2006-10-18 15:59:35 +0200 | [diff] [blame] | 502 | if (addstr[0] != 0) |
| 503 | printf(" %s\n", addstr); |
| 504 | |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 505 | #if defined(I2C_BOOTROM) |
| 506 | printf (" I2C boot EEPROM %sabled\n", i2c_bootrom_enabled() ? "en" : "dis"); |
Stefan Roese | 90e6f41 | 2007-04-18 12:05:59 +0200 | [diff] [blame] | 507 | #endif /* I2C_BOOTROM */ |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 508 | #if defined(SDR0_PINSTP_SHIFT) |
Benoît Monin | e3cbe1f | 2007-06-04 08:36:05 +0200 | [diff] [blame] | 509 | printf (" Bootstrap Option %c - ", bootstrap_char[bootstrap_option()]); |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 510 | printf ("Boot ROM Location %s\n", bootstrap_str[bootstrap_option()]); |
Wolfgang Denk | ba999c5 | 2006-10-20 17:54:33 +0200 | [diff] [blame] | 511 | #endif /* SDR0_PINSTP_SHIFT */ |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 512 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 513 | #if defined(CONFIG_PCI) && !defined(CONFIG_405EX) |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 514 | printf (" Internal PCI arbiter %sabled", pci_arbiter_enabled() ? "en" : "dis"); |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 515 | #endif |
| 516 | |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 517 | #if defined(PCI_ASYNC) |
| 518 | if (pci_async_enabled()) { |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 519 | printf (", PCI async ext clock used"); |
| 520 | } else { |
| 521 | printf (", PCI sync clock at %lu MHz", |
| 522 | sys_info.freqPLB / sys_info.pllPciDiv / 1000000); |
| 523 | } |
| 524 | #endif |
| 525 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 526 | #if defined(CONFIG_PCI) && !defined(CONFIG_405EX) |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 527 | putc('\n'); |
| 528 | #endif |
| 529 | |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 530 | #if defined(CONFIG_405EP) || defined(CONFIG_405EZ) || defined(CONFIG_405EX) |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 531 | printf (" 16 kB I-Cache 16 kB D-Cache"); |
| 532 | #elif defined(CONFIG_440) |
| 533 | printf (" 32 kB I-Cache 32 kB D-Cache"); |
| 534 | #else |
| 535 | printf (" 16 kB I-Cache %d kB D-Cache", |
| 536 | ((pvr | 0x00000001) == PVR_405GPR_RB) ? 16 : 8); |
| 537 | #endif |
| 538 | #endif /* !defined(CONFIG_IOP480) */ |
| 539 | |
| 540 | #if defined(CONFIG_IOP480) |
| 541 | printf ("PLX IOP480 (PVR=%08x)", pvr); |
| 542 | printf (" at %s MHz:", strmhz(buf, clock)); |
| 543 | printf (" %u kB I-Cache", 4); |
| 544 | printf (" %u kB D-Cache", 2); |
| 545 | #endif |
| 546 | |
| 547 | #endif /* !defined(CONFIG_405) */ |
| 548 | |
| 549 | putc ('\n'); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 550 | |
| 551 | return 0; |
| 552 | } |
| 553 | |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 554 | int ppc440spe_revB() { |
| 555 | unsigned int pvr; |
| 556 | |
| 557 | pvr = get_pvr(); |
Stefan Roese | 5a5c569 | 2007-01-15 09:46:29 +0100 | [diff] [blame] | 558 | if ((pvr == PVR_440SPe_6_RB) || (pvr == PVR_440SPe_RB)) |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 559 | return 1; |
| 560 | else |
| 561 | return 0; |
| 562 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 563 | |
| 564 | /* ------------------------------------------------------------------------- */ |
| 565 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 566 | int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 567 | { |
Stefan Roese | 1f94d16 | 2006-11-27 14:48:41 +0100 | [diff] [blame] | 568 | #if defined(CONFIG_BOARD_RESET) |
| 569 | board_reset(); |
Stefan Roese | 1729b92 | 2006-11-27 14:52:04 +0100 | [diff] [blame] | 570 | #else |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 571 | #if defined(CFG_4xx_RESET_TYPE) |
| 572 | mtspr(dbcr0, CFG_4xx_RESET_TYPE << 28); |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 573 | #else |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 574 | /* |
| 575 | * Initiate system reset in debug control register DBCR |
| 576 | */ |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 577 | mtspr(dbcr0, 0x30000000); |
Stefan Roese | 1729b92 | 2006-11-27 14:52:04 +0100 | [diff] [blame] | 578 | #endif /* defined(CFG_4xx_RESET_TYPE) */ |
Stefan Roese | f344386 | 2006-10-07 11:30:52 +0200 | [diff] [blame] | 579 | #endif /* defined(CONFIG_BOARD_RESET) */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 580 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 581 | return 1; |
| 582 | } |
| 583 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 584 | |
| 585 | /* |
| 586 | * Get timebase clock frequency |
| 587 | */ |
| 588 | unsigned long get_tbclk (void) |
| 589 | { |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 590 | #if !defined(CONFIG_IOP480) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 591 | sys_info_t sys_info; |
| 592 | |
| 593 | get_sys_info(&sys_info); |
| 594 | return (sys_info.freqProcessor); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 595 | #else |
Stefan Roese | 3d9569b | 2005-11-27 19:36:26 +0100 | [diff] [blame] | 596 | return (66000000); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 597 | #endif |
| 598 | |
| 599 | } |
| 600 | |
| 601 | |
| 602 | #if defined(CONFIG_WATCHDOG) |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 603 | void watchdog_reset(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 604 | { |
| 605 | int re_enable = disable_interrupts(); |
| 606 | reset_4xx_watchdog(); |
| 607 | if (re_enable) enable_interrupts(); |
| 608 | } |
| 609 | |
Stefan Roese | c7f69c3 | 2007-11-09 12:18:54 +0100 | [diff] [blame] | 610 | void reset_4xx_watchdog(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 611 | { |
| 612 | /* |
| 613 | * Clear TSR(WIS) bit |
| 614 | */ |
| 615 | mtspr(tsr, 0x40000000); |
| 616 | } |
| 617 | #endif /* CONFIG_WATCHDOG */ |