2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
6 * Copyright (C) 1992 - 1997, 2000-2006 Silicon Graphics, Inc. All rights reserved.
9 #include <linux/slab.h>
10 #include <linux/export.h>
11 #include <asm/sn/types.h>
12 #include <asm/sn/addrs.h>
13 #include <asm/sn/io.h>
14 #include <asm/sn/module.h>
15 #include <asm/sn/intr.h>
16 #include <asm/sn/pcibus_provider_defs.h>
17 #include <asm/sn/pcidev.h>
18 #include <asm/sn/sn_sal.h>
19 #include "xtalk/hubdev.h"
22 * The code in this file will only be executed when running with
23 * a PROM that does _not_ have base ACPI IO support.
24 * (i.e., SN_ACPI_BASE_SUPPORT() == 0)
27 static int max_segment_number
; /* Default highest segment number */
28 static int max_pcibus_number
= 255; /* Default highest pci bus number */
32 * Retrieve the hub device info structure for the given nasid.
34 static inline u64
sal_get_hubdev_info(u64 handle
, u64 address
)
36 struct ia64_sal_retval ret_stuff
;
40 SAL_CALL_NOLOCK(ret_stuff
,
41 (u64
) SN_SAL_IOIF_GET_HUBDEV_INFO
,
42 (u64
) handle
, (u64
) address
, 0, 0, 0, 0, 0);
47 * Retrieve the pci bus information given the bus number.
49 static inline u64
sal_get_pcibus_info(u64 segment
, u64 busnum
, u64 address
)
51 struct ia64_sal_retval ret_stuff
;
55 SAL_CALL_NOLOCK(ret_stuff
,
56 (u64
) SN_SAL_IOIF_GET_PCIBUS_INFO
,
57 (u64
) segment
, (u64
) busnum
, (u64
) address
, 0, 0, 0, 0);
62 * Retrieve the pci device information given the bus and device|function number.
65 sal_get_pcidev_info(u64 segment
, u64 bus_number
, u64 devfn
, u64 pci_dev
,
68 struct ia64_sal_retval ret_stuff
;
72 SAL_CALL_NOLOCK(ret_stuff
,
73 (u64
) SN_SAL_IOIF_GET_PCIDEV_INFO
,
74 (u64
) segment
, (u64
) bus_number
, (u64
) devfn
,
82 * sn_fixup_ionodes() - This routine initializes the HUB data structure for
83 * each node in the system. This function is only
84 * executed when running with a non-ACPI capable PROM.
86 static void __init
sn_fixup_ionodes(void)
89 struct hubdev_info
*hubdev
;
93 extern void sn_common_hubdev_init(struct hubdev_info
*);
96 * Get SGI Specific HUB chipset information.
97 * Inform Prom that this kernel can support domain bus numbering.
99 for (i
= 0; i
< num_cnodes
; i
++) {
100 hubdev
= (struct hubdev_info
*)(NODEPDA(i
)->pdinfo
);
101 nasid
= cnodeid_to_nasid(i
);
102 hubdev
->max_segment_number
= 0xffffffff;
103 hubdev
->max_pcibus_number
= 0xff;
104 status
= sal_get_hubdev_info(nasid
, (u64
) __pa(hubdev
));
108 /* Save the largest Domain and pcibus numbers found. */
109 if (hubdev
->max_segment_number
) {
111 * Dealing with a Prom that supports segments.
113 max_segment_number
= hubdev
->max_segment_number
;
114 max_pcibus_number
= hubdev
->max_pcibus_number
;
116 sn_common_hubdev_init(hubdev
);
121 * sn_pci_legacy_window_fixup - Setup PCI resources for
122 * legacy IO and MEM space. This needs to
123 * be done here, as the PROM does not have
124 * ACPI support defining the root buses
125 * and their resources (_CRS),
128 sn_legacy_pci_window_fixup(struct resource
*res
,
129 u64 legacy_io
, u64 legacy_mem
)
131 res
[0].name
= "legacy_io";
132 res
[0].flags
= IORESOURCE_IO
;
133 res
[0].start
= legacy_io
;
134 res
[0].end
= res
[0].start
+ 0xffff;
135 res
[0].parent
= &ioport_resource
;
136 res
[1].name
= "legacy_mem";
137 res
[1].flags
= IORESOURCE_MEM
;
138 res
[1].start
= legacy_mem
;
139 res
[1].end
= res
[1].start
+ (1024 * 1024) - 1;
140 res
[1].parent
= &iomem_resource
;
144 * sn_io_slot_fixup() - We are not running with an ACPI capable PROM,
145 * and need to convert the pci_dev->resource
146 * 'start' and 'end' addresses to mapped addresses,
147 * and setup the pci_controller->window array entries.
150 sn_io_slot_fixup(struct pci_dev
*dev
)
153 unsigned long addr
, end
, size
, start
;
154 struct pcidev_info
*pcidev_info
;
155 struct sn_irq_info
*sn_irq_info
;
158 pcidev_info
= kzalloc(sizeof(struct pcidev_info
), GFP_KERNEL
);
160 panic("%s: Unable to alloc memory for pcidev_info", __func__
);
162 sn_irq_info
= kzalloc(sizeof(struct sn_irq_info
), GFP_KERNEL
);
164 panic("%s: Unable to alloc memory for sn_irq_info", __func__
);
166 /* Call to retrieve pci device information needed by kernel. */
167 status
= sal_get_pcidev_info((u64
) pci_domain_nr(dev
),
168 (u64
) dev
->bus
->number
,
170 (u64
) __pa(pcidev_info
),
171 (u64
) __pa(sn_irq_info
));
173 BUG_ON(status
); /* Cannot get platform pci device information */
176 /* Copy over PIO Mapped Addresses */
177 for (idx
= 0; idx
<= PCI_ROM_RESOURCE
; idx
++) {
179 if (!pcidev_info
->pdi_pio_mapped_addr
[idx
]) {
183 start
= dev
->resource
[idx
].start
;
184 end
= dev
->resource
[idx
].end
;
189 addr
= pcidev_info
->pdi_pio_mapped_addr
[idx
];
190 addr
= ((addr
<< 4) >> 4) | __IA64_UNCACHED_OFFSET
;
191 dev
->resource
[idx
].start
= addr
;
192 dev
->resource
[idx
].end
= addr
+ size
;
195 * if it's already in the device structure, remove it before
198 if (dev
->resource
[idx
].parent
&& dev
->resource
[idx
].parent
->child
)
199 release_resource(&dev
->resource
[idx
]);
201 if (dev
->resource
[idx
].flags
& IORESOURCE_IO
)
202 insert_resource(&ioport_resource
, &dev
->resource
[idx
]);
204 insert_resource(&iomem_resource
, &dev
->resource
[idx
]);
206 * If ROM, set the actual ROM image size, and mark as
209 if (idx
== PCI_ROM_RESOURCE
) {
213 rom
= ioremap(pci_resource_start(dev
, PCI_ROM_RESOURCE
),
215 image_size
= pci_get_rom_size(dev
, rom
, size
+ 1);
216 dev
->resource
[PCI_ROM_RESOURCE
].end
=
217 dev
->resource
[PCI_ROM_RESOURCE
].start
+
219 dev
->resource
[PCI_ROM_RESOURCE
].flags
|=
220 IORESOURCE_ROM_BIOS_COPY
;
224 sn_pci_fixup_slot(dev
, pcidev_info
, sn_irq_info
);
227 EXPORT_SYMBOL(sn_io_slot_fixup
);
230 * sn_pci_controller_fixup() - This routine sets up a bus's resources
231 * consistent with the Linux PCI abstraction layer.
234 sn_pci_controller_fixup(int segment
, int busnum
, struct pci_bus
*bus
)
237 struct pci_controller
*controller
;
238 struct pcibus_bussoft
*prom_bussoft_ptr
;
239 struct resource
*res
;
240 LIST_HEAD(resources
);
242 status
= sal_get_pcibus_info((u64
) segment
, (u64
) busnum
,
243 (u64
) ia64_tpa(&prom_bussoft_ptr
));
245 return; /*bus # does not exist */
246 prom_bussoft_ptr
= __va(prom_bussoft_ptr
);
248 controller
= kzalloc(sizeof(*controller
), GFP_KERNEL
);
250 controller
->segment
= segment
;
252 res
= kcalloc(2, sizeof(struct resource
), GFP_KERNEL
);
256 * Temporarily save the prom_bussoft_ptr for use by sn_bus_fixup().
257 * (platform_data will be overwritten later in sn_common_bus_fixup())
259 controller
->platform_data
= prom_bussoft_ptr
;
261 sn_legacy_pci_window_fixup(res
,
262 prom_bussoft_ptr
->bs_legacy_io
,
263 prom_bussoft_ptr
->bs_legacy_mem
);
264 pci_add_resource_offset(&resources
, &res
[0],
265 prom_bussoft_ptr
->bs_legacy_io
);
266 pci_add_resource_offset(&resources
, &res
[1],
267 prom_bussoft_ptr
->bs_legacy_mem
);
269 bus
= pci_scan_root_bus(NULL
, busnum
, &pci_root_ops
, controller
,
281 sn_bus_fixup(struct pci_bus
*bus
)
283 struct pci_dev
*pci_dev
= NULL
;
284 struct pcibus_bussoft
*prom_bussoft_ptr
;
286 if (!bus
->parent
) { /* If root bus */
287 prom_bussoft_ptr
= PCI_CONTROLLER(bus
)->platform_data
;
288 if (prom_bussoft_ptr
== NULL
) {
290 "sn_bus_fixup: 0x%04x:0x%02x Unable to "
291 "obtain prom_bussoft_ptr\n",
292 pci_domain_nr(bus
), bus
->number
);
295 sn_common_bus_fixup(bus
, prom_bussoft_ptr
);
297 list_for_each_entry(pci_dev
, &bus
->devices
, bus_list
) {
298 sn_io_slot_fixup(pci_dev
);
304 * sn_io_init - PROM does not have ACPI support to define nodes or root buses,
305 * so we need to do things the hard way, including initiating the
306 * bus scanning ourselves.
309 void __init
sn_io_init(void)
315 /* busses are not known yet ... */
316 for (i
= 0; i
<= max_segment_number
; i
++)
317 for (j
= 0; j
<= max_pcibus_number
; j
++)
318 sn_pci_controller_fixup(i
, j
, NULL
);