wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 1 | /*-----------------------------------------------------------------------------+ |
Josh Boyer | 3177349 | 2009-08-07 13:53:20 -0400 | [diff] [blame] | 2 | * This source code is dual-licensed. You may use it under the terms of |
| 3 | * the GNU General Public license version 2, or under the license below. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 4 | * |
| 5 | * This source code has been made available to you by IBM on an AS-IS |
| 6 | * basis. Anyone receiving this source is licensed under IBM |
| 7 | * copyrights to use it in any way he or she deems fit, including |
| 8 | * copying it, modifying it, compiling it, and redistributing it either |
| 9 | * with or without modifications. No license under IBM patents or |
| 10 | * patent applications is to be implied by the copyright license. |
| 11 | * |
| 12 | * Any user of this software should understand that IBM cannot provide |
| 13 | * technical support for this software and will not be responsible for |
| 14 | * any consequences resulting from the use of this software. |
| 15 | * |
| 16 | * Any person who transfers this source code or any derivative work |
| 17 | * must include the IBM copyright notice, this paragraph, and the |
| 18 | * preceding two paragraphs in the transferred software. |
| 19 | * |
| 20 | * COPYRIGHT I B M CORPORATION 1995 |
| 21 | * LICENSED MATERIAL - PROGRAM PROPERTY OF I B M |
| 22 | *-----------------------------------------------------------------------------*/ |
| 23 | /*----------------------------------------------------------------------------+ |
| 24 | * |
| 25 | * File Name: 405gp_pci.c |
| 26 | * |
| 27 | * Function: Initialization code for the 405GP PCI Configuration regs. |
| 28 | * |
| 29 | * Author: Mark Game |
| 30 | * |
| 31 | * Change Activity- |
| 32 | * |
| 33 | * Date Description of Change BY |
| 34 | * --------- --------------------- --- |
| 35 | * 09-Sep-98 Created MCG |
| 36 | * 02-Nov-98 Removed External arbiter selected message JWB |
| 37 | * 27-Nov-98 Zero out PTMBAR2 and disable in PTM2MS JWB |
| 38 | * 04-Jan-99 Zero out other unused PMM and PTM regs. Change bus scan MCG |
| 39 | * from (0 to n) to (1 to n). |
| 40 | * 17-May-99 Port to Walnut JWB |
| 41 | * 17-Jun-99 Updated for VGA support JWB |
| 42 | * 21-Jun-99 Updated to allow SRAM region to be a target from PCI bus JWB |
| 43 | * 19-Jul-99 Updated for 405GP pass 1 errata #26 (Low PCI subsequent MCG |
| 44 | * target latency timer values are not supported). |
| 45 | * Should be fixed in pass 2. |
| 46 | * 09-Sep-99 Removed use of PTM2 since the SRAM region no longer needs JWB |
| 47 | * to be a PCI target. Zero out PTMBAR2 and disable in PTM2MS. |
| 48 | * 10-Dec-99 Updated PCI_Write_CFG_Reg for pass2 errata #6 JWB |
| 49 | * 11-Jan-00 Ensure PMMxMAs disabled before setting PMMxLAs. This is not |
| 50 | * really required after a reset since PMMxMAs are already |
Wolfgang Denk | 53677ef | 2008-05-20 16:00:29 +0200 | [diff] [blame] | 51 | * disabled but is a good practice nonetheless. JWB |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 52 | * 12-Jun-01 stefan.roese@esd-electronics.com |
| 53 | * - PCI host/adapter handling reworked |
| 54 | * 09-Jul-01 stefan.roese@esd-electronics.com |
| 55 | * - PCI host now configures from device 0 (not 1) to max_dev, |
| 56 | * (host configures itself) |
| 57 | * - On CPCI-405 pci base address and size is generated from |
| 58 | * SDRAM and FLASH size (CFG regs not used anymore) |
| 59 | * - Some minor changes for CPCI-405-A (adapter version) |
| 60 | * 14-Sep-01 stefan.roese@esd-electronics.com |
| 61 | * - CONFIG_PCI_SCAN_SHOW added to print pci devices upon startup |
| 62 | * 28-Sep-01 stefan.roese@esd-electronics.com |
| 63 | * - Changed pci master configuration for linux compatibility |
| 64 | * (no need for bios_fixup() anymore) |
| 65 | * 26-Feb-02 stefan.roese@esd-electronics.com |
| 66 | * - Bug fixed in pci configuration (Andrew May) |
| 67 | * - Removed pci class code init for CPCI405 board |
| 68 | * 15-May-02 stefan.roese@esd-electronics.com |
| 69 | * - New vga device handling |
| 70 | * 29-May-02 stefan.roese@esd-electronics.com |
| 71 | * - PCI class code init added (if defined) |
| 72 | *----------------------------------------------------------------------------*/ |
| 73 | |
| 74 | #include <common.h> |
| 75 | #include <command.h> |
Stefan Roese | 3048bcb | 2007-10-03 15:01:02 +0200 | [diff] [blame] | 76 | #include <asm/4xx_pci.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 77 | #include <asm/processor.h> |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 78 | #include <asm/io.h> |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 79 | #include <pci.h> |
| 80 | |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 81 | #ifdef CONFIG_PCI |
| 82 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 83 | DECLARE_GLOBAL_DATA_PTR; |
| 84 | |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 85 | #if defined(CONFIG_405GP) || defined(CONFIG_405EP) |
| 86 | |
| 87 | #if defined(CONFIG_PMC405) |
| 88 | ushort pmc405_pci_subsys_deviceid(void); |
| 89 | #endif |
| 90 | |
| 91 | /*#define DEBUG*/ |
| 92 | |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 93 | /* |
| 94 | * Board-specific pci initialization |
| 95 | * Platform code can reimplement pci_pre_init() if needed |
| 96 | */ |
| 97 | int __pci_pre_init(struct pci_controller *hose) |
| 98 | { |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 99 | #if defined(CONFIG_405EP) |
Matthias Fuchs | 123f102 | 2009-07-08 13:43:55 +0200 | [diff] [blame] | 100 | /* |
| 101 | * Enable the internal PCI arbiter by default. |
| 102 | * |
| 103 | * On 405EP CPUs the internal arbiter can be controlled |
| 104 | * by the I2C strapping EEPROM. If you want to do so |
| 105 | * or if you want to disable the arbiter pci_pre_init() |
| 106 | * must be reimplemented without enabling the arbiter. |
| 107 | * The arbiter is enabled in this place because of |
| 108 | * compatibility reasons. |
| 109 | */ |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 110 | mtdcr(CPC0_PCI, mfdcr(CPC0_PCI) | CPC0_PCI_ARBIT_EN); |
Matthias Fuchs | 123f102 | 2009-07-08 13:43:55 +0200 | [diff] [blame] | 111 | #endif /* CONFIG_405EP */ |
| 112 | |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 113 | return 1; |
| 114 | } |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 115 | int pci_pre_init(struct pci_controller *hose) |
| 116 | __attribute__((weak, alias("__pci_pre_init"))); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 117 | |
Matthias Fuchs | d0a1364 | 2009-07-03 16:06:06 +0200 | [diff] [blame] | 118 | int __is_pci_host(struct pci_controller *hose) |
| 119 | { |
| 120 | #if defined(CONFIG_405GP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 121 | if (mfdcr(CPC0_PSR) & PSR_PCI_ARBIT_EN) |
Matthias Fuchs | d0a1364 | 2009-07-03 16:06:06 +0200 | [diff] [blame] | 122 | return 1; |
| 123 | #elif defined (CONFIG_405EP) |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 124 | if (mfdcr(CPC0_PCI) & CPC0_PCI_ARBIT_EN) |
Matthias Fuchs | d0a1364 | 2009-07-03 16:06:06 +0200 | [diff] [blame] | 125 | return 1; |
| 126 | #endif |
| 127 | return 0; |
| 128 | } |
| 129 | int is_pci_host(struct pci_controller *hose) __attribute__((weak, alias("__is_pci_host"))); |
| 130 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 131 | /*-----------------------------------------------------------------------------+ |
| 132 | * pci_init. Initializes the 405GP PCI Configuration regs. |
| 133 | *-----------------------------------------------------------------------------*/ |
| 134 | void pci_405gp_init(struct pci_controller *hose) |
| 135 | { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 136 | int i, reg_num = 0; |
| 137 | bd_t *bd = gd->bd; |
| 138 | |
| 139 | unsigned short temp_short; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 140 | unsigned long ptmpcila[2] = {CONFIG_SYS_PCI_PTM1PCI, CONFIG_SYS_PCI_PTM2PCI}; |
Matthias Fuchs | 99bcf14 | 2009-09-07 17:00:40 +0200 | [diff] [blame] | 141 | #if defined(CONFIG_PCI_4xx_PTM_OVERWRITE) |
stroese | fddae7b | 2005-04-20 06:52:40 +0000 | [diff] [blame] | 142 | char *ptmla_str, *ptmms_str; |
Stefan Roese | 2076d0a | 2006-01-18 20:03:15 +0100 | [diff] [blame] | 143 | #endif |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 144 | unsigned long ptmla[2] = {CONFIG_SYS_PCI_PTM1LA, CONFIG_SYS_PCI_PTM2LA}; |
| 145 | unsigned long ptmms[2] = {CONFIG_SYS_PCI_PTM1MS, CONFIG_SYS_PCI_PTM2MS}; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 146 | #if defined(CONFIG_PIP405) || defined (CONFIG_MIP405) |
| 147 | unsigned long pmmla[3] = {0x80000000, 0xA0000000, 0}; |
| 148 | unsigned long pmmma[3] = {0xE0000001, 0xE0000001, 0}; |
| 149 | unsigned long pmmpcila[3] = {0x80000000, 0x00000000, 0}; |
| 150 | unsigned long pmmpciha[3] = {0x00000000, 0x00000000, 0}; |
| 151 | #else |
| 152 | unsigned long pmmla[3] = {0x80000000, 0,0}; |
| 153 | unsigned long pmmma[3] = {0xC0000001, 0,0}; |
| 154 | unsigned long pmmpcila[3] = {0x80000000, 0,0}; |
| 155 | unsigned long pmmpciha[3] = {0x00000000, 0,0}; |
| 156 | #endif |
stroese | 5e746fc | 2004-12-16 18:15:52 +0000 | [diff] [blame] | 157 | #ifdef CONFIG_PCI_PNP |
| 158 | #if (CONFIG_PCI_HOST == PCI_HOST_AUTO) |
| 159 | char *s; |
| 160 | #endif |
| 161 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 162 | |
Matthias Fuchs | 99bcf14 | 2009-09-07 17:00:40 +0200 | [diff] [blame] | 163 | #if defined(CONFIG_PCI_4xx_PTM_OVERWRITE) |
stroese | fddae7b | 2005-04-20 06:52:40 +0000 | [diff] [blame] | 164 | ptmla_str = getenv("ptm1la"); |
| 165 | ptmms_str = getenv("ptm1ms"); |
| 166 | if(NULL != ptmla_str && NULL != ptmms_str ) { |
| 167 | ptmla[0] = simple_strtoul (ptmla_str, NULL, 16); |
| 168 | ptmms[0] = simple_strtoul (ptmms_str, NULL, 16); |
| 169 | } |
| 170 | |
| 171 | ptmla_str = getenv("ptm2la"); |
| 172 | ptmms_str = getenv("ptm2ms"); |
| 173 | if(NULL != ptmla_str && NULL != ptmms_str ) { |
| 174 | ptmla[1] = simple_strtoul (ptmla_str, NULL, 16); |
| 175 | ptmms[1] = simple_strtoul (ptmms_str, NULL, 16); |
| 176 | } |
| 177 | #endif |
| 178 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 179 | /* |
| 180 | * Register the hose |
| 181 | */ |
| 182 | hose->first_busno = 0; |
| 183 | hose->last_busno = 0xff; |
| 184 | |
| 185 | /* ISA/PCI I/O space */ |
| 186 | pci_set_region(hose->regions + reg_num++, |
| 187 | MIN_PCI_PCI_IOADDR, |
| 188 | MIN_PLB_PCI_IOADDR, |
| 189 | 0x10000, |
| 190 | PCI_REGION_IO); |
| 191 | |
| 192 | /* PCI I/O space */ |
| 193 | pci_set_region(hose->regions + reg_num++, |
| 194 | 0x00800000, |
| 195 | 0xe8800000, |
| 196 | 0x03800000, |
| 197 | PCI_REGION_IO); |
| 198 | |
| 199 | reg_num = 2; |
| 200 | |
| 201 | /* Memory spaces */ |
| 202 | for (i=0; i<2; i++) |
| 203 | if (ptmms[i] & 1) |
| 204 | { |
| 205 | if (!i) hose->pci_fb = hose->regions + reg_num; |
| 206 | |
| 207 | pci_set_region(hose->regions + reg_num++, |
| 208 | ptmpcila[i], ptmla[i], |
| 209 | ~(ptmms[i] & 0xfffff000) + 1, |
| 210 | PCI_REGION_MEM | |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 211 | PCI_REGION_SYS_MEMORY); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 212 | } |
| 213 | |
| 214 | /* PCI memory spaces */ |
| 215 | for (i=0; i<3; i++) |
| 216 | if (pmmma[i] & 1) |
| 217 | { |
| 218 | pci_set_region(hose->regions + reg_num++, |
| 219 | pmmpcila[i], pmmla[i], |
| 220 | ~(pmmma[i] & 0xfffff000) + 1, |
| 221 | PCI_REGION_MEM); |
| 222 | } |
| 223 | |
| 224 | hose->region_count = reg_num; |
| 225 | |
| 226 | pci_setup_indirect(hose, |
| 227 | PCICFGADR, |
| 228 | PCICFGDATA); |
| 229 | |
| 230 | if (hose->pci_fb) |
| 231 | pciauto_region_init(hose->pci_fb); |
| 232 | |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 233 | /* Let board change/modify hose & do initial checks */ |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 234 | if (pci_pre_init(hose) == 0) { |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 235 | printf("PCI: Board-specific initialization failed.\n"); |
| 236 | printf("PCI: Configuration aborted.\n"); |
| 237 | return; |
| 238 | } |
| 239 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 240 | pci_register_hose(hose); |
| 241 | |
| 242 | /*--------------------------------------------------------------------------+ |
| 243 | * 405GP PCI Master configuration. |
| 244 | * Map one 512 MB range of PLB/processor addresses to PCI memory space. |
| 245 | * PLB address 0x80000000-0xBFFFFFFF ==> PCI address 0x80000000-0xBFFFFFFF |
| 246 | * Use byte reversed out routines to handle endianess. |
| 247 | *--------------------------------------------------------------------------*/ |
wdenk | f3e0de6 | 2003-06-04 15:05:30 +0000 | [diff] [blame] | 248 | out32r(PMM0MA, (pmmma[0]&~0x1)); /* disable, configure PMMxLA, PMMxPCILA first */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 249 | out32r(PMM0LA, pmmla[0]); |
| 250 | out32r(PMM0PCILA, pmmpcila[0]); |
| 251 | out32r(PMM0PCIHA, pmmpciha[0]); |
| 252 | out32r(PMM0MA, pmmma[0]); |
| 253 | |
| 254 | /*--------------------------------------------------------------------------+ |
| 255 | * PMM1 is not used. Initialize them to zero. |
| 256 | *--------------------------------------------------------------------------*/ |
wdenk | f3e0de6 | 2003-06-04 15:05:30 +0000 | [diff] [blame] | 257 | out32r(PMM1MA, (pmmma[1]&~0x1)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 258 | out32r(PMM1LA, pmmla[1]); |
| 259 | out32r(PMM1PCILA, pmmpcila[1]); |
| 260 | out32r(PMM1PCIHA, pmmpciha[1]); |
| 261 | out32r(PMM1MA, pmmma[1]); |
| 262 | |
| 263 | /*--------------------------------------------------------------------------+ |
| 264 | * PMM2 is not used. Initialize them to zero. |
| 265 | *--------------------------------------------------------------------------*/ |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 266 | out32r(PMM2MA, (pmmma[2]&~0x1)); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 267 | out32r(PMM2LA, pmmla[2]); |
| 268 | out32r(PMM2PCILA, pmmpcila[2]); |
| 269 | out32r(PMM2PCIHA, pmmpciha[2]); |
| 270 | out32r(PMM2MA, pmmma[2]); |
| 271 | |
| 272 | /*--------------------------------------------------------------------------+ |
| 273 | * 405GP PCI Target configuration. (PTM1) |
| 274 | * Note: PTM1MS is hardwire enabled but we set the enable bit anyway. |
| 275 | *--------------------------------------------------------------------------*/ |
| 276 | out32r(PTM1LA, ptmla[0]); /* insert address */ |
| 277 | out32r(PTM1MS, ptmms[0]); /* insert size, enable bit is 1 */ |
wdenk | 4654af2 | 2003-10-22 09:00:28 +0000 | [diff] [blame] | 278 | pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_1, ptmpcila[0]); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 279 | |
| 280 | /*--------------------------------------------------------------------------+ |
| 281 | * 405GP PCI Target configuration. (PTM2) |
| 282 | *--------------------------------------------------------------------------*/ |
| 283 | out32r(PTM2LA, ptmla[1]); /* insert address */ |
wdenk | 4654af2 | 2003-10-22 09:00:28 +0000 | [diff] [blame] | 284 | pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2, ptmpcila[1]); |
| 285 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 286 | if (ptmms[1] == 0) |
| 287 | { |
| 288 | out32r(PTM2MS, 0x00000001); /* set enable bit */ |
| 289 | pci_write_config_dword(PCIDEVID_405GP, PCI_BASE_ADDRESS_2, 0x00000000); |
| 290 | out32r(PTM2MS, 0x00000000); /* disable */ |
| 291 | } |
| 292 | else |
| 293 | { |
| 294 | out32r(PTM2MS, ptmms[1]); /* insert size, enable bit is 1 */ |
| 295 | } |
| 296 | |
| 297 | /* |
| 298 | * Insert Subsystem Vendor and Device ID |
| 299 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 300 | pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_VENDOR_ID, CONFIG_SYS_PCI_SUBSYS_VENDORID); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 301 | #ifdef CONFIG_CPCI405 |
Matthias Fuchs | d0a1364 | 2009-07-03 16:06:06 +0200 | [diff] [blame] | 302 | if (is_pci_host(hose)) |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 303 | pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CONFIG_SYS_PCI_SUBSYS_DEVICEID); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 304 | else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 305 | pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CONFIG_SYS_PCI_SUBSYS_DEVICEID2); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 306 | #else |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 307 | pci_write_config_word(PCIDEVID_405GP, PCI_SUBSYSTEM_ID, CONFIG_SYS_PCI_SUBSYS_DEVICEID); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 308 | #endif |
| 309 | |
| 310 | /* |
| 311 | * Insert Class-code |
| 312 | */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 313 | #ifdef CONFIG_SYS_PCI_CLASSCODE |
| 314 | pci_write_config_word(PCIDEVID_405GP, PCI_CLASS_SUB_CODE, CONFIG_SYS_PCI_CLASSCODE); |
| 315 | #endif /* CONFIG_SYS_PCI_CLASSCODE */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 316 | |
| 317 | /*--------------------------------------------------------------------------+ |
Wolfgang Denk | 8ed44d9 | 2008-10-19 02:35:50 +0200 | [diff] [blame] | 318 | * If PCI speed = 66MHz, set 66MHz capable bit. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 319 | *--------------------------------------------------------------------------*/ |
| 320 | if (bd->bi_pci_busfreq >= 66000000) { |
| 321 | pci_read_config_word(PCIDEVID_405GP, PCI_STATUS, &temp_short); |
| 322 | pci_write_config_word(PCIDEVID_405GP,PCI_STATUS,(temp_short|PCI_STATUS_66MHZ)); |
| 323 | } |
| 324 | |
| 325 | #if (CONFIG_PCI_HOST != PCI_HOST_ADAPTER) |
wdenk | 4654af2 | 2003-10-22 09:00:28 +0000 | [diff] [blame] | 326 | #if (CONFIG_PCI_HOST == PCI_HOST_AUTO) |
Matthias Fuchs | d0a1364 | 2009-07-03 16:06:06 +0200 | [diff] [blame] | 327 | if (is_pci_host(hose) || |
stroese | 5e746fc | 2004-12-16 18:15:52 +0000 | [diff] [blame] | 328 | (((s = getenv("pciscan")) != NULL) && (strcmp(s, "yes") == 0))) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 329 | #endif |
| 330 | { |
| 331 | /*--------------------------------------------------------------------------+ |
| 332 | * Write the 405GP PCI Configuration regs. |
| 333 | * Enable 405GP to be a master on the PCI bus (PMM). |
| 334 | * Enable 405GP to act as a PCI memory target (PTM). |
| 335 | *--------------------------------------------------------------------------*/ |
| 336 | pci_read_config_word(PCIDEVID_405GP, PCI_COMMAND, &temp_short); |
| 337 | pci_write_config_word(PCIDEVID_405GP, PCI_COMMAND, temp_short | |
| 338 | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY); |
| 339 | } |
| 340 | #endif |
| 341 | |
Matthias Fuchs | 632e9b6 | 2009-07-08 15:31:57 +0200 | [diff] [blame] | 342 | #if defined(CONFIG_405EP) |
| 343 | /* |
| 344 | * on ppc405ep vendor/device id is not set |
| 345 | * The user manual says 0x1014 (IBM) / 0x0156 (405GP!) |
| 346 | * are the correct values. |
| 347 | */ |
| 348 | pci_write_config_word(PCIDEVID_405GP, PCI_VENDOR_ID, PCI_VENDOR_ID_IBM); |
| 349 | pci_write_config_word(PCIDEVID_405GP, |
| 350 | PCI_DEVICE_ID, PCI_DEVICE_ID_IBM_405GP); |
stroese | 428c563 | 2003-09-12 08:52:09 +0000 | [diff] [blame] | 351 | #endif |
| 352 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 353 | /* |
| 354 | * Set HCE bit (Host Configuration Enabled) |
| 355 | */ |
| 356 | pci_read_config_word(PCIDEVID_405GP, PCIBRDGOPT2, &temp_short); |
| 357 | pci_write_config_word(PCIDEVID_405GP, PCIBRDGOPT2, (temp_short | 0x0001)); |
| 358 | |
| 359 | #ifdef CONFIG_PCI_PNP |
| 360 | /*--------------------------------------------------------------------------+ |
| 361 | * Scan the PCI bus and configure devices found. |
| 362 | *--------------------------------------------------------------------------*/ |
| 363 | #if (CONFIG_PCI_HOST == PCI_HOST_AUTO) |
Matthias Fuchs | d0a1364 | 2009-07-03 16:06:06 +0200 | [diff] [blame] | 364 | if (is_pci_host(hose) || |
stroese | 5e746fc | 2004-12-16 18:15:52 +0000 | [diff] [blame] | 365 | (((s = getenv("pciscan")) != NULL) && (strcmp(s, "yes") == 0))) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 366 | #endif |
| 367 | { |
| 368 | #ifdef CONFIG_PCI_SCAN_SHOW |
| 369 | printf("PCI: Bus Dev VenId DevId Class Int\n"); |
| 370 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 371 | hose->last_busno = pci_hose_scan(hose); |
| 372 | } |
| 373 | #endif /* CONFIG_PCI_PNP */ |
| 374 | |
| 375 | } |
| 376 | |
| 377 | /* |
Marcel Ziswiler | 7817cb2 | 2007-12-30 03:30:46 +0100 | [diff] [blame] | 378 | * drivers/pci/pci.c skips every host bridge but the 405GP since it could |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 379 | * be set as an Adapter. |
| 380 | * |
| 381 | * I (Andrew May) don't know what we should do here, but I don't want |
| 382 | * the auto setup of a PCI device disabling what is done pci_405gp_init |
| 383 | * as has happened before. |
| 384 | */ |
| 385 | void pci_405gp_setup_bridge(struct pci_controller *hose, pci_dev_t dev, |
| 386 | struct pci_config_table *entry) |
| 387 | { |
| 388 | #ifdef DEBUG |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 389 | printf("405gp_setup_bridge\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 390 | #endif |
| 391 | } |
| 392 | |
| 393 | /* |
| 394 | * |
| 395 | */ |
| 396 | |
| 397 | void pci_405gp_fixup_irq(struct pci_controller *hose, pci_dev_t dev) |
| 398 | { |
| 399 | unsigned char int_line = 0xff; |
| 400 | |
| 401 | /* |
| 402 | * Write pci interrupt line register (cpci405 specific) |
| 403 | */ |
| 404 | switch (PCI_DEV(dev) & 0x03) |
| 405 | { |
| 406 | case 0: |
| 407 | int_line = 27 + 2; |
| 408 | break; |
| 409 | case 1: |
| 410 | int_line = 27 + 3; |
| 411 | break; |
| 412 | case 2: |
| 413 | int_line = 27 + 0; |
| 414 | break; |
| 415 | case 3: |
| 416 | int_line = 27 + 1; |
| 417 | break; |
| 418 | } |
| 419 | |
| 420 | pci_hose_write_config_byte(hose, dev, PCI_INTERRUPT_LINE, int_line); |
| 421 | } |
| 422 | |
| 423 | void pci_405gp_setup_vga(struct pci_controller *hose, pci_dev_t dev, |
| 424 | struct pci_config_table *entry) |
| 425 | { |
| 426 | unsigned int cmdstat = 0; |
| 427 | |
Stefan Roese | f3fecfe | 2006-03-13 09:43:01 +0100 | [diff] [blame] | 428 | pciauto_setup_device(hose, dev, 6, hose->pci_mem, hose->pci_prefetch, hose->pci_io); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 429 | |
| 430 | /* always enable io space on vga boards */ |
| 431 | pci_hose_read_config_dword(hose, dev, PCI_COMMAND, &cmdstat); |
| 432 | cmdstat |= PCI_COMMAND_IO; |
| 433 | pci_hose_write_config_dword(hose, dev, PCI_COMMAND, cmdstat); |
| 434 | } |
| 435 | |
Wolfgang Denk | 9045f33 | 2007-06-08 10:24:58 +0200 | [diff] [blame] | 436 | #if !(defined(CONFIG_PIP405) || defined (CONFIG_MIP405)) && !(defined (CONFIG_SC3)) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 437 | |
| 438 | /* |
| 439 | *As is these functs get called out of flash Not a horrible |
| 440 | *thing, but something to keep in mind. (no statics?) |
| 441 | */ |
| 442 | static struct pci_config_table pci_405gp_config_table[] = { |
| 443 | /*if VendID is 0 it terminates the table search (ie Walnut)*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 444 | #ifdef CONFIG_SYS_PCI_SUBSYS_VENDORID |
| 445 | {CONFIG_SYS_PCI_SUBSYS_VENDORID, PCI_ANY_ID, PCI_CLASS_BRIDGE_HOST, |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 446 | PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_bridge}, |
| 447 | #endif |
| 448 | {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_DISPLAY_VGA, |
| 449 | PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_vga}, |
| 450 | |
| 451 | {PCI_ANY_ID, PCI_ANY_ID, PCI_CLASS_NOT_DEFINED_VGA, |
| 452 | PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, pci_405gp_setup_vga}, |
| 453 | |
| 454 | { } |
| 455 | }; |
| 456 | |
| 457 | static struct pci_controller hose = { |
| 458 | fixup_irq: pci_405gp_fixup_irq, |
| 459 | config_table: pci_405gp_config_table, |
| 460 | }; |
| 461 | |
stroese | ad10dd9 | 2003-02-14 11:21:23 +0000 | [diff] [blame] | 462 | void pci_init_board(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 463 | { |
| 464 | /*we want the ptrs to RAM not flash (ie don't use init list)*/ |
| 465 | hose.fixup_irq = pci_405gp_fixup_irq; |
| 466 | hose.config_table = pci_405gp_config_table; |
| 467 | pci_405gp_init(&hose); |
| 468 | } |
| 469 | |
| 470 | #endif |
| 471 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 472 | #endif /* CONFIG_405GP */ |
| 473 | |
| 474 | /*-----------------------------------------------------------------------------+ |
| 475 | * CONFIG_440 |
| 476 | *-----------------------------------------------------------------------------*/ |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 477 | #if defined(CONFIG_440) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 478 | |
| 479 | static struct pci_controller ppc440_hose = {0}; |
| 480 | |
Stefan Roese | 9a81c61 | 2009-10-29 16:54:52 +0100 | [diff] [blame] | 481 | /* |
| 482 | * This routine is called to determine if a pci scan should be |
| 483 | * performed. With various hardware environments (especially cPCI and |
| 484 | * PPMC) it's insufficient to depend on the state of the arbiter enable |
| 485 | * bit in the strap register, or generic host/adapter assumptions. |
| 486 | * |
| 487 | * Rather than hard-code a bad assumption in the general 440 code, the |
| 488 | * 440 pci code requires the board to decide at runtime. |
| 489 | * |
| 490 | * Return 0 for adapter mode, non-zero for host (monarch) mode. |
| 491 | * |
| 492 | * Weak default implementation: "Normal" boards implement the PCI |
| 493 | * host functionality. This can be overridden for PCI adapter boards. |
| 494 | */ |
| 495 | int __is_pci_host(struct pci_controller *hose) |
| 496 | { |
| 497 | return 1; |
| 498 | } |
| 499 | int is_pci_host(struct pci_controller *hose) |
| 500 | __attribute__((weak, alias("__is_pci_host"))); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 501 | |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 502 | #if defined(CONFIG_440EP) || defined(CONFIG_440EPX) || \ |
| 503 | defined(CONFIG_440GR) || defined(CONFIG_440GRX) |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 504 | |
| 505 | #if defined(CONFIG_SYS_PCI_TARGET_INIT) |
| 506 | /* |
| 507 | * pci_target_init |
| 508 | * |
| 509 | * The bootstrap configuration provides default settings for the pci |
| 510 | * inbound map (PIM). But the bootstrap config choices are limited and |
| 511 | * may not be sufficient for a given board. |
| 512 | */ |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 513 | void __pci_target_init(struct pci_controller *hose) |
| 514 | { |
| 515 | /* |
| 516 | * Set up Direct MMIO registers |
| 517 | */ |
| 518 | |
| 519 | /* |
| 520 | * PowerPC440 EP PCI Master configuration. |
| 521 | * Map one 1Gig range of PLB/processor addresses to PCI memory space. |
| 522 | * PLB address 0xA0000000-0xDFFFFFFF ==> PCI address 0xA0000000-0xDFFFFFFF |
| 523 | * Use byte reversed out routines to handle endianess. |
| 524 | * Make this region non-prefetchable. |
| 525 | */ |
| 526 | /* PMM0 Mask/Attribute - disabled b4 setting */ |
| 527 | out_le32((void *)PCIL0_PMM0MA, 0x00000000); |
| 528 | /* PMM0 Local Address */ |
| 529 | out_le32((void *)PCIL0_PMM0LA, CONFIG_SYS_PCI_MEMBASE); |
| 530 | /* PMM0 PCI Low Address */ |
| 531 | out_le32((void *)PCIL0_PMM0PCILA, CONFIG_SYS_PCI_MEMBASE); |
| 532 | /* PMM0 PCI High Address */ |
| 533 | out_le32((void *)PCIL0_PMM0PCIHA, 0x00000000); |
| 534 | /* 512M + No prefetching, and enable region */ |
| 535 | out_le32((void *)PCIL0_PMM0MA, 0xE0000001); |
| 536 | |
| 537 | /* PMM1 Mask/Attribute - disabled b4 setting */ |
| 538 | out_le32((void *)PCIL0_PMM1MA, 0x00000000); |
| 539 | /* PMM1 Local Address */ |
| 540 | out_le32((void *)PCIL0_PMM1LA, CONFIG_SYS_PCI_MEMBASE2); |
| 541 | /* PMM1 PCI Low Address */ |
| 542 | out_le32((void *)PCIL0_PMM1PCILA, CONFIG_SYS_PCI_MEMBASE2); |
| 543 | /* PMM1 PCI High Address */ |
| 544 | out_le32((void *)PCIL0_PMM1PCIHA, 0x00000000); |
| 545 | /* 512M + No prefetching, and enable region */ |
| 546 | out_le32((void *)PCIL0_PMM1MA, 0xE0000001); |
| 547 | |
| 548 | out_le32((void *)PCIL0_PTM1MS, 0x00000001); /* Memory Size/Attribute */ |
| 549 | out_le32((void *)PCIL0_PTM1LA, 0); /* Local Addr. Reg */ |
| 550 | out_le32((void *)PCIL0_PTM2MS, 0); /* Memory Size/Attribute */ |
| 551 | out_le32((void *)PCIL0_PTM2LA, 0); /* Local Addr. Reg */ |
| 552 | |
| 553 | /* |
| 554 | * Set up Configuration registers |
| 555 | */ |
| 556 | |
| 557 | /* Program the board's subsystem id/vendor id */ |
| 558 | pci_write_config_word(0, PCI_SUBSYSTEM_VENDOR_ID, |
| 559 | CONFIG_SYS_PCI_SUBSYS_VENDORID); |
| 560 | pci_write_config_word(0, PCI_SUBSYSTEM_ID, CONFIG_SYS_PCI_SUBSYS_ID); |
| 561 | |
| 562 | /* Configure command register as bus master */ |
| 563 | pci_write_config_word(0, PCI_COMMAND, PCI_COMMAND_MASTER); |
| 564 | |
| 565 | /* 240nS PCI clock */ |
| 566 | pci_write_config_word(0, PCI_LATENCY_TIMER, 1); |
| 567 | |
| 568 | /* No error reporting */ |
| 569 | pci_write_config_word(0, PCI_ERREN, 0); |
| 570 | |
| 571 | pci_write_config_dword(0, PCI_BRDGOPT2, 0x00000101); |
| 572 | } |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 573 | #endif /* CONFIG_SYS_PCI_TARGET_INIT */ |
| 574 | |
| 575 | /* |
| 576 | * pci_pre_init |
| 577 | * |
| 578 | * This routine is called just prior to registering the hose and gives |
| 579 | * the board the opportunity to check things. Returning a value of zero |
| 580 | * indicates that things are bad & PCI initialization should be aborted. |
| 581 | * |
| 582 | * Different boards may wish to customize the pci controller structure |
| 583 | * (add regions, override default access routines, etc) or perform |
| 584 | * certain pre-initialization actions. |
| 585 | * |
| 586 | */ |
| 587 | int __pci_pre_init(struct pci_controller *hose) |
| 588 | { |
| 589 | u32 reg; |
| 590 | |
| 591 | /* |
| 592 | * Set priority for all PLB3 devices to 0. |
| 593 | * Set PLB3 arbiter to fair mode. |
| 594 | */ |
| 595 | mfsdr(SD0_AMP1, reg); |
| 596 | mtsdr(SD0_AMP1, (reg & 0x000000FF) | 0x0000FF00); |
| 597 | reg = mfdcr(PLB3_ACR); |
| 598 | mtdcr(PLB3_ACR, reg | 0x80000000); |
| 599 | |
| 600 | /* |
| 601 | * Set priority for all PLB4 devices to 0. |
| 602 | */ |
| 603 | mfsdr(SD0_AMP0, reg); |
| 604 | mtsdr(SD0_AMP0, (reg & 0x000000FF) | 0x0000FF00); |
| 605 | reg = mfdcr(PLB4_ACR) | 0xa0000000; |
| 606 | mtdcr(PLB4_ACR, reg); |
| 607 | |
| 608 | /* |
| 609 | * Set Nebula PLB4 arbiter to fair mode. |
| 610 | */ |
| 611 | /* Segment0 */ |
| 612 | reg = (mfdcr(PLB0_ACR) & ~PLB0_ACR_PPM_MASK) | PLB0_ACR_PPM_FAIR; |
| 613 | reg = (reg & ~PLB0_ACR_HBU_MASK) | PLB0_ACR_HBU_ENABLED; |
| 614 | reg = (reg & ~PLB0_ACR_RDP_MASK) | PLB0_ACR_RDP_4DEEP; |
| 615 | reg = (reg & ~PLB0_ACR_WRP_MASK) | PLB0_ACR_WRP_2DEEP; |
| 616 | mtdcr(PLB0_ACR, reg); |
| 617 | |
| 618 | /* Segment1 */ |
| 619 | reg = (mfdcr(PLB1_ACR) & ~PLB1_ACR_PPM_MASK) | PLB1_ACR_PPM_FAIR; |
| 620 | reg = (reg & ~PLB1_ACR_HBU_MASK) | PLB1_ACR_HBU_ENABLED; |
| 621 | reg = (reg & ~PLB1_ACR_RDP_MASK) | PLB1_ACR_RDP_4DEEP; |
| 622 | reg = (reg & ~PLB1_ACR_WRP_MASK) | PLB1_ACR_WRP_2DEEP; |
| 623 | mtdcr(PLB1_ACR, reg); |
| 624 | |
| 625 | #if defined(CONFIG_SYS_PCI_BOARD_FIXUP_IRQ) |
| 626 | hose->fixup_irq = board_pci_fixup_irq; |
| 627 | #endif |
| 628 | |
| 629 | return 1; |
| 630 | } |
| 631 | |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 632 | #else /* defined(CONFIG_440EP) ... */ |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 633 | |
| 634 | #if defined(CONFIG_SYS_PCI_TARGET_INIT) |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 635 | void __pci_target_init(struct pci_controller * hose) |
| 636 | { |
| 637 | /* |
| 638 | * Disable everything |
| 639 | */ |
| 640 | out_le32((void *)PCIL0_PIM0SA, 0); /* disable */ |
| 641 | out_le32((void *)PCIL0_PIM1SA, 0); /* disable */ |
| 642 | out_le32((void *)PCIL0_PIM2SA, 0); /* disable */ |
| 643 | out_le32((void *)PCIL0_EROMBA, 0); /* disable expansion rom */ |
| 644 | |
| 645 | /* |
| 646 | * Map all of SDRAM to PCI address 0x0000_0000. Note that the 440 |
| 647 | * strapping options do not support sizes such as 128/256 MB. |
| 648 | */ |
| 649 | out_le32((void *)PCIL0_PIM0LAL, CONFIG_SYS_SDRAM_BASE); |
| 650 | out_le32((void *)PCIL0_PIM0LAH, 0); |
| 651 | out_le32((void *)PCIL0_PIM0SA, ~(gd->ram_size - 1) | 1); |
| 652 | out_le32((void *)PCIL0_BAR0, 0); |
| 653 | |
| 654 | /* |
| 655 | * Program the board's subsystem id/vendor id |
| 656 | */ |
| 657 | out_le16((void *)PCIL0_SBSYSVID, CONFIG_SYS_PCI_SUBSYS_VENDORID); |
| 658 | out_le16((void *)PCIL0_SBSYSID, CONFIG_SYS_PCI_SUBSYS_DEVICEID); |
| 659 | |
| 660 | out_le16((void *)PCIL0_CMD, in_le16((void *)PCIL0_CMD) | |
| 661 | PCI_COMMAND_MEMORY); |
| 662 | } |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 663 | #endif /* CONFIG_SYS_PCI_TARGET_INIT */ |
| 664 | |
| 665 | int __pci_pre_init(struct pci_controller *hose) |
| 666 | { |
| 667 | /* |
| 668 | * This board is always configured as the host & requires the |
| 669 | * PCI arbiter to be enabled. |
| 670 | */ |
| 671 | if (!pci_arbiter_enabled()) { |
| 672 | printf("PCI: PCI Arbiter disabled!\n"); |
| 673 | return 0; |
| 674 | } |
| 675 | |
| 676 | return 1; |
| 677 | } |
| 678 | |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 679 | #endif /* defined(CONFIG_440EP) ... */ |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 680 | |
| 681 | #if defined(CONFIG_SYS_PCI_TARGET_INIT) |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 682 | void pci_target_init(struct pci_controller * hose) |
| 683 | __attribute__((weak, alias("__pci_target_init"))); |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 684 | #endif /* CONFIG_SYS_PCI_TARGET_INIT */ |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 685 | |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 686 | int pci_pre_init(struct pci_controller *hose) |
| 687 | __attribute__((weak, alias("__pci_pre_init"))); |
Stefan Roese | 1095493 | 2009-11-12 12:00:49 +0100 | [diff] [blame] | 688 | |
Stefan Roese | 6c70049 | 2009-11-12 17:19:37 +0100 | [diff] [blame] | 689 | #if defined(CONFIG_SYS_PCI_MASTER_INIT) |
| 690 | void __pci_master_init(struct pci_controller *hose) |
| 691 | { |
| 692 | u16 reg; |
| 693 | |
| 694 | /* |
| 695 | * Write the PowerPC440 EP PCI Configuration regs. |
| 696 | * Enable PowerPC440 EP to be a master on the PCI bus (PMM). |
| 697 | * Enable PowerPC440 EP to act as a PCI memory target (PTM). |
| 698 | */ |
| 699 | pci_read_config_word(0, PCI_COMMAND, ®); |
| 700 | pci_write_config_word(0, PCI_COMMAND, reg | |
| 701 | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY); |
| 702 | } |
| 703 | void pci_master_init(struct pci_controller *hose) |
| 704 | __attribute__((weak, alias("__pci_master_init"))); |
| 705 | #endif /* CONFIG_SYS_PCI_MASTER_INIT */ |
| 706 | |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 707 | int pci_440_init (struct pci_controller *hose) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 708 | { |
| 709 | int reg_num = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 710 | |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 711 | #ifndef CONFIG_DISABLE_PISE_TEST |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 712 | /*--------------------------------------------------------------------------+ |
| 713 | * The PCI initialization sequence enable bit must be set ... if not abort |
wdenk | 3c74e32 | 2004-02-22 23:46:08 +0000 | [diff] [blame] | 714 | * pci setup since updating the bit requires chip reset. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 715 | *--------------------------------------------------------------------------*/ |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 716 | #if defined(CONFIG_440GX) || defined(CONFIG_440SP) || defined(CONFIG_440SPE) |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 717 | unsigned long strap; |
| 718 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 719 | mfsdr(SDR0_SDSTP1,strap); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 720 | if ((strap & SDR0_SDSTP1_PISE_MASK) == 0) { |
wdenk | 3c74e32 | 2004-02-22 23:46:08 +0000 | [diff] [blame] | 721 | printf("PCI: SDR0_STRP1[PISE] not set.\n"); |
| 722 | printf("PCI: Configuration aborted.\n"); |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 723 | return -1; |
wdenk | 3c74e32 | 2004-02-22 23:46:08 +0000 | [diff] [blame] | 724 | } |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 725 | #elif defined(CONFIG_440GP) |
| 726 | unsigned long strap; |
| 727 | |
Stefan Roese | d1c3b27 | 2009-09-09 16:25:29 +0200 | [diff] [blame] | 728 | strap = mfdcr(CPC0_STRP1); |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 729 | if ((strap & CPC0_STRP1_PISE_MASK) == 0) { |
wdenk | 3c74e32 | 2004-02-22 23:46:08 +0000 | [diff] [blame] | 730 | printf("PCI: CPC0_STRP1[PISE] not set.\n"); |
| 731 | printf("PCI: Configuration aborted.\n"); |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 732 | return -1; |
wdenk | 3c74e32 | 2004-02-22 23:46:08 +0000 | [diff] [blame] | 733 | } |
| 734 | #endif |
Stefan Roese | 5568e61 | 2005-11-22 13:20:42 +0100 | [diff] [blame] | 735 | #endif /* CONFIG_DISABLE_PISE_TEST */ |
| 736 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 737 | /*--------------------------------------------------------------------------+ |
| 738 | * PCI controller init |
| 739 | *--------------------------------------------------------------------------*/ |
| 740 | hose->first_busno = 0; |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 741 | hose->last_busno = 0; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 742 | |
Marian Balakowicz | fbb0b55 | 2006-07-04 00:55:47 +0200 | [diff] [blame] | 743 | /* PCI I/O space */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 744 | pci_set_region(hose->regions + reg_num++, |
| 745 | 0x00000000, |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 746 | PCIL0_IOBASE, |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 747 | 0x10000, |
| 748 | PCI_REGION_IO); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 749 | |
Marian Balakowicz | fbb0b55 | 2006-07-04 00:55:47 +0200 | [diff] [blame] | 750 | /* PCI memory space */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 751 | pci_set_region(hose->regions + reg_num++, |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 752 | CONFIG_SYS_PCI_TARGBASE, |
| 753 | CONFIG_SYS_PCI_MEMBASE, |
| 754 | #ifdef CONFIG_SYS_PCI_MEMSIZE |
| 755 | CONFIG_SYS_PCI_MEMSIZE, |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 756 | #else |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 757 | 0x10000000, |
Stefan Roese | 899620c | 2006-08-15 14:22:35 +0200 | [diff] [blame] | 758 | #endif |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 759 | PCI_REGION_MEM ); |
Marian Balakowicz | fbb0b55 | 2006-07-04 00:55:47 +0200 | [diff] [blame] | 760 | |
| 761 | #if defined(CONFIG_PCI_SYS_MEM_BUS) && defined(CONFIG_PCI_SYS_MEM_PHYS) && \ |
| 762 | defined(CONFIG_PCI_SYS_MEM_SIZE) |
| 763 | /* System memory space */ |
| 764 | pci_set_region(hose->regions + reg_num++, |
| 765 | CONFIG_PCI_SYS_MEM_BUS, |
| 766 | CONFIG_PCI_SYS_MEM_PHYS, |
| 767 | CONFIG_PCI_SYS_MEM_SIZE, |
Kumar Gala | ff4e66e | 2009-02-06 09:49:31 -0600 | [diff] [blame] | 768 | PCI_REGION_MEM | PCI_REGION_SYS_MEMORY ); |
Marian Balakowicz | fbb0b55 | 2006-07-04 00:55:47 +0200 | [diff] [blame] | 769 | #endif |
| 770 | |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 771 | hose->region_count = reg_num; |
| 772 | |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 773 | pci_setup_indirect(hose, PCIL0_CFGADR, PCIL0_CFGDATA); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 774 | |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 775 | /* Let board change/modify hose & do initial checks */ |
Stefan Roese | a760b02 | 2009-11-12 16:41:09 +0100 | [diff] [blame] | 776 | if (pci_pre_init(hose) == 0) { |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 777 | printf("PCI: Board-specific initialization failed.\n"); |
| 778 | printf("PCI: Configuration aborted.\n"); |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 779 | return -1; |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 780 | } |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 781 | |
| 782 | pci_register_hose( hose ); |
| 783 | |
| 784 | /*--------------------------------------------------------------------------+ |
| 785 | * PCI target init |
| 786 | *--------------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 787 | #if defined(CONFIG_SYS_PCI_TARGET_INIT) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 788 | pci_target_init(hose); /* Let board setup pci target */ |
| 789 | #else |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 790 | out16r( PCIL0_SBSYSVID, CONFIG_SYS_PCI_SUBSYS_VENDORID ); |
| 791 | out16r( PCIL0_SBSYSID, CONFIG_SYS_PCI_SUBSYS_ID ); |
| 792 | out16r( PCIL0_CLS, 0x00060000 ); /* Bridge, host bridge */ |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 793 | #endif |
| 794 | |
Stefan Roese | 8ac41e3 | 2008-03-11 15:05:26 +0100 | [diff] [blame] | 795 | #if defined(CONFIG_440GX) || defined(CONFIG_440SPE) || \ |
| 796 | defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 797 | out32r( PCIL0_BRDGOPT1, 0x04000060 ); /* PLB Rq pri highest */ |
| 798 | out32r( PCIL0_BRDGOPT2, in32(PCIL0_BRDGOPT2) | 0x83 ); /* Enable host config, clear Timeout, ensure int src1 */ |
| 799 | #elif defined(PCIL0_BRDGOPT1) |
| 800 | out32r( PCIL0_BRDGOPT1, 0x10000060 ); /* PLB Rq pri highest */ |
| 801 | out32r( PCIL0_BRDGOPT2, in32(PCIL0_BRDGOPT2) | 1 ); /* Enable host config */ |
wdenk | 3c74e32 | 2004-02-22 23:46:08 +0000 | [diff] [blame] | 802 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 803 | |
| 804 | /*--------------------------------------------------------------------------+ |
| 805 | * PCI master init: default is one 256MB region for PCI memory: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 806 | * 0x3_00000000 - 0x3_0FFFFFFF ==> CONFIG_SYS_PCI_MEMBASE |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 807 | *--------------------------------------------------------------------------*/ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 808 | #if defined(CONFIG_SYS_PCI_MASTER_INIT) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 809 | pci_master_init(hose); /* Let board setup pci master */ |
| 810 | #else |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 811 | out32r( PCIL0_POM0SA, 0 ); /* disable */ |
| 812 | out32r( PCIL0_POM1SA, 0 ); /* disable */ |
| 813 | out32r( PCIL0_POM2SA, 0 ); /* disable */ |
Anatolij Gustschin | f8853d1 | 2009-03-20 12:45:50 +0100 | [diff] [blame] | 814 | #if defined(CONFIG_440SPE) |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 815 | out32r( PCIL0_POM0LAL, 0x10000000 ); |
| 816 | out32r( PCIL0_POM0LAH, 0x0000000c ); |
Anatolij Gustschin | f8853d1 | 2009-03-20 12:45:50 +0100 | [diff] [blame] | 817 | #elif defined(CONFIG_460EX) || defined(CONFIG_460GT) |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 818 | out32r( PCIL0_POM0LAL, 0x20000000 ); |
| 819 | out32r( PCIL0_POM0LAH, 0x0000000c ); |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 820 | #else |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 821 | out32r( PCIL0_POM0LAL, 0x00000000 ); |
| 822 | out32r( PCIL0_POM0LAH, 0x00000003 ); |
Marian Balakowicz | 6c5879f | 2006-06-30 16:30:46 +0200 | [diff] [blame] | 823 | #endif |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 824 | out32r( PCIL0_POM0PCIAL, CONFIG_SYS_PCI_MEMBASE ); |
| 825 | out32r( PCIL0_POM0PCIAH, 0x00000000 ); |
| 826 | out32r( PCIL0_POM0SA, 0xf0000001 ); /* 256MB, enabled */ |
| 827 | out32r( PCIL0_STS, in32r( PCIL0_STS ) & ~0x0000fff8 ); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 828 | #endif |
| 829 | |
| 830 | /*--------------------------------------------------------------------------+ |
| 831 | * PCI host configuration -- we don't make any assumptions here ... the |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 832 | * _board_must_indicate_ what to do -- there's just too many runtime |
| 833 | * scenarios in environments like cPCI, PPMC, etc. to make a determination |
| 834 | * based on hard-coded values or state of arbiter enable. |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 835 | *--------------------------------------------------------------------------*/ |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 836 | if (is_pci_host(hose)) { |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 837 | #ifdef CONFIG_PCI_SCAN_SHOW |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 838 | printf("PCI: Bus Dev VenId DevId Class Int\n"); |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 839 | #endif |
Stefan Roese | 887e2ec | 2006-09-07 11:51:23 +0200 | [diff] [blame] | 840 | #if !defined(CONFIG_440EP) && !defined(CONFIG_440GR) && \ |
| 841 | !defined(CONFIG_440EPX) && !defined(CONFIG_440GRX) |
Niklaus Giger | ddc922f | 2009-10-04 20:04:20 +0200 | [diff] [blame] | 842 | out16r( PCIL0_CMD, in16r( PCIL0_CMD ) | PCI_COMMAND_MASTER); |
Stefan Roese | c157d8e | 2005-08-01 16:41:48 +0200 | [diff] [blame] | 843 | #endif |
Stefan Roese | 6e7fb6e | 2005-11-29 18:18:21 +0100 | [diff] [blame] | 844 | hose->last_busno = pci_hose_scan(hose); |
| 845 | } |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 846 | return hose->last_busno; |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 847 | } |
| 848 | |
stroese | ad10dd9 | 2003-02-14 11:21:23 +0000 | [diff] [blame] | 849 | void pci_init_board(void) |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 850 | { |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 851 | int busno; |
| 852 | |
| 853 | busno = pci_440_init (&ppc440_hose); |
Dirk Eibach | 59d1bda | 2009-02-03 15:15:21 +0100 | [diff] [blame] | 854 | #if (defined(CONFIG_440SPE) || \ |
| 855 | defined(CONFIG_460EX) || defined(CONFIG_460GT)) && \ |
| 856 | !defined(CONFIG_PCI_DISABLE_PCIE) |
Grzegorz Bernacki | 7f19139 | 2007-09-07 18:20:23 +0200 | [diff] [blame] | 857 | pcie_setup_hoses(busno + 1); |
Rafal Jaworowski | 692519b | 2006-08-10 12:43:17 +0200 | [diff] [blame] | 858 | #endif |
wdenk | c609719 | 2002-11-03 00:24:07 +0000 | [diff] [blame] | 859 | } |
| 860 | |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 861 | #endif /* CONFIG_440 */ |
Stefan Roese | 1d7b874 | 2007-10-05 17:09:36 +0200 | [diff] [blame] | 862 | |
| 863 | #if defined(CONFIG_405EX) |
| 864 | void pci_init_board(void) |
| 865 | { |
| 866 | #ifdef CONFIG_PCI_SCAN_SHOW |
| 867 | printf("PCI: Bus Dev VenId DevId Class Int\n"); |
| 868 | #endif |
| 869 | pcie_setup_hoses(0); |
| 870 | } |
| 871 | #endif /* CONFIG_405EX */ |
| 872 | |
Matthias Fuchs | 5a1c9ff | 2007-06-24 17:23:41 +0200 | [diff] [blame] | 873 | #endif /* CONFIG_PCI */ |