wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /* |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 2 | * (C) Copyright 2000-2003 |
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 | |
| 40 | |
| 41 | #if defined(CONFIG_440) |
| 42 | static int do_chip_reset( unsigned long sys0, unsigned long sys1 ); |
| 43 | #endif |
| 44 | |
| 45 | /* ------------------------------------------------------------------------- */ |
| 46 | |
| 47 | int checkcpu (void) |
| 48 | { |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 49 | #if defined(CONFIG_405GP) || \ |
| 50 | defined(CONFIG_405CR) || \ |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 51 | defined(CONFIG_405EP) || \ |
| 52 | defined(CONFIG_440) || \ |
| 53 | defined(CONFIG_IOP480) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 54 | uint pvr = get_pvr(); |
| 55 | #endif |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 56 | #if defined(CONFIG_405GP) || \ |
| 57 | defined(CONFIG_405CR) || \ |
wdenk | 12f3424 | 2003-09-02 22:48:03 +0000 | [diff] [blame] | 58 | defined(CONFIG_405EP) || \ |
| 59 | defined(CONFIG_IOP480) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 60 | DECLARE_GLOBAL_DATA_PTR; |
| 61 | |
| 62 | ulong clock = gd->cpu_clk; |
| 63 | char buf[32]; |
| 64 | #endif |
| 65 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 66 | #if defined(CONFIG_405GP) || defined(CONFIG_405CR) || defined(CONFIG_405EP) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 67 | PPC405_SYS_INFO sys_info; |
| 68 | |
| 69 | puts ("CPU: "); |
| 70 | |
| 71 | get_sys_info(&sys_info); |
| 72 | |
| 73 | #if CONFIG_405GP |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 74 | puts ("IBM PowerPC 405GP"); |
stroese | baa3d52 | 2003-04-04 16:00:33 +0000 | [diff] [blame] | 75 | if (pvr == PVR_405GPR_RB) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 76 | putc('r'); |
| 77 | } |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 78 | puts (" Rev. "); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 79 | #endif |
| 80 | #if CONFIG_405CR |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 81 | puts ("IBM PowerPC 405CR Rev. "); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 82 | #endif |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 83 | #if CONFIG_405EP |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 84 | puts ("IBM PowerPC 405EP Rev. "); |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 85 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 86 | switch (pvr) { |
| 87 | case PVR_405GP_RB: |
stroese | baa3d52 | 2003-04-04 16:00:33 +0000 | [diff] [blame] | 88 | case PVR_405GPR_RB: |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 89 | putc('B'); |
| 90 | break; |
| 91 | case PVR_405GP_RC: |
| 92 | #if CONFIG_405CR |
| 93 | case PVR_405CR_RC: |
| 94 | #endif |
| 95 | putc('C'); |
| 96 | break; |
| 97 | case PVR_405GP_RD: |
| 98 | putc('D'); |
| 99 | break; |
| 100 | #if CONFIG_405GP |
| 101 | case PVR_405GP_RE: |
| 102 | putc('E'); |
| 103 | break; |
| 104 | #endif |
| 105 | case PVR_405CR_RA: |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 106 | putc('A'); |
| 107 | break; |
| 108 | case PVR_405CR_RB: |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 109 | case PVR_405EP_RB: |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 110 | putc('B'); |
| 111 | break; |
| 112 | default: |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 113 | printf ("? (PVR=%08x)", pvr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 114 | break; |
| 115 | } |
| 116 | |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 117 | printf (" at %s MHz (PLB=%lu, OPB=%lu, EBC=%lu MHz)\n", strmhz(buf, clock), |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 118 | sys_info.freqPLB / 1000000, |
| 119 | sys_info.freqPLB / sys_info.pllOpbDiv / 1000000, |
| 120 | sys_info.freqPLB / sys_info.pllExtBusDiv / 1000000); |
| 121 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 122 | #if defined(CONFIG_405GP) |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 123 | if (mfdcr(strap) & PSR_PCI_ASYNC_EN) { |
| 124 | printf (" PCI async ext clock used, "); |
| 125 | } else { |
| 126 | printf (" PCI sync clock at %lu MHz, ", |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 127 | sys_info.freqPLB / sys_info.pllPciDiv / 1000000); |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 128 | } |
| 129 | printf ("%sternal PCI arbiter enabled\n", |
| 130 | (mfdcr(strap) & PSR_PCI_ARBIT_EN) ? "in" : "ex"); |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 131 | #elif defined(CONFIG_405EP) |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 132 | printf (" IIC Boot EEPROM %sabled\n", |
| 133 | (mfdcr(cpc0_boot) & CPC0_BOOT_SEP) ? "en" : "dis"); |
| 134 | printf (" PCI async ext clock used, "); |
| 135 | printf ("%sternal PCI arbiter enabled\n", |
| 136 | (mfdcr(cpc0_pci) & CPC0_PCI_ARBIT_EN) ? "in" : "ex"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 137 | #endif |
| 138 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 139 | #if defined(CONFIG_405EP) |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 140 | printf (" 16 kB I-Cache 16 kB D-Cache"); |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 141 | #else |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 142 | printf (" 16 kB I-Cache %d kB D-Cache", |
| 143 | ((pvr | 0x00000001) == PVR_405GPR_RB) ? 16 : 8); |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 144 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 145 | #endif /* defined(CONFIG_405GP) || defined(CONFIG_405CR) */ |
| 146 | |
| 147 | #ifdef CONFIG_IOP480 |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 148 | printf ("PLX IOP480 (PVR=%08x)", pvr); |
| 149 | printf (" at %s MHz:", strmhz(buf, clock)); |
| 150 | printf (" %u kB I-Cache", 4); |
| 151 | printf (" %u kB D-Cache", 2); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 152 | #endif |
| 153 | |
| 154 | #if defined(CONFIG_440) |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 155 | puts ("IBM PowerPC 440 Rev. "); |
| 156 | switch(pvr) { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 157 | case PVR_440GP_RB: |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 158 | putc('B'); |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 159 | /* See errata 1.12: CHIP_4 */ |
| 160 | if ((mfdcr(cpc0_sys0) != mfdcr(cpc0_strp0)) || |
| 161 | (mfdcr(cpc0_sys1) != mfdcr(cpc0_strp1)) ){ |
| 162 | puts ( "\n\t CPC0_SYSx DCRs corrupted. " |
| 163 | "Resetting chip ...\n"); |
| 164 | udelay( 1000 * 1000 ); /* Give time for serial buf to clear */ |
| 165 | do_chip_reset ( mfdcr(cpc0_strp0), |
| 166 | mfdcr(cpc0_strp1) ); |
| 167 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 168 | break; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 169 | case PVR_440GP_RC: |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 170 | putc('C'); |
| 171 | break; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 172 | default: |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 173 | printf ("UNKNOWN (PVR=%08x)", pvr); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 174 | break; |
| 175 | } |
| 176 | #endif |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 177 | puts ("\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 178 | |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | |
| 183 | /* ------------------------------------------------------------------------- */ |
| 184 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 185 | int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 186 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 187 | /* |
| 188 | * Initiate system reset in debug control register DBCR |
| 189 | */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 190 | __asm__ __volatile__("lis 3, 0x3000" ::: "r3"); |
| 191 | #if defined(CONFIG_440) |
| 192 | __asm__ __volatile__("mtspr 0x134, 3"); |
| 193 | #else |
| 194 | __asm__ __volatile__("mtspr 0x3f2, 3"); |
| 195 | #endif |
| 196 | return 1; |
| 197 | } |
| 198 | |
| 199 | #if defined(CONFIG_440) |
| 200 | static |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 201 | int do_chip_reset (unsigned long sys0, unsigned long sys1) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 202 | { |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 203 | /* Changes to cpc0_sys0 and cpc0_sys1 require chip |
| 204 | * reset. |
| 205 | */ |
| 206 | mtdcr (cntrl0, mfdcr (cntrl0) | 0x80000000); /* Set SWE */ |
| 207 | mtdcr (cpc0_sys0, sys0); |
| 208 | mtdcr (cpc0_sys1, sys1); |
| 209 | mtdcr (cntrl0, mfdcr (cntrl0) & ~0x80000000); /* Clr SWE */ |
| 210 | mtspr (dbcr0, 0x20000000); /* Reset the chip */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 211 | |
wdenk | 4d81677 | 2003-09-03 14:03:26 +0000 | [diff] [blame] | 212 | return 1; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 213 | } |
| 214 | #endif |
| 215 | |
| 216 | |
| 217 | /* |
| 218 | * Get timebase clock frequency |
| 219 | */ |
| 220 | unsigned long get_tbclk (void) |
| 221 | { |
| 222 | #if defined(CONFIG_440) |
| 223 | |
| 224 | sys_info_t sys_info; |
| 225 | |
| 226 | get_sys_info(&sys_info); |
| 227 | return (sys_info.freqProcessor); |
| 228 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 229 | #elif defined(CONFIG_405GP) || \ |
| 230 | defined(CONFIG_405CR) || \ |
| 231 | defined(CONFIG_405) || \ |
| 232 | defined(CONFIG_405EP) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 233 | |
| 234 | PPC405_SYS_INFO sys_info; |
| 235 | |
| 236 | get_sys_info(&sys_info); |
| 237 | return (sys_info.freqProcessor); |
| 238 | |
| 239 | #elif defined(CONFIG_IOP480) |
| 240 | |
| 241 | return (66000000); |
| 242 | |
| 243 | #else |
| 244 | |
| 245 | # error get_tbclk() not implemented |
| 246 | |
| 247 | #endif |
| 248 | |
| 249 | } |
| 250 | |
| 251 | |
| 252 | #if defined(CONFIG_WATCHDOG) |
| 253 | void |
| 254 | watchdog_reset(void) |
| 255 | { |
| 256 | int re_enable = disable_interrupts(); |
| 257 | reset_4xx_watchdog(); |
| 258 | if (re_enable) enable_interrupts(); |
| 259 | } |
| 260 | |
| 261 | void |
| 262 | reset_4xx_watchdog(void) |
| 263 | { |
| 264 | /* |
| 265 | * Clear TSR(WIS) bit |
| 266 | */ |
| 267 | mtspr(tsr, 0x40000000); |
| 268 | } |
| 269 | #endif /* CONFIG_WATCHDOG */ |