2 * (C) Copyright 2002 ELTEC Elektronik AG
3 * Frank Gottschling <fgottschling@eltec.de>
5 * SPDX-License-Identifier: GPL-2.0+
9 * PCI initialisation for the MPC10x.
18 struct pci_controller local_hose;
20 void pci_init_board(void)
22 struct pci_controller* hose = (struct pci_controller *)&local_hose;
25 hose->first_busno = 0;
26 hose->last_busno = 0xff;
28 pci_set_region(hose->regions + 0,
29 CONFIG_SYS_PCI_MEMORY_BUS,
30 CONFIG_SYS_PCI_MEMORY_PHYS,
31 CONFIG_SYS_PCI_MEMORY_SIZE,
32 PCI_REGION_MEM | PCI_REGION_SYS_MEMORY);
34 /* PCI memory space */
35 pci_set_region(hose->regions + 1,
36 CONFIG_SYS_PCI_MEM_BUS,
37 CONFIG_SYS_PCI_MEM_PHYS,
38 CONFIG_SYS_PCI_MEM_SIZE,
41 /* ISA/PCI memory space */
42 pci_set_region(hose->regions + 2,
43 CONFIG_SYS_ISA_MEM_BUS,
44 CONFIG_SYS_ISA_MEM_PHYS,
45 CONFIG_SYS_ISA_MEM_SIZE,
49 pci_set_region(hose->regions + 3,
50 CONFIG_SYS_PCI_IO_BUS,
51 CONFIG_SYS_PCI_IO_PHYS,
52 CONFIG_SYS_PCI_IO_SIZE,
55 /* ISA/PCI I/O space */
56 pci_set_region(hose->regions + 4,
57 CONFIG_SYS_ISA_IO_BUS,
58 CONFIG_SYS_ISA_IO_PHYS,
59 CONFIG_SYS_ISA_IO_SIZE,
62 hose->region_count = 5;
64 pci_setup_indirect(hose,
68 pci_register_hose(hose);
70 hose->last_busno = pci_hose_scan(hose);
72 /* Initialises the MPC10x PCI Configuration regs. */
73 pci_read_config_word (PCI_BDF(0,0,0), PCI_COMMAND, ®16);
74 reg16 |= PCI_COMMAND_SERR | PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY;
75 pci_write_config_word(PCI_BDF(0,0,0), PCI_COMMAND, reg16);
77 /* Clear non-reserved bits in status register */
78 pci_write_config_word(PCI_BDF(0,0,0), PCI_STATUS, 0xffff);
81 #endif /* CONFIG_PCI */