Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 1 | /* |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 2 | * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 3 | * |
| 4 | * See file CREDITS for list of people who contributed to this |
| 5 | * project. |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of |
| 10 | * the License, or (at your option) any later version. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, |
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 15 | * GNU General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 20 | * MA 02111-1307 USA |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 21 | */ |
| 22 | |
| 23 | #include <common.h> |
| 24 | #include <mpc83xx.h> |
| 25 | #include <ioports.h> |
| 26 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 29 | #ifdef CONFIG_QE |
| 30 | extern qe_iop_conf_t qe_iop_conf_tab[]; |
| 31 | extern void qe_config_iopin(u8 port, u8 pin, int dir, |
| 32 | int open_drain, int assign); |
| 33 | extern void qe_init(uint qe_base); |
| 34 | extern void qe_reset(void); |
| 35 | |
| 36 | static void config_qe_ioports(void) |
| 37 | { |
| 38 | u8 port, pin; |
| 39 | int dir, open_drain, assign; |
| 40 | int i; |
| 41 | |
| 42 | for (i = 0; qe_iop_conf_tab[i].assign != QE_IOP_TAB_END; i++) { |
| 43 | port = qe_iop_conf_tab[i].port; |
| 44 | pin = qe_iop_conf_tab[i].pin; |
| 45 | dir = qe_iop_conf_tab[i].dir; |
| 46 | open_drain = qe_iop_conf_tab[i].open_drain; |
| 47 | assign = qe_iop_conf_tab[i].assign; |
| 48 | qe_config_iopin(port, pin, dir, open_drain, assign); |
| 49 | } |
| 50 | } |
| 51 | #endif |
| 52 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 53 | /* |
| 54 | * Breathe some life into the CPU... |
| 55 | * |
| 56 | * Set up the memory map, |
| 57 | * initialize a bunch of registers, |
| 58 | * initialize the UPM's |
| 59 | */ |
| 60 | void cpu_init_f (volatile immap_t * im) |
| 61 | { |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 62 | /* Pointer is writable since we allocated a register for it */ |
| 63 | gd = (gd_t *) (CFG_INIT_RAM_ADDR + CFG_GBL_DATA_OFFSET); |
| 64 | |
| 65 | /* Clear initial global data */ |
| 66 | memset ((void *) gd, 0, sizeof (gd_t)); |
| 67 | |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 68 | /* system performance tweaking */ |
| 69 | |
| 70 | #ifdef CFG_ACR_PIPE_DEP |
| 71 | /* Arbiter pipeline depth */ |
Kumar Gala | 4feab4d | 2007-02-27 23:51:42 -0600 | [diff] [blame] | 72 | im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) | |
| 73 | (CFG_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 74 | #endif |
| 75 | |
Dave Liu | b05884e | 2008-01-11 18:46:50 +0800 | [diff] [blame] | 76 | #ifdef CFG_SPCR_TSECEP |
| 77 | /* eTSEC Emergency priority */ |
| 78 | im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSECEP) | (CFG_SPCR_TSECEP << SPCR_TSECEP_SHIFT); |
| 79 | #endif |
| 80 | |
Kim Phillips | 9e89647 | 2008-01-16 12:06:16 -0600 | [diff] [blame^] | 81 | #ifdef CFG_ACR_RPTCNT |
| 82 | /* Arbiter repeat count */ |
| 83 | im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) | |
| 84 | (CFG_ACR_RPTCNT << ACR_RPTCNT_SHIFT); |
| 85 | #endif |
| 86 | |
| 87 | #ifdef CFG_SPCR_TSECEP |
| 88 | /* all TSEC's Emergency priority */ |
| 89 | im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSECEP) | |
| 90 | (CFG_SPCR_TSECEP << SPCR_TSECEP_SHIFT); |
| 91 | #endif |
| 92 | |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 93 | #ifdef CFG_SPCR_TSEC1EP |
| 94 | /* TSEC1 Emergency priority */ |
Kim Phillips | 9e89647 | 2008-01-16 12:06:16 -0600 | [diff] [blame^] | 95 | im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC1EP) | |
| 96 | (CFG_SPCR_TSEC1EP << SPCR_TSEC1EP_SHIFT); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 97 | #endif |
| 98 | |
| 99 | #ifdef CFG_SPCR_TSEC2EP |
| 100 | /* TSEC2 Emergency priority */ |
Kim Phillips | 9e89647 | 2008-01-16 12:06:16 -0600 | [diff] [blame^] | 101 | im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_TSEC2EP) | |
| 102 | (CFG_SPCR_TSEC2EP << SPCR_TSEC2EP_SHIFT); |
Kumar Gala | 4feab4d | 2007-02-27 23:51:42 -0600 | [diff] [blame] | 103 | #endif |
| 104 | |
| 105 | #ifdef CFG_SCCR_ENCCM |
| 106 | /* Encryption clock mode */ |
Kim Phillips | 9e89647 | 2008-01-16 12:06:16 -0600 | [diff] [blame^] | 107 | im->clk.sccr = (im->clk.sccr & ~SCCR_ENCCM) | |
| 108 | (CFG_SCCR_ENCCM << SCCR_PCICM_SHIFT); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 109 | #endif |
| 110 | |
Kim Phillips | 9e89647 | 2008-01-16 12:06:16 -0600 | [diff] [blame^] | 111 | #ifdef CFG_SCCR_PCICM |
| 112 | /* PCI & DMA clock mode */ |
| 113 | im->clk.sccr = (im->clk.sccr & ~SCCR_PCICM) | |
| 114 | (CFG_SCCR_PCICM << SCCR_PCICM_SHIFT); |
| 115 | #endif |
| 116 | |
| 117 | #ifdef CFG_SCCR_TSECCM |
| 118 | /* all TSEC's clock mode */ |
| 119 | im->clk.sccr = (im->clk.sccr & ~SCCR_TSECCM) | |
| 120 | (CFG_SCCR_TSECCM << SCCR_TSECCM_SHIFT); |
| 121 | #endif |
| 122 | |
| 123 | #ifdef CFG_SCCR_TSEC1CM |
| 124 | /* TSEC1 clock mode */ |
| 125 | im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC1CM) | |
| 126 | (CFG_SCCR_TSEC1CM << SCCR_TSEC1CM_SHIFT); |
| 127 | #endif |
| 128 | |
| 129 | #ifdef CFG_SCCR_TSEC2CM |
| 130 | /* TSEC2 clock mode */ |
| 131 | im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC2CM) | |
| 132 | (CFG_SCCR_TSEC2CM << SCCR_TSEC2CM_SHIFT); |
| 133 | #endif |
| 134 | |
| 135 | #ifdef CFG_SCCR_TSEC1ON |
| 136 | /* TSEC1 clock switch */ |
| 137 | im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC1ON) | |
| 138 | (CFG_SCCR_TSEC1ON << SCCR_TSEC1ON_SHIFT); |
| 139 | #endif |
| 140 | |
| 141 | #ifdef CFG_SCCR_TSEC2ON |
| 142 | /* TSEC2 clock switch */ |
| 143 | im->clk.sccr = (im->clk.sccr & ~SCCR_TSEC2ON) | |
| 144 | (CFG_SCCR_TSEC2ON << SCCR_TSEC2ON_SHIFT); |
| 145 | #endif |
| 146 | |
| 147 | #ifdef CFG_SCCR_USBMPHCM |
| 148 | /* USB MPH clock mode */ |
| 149 | im->clk.sccr = (im->clk.sccr & ~SCCR_USBMPHCM) | |
| 150 | (CFG_SCCR_USBMPHCM << SCCR_USBMPHCM_SHIFT); |
| 151 | #endif |
| 152 | |
| 153 | #ifdef CFG_SCCR_USBDRCM |
| 154 | /* USB DR clock mode */ |
| 155 | im->clk.sccr = (im->clk.sccr & ~SCCR_USBDRCM) | |
| 156 | (CFG_SCCR_USBDRCM << SCCR_USBDRCM_SHIFT); |
| 157 | #endif |
| 158 | |
| 159 | #ifdef CFG_SCCR_SATACM |
| 160 | /* SATA controller clock mode */ |
| 161 | im->clk.sccr = (im->clk.sccr & ~SCCR_SATACM) | |
| 162 | (CFG_SCCR_SATACM << SCCR_SATACM_SHIFT); |
Timur Tabi | 2ad6b51 | 2006-10-31 18:44:42 -0600 | [diff] [blame] | 163 | #endif |
| 164 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 165 | /* RSR - Reset Status Register - clear all status (4.6.1.3) */ |
| 166 | gd->reset_status = im->reset.rsr; |
| 167 | im->reset.rsr = ~(RSR_RES); |
| 168 | |
| 169 | /* |
| 170 | * RMR - Reset Mode Register |
| 171 | * contains checkstop reset enable (4.6.1.4) |
| 172 | */ |
| 173 | im->reset.rmr = (RMR_CSRE & (1<<RMR_CSRE_SHIFT)); |
| 174 | |
| 175 | /* LCRR - Clock Ratio Register (10.3.1.16) */ |
| 176 | im->lbus.lcrr = CFG_LCRR; |
| 177 | |
| 178 | /* Enable Time Base & Decrimenter ( so we will have udelay() )*/ |
| 179 | im->sysconf.spcr |= SPCR_TBEN; |
| 180 | |
| 181 | /* System General Purpose Register */ |
Kumar Gala | 9260a56 | 2006-01-11 11:12:57 -0600 | [diff] [blame] | 182 | #ifdef CFG_SICRH |
| 183 | im->sysconf.sicrh = CFG_SICRH; |
| 184 | #endif |
| 185 | #ifdef CFG_SICRL |
| 186 | im->sysconf.sicrl = CFG_SICRL; |
| 187 | #endif |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 188 | /* DDR control driver register */ |
| 189 | #ifdef CFG_DDRCDR |
| 190 | im->sysconf.ddrcdr = CFG_DDRCDR; |
| 191 | #endif |
Dave Liu | 19580e6 | 2007-09-18 12:37:57 +0800 | [diff] [blame] | 192 | /* Output buffer impedance register */ |
| 193 | #ifdef CFG_OBIR |
| 194 | im->sysconf.obir = CFG_OBIR; |
| 195 | #endif |
Dave Liu | 24c3aca | 2006-12-07 21:13:15 +0800 | [diff] [blame] | 196 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 197 | #ifdef CONFIG_QE |
| 198 | /* Config QE ioports */ |
| 199 | config_qe_ioports(); |
| 200 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 201 | |
| 202 | /* |
| 203 | * Memory Controller: |
| 204 | */ |
| 205 | |
| 206 | /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary |
| 207 | * addresses - these have to be modified later when FLASH size |
| 208 | * has been determined |
| 209 | */ |
| 210 | |
| 211 | #if defined(CFG_BR0_PRELIM) \ |
| 212 | && defined(CFG_OR0_PRELIM) \ |
| 213 | && defined(CFG_LBLAWBAR0_PRELIM) \ |
| 214 | && defined(CFG_LBLAWAR0_PRELIM) |
| 215 | im->lbus.bank[0].br = CFG_BR0_PRELIM; |
| 216 | im->lbus.bank[0].or = CFG_OR0_PRELIM; |
| 217 | im->sysconf.lblaw[0].bar = CFG_LBLAWBAR0_PRELIM; |
| 218 | im->sysconf.lblaw[0].ar = CFG_LBLAWAR0_PRELIM; |
| 219 | #else |
| 220 | #error CFG_BR0_PRELIM, CFG_OR0_PRELIM, CFG_LBLAWBAR0_PRELIM & CFG_LBLAWAR0_PRELIM must be defined |
| 221 | #endif |
| 222 | |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 223 | #if defined(CFG_BR1_PRELIM) && defined(CFG_OR1_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 224 | im->lbus.bank[1].br = CFG_BR1_PRELIM; |
| 225 | im->lbus.bank[1].or = CFG_OR1_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 226 | #endif |
| 227 | #if defined(CFG_LBLAWBAR1_PRELIM) && defined(CFG_LBLAWAR1_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 228 | im->sysconf.lblaw[1].bar = CFG_LBLAWBAR1_PRELIM; |
| 229 | im->sysconf.lblaw[1].ar = CFG_LBLAWAR1_PRELIM; |
| 230 | #endif |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 231 | #if defined(CFG_BR2_PRELIM) && defined(CFG_OR2_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 232 | im->lbus.bank[2].br = CFG_BR2_PRELIM; |
| 233 | im->lbus.bank[2].or = CFG_OR2_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 234 | #endif |
| 235 | #if defined(CFG_LBLAWBAR2_PRELIM) && defined(CFG_LBLAWAR2_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 236 | im->sysconf.lblaw[2].bar = CFG_LBLAWBAR2_PRELIM; |
| 237 | im->sysconf.lblaw[2].ar = CFG_LBLAWAR2_PRELIM; |
| 238 | #endif |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 239 | #if defined(CFG_BR3_PRELIM) && defined(CFG_OR3_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 240 | im->lbus.bank[3].br = CFG_BR3_PRELIM; |
| 241 | im->lbus.bank[3].or = CFG_OR3_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 242 | #endif |
| 243 | #if defined(CFG_LBLAWBAR3_PRELIM) && defined(CFG_LBLAWAR3_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 244 | im->sysconf.lblaw[3].bar = CFG_LBLAWBAR3_PRELIM; |
| 245 | im->sysconf.lblaw[3].ar = CFG_LBLAWAR3_PRELIM; |
| 246 | #endif |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 247 | #if defined(CFG_BR4_PRELIM) && defined(CFG_OR4_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 248 | im->lbus.bank[4].br = CFG_BR4_PRELIM; |
| 249 | im->lbus.bank[4].or = CFG_OR4_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 250 | #endif |
| 251 | #if defined(CFG_LBLAWBAR4_PRELIM) && defined(CFG_LBLAWAR4_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 252 | im->sysconf.lblaw[4].bar = CFG_LBLAWBAR4_PRELIM; |
| 253 | im->sysconf.lblaw[4].ar = CFG_LBLAWAR4_PRELIM; |
| 254 | #endif |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 255 | #if defined(CFG_BR5_PRELIM) && defined(CFG_OR5_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 256 | im->lbus.bank[5].br = CFG_BR5_PRELIM; |
| 257 | im->lbus.bank[5].or = CFG_OR5_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 258 | #endif |
| 259 | #if defined(CFG_LBLAWBAR5_PRELIM) && defined(CFG_LBLAWAR5_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 260 | im->sysconf.lblaw[5].bar = CFG_LBLAWBAR5_PRELIM; |
| 261 | im->sysconf.lblaw[5].ar = CFG_LBLAWAR5_PRELIM; |
| 262 | #endif |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 263 | #if defined(CFG_BR6_PRELIM) && defined(CFG_OR6_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 264 | im->lbus.bank[6].br = CFG_BR6_PRELIM; |
| 265 | im->lbus.bank[6].or = CFG_OR6_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 266 | #endif |
| 267 | #if defined(CFG_LBLAWBAR6_PRELIM) && defined(CFG_LBLAWAR6_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 268 | im->sysconf.lblaw[6].bar = CFG_LBLAWBAR6_PRELIM; |
| 269 | im->sysconf.lblaw[6].ar = CFG_LBLAWAR6_PRELIM; |
| 270 | #endif |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 271 | #if defined(CFG_BR7_PRELIM) && defined(CFG_OR7_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 272 | im->lbus.bank[7].br = CFG_BR7_PRELIM; |
| 273 | im->lbus.bank[7].or = CFG_OR7_PRELIM; |
Kumar Gala | c99f384 | 2006-01-25 16:12:46 -0600 | [diff] [blame] | 274 | #endif |
| 275 | #if defined(CFG_LBLAWBAR7_PRELIM) && defined(CFG_LBLAWAR7_PRELIM) |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 276 | im->sysconf.lblaw[7].bar = CFG_LBLAWBAR7_PRELIM; |
| 277 | im->sysconf.lblaw[7].ar = CFG_LBLAWAR7_PRELIM; |
| 278 | #endif |
Kumar Gala | a15b44d | 2006-01-11 11:21:14 -0600 | [diff] [blame] | 279 | #ifdef CFG_GPIO1_PRELIM |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 280 | im->gpio[0].dir = CFG_GPIO1_DIR; |
| 281 | im->gpio[0].dat = CFG_GPIO1_DAT; |
Kumar Gala | a15b44d | 2006-01-11 11:21:14 -0600 | [diff] [blame] | 282 | #endif |
| 283 | #ifdef CFG_GPIO2_PRELIM |
Dave Liu | e080313 | 2006-12-07 21:11:58 +0800 | [diff] [blame] | 284 | im->gpio[1].dir = CFG_GPIO2_DIR; |
| 285 | im->gpio[1].dat = CFG_GPIO2_DAT; |
Kumar Gala | a15b44d | 2006-01-11 11:21:14 -0600 | [diff] [blame] | 286 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 287 | } |
| 288 | |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 289 | int cpu_init_r (void) |
| 290 | { |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 291 | #ifdef CONFIG_QE |
Timur Tabi | d239d74 | 2006-11-03 12:00:28 -0600 | [diff] [blame] | 292 | uint qe_base = CFG_IMMR + 0x00100000; /* QE immr base */ |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 293 | qe_init(qe_base); |
| 294 | qe_reset(); |
| 295 | #endif |
Eran Liberty | f046ccd | 2005-07-28 10:08:46 -0500 | [diff] [blame] | 296 | return 0; |
| 297 | } |
Dave Liu | 9be39a6 | 2007-06-25 10:41:56 +0800 | [diff] [blame] | 298 | |
| 299 | /* |
| 300 | * Figure out the cause of the reset |
| 301 | */ |
| 302 | int prt_83xx_rsr(void) |
| 303 | { |
| 304 | static struct { |
| 305 | ulong mask; |
| 306 | char *desc; |
| 307 | } bits[] = { |
| 308 | { |
| 309 | RSR_SWSR, "Software Soft"}, { |
| 310 | RSR_SWHR, "Software Hard"}, { |
| 311 | RSR_JSRS, "JTAG Soft"}, { |
| 312 | RSR_CSHR, "Check Stop"}, { |
| 313 | RSR_SWRS, "Software Watchdog"}, { |
| 314 | RSR_BMRS, "Bus Monitor"}, { |
| 315 | RSR_SRS, "External/Internal Soft"}, { |
| 316 | RSR_HRS, "External/Internal Hard"} |
| 317 | }; |
| 318 | static int n = sizeof bits / sizeof bits[0]; |
| 319 | ulong rsr = gd->reset_status; |
| 320 | int i; |
| 321 | char *sep; |
| 322 | |
| 323 | puts("Reset Status:"); |
| 324 | |
| 325 | sep = " "; |
| 326 | for (i = 0; i < n; i++) |
| 327 | if (rsr & bits[i].mask) { |
| 328 | printf("%s%s", sep, bits[i].desc); |
| 329 | sep = ", "; |
| 330 | } |
| 331 | puts("\n\n"); |
| 332 | return 0; |
| 333 | } |