wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2003 |
| 3 | * Martin Winistoerfer, martinwinistoerfer@gmx.ch. |
| 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 |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 20 | * Foundation, |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | /* |
| 24 | * File: cpu.c |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 25 | * |
| 26 | * Discription: Some cpu specific function for watchdog, |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 27 | * cpu version test, clock setting ... |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 28 | * |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 29 | */ |
| 30 | |
| 31 | |
| 32 | #include <common.h> |
| 33 | #include <watchdog.h> |
| 34 | #include <command.h> |
| 35 | #include <mpc5xx.h> |
| 36 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 37 | DECLARE_GLOBAL_DATA_PTR; |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 38 | |
| 39 | #if (defined(CONFIG_MPC555)) |
| 40 | # define ID_STR "MPC555/556" |
| 41 | |
| 42 | /* |
| 43 | * Check version of cpu with Processor Version Register (PVR) |
| 44 | */ |
| 45 | static int check_cpu_version (long clock, uint pvr, uint immr) |
| 46 | { |
| 47 | char buf[32]; |
| 48 | /* The highest 16 bits should be 0x0002 for a MPC555/556 */ |
| 49 | if ((pvr >> 16) == 0x0002) { |
| 50 | printf (" " ID_STR " Version %x", (pvr >> 16)); |
| 51 | printf (" at %s MHz:", strmhz (buf, clock)); |
| 52 | } else { |
| 53 | printf ("Not supported cpu version"); |
| 54 | return -1; |
| 55 | } |
| 56 | return 0; |
| 57 | } |
| 58 | #endif /* CONFIG_MPC555 */ |
| 59 | |
| 60 | |
| 61 | /* |
| 62 | * Check version of mpc5xx |
| 63 | */ |
| 64 | int checkcpu (void) |
| 65 | { |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 66 | ulong clock = gd->cpu_clk; |
| 67 | uint immr = get_immr (0); /* Return full IMMR contents */ |
| 68 | uint pvr = get_pvr (); /* Retrieve PVR register */ |
| 69 | |
| 70 | puts ("CPU: "); |
| 71 | |
| 72 | return check_cpu_version (clock, pvr, immr); |
| 73 | } |
| 74 | |
| 75 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 76 | * Called by macro WATCHDOG_RESET |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 77 | */ |
| 78 | #if defined(CONFIG_WATCHDOG) |
| 79 | void watchdog_reset (void) |
| 80 | { |
| 81 | int re_enable = disable_interrupts (); |
| 82 | |
| 83 | reset_5xx_watchdog ((immap_t *) CFG_IMMR); |
| 84 | if (re_enable) |
| 85 | enable_interrupts (); |
| 86 | } |
| 87 | |
| 88 | /* |
| 89 | * Will clear software reset |
| 90 | */ |
| 91 | void reset_5xx_watchdog (volatile immap_t * immr) |
| 92 | { |
| 93 | /* Use the MPC5xx Internal Watchdog */ |
| 94 | immr->im_siu_conf.sc_swsr = 0x556c; /* Prevent SW time-out */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 95 | immr->im_siu_conf.sc_swsr = 0xaa39; |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | #endif /* CONFIG_WATCHDOG */ |
| 99 | |
| 100 | |
| 101 | /* |
| 102 | * Get timebase clock frequency |
| 103 | */ |
| 104 | unsigned long get_tbclk (void) |
| 105 | { |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 106 | volatile immap_t *immr = (volatile immap_t *) CFG_IMMR; |
| 107 | ulong oscclk, factor; |
| 108 | |
| 109 | if (immr->im_clkrst.car_sccr & SCCR_TBS) { |
| 110 | return (gd->cpu_clk / 16); |
| 111 | } |
| 112 | |
| 113 | factor = (((CFG_PLPRCR) & PLPRCR_MF_MSK) >> PLPRCR_MF_SHIFT) + 1; |
| 114 | |
| 115 | oscclk = gd->cpu_clk / factor; |
| 116 | |
| 117 | if ((immr->im_clkrst.car_sccr & SCCR_RTSEL) == 0 || factor > 2) { |
| 118 | return (oscclk / 4); |
| 119 | } |
| 120 | return (oscclk / 16); |
| 121 | } |
| 122 | |
wdenk | b6e4c40 | 2004-01-02 16:05:07 +0000 | [diff] [blame] | 123 | void dcache_enable (void) |
| 124 | { |
| 125 | return; |
| 126 | } |
| 127 | |
| 128 | void dcache_disable (void) |
| 129 | { |
| 130 | return; |
| 131 | } |
| 132 | |
| 133 | int dcache_status (void) |
| 134 | { |
| 135 | return 0; /* always off */ |
| 136 | } |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 137 | |
| 138 | /* |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 139 | * Reset board |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 140 | */ |
| 141 | int do_reset (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[]) |
| 142 | { |
wdenk | b6e4c40 | 2004-01-02 16:05:07 +0000 | [diff] [blame] | 143 | #if defined(CONFIG_PATI) |
| 144 | volatile ulong *addr = (ulong *) CFG_RESET_ADDRESS; |
| 145 | *addr = 1; |
| 146 | #else |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 147 | ulong addr; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 148 | |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 149 | /* Interrupts off, enable reset */ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 150 | __asm__ volatile (" mtspr 81, %r0 \n\t" |
wdenk | cceb871 | 2003-06-23 18:12:28 +0000 | [diff] [blame] | 151 | " mfmsr %r3 \n\t" |
| 152 | " rlwinm %r31,%r3,0,25,23\n\t" |
| 153 | " mtmsr %r31 \n\t"); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 154 | /* |
| 155 | * Trying to execute the next instruction at a non-existing address |
| 156 | * should cause a machine check, resulting in reset |
| 157 | */ |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 158 | #ifdef CFG_RESET_ADDRESS |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 159 | addr = CFG_RESET_ADDRESS; |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 160 | #else |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 161 | /* |
| 162 | * note: when CFG_MONITOR_BASE points to a RAM address, CFG_MONITOR_BASE * - sizeof (ulong) is usually a valid address. Better pick an address |
| 163 | * known to be invalid on your system and assign it to CFG_RESET_ADDRESS. |
| 164 | * "(ulong)-1" used to be a good choice for many systems... |
| 165 | */ |
| 166 | addr = CFG_MONITOR_BASE - sizeof (ulong); |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 167 | #endif |
| 168 | ((void (*) (void)) addr) (); |
wdenk | b6e4c40 | 2004-01-02 16:05:07 +0000 | [diff] [blame] | 169 | #endif /* #if defined(CONFIG_PATI) */ |
wdenk | 0db5bca | 2003-03-31 17:27:09 +0000 | [diff] [blame] | 170 | return 1; |
| 171 | } |