Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 1 | /* |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 2 | *(C) Copyright 2005-2008 Netstal Maschinen AG |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 3 | * Niklaus Giger (Niklaus.Giger@netstal.com) |
| 4 | * |
| 5 | * This source code is free software; you can redistribute it |
| 6 | * and/or modify it in source code form under the terms of the GNU |
| 7 | * General Public License as published by the Free Software |
| 8 | * Foundation; either version 2 of the License, or (at your option) |
| 9 | * any later version. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | * |
| 16 | * You should have received a copy of the GNU General Public License |
| 17 | * along with this program; if not, write to the Free Software |
| 18 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
| 19 | */ |
| 20 | |
| 21 | #include <common.h> |
| 22 | #include <asm/processor.h> |
| 23 | #include <ppc440.h> |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 24 | #include <asm/io.h> |
| 25 | #include "../common/nm.h" |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 29 | extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; |
| 30 | |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 31 | #undef BOOTSTRAP_OPTION_A_ACTIVE |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 32 | |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 33 | #define SDR0_CP440 0x0180 |
| 34 | |
| 35 | #define SYSTEM_RESET 0x30000000 |
| 36 | #define CHIP_RESET 0x20000000 |
| 37 | |
| 38 | #define SDR0_ECID0 0x0080 |
| 39 | #define SDR0_ECID1 0x0081 |
| 40 | #define SDR0_ECID2 0x0082 |
| 41 | #define SDR0_ECID3 0x0083 |
| 42 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 43 | #define SYS_IO_ADDRESS (CFG_CS_2 + 0x00e00000) |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 44 | #define SYS_SLOT_ADDRESS (CFG_CPLD + 0x00400000) |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 45 | #define HCU_DIGITAL_IO_REGISTER (CFG_CPLD + 0x0500000) |
| 46 | #define HCU_SW_INSTALL_REQUESTED 0x10 |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 47 | |
| 48 | /* |
| 49 | * This function is run very early, out of flash, and before devices are |
| 50 | * initialized. It is called by lib_ppc/board.c:board_init_f by virtue |
| 51 | * of being in the init_sequence array. |
| 52 | * |
| 53 | * The SDRAM has been initialized already -- start.S:start called |
| 54 | * init.S:init_sdram early on -- but it is not yet being used for |
| 55 | * anything, not even stack. So be careful. |
| 56 | */ |
| 57 | |
| 58 | int board_early_init_f(void) |
| 59 | { |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 60 | |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 61 | #ifdef BOOTSTRAP_OPTION_A_ACTIVE |
| 62 | /* Booting with Bootstrap Option A |
| 63 | * First boot, with CPR0_ICFG_RLI_MASK == 0 |
| 64 | * no we setup varios boot strapping register, |
| 65 | * then we do reset the PPC440 using a chip reset |
| 66 | * Unfortunately, we cannot use this option, as Nto1 is not set |
| 67 | * with Bootstrap Option A and cannot be changed later on by SW |
| 68 | * There are no other possible boostrap options with a 8 bit ROM |
| 69 | * See Errata (Version 1.04) CHIP_9 |
| 70 | */ |
| 71 | |
| 72 | u32 cpr0icfg; |
| 73 | u32 dbcr; |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 74 | |
| 75 | mfcpr(CPR0_ICFG, cpr0icfg); |
| 76 | if (!(cpr0icfg & CPR0_ICFG_RLI_MASK)) { |
| 77 | mtcpr(CPR0_MALD, 0x02000000); |
| 78 | mtcpr(CPR0_OPBD, 0x02000000); |
| 79 | mtcpr(CPR0_PERD, 0x05000000); /* 1:5 */ |
| 80 | mtcpr(CPR0_PLLC, 0x40000238); |
| 81 | mtcpr(CPR0_PLLD, 0x01010414); |
| 82 | mtcpr(CPR0_PRIMAD, 0x01000000); |
| 83 | mtcpr(CPR0_PRIMBD, 0x01000000); |
| 84 | mtcpr(CPR0_SPCID, 0x03000000); |
| 85 | mtsdr(SDR0_PFC0, 0x00003E00); /* [CTE] = 0 */ |
| 86 | mtsdr(SDR0_CP440, 0x0EAAEA02); /* [Nto1] = 1*/ |
| 87 | mtcpr(CPR0_ICFG, cpr0icfg | CPR0_ICFG_RLI_MASK); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 88 | |
| 89 | /* |
| 90 | * Initiate system reset in debug control register DBCR |
| 91 | */ |
| 92 | dbcr = mfspr(dbcr0); |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 93 | mtspr(dbcr0, dbcr | CHIP_RESET); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 94 | } |
| 95 | mtsdr(SDR0_CP440, 0x0EAAEA02); /* [Nto1] = 1*/ |
| 96 | #endif |
| 97 | mtdcr(ebccfga, xbcfg); |
| 98 | mtdcr(ebccfgd, 0xb8400000); |
| 99 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 100 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 101 | * Setup the GPIO pins |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 102 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 103 | out32(GPIO0_OR, 0x00000000); |
| 104 | out32(GPIO0_TCR, 0x7C2FF1CF); |
| 105 | out32(GPIO0_OSRL, 0x40055000); |
| 106 | out32(GPIO0_OSRH, 0x00000000); |
| 107 | out32(GPIO0_TSRL, 0x40055000); |
| 108 | out32(GPIO0_TSRH, 0x00000400); |
| 109 | out32(GPIO0_ISR1L, 0x40000000); |
| 110 | out32(GPIO0_ISR1H, 0x00000000); |
| 111 | out32(GPIO0_ISR2L, 0x00000000); |
| 112 | out32(GPIO0_ISR2H, 0x00000000); |
| 113 | out32(GPIO0_ISR3L, 0x00000000); |
| 114 | out32(GPIO0_ISR3H, 0x00000000); |
| 115 | |
| 116 | out32(GPIO1_OR, 0x00000000); |
| 117 | out32(GPIO1_TCR, 0xC6007FFF); |
| 118 | out32(GPIO1_OSRL, 0x00140000); |
| 119 | out32(GPIO1_OSRH, 0x00000000); |
| 120 | out32(GPIO1_TSRL, 0x00000000); |
| 121 | out32(GPIO1_TSRH, 0x00000000); |
| 122 | out32(GPIO1_ISR1L, 0x05415555); |
| 123 | out32(GPIO1_ISR1H, 0x40000000); |
| 124 | out32(GPIO1_ISR2L, 0x00000000); |
| 125 | out32(GPIO1_ISR2H, 0x00000000); |
| 126 | out32(GPIO1_ISR3L, 0x00000000); |
| 127 | out32(GPIO1_ISR3H, 0x00000000); |
| 128 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 129 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 130 | * Setup the interrupt controller polarities, triggers, etc. |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 131 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 132 | mtdcr(uic0sr, 0xffffffff); /* clear all */ |
| 133 | mtdcr(uic0er, 0x00000000); /* disable all */ |
| 134 | mtdcr(uic0cr, 0x00000005); /* ATI & UIC1 crit are critical */ |
| 135 | mtdcr(uic0pr, 0xfffff7ff); /* per ref-board manual */ |
| 136 | mtdcr(uic0tr, 0x00000000); /* per ref-board manual */ |
| 137 | mtdcr(uic0vr, 0x00000000); /* int31 highest, base=0x000 */ |
| 138 | mtdcr(uic0sr, 0xffffffff); /* clear all */ |
| 139 | |
| 140 | mtdcr(uic1sr, 0xffffffff); /* clear all */ |
| 141 | mtdcr(uic1er, 0x00000000); /* disable all */ |
| 142 | mtdcr(uic1cr, 0x00000000); /* all non-critical */ |
| 143 | mtdcr(uic1pr, 0xffffffff); /* per ref-board manual */ |
| 144 | mtdcr(uic1tr, 0x00000000); /* per ref-board manual */ |
| 145 | mtdcr(uic1vr, 0x00000000); /* int31 highest, base=0x000 */ |
| 146 | mtdcr(uic1sr, 0xffffffff); /* clear all */ |
| 147 | |
| 148 | mtdcr(uic2sr, 0xffffffff); /* clear all */ |
| 149 | mtdcr(uic2er, 0x00000000); /* disable all */ |
| 150 | mtdcr(uic2cr, 0x00000000); /* all non-critical */ |
| 151 | mtdcr(uic2pr, 0xffffffff); /* per ref-board manual */ |
| 152 | mtdcr(uic2tr, 0x00000000); /* per ref-board manual */ |
| 153 | mtdcr(uic2vr, 0x00000000); /* int31 highest, base=0x000 */ |
| 154 | mtdcr(uic2sr, 0xffffffff); /* clear all */ |
| 155 | mtsdr(sdr_pfc0, 0x00003E00); /* Pin function: */ |
| 156 | mtsdr(sdr_pfc1, 0x00848000); /* Pin function: UART0 has 4 pins */ |
| 157 | |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 158 | /* setup BOOT FLASH */ |
| 159 | mtsdr(SDR0_CUST0, 0xC0082350); |
| 160 | |
| 161 | return 0; |
| 162 | } |
| 163 | |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 164 | #ifdef CONFIG_BOARD_PRE_INIT |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 165 | int board_pre_init(void) |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 166 | { |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 167 | return board_early_init_f(); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 168 | } |
| 169 | |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 170 | #endif |
| 171 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 172 | int sys_install_requested(void) |
| 173 | { |
| 174 | u16 *ioValuePtr = (u16 *)HCU_DIGITAL_IO_REGISTER; |
| 175 | return (in_be16(ioValuePtr) & HCU_SW_INSTALL_REQUESTED) != 0; |
| 176 | } |
| 177 | |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 178 | int checkboard(void) |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 179 | { |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 180 | u16 *hwVersReg = (u16 *) HCU_HW_VERSION_REGISTER; |
| 181 | u16 *boardVersReg = (u16 *) HCU_CPLD_VERSION_REGISTER; |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 182 | u16 generation = in_be16(boardVersReg) & 0xf0; |
| 183 | u16 index = in_be16(boardVersReg) & 0x0f; |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 184 | u32 ecid0, ecid1, ecid2, ecid3; |
| 185 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 186 | nm_show_print(generation, index, in_be16(hwVersReg) & 0xff); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 187 | mfsdr(SDR0_ECID0, ecid0); |
| 188 | mfsdr(SDR0_ECID1, ecid1); |
| 189 | mfsdr(SDR0_ECID2, ecid2); |
| 190 | mfsdr(SDR0_ECID3, ecid3); |
| 191 | |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 192 | printf("Chip ID 0x%x 0x%x 0x%x 0x%x\n", ecid0, ecid1, ecid2, ecid3); |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 193 | |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 194 | return 0; |
| 195 | } |
| 196 | |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 197 | u32 hcu_led_get(void) |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 198 | { |
| 199 | return in16(SYS_IO_ADDRESS) & 0x3f; |
| 200 | } |
| 201 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 202 | /* |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 203 | * hcu_led_set value to be placed into the LEDs (max 6 bit) |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 204 | */ |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 205 | void hcu_led_set(u32 value) |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 206 | { |
| 207 | out16(SYS_IO_ADDRESS, value); |
| 208 | } |
| 209 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 210 | /* |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 211 | * get_serial_number |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 212 | */ |
| 213 | u32 get_serial_number(void) |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 214 | { |
| 215 | u32 *serial = (u32 *)CFG_FLASH_BASE; |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 216 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 217 | if (in_be32(serial) == 0xffffffff) |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 218 | return 0; |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 219 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 220 | return in_be32(serial); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 221 | } |
| 222 | |
| 223 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 224 | /* |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 225 | * hcu_get_slot |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 226 | */ |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 227 | u32 hcu_get_slot(void) |
| 228 | { |
| 229 | u16 *slot = (u16 *)SYS_SLOT_ADDRESS; |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 230 | return in_be16(slot) & 0x7f; |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 231 | } |
| 232 | |
| 233 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 234 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 235 | * misc_init_r. |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 236 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 237 | int misc_init_r(void) |
| 238 | { |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 239 | unsigned long usb2d0cr = 0; |
| 240 | unsigned long usb2phy0cr, usb2h0cr = 0; |
| 241 | unsigned long sdr0_pfc1; |
| 242 | |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 243 | #ifdef CFG_ENV_IS_IN_FLASH |
| 244 | /* Monitor protection ON by default */ |
| 245 | (void)flash_protect(FLAG_PROTECT_SET, |
| 246 | -CFG_MONITOR_LEN, |
| 247 | 0xffffffff, |
| 248 | &flash_info[0]); |
| 249 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 250 | #ifdef CFG_ENV_ADDR_REDUND |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 251 | /* Env protection ON by default */ |
| 252 | (void)flash_protect(FLAG_PROTECT_SET, |
| 253 | CFG_ENV_ADDR_REDUND, |
| 254 | CFG_ENV_ADDR_REDUND + 2*CFG_ENV_SECT_SIZE - 1, |
| 255 | &flash_info[0]); |
| 256 | #endif |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 257 | #endif |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 258 | |
| 259 | /* |
| 260 | * USB stuff... |
| 261 | */ |
| 262 | |
| 263 | /* SDR Setting */ |
| 264 | mfsdr(SDR0_PFC1, sdr0_pfc1); |
| 265 | mfsdr(SDR0_USB2D0CR, usb2d0cr); |
| 266 | mfsdr(SDR0_USB2PHY0CR, usb2phy0cr); |
| 267 | mfsdr(SDR0_USB2H0CR, usb2h0cr); |
| 268 | |
| 269 | usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_XOCLK_MASK; |
| 270 | usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_XOCLK_EXTERNAL; /*0*/ |
| 271 | usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_WDINT_MASK; |
| 272 | usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_WDINT_16BIT_30MHZ; /*1*/ |
| 273 | usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DVBUS_MASK; |
| 274 | usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DVBUS_PURDIS; /*0*/ |
| 275 | usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_DWNSTR_MASK; |
| 276 | usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_DWNSTR_HOST; /*1*/ |
| 277 | usb2phy0cr = usb2phy0cr &~SDR0_USB2PHY0CR_UTMICN_MASK; |
| 278 | usb2phy0cr = usb2phy0cr | SDR0_USB2PHY0CR_UTMICN_HOST; /*1*/ |
| 279 | |
| 280 | /* An 8-bit/60MHz interface is the only possible alternative |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 281 | * when connecting the Device to the PHY |
| 282 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 283 | usb2h0cr = usb2h0cr &~SDR0_USB2H0CR_WDINT_MASK; |
| 284 | usb2h0cr = usb2h0cr | SDR0_USB2H0CR_WDINT_16BIT_30MHZ; /*1*/ |
| 285 | |
| 286 | /* To enable the USB 2.0 Device function through the UTMI interface */ |
| 287 | usb2d0cr = usb2d0cr &~SDR0_USB2D0CR_USB2DEV_EBC_SEL_MASK; |
| 288 | usb2d0cr = usb2d0cr | SDR0_USB2D0CR_USB2DEV_SELECTION; /*1*/ |
| 289 | |
| 290 | sdr0_pfc1 = sdr0_pfc1 &~SDR0_PFC1_UES_MASK; |
| 291 | sdr0_pfc1 = sdr0_pfc1 | SDR0_PFC1_UES_USB2D_SEL; /*0*/ |
| 292 | |
| 293 | mtsdr(SDR0_PFC1, sdr0_pfc1); |
| 294 | mtsdr(SDR0_USB2D0CR, usb2d0cr); |
| 295 | mtsdr(SDR0_USB2PHY0CR, usb2phy0cr); |
| 296 | mtsdr(SDR0_USB2H0CR, usb2h0cr); |
| 297 | |
| 298 | /*clear resets*/ |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 299 | udelay(1000); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 300 | mtsdr(SDR0_SRST1, 0x00000000); |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 301 | udelay(1000); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 302 | mtsdr(SDR0_SRST0, 0x00000000); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 303 | printf("USB: Host(int phy) Device(ext phy)\n"); |
| 304 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 305 | common_misc_init_r(); |
| 306 | set_params_for_sw_install( sys_install_requested(), "hcu5" ); |
| 307 | /* We cannot easily enable trace before, as there are other |
| 308 | * routines messing around with sdr0_pfc1. And I do not need it. |
| 309 | */ |
| 310 | if (mfspr(dbcr0) & 0x80000000) { |
| 311 | /* External debugger alive |
| 312 | * enable trace facilty for Lauterback |
| 313 | * CCR0[DAPUIB]=0 Enable broadcast of instruction data |
| 314 | * to auxiliary processor interface |
| 315 | * CCR0[DTB]=0 Enable broadcast of trace information |
| 316 | * SDR0_PFC0[TRE] Trace signals are enabled instead of |
| 317 | * GPIO49-63 |
| 318 | */ |
| 319 | mtspr(ccr0, mfspr(ccr0) &~ 0x00108000); |
| 320 | mtsdr(SDR0_PFC0, sdr0_pfc1 | 0x00000100); |
| 321 | } |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 322 | return 0; |
| 323 | } |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 324 | #ifdef CONFIG_PCI |
| 325 | int board_with_pci(void) |
| 326 | { |
| 327 | u32 reg; |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 328 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 329 | mfsdr(sdr_pci0, reg); |
| 330 | return (reg & SDR0_XCR_PAE_MASK); |
| 331 | } |
| 332 | |
| 333 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 334 | * pci_pre_init |
| 335 | * |
| 336 | * This routine is called just prior to registering the hose and gives |
| 337 | * the board the opportunity to check things. Returning a value of zero |
| 338 | * indicates that things are bad & PCI initialization should be aborted. |
| 339 | * |
| 340 | * Different boards may wish to customize the pci controller structure |
| 341 | * (add regions, override default access routines, etc) or perform |
| 342 | * certain pre-initialization actions. |
| 343 | * |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 344 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 345 | int pci_pre_init(struct pci_controller *hose) |
| 346 | { |
| 347 | unsigned long addr; |
| 348 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 349 | if (!board_with_pci()) { return 0; } |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 350 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 351 | /* |
| 352 | * Set priority for all PLB3 devices to 0. |
| 353 | * Set PLB3 arbiter to fair mode. |
| 354 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 355 | mfsdr(sdr_amp1, addr); |
| 356 | mtsdr(sdr_amp1, (addr & 0x000000FF) | 0x0000FF00); |
| 357 | addr = mfdcr(plb3_acr); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 358 | mtdcr(plb3_acr, addr | 0x80000000); /* Sequoia */ |
| 359 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 360 | /* |
| 361 | * Set priority for all PLB4 devices to 0. |
| 362 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 363 | mfsdr(sdr_amp0, addr); |
| 364 | mtsdr(sdr_amp0, (addr & 0x000000FF) | 0x0000FF00); |
| 365 | addr = mfdcr(plb4_acr) | 0xa0000000; /* Was 0x8---- */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 366 | mtdcr(plb4_acr, addr); /* Sequoia */ |
| 367 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 368 | /* |
| 369 | * As of errata version 0.4, CHIP_8: Incorrect Write to DDR SDRAM. |
| 370 | * Workaround: Disable write pipelining to DDR SDRAM by setting |
| 371 | * PLB0_ACR[WRP] = 0. |
| 372 | */ |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 373 | mtdcr(plb0_acr, 0); /* PATCH HAB: WRITE PIPELINING OFF */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 374 | |
| 375 | /* Segment1 */ |
Stefan Roese | 35d22f95 | 2007-08-10 10:42:25 +0200 | [diff] [blame] | 376 | mtdcr(plb1_acr, 0); /* PATCH HAB: WRITE PIPELINING OFF */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 377 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 378 | return board_with_pci(); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 379 | } |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 380 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 381 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 382 | * pci_target_init |
| 383 | * |
| 384 | * The bootstrap configuration provides default settings for the pci |
| 385 | * inbound map (PIM). But the bootstrap config choices are limited and |
| 386 | * may not be sufficient for a given board. |
| 387 | * |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 388 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 389 | void pci_target_init(struct pci_controller *hose) |
| 390 | { |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 391 | if (!board_with_pci()) { return; } |
| 392 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 393 | * Set up Direct MMIO registers |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 394 | * |
| 395 | * PowerPC440EPX PCI Master configuration. |
| 396 | * Map one 1Gig range of PLB/processor addresses to PCI memory space. |
| 397 | * PLB address 0xA0000000-0xDFFFFFFF ==> PCI address |
| 398 | * 0xA0000000-0xDFFFFFFF |
| 399 | * Use byte reversed out routines to handle endianess. |
| 400 | * Make this region non-prefetchable. |
| 401 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 402 | /* PMM0 Mask/Attribute - disabled b4 setting */ |
| 403 | out32r(PCIX0_PMM0MA, 0x00000000); |
| 404 | out32r(PCIX0_PMM0LA, CFG_PCI_MEMBASE); /* PMM0 Local Address */ |
| 405 | /* PMM0 PCI Low Address */ |
| 406 | out32r(PCIX0_PMM0PCILA, CFG_PCI_MEMBASE); |
| 407 | out32r(PCIX0_PMM0PCIHA, 0x00000000); /* PMM0 PCI High Address */ |
| 408 | /* 512M + No prefetching, and enable region */ |
| 409 | out32r(PCIX0_PMM0MA, 0xE0000001); |
| 410 | |
| 411 | /* PMM0 Mask/Attribute - disabled b4 setting */ |
| 412 | out32r(PCIX0_PMM1MA, 0x00000000); |
| 413 | out32r(PCIX0_PMM1LA, CFG_PCI_MEMBASE2); /* PMM0 Local Address */ |
| 414 | /* PMM0 PCI Low Address */ |
| 415 | out32r(PCIX0_PMM1PCILA, CFG_PCI_MEMBASE2); |
| 416 | out32r(PCIX0_PMM1PCIHA, 0x00000000); /* PMM0 PCI High Address */ |
| 417 | /* 512M + No prefetching, and enable region */ |
| 418 | out32r(PCIX0_PMM1MA, 0xE0000001); |
| 419 | |
| 420 | out32r(PCIX0_PTM1MS, 0x00000001); /* Memory Size/Attribute */ |
| 421 | out32r(PCIX0_PTM1LA, 0); /* Local Addr. Reg */ |
| 422 | out32r(PCIX0_PTM2MS, 0); /* Memory Size/Attribute */ |
| 423 | out32r(PCIX0_PTM2LA, 0); /* Local Addr. Reg */ |
| 424 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 425 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 426 | * Set up Configuration registers |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 427 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 428 | |
| 429 | /* Program the board's subsystem id/vendor id */ |
| 430 | pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID, |
| 431 | CFG_PCI_SUBSYS_VENDORID); |
| 432 | pci_write_config_word(0, PCI_SUBSYSTEM_ID, CFG_PCI_SUBSYS_ID); |
| 433 | |
| 434 | /* Configure command register as bus master */ |
| 435 | pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER); |
| 436 | |
| 437 | /* 240nS PCI clock */ |
| 438 | pci_write_config_word(0, PCI_LATENCY_TIMER, 1); |
| 439 | |
| 440 | /* No error reporting */ |
| 441 | pci_write_config_word(0, PCI_ERREN, 0); |
| 442 | |
| 443 | pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101); |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 444 | } |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 445 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 446 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 447 | * pci_master_init |
| 448 | * |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 449 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 450 | void pci_master_init(struct pci_controller *hose) |
| 451 | { |
| 452 | unsigned short temp_short; |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 453 | if (!board_with_pci()) { return; } |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 454 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 455 | /*--------------------------------------------------------------- |
| 456 | * Write the PowerPC440 EP PCI Configuration regs. |
| 457 | * Enable PowerPC440 EP to be a master on the PCI bus (PMM). |
| 458 | * Enable PowerPC440 EP to act as a PCI memory target (PTM). |
| 459 | *--------------------------------------------------------------*/ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 460 | pci_read_config_word(0, PCI_COMMAND, &temp_short); |
| 461 | pci_write_config_word(0, PCI_COMMAND, |
| 462 | temp_short | PCI_COMMAND_MASTER | |
| 463 | PCI_COMMAND_MEMORY); |
| 464 | } |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 465 | |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 466 | /* |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 467 | * is_pci_host |
| 468 | * |
| 469 | * This routine is called to determine if a pci scan should be |
| 470 | * performed. With various hardware environments (especially cPCI and |
| 471 | * PPMC) it's insufficient to depend on the state of the arbiter enable |
| 472 | * bit in the strap register, or generic host/adapter assumptions. |
| 473 | * |
| 474 | * Rather than hard-code a bad assumption in the general 440 code, the |
| 475 | * 440 pci code requires the board to decide at runtime. |
| 476 | * |
| 477 | * Return 0 for adapter mode, non-zero for host (monarch) mode. |
| 478 | * |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 479 | */ |
Niklaus Giger | 157cda4 | 2007-07-27 11:31:22 +0200 | [diff] [blame] | 480 | int is_pci_host(struct pci_controller *hose) |
| 481 | { |
| 482 | return 1; |
| 483 | } |
Niklaus Giger | 07bc205 | 2007-08-16 15:16:03 +0200 | [diff] [blame] | 484 | #endif /* defined(CONFIG_PCI) */ |
Niklaus Giger | efeff53 | 2008-01-16 18:39:18 +0100 | [diff] [blame^] | 485 | |
| 486 | #if defined(CONFIG_POST) |
| 487 | /* |
| 488 | * Returns 1 if keys pressed to start the power-on long-running tests |
| 489 | * Called from board_init_f(). |
| 490 | */ |
| 491 | int post_hotkeys_pressed(void) |
| 492 | { |
| 493 | return 0; /* No hotkeys supported */ |
| 494 | } |
| 495 | #endif /* CONFIG_POST */ |
| 496 | |
| 497 | #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) |
| 498 | void ft_board_setup(void *blob, bd_t *bd) |
| 499 | { |
| 500 | u32 val[4]; |
| 501 | int rc; |
| 502 | |
| 503 | ft_cpu_setup(blob, bd); |
| 504 | |
| 505 | } |
| 506 | #endif /* defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) */ |