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) 2006 Silicon Graphics, Inc. All rights reserved.
9 #include <asm/sn/types.h>
10 #include <asm/sn/addrs.h>
11 #include <asm/sn/pcidev.h>
12 #include <asm/sn/pcibus_provider_defs.h>
13 #include <asm/sn/sn_sal.h>
14 #include "xtalk/hubdev.h"
15 #include <linux/acpi.h>
16 #include <acpi/acnamesp.h>
20 * The code in this file will only be executed when running with
21 * a PROM that has ACPI IO support. (i.e., SN_ACPI_BASE_SUPPORT() == 1)
26 * This value must match the UUID the PROM uses
27 * (io/acpi/defblk.c) when building a vendor descriptor.
29 struct acpi_vendor_uuid sn_uuid = {
31 .data = { 0x2c, 0xc6, 0xa6, 0xfe, 0x9c, 0x44, 0xda, 0x11,
32 0xa2, 0x7c, 0x08, 0x00, 0x69, 0x13, 0xea, 0x51 },
35 struct sn_pcidev_match {
42 * Perform the early IO init in PROM.
45 sal_ioif_init(u64 *result)
47 struct ia64_sal_retval isrv = {0,0,0,0};
50 SN_SAL_IOIF_INIT, 0, 0, 0, 0, 0, 0, 0);
56 * sn_acpi_hubdev_init() - This function is called by acpi_ns_get_device_callback()
57 * for all SGIHUB and SGITIO acpi devices defined in the
58 * DSDT. It obtains the hubdev_info pointer from the
59 * ACPI vendor resource, which the PROM setup, and sets up the
60 * hubdev_info in the pda.
63 static acpi_status __init
64 sn_acpi_hubdev_init(acpi_handle handle, u32 depth, void *context, void **ret)
66 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
68 struct hubdev_info *hubdev;
69 struct hubdev_info *hubdev_ptr;
72 struct acpi_resource *resource;
74 struct acpi_resource_vendor_typed *vendor;
75 extern void sn_common_hubdev_init(struct hubdev_info *);
77 status = acpi_get_vendor_resource(handle, METHOD_NAME__CRS,
79 if (ACPI_FAILURE(status)) {
81 "sn_acpi_hubdev_init: acpi_get_vendor_resource() "
82 "(0x%x) failed for: ", status);
83 acpi_ns_print_node_pathname(handle, NULL);
85 return AE_OK; /* Continue walking namespace */
88 resource = buffer.pointer;
89 vendor = &resource->data.vendor_typed;
90 if ((vendor->byte_length - sizeof(struct acpi_vendor_uuid)) !=
91 sizeof(struct hubdev_info *)) {
93 "sn_acpi_hubdev_init: Invalid vendor data length: %d for: ",
95 acpi_ns_print_node_pathname(handle, NULL);
100 memcpy(&addr, vendor->byte_data, sizeof(struct hubdev_info *));
101 hubdev_ptr = __va((struct hubdev_info *) addr);
103 nasid = hubdev_ptr->hdi_nasid;
104 i = nasid_to_cnodeid(nasid);
105 hubdev = (struct hubdev_info *)(NODEPDA(i)->pdinfo);
106 *hubdev = *hubdev_ptr;
107 sn_common_hubdev_init(hubdev);
110 kfree(buffer.pointer);
111 return AE_OK; /* Continue walking namespace */
115 * sn_get_bussoft_ptr() - The pcibus_bussoft pointer is found in
116 * the ACPI Vendor resource for this bus.
118 static struct pcibus_bussoft *
119 sn_get_bussoft_ptr(struct pci_bus *bus)
122 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
124 struct pcibus_bussoft *prom_bussoft_ptr;
125 struct acpi_resource *resource;
127 struct acpi_resource_vendor_typed *vendor;
130 handle = PCI_CONTROLLER(bus)->acpi_handle;
131 status = acpi_get_vendor_resource(handle, METHOD_NAME__CRS,
133 if (ACPI_FAILURE(status)) {
134 printk(KERN_ERR "%s: "
135 "acpi_get_vendor_resource() failed (0x%x) for: ",
137 acpi_ns_print_node_pathname(handle, NULL);
141 resource = buffer.pointer;
142 vendor = &resource->data.vendor_typed;
144 if ((vendor->byte_length - sizeof(struct acpi_vendor_uuid)) !=
145 sizeof(struct pcibus_bussoft *)) {
147 "%s: Invalid vendor data length %d\n",
148 __func__, vendor->byte_length);
149 kfree(buffer.pointer);
152 memcpy(&addr, vendor->byte_data, sizeof(struct pcibus_bussoft *));
153 prom_bussoft_ptr = __va((struct pcibus_bussoft *) addr);
154 kfree(buffer.pointer);
156 return prom_bussoft_ptr;
160 * sn_extract_device_info - Extract the pcidev_info and the sn_irq_info
161 * pointers from the vendor resource using the
162 * provided acpi handle, and copy the structures
163 * into the argument buffers.
166 sn_extract_device_info(acpi_handle handle, struct pcidev_info **pcidev_info,
167 struct sn_irq_info **sn_irq_info)
170 struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL };
171 struct sn_irq_info *irq_info, *irq_info_prom;
172 struct pcidev_info *pcidev_ptr, *pcidev_prom_ptr;
173 struct acpi_resource *resource;
176 struct acpi_resource_vendor_typed *vendor;
179 * The pointer to this device's pcidev_info structure in
180 * the PROM, is in the vendor resource.
182 status = acpi_get_vendor_resource(handle, METHOD_NAME__CRS,
184 if (ACPI_FAILURE(status)) {
186 "%s: acpi_get_vendor_resource() failed (0x%x) for: ",
188 acpi_ns_print_node_pathname(handle, NULL);
193 resource = buffer.pointer;
194 vendor = &resource->data.vendor_typed;
195 if ((vendor->byte_length - sizeof(struct acpi_vendor_uuid)) !=
196 sizeof(struct pci_devdev_info *)) {
198 "%s: Invalid vendor data length: %d for: ",
199 __func__, vendor->byte_length);
200 acpi_ns_print_node_pathname(handle, NULL);
206 pcidev_ptr = kzalloc(sizeof(struct pcidev_info), GFP_KERNEL);
208 panic("%s: Unable to alloc memory for pcidev_info", __func__);
210 memcpy(&addr, vendor->byte_data, sizeof(struct pcidev_info *));
211 pcidev_prom_ptr = __va(addr);
212 memcpy(pcidev_ptr, pcidev_prom_ptr, sizeof(struct pcidev_info));
214 /* Get the IRQ info */
215 irq_info = kzalloc(sizeof(struct sn_irq_info), GFP_KERNEL);
217 panic("%s: Unable to alloc memory for sn_irq_info", __func__);
219 if (pcidev_ptr->pdi_sn_irq_info) {
220 irq_info_prom = __va(pcidev_ptr->pdi_sn_irq_info);
221 memcpy(irq_info, irq_info_prom, sizeof(struct sn_irq_info));
224 *pcidev_info = pcidev_ptr;
225 *sn_irq_info = irq_info;
228 kfree(buffer.pointer);
233 get_host_devfn(acpi_handle device_handle, acpi_handle rootbus_handle)
244 * Do an upward search to find the root bus device, and
245 * obtain the host devfn from the previous child device.
247 child = device_handle;
249 status = acpi_get_parent(child, &parent);
250 if (ACPI_FAILURE(status)) {
251 printk(KERN_ERR "%s: acpi_get_parent() failed "
252 "(0x%x) for: ", __func__, status);
253 acpi_ns_print_node_pathname(child, NULL);
255 panic("%s: Unable to find host devfn\n", __func__);
257 if (parent == rootbus_handle)
262 printk(KERN_ERR "%s: Unable to find root bus for: ",
264 acpi_ns_print_node_pathname(device_handle, NULL);
269 status = acpi_evaluate_integer(child, METHOD_NAME__ADR, NULL, &adr);
270 if (ACPI_FAILURE(status)) {
271 printk(KERN_ERR "%s: Unable to get _ADR (0x%x) for: ",
273 acpi_ns_print_node_pathname(child, NULL);
275 panic("%s: Unable to find host devfn\n", __func__);
278 slot = (adr >> 16) & 0xffff;
279 function = adr & 0xffff;
280 devfn = PCI_DEVFN(slot, function);
285 * find_matching_device - Callback routine to find the ACPI device
286 * that matches up with our pci_dev device.
287 * Matching is done on bus number and devfn.
288 * To find the bus number for a particular
289 * ACPI device, we must look at the _BBN method
293 find_matching_device(acpi_handle handle, u32 lvl, void *context, void **rv)
295 unsigned long bbn = -1;
297 acpi_handle parent = NULL;
302 struct sn_pcidev_match *info = context;
304 status = acpi_evaluate_integer(handle, METHOD_NAME__ADR, NULL,
306 if (ACPI_SUCCESS(status)) {
307 status = acpi_get_parent(handle, &parent);
308 if (ACPI_FAILURE(status)) {
310 "%s: acpi_get_parent() failed (0x%x) for: ",
312 acpi_ns_print_node_pathname(handle, NULL);
316 status = acpi_evaluate_integer(parent, METHOD_NAME__BBN,
318 if (ACPI_FAILURE(status)) {
320 "%s: Failed to find _BBN in parent of: ",
322 acpi_ns_print_node_pathname(handle, NULL);
327 slot = (adr >> 16) & 0xffff;
328 function = adr & 0xffff;
329 devfn = PCI_DEVFN(slot, function);
330 if ((info->devfn == devfn) && (info->bus == bbn)) {
331 /* We have a match! */
332 info->handle = handle;
340 * sn_acpi_get_pcidev_info - Search ACPI namespace for the acpi
341 * device matching the specified pci_dev,
342 * and return the pcidev info and irq info.
345 sn_acpi_get_pcidev_info(struct pci_dev *dev, struct pcidev_info **pcidev_info,
346 struct sn_irq_info **sn_irq_info)
348 unsigned int host_devfn;
349 struct sn_pcidev_match pcidev_match;
350 acpi_handle rootbus_handle;
351 unsigned long segment;
354 rootbus_handle = PCI_CONTROLLER(dev)->acpi_handle;
355 status = acpi_evaluate_integer(rootbus_handle, METHOD_NAME__SEG, NULL,
357 if (ACPI_SUCCESS(status)) {
358 if (segment != pci_domain_nr(dev)) {
360 "%s: Segment number mismatch, 0x%lx vs 0x%x for: ",
361 __func__, segment, pci_domain_nr(dev));
362 acpi_ns_print_node_pathname(rootbus_handle, NULL);
367 printk(KERN_ERR "%s: Unable to get __SEG from: ",
369 acpi_ns_print_node_pathname(rootbus_handle, NULL);
375 * We want to search all devices in this segment/domain
376 * of the ACPI namespace for the matching ACPI device,
377 * which holds the pcidev_info pointer in its vendor resource.
379 pcidev_match.bus = dev->bus->number;
380 pcidev_match.devfn = dev->devfn;
381 pcidev_match.handle = NULL;
383 acpi_walk_namespace(ACPI_TYPE_DEVICE, rootbus_handle, ACPI_UINT32_MAX,
384 find_matching_device, &pcidev_match, NULL);
386 if (!pcidev_match.handle) {
388 "%s: Could not find matching ACPI device for %s.\n",
389 __func__, pci_name(dev));
393 if (sn_extract_device_info(pcidev_match.handle, pcidev_info, sn_irq_info))
396 /* Build up the pcidev_info.pdi_slot_host_handle */
397 host_devfn = get_host_devfn(pcidev_match.handle, rootbus_handle);
398 (*pcidev_info)->pdi_slot_host_handle =
399 ((unsigned long) pci_domain_nr(dev) << 40) |
406 * sn_acpi_slot_fixup - Obtain the pcidev_info and sn_irq_info.
407 * Perform any SN specific slot fixup.
408 * At present there does not appear to be
409 * any generic way to handle a ROM image
410 * that has been shadowed by the PROM, so
411 * we pass a pointer to it within the
412 * pcidev_info structure.
416 sn_acpi_slot_fixup(struct pci_dev *dev)
419 struct pcidev_info *pcidev_info = NULL;
420 struct sn_irq_info *sn_irq_info = NULL;
421 size_t image_size, size;
423 if (sn_acpi_get_pcidev_info(dev, &pcidev_info, &sn_irq_info)) {
424 panic("%s: Failure obtaining pcidev_info for %s\n",
425 __func__, pci_name(dev));
428 if (pcidev_info->pdi_pio_mapped_addr[PCI_ROM_RESOURCE]) {
430 * A valid ROM image exists and has been shadowed by the
431 * PROM. Setup the pci_dev ROM resource with the address
432 * of the shadowed copy, and the actual length of the ROM image.
434 size = pci_resource_len(dev, PCI_ROM_RESOURCE);
435 addr = ioremap(pcidev_info->pdi_pio_mapped_addr[PCI_ROM_RESOURCE],
437 image_size = pci_get_rom_size(addr, size);
438 dev->resource[PCI_ROM_RESOURCE].start = (unsigned long) addr;
439 dev->resource[PCI_ROM_RESOURCE].end =
440 (unsigned long) addr + image_size - 1;
441 dev->resource[PCI_ROM_RESOURCE].flags |= IORESOURCE_ROM_BIOS_COPY;
443 sn_pci_fixup_slot(dev, pcidev_info, sn_irq_info);
446 EXPORT_SYMBOL(sn_acpi_slot_fixup);
450 * sn_acpi_bus_fixup - Perform SN specific setup of software structs
451 * (pcibus_bussoft, pcidev_info) and hardware
452 * registers, for the specified bus and devices under it.
455 sn_acpi_bus_fixup(struct pci_bus *bus)
457 struct pci_dev *pci_dev = NULL;
458 struct pcibus_bussoft *prom_bussoft_ptr;
460 if (!bus->parent) { /* If root bus */
461 prom_bussoft_ptr = sn_get_bussoft_ptr(bus);
462 if (prom_bussoft_ptr == NULL) {
464 "%s: 0x%04x:0x%02x Unable to "
465 "obtain prom_bussoft_ptr\n",
466 __func__, pci_domain_nr(bus), bus->number);
469 sn_common_bus_fixup(bus, prom_bussoft_ptr);
471 list_for_each_entry(pci_dev, &bus->devices, bus_list) {
472 sn_acpi_slot_fixup(pci_dev);
477 * sn_io_acpi_init - PROM has ACPI support for IO, defining at a minimum the
478 * nodes and root buses in the DSDT. As a result, bus scanning
479 * will be initiated by the Linux ACPI code.
483 sn_io_acpi_init(void)
488 /* SN Altix does not follow the IOSAPIC IRQ routing model */
489 acpi_irq_model = ACPI_IRQ_MODEL_PLATFORM;
491 /* Setup hubdev_info for all SGIHUB/SGITIO devices */
492 acpi_get_devices("SGIHUB", sn_acpi_hubdev_init, NULL, NULL);
493 acpi_get_devices("SGITIO", sn_acpi_hubdev_init, NULL, NULL);
495 status = sal_ioif_init(&result);
496 if (status || result)
497 panic("sal_ioif_init failed: [%lx] %s\n",
498 status, ia64_sal_strerror(status));