2 * numa.c - Low-level PCI access for NUMA-Q machines
6 #include <linux/init.h>
7 #include <linux/nodemask.h>
10 #define BUS2QUAD(global) (mp_bus_id_to_node[global])
11 #define BUS2LOCAL(global) (mp_bus_id_to_local[global])
12 #define QUADLOCAL2BUS(quad,local) (quad_local_to_mp_bus_id[quad][local])
14 #define PCI_CONF1_MQ_ADDRESS(bus, devfn, reg) \
15 (0x80000000 | (BUS2LOCAL(bus) << 16) | (devfn << 8) | (reg & ~3))
17 static int pci_conf1_mq_read(unsigned int seg, unsigned int bus,
18 unsigned int devfn, int reg, int len, u32 *value)
22 if (!value || (bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255))
25 spin_lock_irqsave(&pci_config_lock, flags);
27 outl_quad(PCI_CONF1_MQ_ADDRESS(bus, devfn, reg), 0xCF8, BUS2QUAD(bus));
31 *value = inb_quad(0xCFC + (reg & 3), BUS2QUAD(bus));
34 *value = inw_quad(0xCFC + (reg & 2), BUS2QUAD(bus));
37 *value = inl_quad(0xCFC, BUS2QUAD(bus));
41 spin_unlock_irqrestore(&pci_config_lock, flags);
46 static int pci_conf1_mq_write(unsigned int seg, unsigned int bus,
47 unsigned int devfn, int reg, int len, u32 value)
51 if ((bus >= MAX_MP_BUSSES) || (devfn > 255) || (reg > 255))
54 spin_lock_irqsave(&pci_config_lock, flags);
56 outl_quad(PCI_CONF1_MQ_ADDRESS(bus, devfn, reg), 0xCF8, BUS2QUAD(bus));
60 outb_quad((u8)value, 0xCFC + (reg & 3), BUS2QUAD(bus));
63 outw_quad((u16)value, 0xCFC + (reg & 2), BUS2QUAD(bus));
66 outl_quad((u32)value, 0xCFC, BUS2QUAD(bus));
70 spin_unlock_irqrestore(&pci_config_lock, flags);
75 #undef PCI_CONF1_MQ_ADDRESS
77 static struct pci_raw_ops pci_direct_conf1_mq = {
78 .read = pci_conf1_mq_read,
79 .write = pci_conf1_mq_write
83 static void __devinit pci_fixup_i450nx(struct pci_dev *d)
86 * i450NX -- Find and scan all secondary buses on all PXB's.
90 int quad = BUS2QUAD(d->bus->number);
92 printk("PCI: Searching for i450NX host bridges on %s\n", pci_name(d));
94 for(pxb=0; pxb<2; pxb++) {
95 pci_read_config_byte(d, reg++, &busno);
96 pci_read_config_byte(d, reg++, &suba);
97 pci_read_config_byte(d, reg++, &subb);
98 DBG("i450NX PXB %d: %02x/%02x/%02x\n", pxb, busno, suba, subb);
100 pci_scan_bus(QUADLOCAL2BUS(quad,busno), &pci_root_ops, NULL); /* Bus A */
102 pci_scan_bus(QUADLOCAL2BUS(quad,suba+1), &pci_root_ops, NULL); /* Bus B */
104 pcibios_last_bus = -1;
106 DECLARE_PCI_FIXUP_HEADER(PCI_VENDOR_ID_INTEL, PCI_DEVICE_ID_INTEL_82451NX, pci_fixup_i450nx);
108 static int __init pci_numa_init(void)
112 raw_pci_ops = &pci_direct_conf1_mq;
114 if (pcibios_scanned++)
117 pci_root_bus = pcibios_scan_root(0);
119 pci_bus_add_devices(pci_root_bus);
120 if (num_online_nodes() > 1)
121 for_each_online_node(quad) {
124 printk("Scanning PCI bus %d for quad %d\n",
125 QUADLOCAL2BUS(quad,0), quad);
126 pci_scan_bus(QUADLOCAL2BUS(quad,0),
127 &pci_root_ops, NULL);
132 subsys_initcall(pci_numa_init);