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-2004 Silicon Graphics, Inc. All rights reserved.
9 #include <linux/bootmem.h>
10 #include <linux/nodemask.h>
11 #include <asm/sn/types.h>
12 #include <asm/sn/sn_sal.h>
13 #include <asm/sn/addrs.h>
14 #include <asm/sn/pcibus_provider_defs.h>
15 #include <asm/sn/pcidev.h>
16 #include "pci/pcibr_provider.h"
17 #include "xtalk/xwidgetdev.h"
18 #include <asm/sn/geo.h>
19 #include "xtalk/hubdev.h"
20 #include <asm/sn/io.h>
21 #include <asm/sn/simulator.h>
22 #include <asm/sn/tioca_provider.h>
24 char master_baseio_wid;
25 nasid_t master_nasid = INVALID_NASID; /* Partition Master */
28 struct hubdev_info hubdev;
32 moduleid_t id; /* Module ID of this module */
33 struct slab_info slab_info[MAX_SLABS + 1];
36 int sn_ioif_inited = 0; /* SN I/O infrastructure initialized? */
38 struct sn_pcibus_provider *sn_pci_provider[PCIIO_ASIC_MAX_TYPES]; /* indexed by asic type */
41 * Hooks and struct for unsupported pci providers
45 sn_default_pci_map(struct pci_dev *pdev, unsigned long paddr, size_t size)
51 sn_default_pci_unmap(struct pci_dev *pdev, dma_addr_t addr, int direction)
57 sn_default_pci_bus_fixup(struct pcibus_bussoft *soft)
62 static struct sn_pcibus_provider sn_pci_default_provider = {
63 .dma_map = sn_default_pci_map,
64 .dma_map_consistent = sn_default_pci_map,
65 .dma_unmap = sn_default_pci_unmap,
66 .bus_fixup = sn_default_pci_bus_fixup,
70 * Retrieve the DMA Flush List given nasid. This list is needed
71 * to implement the WAR - Flush DMA data on PIO Reads.
73 static inline uint64_t
74 sal_get_widget_dmaflush_list(u64 nasid, u64 widget_num, u64 address)
77 struct ia64_sal_retval ret_stuff;
81 SAL_CALL_NOLOCK(ret_stuff,
82 (u64) SN_SAL_IOIF_GET_WIDGET_DMAFLUSH_LIST,
83 (u64) nasid, (u64) widget_num, (u64) address, 0, 0, 0,
90 * Retrieve the hub device info structure for the given nasid.
92 static inline uint64_t sal_get_hubdev_info(u64 handle, u64 address)
95 struct ia64_sal_retval ret_stuff;
99 SAL_CALL_NOLOCK(ret_stuff,
100 (u64) SN_SAL_IOIF_GET_HUBDEV_INFO,
101 (u64) handle, (u64) address, 0, 0, 0, 0, 0);
106 * Retrieve the pci bus information given the bus number.
108 static inline uint64_t sal_get_pcibus_info(u64 segment, u64 busnum, u64 address)
111 struct ia64_sal_retval ret_stuff;
112 ret_stuff.status = 0;
115 SAL_CALL_NOLOCK(ret_stuff,
116 (u64) SN_SAL_IOIF_GET_PCIBUS_INFO,
117 (u64) segment, (u64) busnum, (u64) address, 0, 0, 0, 0);
122 * Retrieve the pci device information given the bus and device|function number.
124 static inline uint64_t
125 sal_get_pcidev_info(u64 segment, u64 bus_number, u64 devfn, u64 pci_dev,
128 struct ia64_sal_retval ret_stuff;
129 ret_stuff.status = 0;
132 SAL_CALL_NOLOCK(ret_stuff,
133 (u64) SN_SAL_IOIF_GET_PCIDEV_INFO,
134 (u64) segment, (u64) bus_number, (u64) devfn,
141 * sn_alloc_pci_sysdata() - This routine allocates a pci controller
142 * which is expected as the pci_dev and pci_bus sysdata by the Linux
143 * PCI infrastructure.
145 static inline struct pci_controller *sn_alloc_pci_sysdata(void)
147 struct pci_controller *pci_sysdata;
149 pci_sysdata = kmalloc(sizeof(*pci_sysdata), GFP_KERNEL);
153 memset(pci_sysdata, 0, sizeof(*pci_sysdata));
158 * sn_fixup_ionodes() - This routine initializes the HUB data strcuture for
159 * each node in the system.
161 static void sn_fixup_ionodes(void)
164 struct sn_flush_device_list *sn_flush_device_list;
165 struct hubdev_info *hubdev;
170 for (i = 0; i < numionodes; i++) {
171 hubdev = (struct hubdev_info *)(NODEPDA(i)->pdinfo);
172 nasid = cnodeid_to_nasid(i);
173 status = sal_get_hubdev_info(nasid, (uint64_t) __pa(hubdev));
177 for (widget = 0; widget <= HUB_WIDGET_ID_MAX; widget++)
178 hubdev->hdi_xwidget_info[widget].xwi_hubinfo = hubdev;
180 if (!hubdev->hdi_flush_nasid_list.widget_p)
183 hubdev->hdi_flush_nasid_list.widget_p =
184 kmalloc((HUB_WIDGET_ID_MAX + 1) *
185 sizeof(struct sn_flush_device_list *), GFP_KERNEL);
187 memset(hubdev->hdi_flush_nasid_list.widget_p, 0x0,
188 (HUB_WIDGET_ID_MAX + 1) *
189 sizeof(struct sn_flush_device_list *));
191 for (widget = 0; widget <= HUB_WIDGET_ID_MAX; widget++) {
192 sn_flush_device_list = kmalloc(DEV_PER_WIDGET *
194 sn_flush_device_list),
196 memset(sn_flush_device_list, 0x0,
198 sizeof(struct sn_flush_device_list));
201 sal_get_widget_dmaflush_list(nasid, widget,
204 (sn_flush_device_list));
206 kfree(sn_flush_device_list);
210 hubdev->hdi_flush_nasid_list.widget_p[widget] =
211 sn_flush_device_list;
215 hub_error_init(hubdev);
217 ice_error_init(hubdev);
223 * sn_pci_fixup_slot() - This routine sets up a slot's resources
224 * consistent with the Linux PCI abstraction layer. Resources acquired
225 * from our PCI provider include PIO maps to BAR space and interrupt
228 static void sn_pci_fixup_slot(struct pci_dev *dev)
233 struct sn_irq_info *sn_irq_info;
234 struct pci_dev *host_pci_dev;
236 struct pcibus_bussoft *bs;
238 dev->sysdata = kmalloc(sizeof(struct pcidev_info), GFP_KERNEL);
239 if (SN_PCIDEV_INFO(dev) <= 0)
240 BUG(); /* Cannot afford to run out of memory */
241 memset(SN_PCIDEV_INFO(dev), 0, sizeof(struct pcidev_info));
243 sn_irq_info = kmalloc(sizeof(struct sn_irq_info), GFP_KERNEL);
244 if (sn_irq_info <= 0)
245 BUG(); /* Cannot afford to run out of memory */
246 memset(sn_irq_info, 0, sizeof(struct sn_irq_info));
248 /* Call to retrieve pci device information needed by kernel. */
249 status = sal_get_pcidev_info((u64) segment, (u64) dev->bus->number,
251 (u64) __pa(SN_PCIDEV_INFO(dev)),
252 (u64) __pa(sn_irq_info));
254 BUG(); /* Cannot get platform pci device information information */
256 /* Copy over PIO Mapped Addresses */
257 for (idx = 0; idx <= PCI_ROM_RESOURCE; idx++) {
258 unsigned long start, end, addr;
260 if (!SN_PCIDEV_INFO(dev)->pdi_pio_mapped_addr[idx])
263 start = dev->resource[idx].start;
264 end = dev->resource[idx].end;
266 addr = SN_PCIDEV_INFO(dev)->pdi_pio_mapped_addr[idx];
267 addr = ((addr << 4) >> 4) | __IA64_UNCACHED_OFFSET;
268 dev->resource[idx].start = addr;
269 dev->resource[idx].end = addr + size;
270 if (dev->resource[idx].flags & IORESOURCE_IO)
271 dev->resource[idx].parent = &ioport_resource;
273 dev->resource[idx].parent = &iomem_resource;
276 /* set up host bus linkages */
277 bs = SN_PCIBUS_BUSSOFT(dev->bus);
279 pci_find_slot(SN_PCIDEV_INFO(dev)->pdi_slot_host_handle >> 32,
280 SN_PCIDEV_INFO(dev)->
281 pdi_slot_host_handle & 0xffffffff);
282 SN_PCIDEV_INFO(dev)->pdi_host_pcidev_info =
283 SN_PCIDEV_INFO(host_pci_dev);
284 SN_PCIDEV_INFO(dev)->pdi_linux_pcidev = dev;
285 SN_PCIDEV_INFO(dev)->pdi_pcibus_info = bs;
287 if (bs && bs->bs_asic_type < PCIIO_ASIC_MAX_TYPES) {
288 SN_PCIDEV_BUSPROVIDER(dev) = sn_pci_provider[bs->bs_asic_type];
290 SN_PCIDEV_BUSPROVIDER(dev) = &sn_pci_default_provider;
293 /* Only set up IRQ stuff if this device has a host bus context */
294 if (bs && sn_irq_info->irq_irq) {
295 SN_PCIDEV_INFO(dev)->pdi_sn_irq_info = sn_irq_info;
296 dev->irq = SN_PCIDEV_INFO(dev)->pdi_sn_irq_info->irq_irq;
297 sn_irq_fixup(dev, sn_irq_info);
302 * sn_pci_controller_fixup() - This routine sets up a bus's resources
303 * consistent with the Linux PCI abstraction layer.
305 static void sn_pci_controller_fixup(int segment, int busnum)
310 struct pci_controller *controller;
311 struct pcibus_bussoft *prom_bussoft_ptr;
312 struct hubdev_info *hubdev_info;
314 struct sn_pcibus_provider *provider;
317 sal_get_pcibus_info((u64) segment, (u64) busnum,
318 (u64) ia64_tpa(&prom_bussoft_ptr));
320 return; /* bus # does not exist */
323 prom_bussoft_ptr = __va(prom_bussoft_ptr);
324 controller = sn_alloc_pci_sysdata();
325 /* controller non-zero is BUG'd in sn_alloc_pci_sysdata */
327 bus = pci_scan_bus(busnum, &pci_root_ops, controller);
329 return; /* error, or bus already scanned */
333 * Per-provider fixup. Copies the contents from prom to local
334 * area and links SN_PCIBUS_BUSSOFT().
337 if (prom_bussoft_ptr->bs_asic_type >= PCIIO_ASIC_MAX_TYPES) {
338 return; /* unsupported asic type */
341 provider = sn_pci_provider[prom_bussoft_ptr->bs_asic_type];
342 if (provider == NULL) {
343 return; /* no provider registerd for this asic */
346 provider_soft = NULL;
347 if (provider->bus_fixup) {
348 provider_soft = (*provider->bus_fixup) (prom_bussoft_ptr);
351 if (provider_soft == NULL) {
352 return; /* fixup failed or not applicable */
356 * Generic bus fixup goes here. Don't reference prom_bussoft_ptr
360 bus->sysdata = controller;
361 PCI_CONTROLLER(bus)->platform_data = provider_soft;
363 nasid = NASID_GET(SN_PCIBUS_BUSSOFT(bus)->bs_base);
364 cnode = nasid_to_cnodeid(nasid);
365 hubdev_info = (struct hubdev_info *)(NODEPDA(cnode)->pdinfo);
366 SN_PCIBUS_BUSSOFT(bus)->bs_xwidget_info =
367 &(hubdev_info->hdi_xwidget_info[SN_PCIBUS_BUSSOFT(bus)->bs_xid]);
371 * Ugly hack to get PCI setup until we have a proper ACPI namespace.
374 #define PCI_BUSES_TO_SCAN 256
376 static int __init sn_pci_init(void)
379 struct pci_dev *pci_dev = NULL;
380 extern void sn_init_cpei_timer(void);
381 #ifdef CONFIG_PROC_FS
382 extern void register_sn_procfs(void);
385 if (!ia64_platform_is("sn2") || IS_RUNNING_ON_SIMULATOR())
389 * prime sn_pci_provider[]. Individial provider init routines will
390 * override their respective default entries.
393 for (i = 0; i < PCIIO_ASIC_MAX_TYPES; i++)
394 sn_pci_provider[i] = &sn_pci_default_provider;
396 pcibr_init_provider();
397 tioca_init_provider();
400 * This is needed to avoid bounce limit checks in the blk layer
402 ia64_max_iommu_merge_mask = ~PAGE_MASK;
404 sn_irq = kmalloc(sizeof(struct sn_irq_info *) * NR_IRQS, GFP_KERNEL);
406 BUG(); /* Canno afford to run out of memory. */
407 memset(sn_irq, 0, sizeof(struct sn_irq_info *) * NR_IRQS);
409 sn_init_cpei_timer();
411 #ifdef CONFIG_PROC_FS
412 register_sn_procfs();
415 for (i = 0; i < PCI_BUSES_TO_SCAN; i++) {
416 sn_pci_controller_fixup(0, i);
420 * Generic Linux PCI Layer has created the pci_bus and pci_dev
421 * structures - time for us to add our SN PLatform specific
426 pci_find_device(PCI_ANY_ID, PCI_ANY_ID, pci_dev)) != NULL) {
427 sn_pci_fixup_slot(pci_dev);
430 sn_ioif_inited = 1; /* sn I/O infrastructure now initialized */
436 * hubdev_init_node() - Creates the HUB data structure and link them to it's
437 * own NODE specific data area.
439 void hubdev_init_node(nodepda_t * npda, cnodeid_t node)
442 struct hubdev_info *hubdev_info;
444 if (node >= num_online_nodes()) /* Headless/memless IO nodes */
446 (struct hubdev_info *)alloc_bootmem_node(NODE_DATA(0),
451 (struct hubdev_info *)alloc_bootmem_node(NODE_DATA(node),
454 npda->pdinfo = (void *)hubdev_info;
459 cnodeid_get_geoid(cnodeid_t cnode)
462 struct hubdev_info *hubdev;
464 hubdev = (struct hubdev_info *)(NODEPDA(cnode)->pdinfo);
465 return hubdev->hdi_geoid;
469 subsys_initcall(sn_pci_init);