wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 1 | /* |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 2 | * (C) Copyright 2000-2007 |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +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 | #include <common.h> |
| 25 | #include <watchdog.h> |
Stefan Roese | d6c61aa | 2005-08-16 18:18:00 +0200 | [diff] [blame] | 26 | #include <ppc4xx_enet.h> |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 27 | #include <asm/processor.h> |
Stefan Roese | 0d974d5 | 2007-03-24 15:57:09 +0100 | [diff] [blame] | 28 | #include <asm/gpio.h> |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 29 | #include <ppc4xx.h> |
| 30 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 31 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) |
| 32 | DECLARE_GLOBAL_DATA_PTR; |
| 33 | #endif |
| 34 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 35 | #ifdef CFG_INIT_DCACHE_CS |
| 36 | # if (CFG_INIT_DCACHE_CS == 0) |
| 37 | # define PBxAP pb0ap |
| 38 | # define PBxCR pb0cr |
| 39 | # if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR)) |
| 40 | # define PBxAP_VAL CFG_EBC_PB0AP |
| 41 | # define PBxCR_VAL CFG_EBC_PB0CR |
| 42 | # endif |
| 43 | # endif |
| 44 | # if (CFG_INIT_DCACHE_CS == 1) |
| 45 | # define PBxAP pb1ap |
| 46 | # define PBxCR pb1cr |
| 47 | # if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR)) |
| 48 | # define PBxAP_VAL CFG_EBC_PB1AP |
| 49 | # define PBxCR_VAL CFG_EBC_PB1CR |
| 50 | # endif |
| 51 | # endif |
| 52 | # if (CFG_INIT_DCACHE_CS == 2) |
| 53 | # define PBxAP pb2ap |
| 54 | # define PBxCR pb2cr |
| 55 | # if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR)) |
| 56 | # define PBxAP_VAL CFG_EBC_PB2AP |
| 57 | # define PBxCR_VAL CFG_EBC_PB2CR |
| 58 | # endif |
| 59 | # endif |
| 60 | # if (CFG_INIT_DCACHE_CS == 3) |
| 61 | # define PBxAP pb3ap |
| 62 | # define PBxCR pb3cr |
| 63 | # if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR)) |
| 64 | # define PBxAP_VAL CFG_EBC_PB3AP |
| 65 | # define PBxCR_VAL CFG_EBC_PB3CR |
| 66 | # endif |
| 67 | # endif |
| 68 | # if (CFG_INIT_DCACHE_CS == 4) |
| 69 | # define PBxAP pb4ap |
| 70 | # define PBxCR pb4cr |
| 71 | # if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR)) |
| 72 | # define PBxAP_VAL CFG_EBC_PB4AP |
| 73 | # define PBxCR_VAL CFG_EBC_PB4CR |
| 74 | # endif |
| 75 | # endif |
| 76 | # if (CFG_INIT_DCACHE_CS == 5) |
| 77 | # define PBxAP pb5ap |
| 78 | # define PBxCR pb5cr |
| 79 | # if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR)) |
| 80 | # define PBxAP_VAL CFG_EBC_PB5AP |
| 81 | # define PBxCR_VAL CFG_EBC_PB5CR |
| 82 | # endif |
| 83 | # endif |
| 84 | # if (CFG_INIT_DCACHE_CS == 6) |
| 85 | # define PBxAP pb6ap |
| 86 | # define PBxCR pb6cr |
| 87 | # if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR)) |
| 88 | # define PBxAP_VAL CFG_EBC_PB6AP |
| 89 | # define PBxCR_VAL CFG_EBC_PB6CR |
| 90 | # endif |
| 91 | # endif |
| 92 | # if (CFG_INIT_DCACHE_CS == 7) |
| 93 | # define PBxAP pb7ap |
| 94 | # define PBxCR pb7cr |
| 95 | # if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR)) |
| 96 | # define PBxAP_VAL CFG_EBC_PB7AP |
| 97 | # define PBxCR_VAL CFG_EBC_PB7CR |
| 98 | # endif |
| 99 | # endif |
| 100 | #endif /* CFG_INIT_DCACHE_CS */ |
| 101 | |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 102 | /* |
| 103 | * Breath some life into the CPU... |
| 104 | * |
| 105 | * Set up the memory map, |
| 106 | * initialize a bunch of registers |
| 107 | */ |
| 108 | void |
| 109 | cpu_init_f (void) |
| 110 | { |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 111 | #if defined(CONFIG_WATCHDOG) |
| 112 | unsigned long val; |
| 113 | #endif |
| 114 | |
Stefan Roese | aee747f | 2007-11-15 14:23:55 +0100 | [diff] [blame] | 115 | #if (defined(CONFIG_405EP) || defined (CONFIG_405EX)) && !defined(CFG_4xx_GPIO_TABLE) |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 116 | /* |
| 117 | * GPIO0 setup (select GPIO or alternate function) |
| 118 | */ |
Stefan Roese | e0a4655 | 2006-10-12 19:43:29 +0200 | [diff] [blame] | 119 | #if defined(CFG_GPIO0_OR) |
| 120 | out32(GPIO0_OR, CFG_GPIO0_OR); /* set initial state of output pins */ |
| 121 | #endif |
| 122 | #if defined(CFG_GPIO0_ODR) |
| 123 | out32(GPIO0_ODR, CFG_GPIO0_ODR); /* open-drain select */ |
| 124 | #endif |
| 125 | out32(GPIO0_OSRH, CFG_GPIO0_OSRH); /* output select */ |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 126 | out32(GPIO0_OSRL, CFG_GPIO0_OSRL); |
Stefan Roese | e0a4655 | 2006-10-12 19:43:29 +0200 | [diff] [blame] | 127 | out32(GPIO0_ISR1H, CFG_GPIO0_ISR1H); /* input select */ |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 128 | out32(GPIO0_ISR1L, CFG_GPIO0_ISR1L); |
Stefan Roese | e0a4655 | 2006-10-12 19:43:29 +0200 | [diff] [blame] | 129 | out32(GPIO0_TSRH, CFG_GPIO0_TSRH); /* three-state select */ |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 130 | out32(GPIO0_TSRL, CFG_GPIO0_TSRL); |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 131 | #if defined(CFG_GPIO0_ISR2H) |
| 132 | out32(GPIO0_ISR2H, CFG_GPIO0_ISR2H); |
| 133 | out32(GPIO0_ISR2L, CFG_GPIO0_ISR2L); |
| 134 | #endif |
| 135 | #if defined (CFG_GPIO0_TCR) |
Stefan Roese | e0a4655 | 2006-10-12 19:43:29 +0200 | [diff] [blame] | 136 | out32(GPIO0_TCR, CFG_GPIO0_TCR); /* enable output driver for outputs */ |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 137 | #endif |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 138 | |
Stefan Roese | bec9264 | 2007-12-28 15:53:46 +0100 | [diff] [blame] | 139 | #if defined (CONFIG_405EP) |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 140 | /* |
| 141 | * Set EMAC noise filter bits |
| 142 | */ |
| 143 | mtdcr(cpc0_epctl, CPC0_EPRCSR_E0NFE | CPC0_EPRCSR_E1NFE); |
Stefan Roese | c055690 | 2007-12-28 16:08:08 +0100 | [diff] [blame] | 144 | |
| 145 | /* |
| 146 | * Enable the internal PCI arbiter |
| 147 | */ |
| 148 | mtdcr(cpc0_pci, mfdcr(cpc0_pci) | CPC0_PCI_HOST_CFG_EN | CPC0_PCI_ARBIT_EN); |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 149 | #endif /* CONFIG_405EP */ |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 150 | #endif /* CONFIG_405EP */ |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 151 | |
Stefan Roese | aee747f | 2007-11-15 14:23:55 +0100 | [diff] [blame] | 152 | #if defined(CFG_4xx_GPIO_TABLE) |
Stefan Roese | 0d974d5 | 2007-03-24 15:57:09 +0100 | [diff] [blame] | 153 | gpio_set_chip_configuration(); |
Stefan Roese | aee747f | 2007-11-15 14:23:55 +0100 | [diff] [blame] | 154 | #endif /* CFG_4xx_GPIO_TABLE */ |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 155 | |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 156 | /* |
| 157 | * External Bus Controller (EBC) Setup |
| 158 | */ |
| 159 | #if (defined(CFG_EBC_PB0AP) && defined(CFG_EBC_PB0CR)) |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 160 | #if (defined(CONFIG_405GP) || defined(CONFIG_405CR) || \ |
Stefan Roese | e01bd21 | 2007-03-21 13:38:59 +0100 | [diff] [blame] | 161 | defined(CONFIG_405EP) || defined(CONFIG_405EZ) || \ |
Stefan Roese | dbbd125 | 2007-10-05 17:10:59 +0200 | [diff] [blame] | 162 | defined(CONFIG_405EX) || defined(CONFIG_405)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 163 | /* |
| 164 | * Move the next instructions into icache, since these modify the flash |
| 165 | * we are running from! |
| 166 | */ |
| 167 | asm volatile(" bl 0f" ::: "lr"); |
| 168 | asm volatile("0: mflr 3" ::: "r3"); |
Wolfgang Denk | 1636d1c | 2007-06-22 23:59:00 +0200 | [diff] [blame] | 169 | asm volatile(" addi 4, 0, 14" ::: "r4"); |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 170 | asm volatile(" mtctr 4" ::: "ctr"); |
| 171 | asm volatile("1: icbt 0, 3"); |
| 172 | asm volatile(" addi 3, 3, 32" ::: "r3"); |
| 173 | asm volatile(" bdnz 1b" ::: "ctr", "cr0"); |
| 174 | asm volatile(" addis 3, 0, 0x0" ::: "r3"); |
| 175 | asm volatile(" ori 3, 3, 0xA000" ::: "r3"); |
| 176 | asm volatile(" mtctr 3" ::: "ctr"); |
| 177 | asm volatile("2: bdnz 2b" ::: "ctr", "cr0"); |
Stefan Roese | a4c8d13 | 2006-06-02 16:18:04 +0200 | [diff] [blame] | 178 | #endif |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 179 | |
| 180 | mtebc(pb0ap, CFG_EBC_PB0AP); |
| 181 | mtebc(pb0cr, CFG_EBC_PB0CR); |
| 182 | #endif |
| 183 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 184 | #if (defined(CFG_EBC_PB1AP) && defined(CFG_EBC_PB1CR) && !(CFG_INIT_DCACHE_CS == 1)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 185 | mtebc(pb1ap, CFG_EBC_PB1AP); |
| 186 | mtebc(pb1cr, CFG_EBC_PB1CR); |
| 187 | #endif |
| 188 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 189 | #if (defined(CFG_EBC_PB2AP) && defined(CFG_EBC_PB2CR) && !(CFG_INIT_DCACHE_CS == 2)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 190 | mtebc(pb2ap, CFG_EBC_PB2AP); |
| 191 | mtebc(pb2cr, CFG_EBC_PB2CR); |
| 192 | #endif |
| 193 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 194 | #if (defined(CFG_EBC_PB3AP) && defined(CFG_EBC_PB3CR) && !(CFG_INIT_DCACHE_CS == 3)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 195 | mtebc(pb3ap, CFG_EBC_PB3AP); |
| 196 | mtebc(pb3cr, CFG_EBC_PB3CR); |
| 197 | #endif |
| 198 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 199 | #if (defined(CFG_EBC_PB4AP) && defined(CFG_EBC_PB4CR) && !(CFG_INIT_DCACHE_CS == 4)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 200 | mtebc(pb4ap, CFG_EBC_PB4AP); |
| 201 | mtebc(pb4cr, CFG_EBC_PB4CR); |
| 202 | #endif |
| 203 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 204 | #if (defined(CFG_EBC_PB5AP) && defined(CFG_EBC_PB5CR) && !(CFG_INIT_DCACHE_CS == 5)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 205 | mtebc(pb5ap, CFG_EBC_PB5AP); |
| 206 | mtebc(pb5cr, CFG_EBC_PB5CR); |
| 207 | #endif |
| 208 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 209 | #if (defined(CFG_EBC_PB6AP) && defined(CFG_EBC_PB6CR) && !(CFG_INIT_DCACHE_CS == 6)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 210 | mtebc(pb6ap, CFG_EBC_PB6AP); |
| 211 | mtebc(pb6cr, CFG_EBC_PB6CR); |
| 212 | #endif |
| 213 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 214 | #if (defined(CFG_EBC_PB7AP) && defined(CFG_EBC_PB7CR) && !(CFG_INIT_DCACHE_CS == 7)) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 215 | mtebc(pb7ap, CFG_EBC_PB7AP); |
| 216 | mtebc(pb7cr, CFG_EBC_PB7CR); |
| 217 | #endif |
| 218 | |
Heiko Schocher | cb48207 | 2007-01-18 11:28:51 +0100 | [diff] [blame] | 219 | #if defined (CFG_EBC_CFG) |
Stefan Roese | 4745aca | 2007-02-20 10:57:08 +0100 | [diff] [blame] | 220 | mtebc(EBC0_CFG, CFG_EBC_CFG); |
Heiko Schocher | ca43ba1 | 2007-01-11 15:44:44 +0100 | [diff] [blame] | 221 | #endif |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 222 | |
Wolfgang Denk | f11033e | 2007-01-15 13:41:04 +0100 | [diff] [blame] | 223 | #if defined(CONFIG_WATCHDOG) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 224 | val = mfspr(tcr); |
Stefan Roese | 846b0dd | 2005-08-08 12:42:22 +0200 | [diff] [blame] | 225 | #if defined(CONFIG_440EP) || defined(CONFIG_440GR) |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 226 | val |= 0xb8000000; /* generate system reset after 1.34 seconds */ |
Igor Lisitsin | a11e069 | 2007-03-28 19:06:19 +0400 | [diff] [blame] | 227 | #elif defined(CONFIG_440EPX) |
| 228 | val |= 0xb0000000; /* generate system reset after 1.34 seconds */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 229 | #else |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 230 | val |= 0xf0000000; /* generate system reset after 2.684 seconds */ |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 231 | #endif |
Stefan Roese | 1c2ce22 | 2006-11-27 14:12:17 +0100 | [diff] [blame] | 232 | #if defined(CFG_4xx_RESET_TYPE) |
| 233 | val &= ~0x30000000; /* clear WRC bits */ |
| 234 | val |= CFG_4xx_RESET_TYPE << 28; /* set board specific WRC type */ |
| 235 | #endif |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 236 | mtspr(tcr, val); |
| 237 | |
| 238 | val = mfspr(tsr); |
| 239 | val |= 0x80000000; /* enable watchdog timer */ |
| 240 | mtspr(tsr, val); |
| 241 | |
| 242 | reset_4xx_watchdog(); |
| 243 | #endif /* CONFIG_WATCHDOG */ |
| 244 | } |
| 245 | |
| 246 | /* |
| 247 | * initialize higher level parts of CPU like time base and timers |
| 248 | */ |
| 249 | int cpu_init_r (void) |
| 250 | { |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 251 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 252 | bd_t *bd = gd->bd; |
| 253 | unsigned long reg; |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 254 | #if defined(CONFIG_405GP) |
stroese | 38daa27 | 2003-03-20 15:21:50 +0000 | [diff] [blame] | 255 | uint pvr = get_pvr(); |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 256 | #endif |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 257 | |
stroese | 3720878 | 2003-06-05 15:35:20 +0000 | [diff] [blame] | 258 | #ifdef CFG_INIT_DCACHE_CS |
| 259 | /* |
| 260 | * Flush and invalidate dcache, then disable CS for temporary stack. |
| 261 | * Afterwards, this CS can be used for other purposes |
| 262 | */ |
| 263 | dcache_disable(); /* flush and invalidate dcache */ |
| 264 | mtebc(PBxAP, 0); |
| 265 | mtebc(PBxCR, 0); /* disable CS for temporary stack */ |
| 266 | |
| 267 | #if (defined(PBxAP_VAL) && defined(PBxCR_VAL)) |
| 268 | /* |
| 269 | * Write new value into CS register |
| 270 | */ |
| 271 | mtebc(PBxAP, PBxAP_VAL); |
| 272 | mtebc(PBxCR, PBxCR_VAL); |
| 273 | #endif |
| 274 | #endif /* CFG_INIT_DCACHE_CS */ |
| 275 | |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 276 | /* |
| 277 | * Write Ethernetaddress into on-chip register |
| 278 | */ |
| 279 | reg = 0x00000000; |
| 280 | reg |= bd->bi_enetaddr[0]; /* set high address */ |
| 281 | reg = reg << 8; |
| 282 | reg |= bd->bi_enetaddr[1]; |
| 283 | out32 (EMAC_IAH, reg); |
| 284 | |
| 285 | reg = 0x00000000; |
| 286 | reg |= bd->bi_enetaddr[2]; /* set low address */ |
| 287 | reg = reg << 8; |
| 288 | reg |= bd->bi_enetaddr[3]; |
| 289 | reg = reg << 8; |
| 290 | reg |= bd->bi_enetaddr[4]; |
| 291 | reg = reg << 8; |
| 292 | reg |= bd->bi_enetaddr[5]; |
| 293 | out32 (EMAC_IAL, reg); |
stroese | 38daa27 | 2003-03-20 15:21:50 +0000 | [diff] [blame] | 294 | |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 295 | #if defined(CONFIG_405GP) |
stroese | 38daa27 | 2003-03-20 15:21:50 +0000 | [diff] [blame] | 296 | /* |
| 297 | * Set edge conditioning circuitry on PPC405GPr |
| 298 | * for compatibility to existing PPC405GP designs. |
| 299 | */ |
stroese | baa3d52 | 2003-04-04 16:00:33 +0000 | [diff] [blame] | 300 | if ((pvr & 0xfffffff0) == (PVR_405GPR_RB & 0xfffffff0)) { |
stroese | 38daa27 | 2003-03-20 15:21:50 +0000 | [diff] [blame] | 301 | mtdcr(ecr, 0x60606000); |
| 302 | } |
stroese | b867d70 | 2003-05-23 11:18:02 +0000 | [diff] [blame] | 303 | #endif /* defined(CONFIG_405GP) */ |
| 304 | #endif /* defined(CONFIG_405GP) || defined(CONFIG_405EP) */ |
wdenk | 4a9cbbe | 2002-08-27 09:48:53 +0000 | [diff] [blame] | 305 | return (0); |
| 306 | } |