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