[IA64] remove use of asm/segment.h
[linux-2.6/suspend2-2.6.18.git] / arch / ia64 / pci / pci.c
blob0addeca5570e6ed6e04bad8b9975c1c63f1805bf
1 /*
2 * pci.c - Low-Level PCI Access in IA-64
4 * Derived from bios32.c of i386 tree.
6 * (c) Copyright 2002, 2005 Hewlett-Packard Development Company, L.P.
7 * David Mosberger-Tang <davidm@hpl.hp.com>
8 * Bjorn Helgaas <bjorn.helgaas@hp.com>
9 * Copyright (C) 2004 Silicon Graphics, Inc.
11 * Note: Above list of copyright holders is incomplete...
13 #include <linux/config.h>
15 #include <linux/acpi.h>
16 #include <linux/types.h>
17 #include <linux/kernel.h>
18 #include <linux/pci.h>
19 #include <linux/init.h>
20 #include <linux/ioport.h>
21 #include <linux/slab.h>
22 #include <linux/smp_lock.h>
23 #include <linux/spinlock.h>
25 #include <asm/machvec.h>
26 #include <asm/page.h>
27 #include <asm/system.h>
28 #include <asm/io.h>
29 #include <asm/sal.h>
30 #include <asm/smp.h>
31 #include <asm/irq.h>
32 #include <asm/hw_irq.h>
36 * Low-level SAL-based PCI configuration access functions. Note that SAL
37 * calls are already serialized (via sal_lock), so we don't need another
38 * synchronization mechanism here.
41 #define PCI_SAL_ADDRESS(seg, bus, devfn, reg) \
42 (((u64) seg << 24) | (bus << 16) | (devfn << 8) | (reg))
44 /* SAL 3.2 adds support for extended config space. */
46 #define PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg) \
47 (((u64) seg << 28) | (bus << 20) | (devfn << 12) | (reg))
49 static int
50 pci_sal_read (unsigned int seg, unsigned int bus, unsigned int devfn,
51 int reg, int len, u32 *value)
53 u64 addr, data = 0;
54 int mode, result;
56 if (!value || (seg > 65535) || (bus > 255) || (devfn > 255) || (reg > 4095))
57 return -EINVAL;
59 if ((seg | reg) <= 255) {
60 addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg);
61 mode = 0;
62 } else {
63 addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg);
64 mode = 1;
66 result = ia64_sal_pci_config_read(addr, mode, len, &data);
67 if (result != 0)
68 return -EINVAL;
70 *value = (u32) data;
71 return 0;
74 static int
75 pci_sal_write (unsigned int seg, unsigned int bus, unsigned int devfn,
76 int reg, int len, u32 value)
78 u64 addr;
79 int mode, result;
81 if ((seg > 65535) || (bus > 255) || (devfn > 255) || (reg > 4095))
82 return -EINVAL;
84 if ((seg | reg) <= 255) {
85 addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg);
86 mode = 0;
87 } else {
88 addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg);
89 mode = 1;
91 result = ia64_sal_pci_config_write(addr, mode, len, value);
92 if (result != 0)
93 return -EINVAL;
94 return 0;
97 static struct pci_raw_ops pci_sal_ops = {
98 .read = pci_sal_read,
99 .write = pci_sal_write
102 struct pci_raw_ops *raw_pci_ops = &pci_sal_ops;
104 static int
105 pci_read (struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value)
107 return raw_pci_ops->read(pci_domain_nr(bus), bus->number,
108 devfn, where, size, value);
111 static int
112 pci_write (struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value)
114 return raw_pci_ops->write(pci_domain_nr(bus), bus->number,
115 devfn, where, size, value);
118 struct pci_ops pci_root_ops = {
119 .read = pci_read,
120 .write = pci_write,
123 #ifdef CONFIG_NUMA
124 extern acpi_status acpi_map_iosapic(acpi_handle, u32, void *, void **);
125 static void acpi_map_iosapics(void)
127 acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL);
129 #else
130 static void acpi_map_iosapics(void)
132 return;
134 #endif /* CONFIG_NUMA */
136 static int __init
137 pci_acpi_init (void)
139 acpi_map_iosapics();
141 return 0;
144 subsys_initcall(pci_acpi_init);
146 /* Called by ACPI when it finds a new root bus. */
148 static struct pci_controller * __devinit
149 alloc_pci_controller (int seg)
151 struct pci_controller *controller;
153 controller = kmalloc(sizeof(*controller), GFP_KERNEL);
154 if (!controller)
155 return NULL;
157 memset(controller, 0, sizeof(*controller));
158 controller->segment = seg;
159 controller->node = -1;
160 return controller;
163 static u64 __devinit
164 add_io_space (struct acpi_resource_address64 *addr)
166 u64 offset;
167 int sparse = 0;
168 int i;
170 if (addr->address_translation_offset == 0)
171 return IO_SPACE_BASE(0); /* part of legacy IO space */
173 if (addr->attribute.io.translation_attribute == ACPI_SPARSE_TRANSLATION)
174 sparse = 1;
176 offset = (u64) ioremap(addr->address_translation_offset, 0);
177 for (i = 0; i < num_io_spaces; i++)
178 if (io_space[i].mmio_base == offset &&
179 io_space[i].sparse == sparse)
180 return IO_SPACE_BASE(i);
182 if (num_io_spaces == MAX_IO_SPACES) {
183 printk("Too many IO port spaces\n");
184 return ~0;
187 i = num_io_spaces++;
188 io_space[i].mmio_base = offset;
189 io_space[i].sparse = sparse;
191 return IO_SPACE_BASE(i);
194 static acpi_status __devinit
195 count_window (struct acpi_resource *resource, void *data)
197 unsigned int *windows = (unsigned int *) data;
198 struct acpi_resource_address64 addr;
199 acpi_status status;
201 status = acpi_resource_to_address64(resource, &addr);
202 if (ACPI_SUCCESS(status))
203 if (addr.resource_type == ACPI_MEMORY_RANGE ||
204 addr.resource_type == ACPI_IO_RANGE)
205 (*windows)++;
207 return AE_OK;
210 struct pci_root_info {
211 struct pci_controller *controller;
212 char *name;
215 static __devinit acpi_status add_window(struct acpi_resource *res, void *data)
217 struct pci_root_info *info = data;
218 struct pci_window *window;
219 struct acpi_resource_address64 addr;
220 acpi_status status;
221 unsigned long flags, offset = 0;
222 struct resource *root;
224 status = acpi_resource_to_address64(res, &addr);
225 if (!ACPI_SUCCESS(status))
226 return AE_OK;
228 if (!addr.address_length)
229 return AE_OK;
231 if (addr.resource_type == ACPI_MEMORY_RANGE) {
232 flags = IORESOURCE_MEM;
233 root = &iomem_resource;
234 offset = addr.address_translation_offset;
235 } else if (addr.resource_type == ACPI_IO_RANGE) {
236 flags = IORESOURCE_IO;
237 root = &ioport_resource;
238 offset = add_io_space(&addr);
239 if (offset == ~0)
240 return AE_OK;
241 } else
242 return AE_OK;
244 window = &info->controller->window[info->controller->windows++];
245 window->resource.name = info->name;
246 window->resource.flags = flags;
247 window->resource.start = addr.min_address_range + offset;
248 window->resource.end = addr.max_address_range + offset;
249 window->resource.child = NULL;
250 window->offset = offset;
252 if (insert_resource(root, &window->resource)) {
253 printk(KERN_ERR "alloc 0x%lx-0x%lx from %s for %s failed\n",
254 window->resource.start, window->resource.end,
255 root->name, info->name);
258 return AE_OK;
261 static void __devinit
262 pcibios_setup_root_windows(struct pci_bus *bus, struct pci_controller *ctrl)
264 int i, j;
266 j = 0;
267 for (i = 0; i < ctrl->windows; i++) {
268 struct resource *res = &ctrl->window[i].resource;
269 /* HP's firmware has a hack to work around a Windows bug.
270 * Ignore these tiny memory ranges */
271 if ((res->flags & IORESOURCE_MEM) &&
272 (res->end - res->start < 16))
273 continue;
274 if (j >= PCI_BUS_NUM_RESOURCES) {
275 printk("Ignoring range [%lx-%lx] (%lx)\n", res->start,
276 res->end, res->flags);
277 continue;
279 bus->resource[j++] = res;
283 struct pci_bus * __devinit
284 pci_acpi_scan_root(struct acpi_device *device, int domain, int bus)
286 struct pci_root_info info;
287 struct pci_controller *controller;
288 unsigned int windows = 0;
289 struct pci_bus *pbus;
290 char *name;
291 int pxm;
293 controller = alloc_pci_controller(domain);
294 if (!controller)
295 goto out1;
297 controller->acpi_handle = device->handle;
299 pxm = acpi_get_pxm(controller->acpi_handle);
300 #ifdef CONFIG_NUMA
301 if (pxm >= 0)
302 controller->node = pxm_to_nid_map[pxm];
303 #endif
305 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_window,
306 &windows);
307 controller->window = kmalloc_node(sizeof(*controller->window) * windows,
308 GFP_KERNEL, controller->node);
309 if (!controller->window)
310 goto out2;
312 name = kmalloc(16, GFP_KERNEL);
313 if (!name)
314 goto out3;
316 sprintf(name, "PCI Bus %04x:%02x", domain, bus);
317 info.controller = controller;
318 info.name = name;
319 acpi_walk_resources(device->handle, METHOD_NAME__CRS, add_window,
320 &info);
322 pbus = pci_scan_bus_parented(NULL, bus, &pci_root_ops, controller);
323 if (pbus)
324 pcibios_setup_root_windows(pbus, controller);
326 return pbus;
328 out3:
329 kfree(controller->window);
330 out2:
331 kfree(controller);
332 out1:
333 return NULL;
336 void pcibios_resource_to_bus(struct pci_dev *dev,
337 struct pci_bus_region *region, struct resource *res)
339 struct pci_controller *controller = PCI_CONTROLLER(dev);
340 unsigned long offset = 0;
341 int i;
343 for (i = 0; i < controller->windows; i++) {
344 struct pci_window *window = &controller->window[i];
345 if (!(window->resource.flags & res->flags))
346 continue;
347 if (window->resource.start > res->start)
348 continue;
349 if (window->resource.end < res->end)
350 continue;
351 offset = window->offset;
352 break;
355 region->start = res->start - offset;
356 region->end = res->end - offset;
358 EXPORT_SYMBOL(pcibios_resource_to_bus);
360 void pcibios_bus_to_resource(struct pci_dev *dev,
361 struct resource *res, struct pci_bus_region *region)
363 struct pci_controller *controller = PCI_CONTROLLER(dev);
364 unsigned long offset = 0;
365 int i;
367 for (i = 0; i < controller->windows; i++) {
368 struct pci_window *window = &controller->window[i];
369 if (!(window->resource.flags & res->flags))
370 continue;
371 if (window->resource.start - window->offset > region->start)
372 continue;
373 if (window->resource.end - window->offset < region->end)
374 continue;
375 offset = window->offset;
376 break;
379 res->start = region->start + offset;
380 res->end = region->end + offset;
383 static int __devinit is_valid_resource(struct pci_dev *dev, int idx)
385 unsigned int i, type_mask = IORESOURCE_IO | IORESOURCE_MEM;
386 struct resource *devr = &dev->resource[idx];
388 if (!dev->bus)
389 return 0;
390 for (i=0; i<PCI_BUS_NUM_RESOURCES; i++) {
391 struct resource *busr = dev->bus->resource[i];
393 if (!busr || ((busr->flags ^ devr->flags) & type_mask))
394 continue;
395 if ((devr->start) && (devr->start >= busr->start) &&
396 (devr->end <= busr->end))
397 return 1;
399 return 0;
402 static void __devinit pcibios_fixup_device_resources(struct pci_dev *dev)
404 struct pci_bus_region region;
405 int i;
406 int limit = (dev->hdr_type == PCI_HEADER_TYPE_NORMAL) ? \
407 PCI_BRIDGE_RESOURCES : PCI_NUM_RESOURCES;
409 for (i = 0; i < limit; i++) {
410 if (!dev->resource[i].flags)
411 continue;
412 region.start = dev->resource[i].start;
413 region.end = dev->resource[i].end;
414 pcibios_bus_to_resource(dev, &dev->resource[i], &region);
415 if ((is_valid_resource(dev, i)))
416 pci_claim_resource(dev, i);
421 * Called after each bus is probed, but before its children are examined.
423 void __devinit
424 pcibios_fixup_bus (struct pci_bus *b)
426 struct pci_dev *dev;
428 if (b->self) {
429 pci_read_bridge_bases(b);
430 pcibios_fixup_device_resources(b->self);
432 list_for_each_entry(dev, &b->devices, bus_list)
433 pcibios_fixup_device_resources(dev);
435 return;
438 void __devinit
439 pcibios_update_irq (struct pci_dev *dev, int irq)
441 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
443 /* ??? FIXME -- record old value for shutdown. */
446 static inline int
447 pcibios_enable_resources (struct pci_dev *dev, int mask)
449 u16 cmd, old_cmd;
450 int idx;
451 struct resource *r;
452 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
454 if (!dev)
455 return -EINVAL;
457 pci_read_config_word(dev, PCI_COMMAND, &cmd);
458 old_cmd = cmd;
459 for (idx=0; idx<PCI_NUM_RESOURCES; idx++) {
460 /* Only set up the desired resources. */
461 if (!(mask & (1 << idx)))
462 continue;
464 r = &dev->resource[idx];
465 if (!(r->flags & type_mask))
466 continue;
467 if ((idx == PCI_ROM_RESOURCE) &&
468 (!(r->flags & IORESOURCE_ROM_ENABLE)))
469 continue;
470 if (!r->start && r->end) {
471 printk(KERN_ERR
472 "PCI: Device %s not available because of resource collisions\n",
473 pci_name(dev));
474 return -EINVAL;
476 if (r->flags & IORESOURCE_IO)
477 cmd |= PCI_COMMAND_IO;
478 if (r->flags & IORESOURCE_MEM)
479 cmd |= PCI_COMMAND_MEMORY;
481 if (cmd != old_cmd) {
482 printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev), old_cmd, cmd);
483 pci_write_config_word(dev, PCI_COMMAND, cmd);
485 return 0;
489 pcibios_enable_device (struct pci_dev *dev, int mask)
491 int ret;
493 ret = pcibios_enable_resources(dev, mask);
494 if (ret < 0)
495 return ret;
497 return acpi_pci_irq_enable(dev);
500 #ifdef CONFIG_ACPI_DEALLOCATE_IRQ
501 void
502 pcibios_disable_device (struct pci_dev *dev)
504 acpi_pci_irq_disable(dev);
506 #endif /* CONFIG_ACPI_DEALLOCATE_IRQ */
508 void
509 pcibios_align_resource (void *data, struct resource *res,
510 unsigned long size, unsigned long align)
515 * PCI BIOS setup, always defaults to SAL interface
517 char * __init
518 pcibios_setup (char *str)
520 return NULL;
524 pci_mmap_page_range (struct pci_dev *dev, struct vm_area_struct *vma,
525 enum pci_mmap_state mmap_state, int write_combine)
528 * I/O space cannot be accessed via normal processor loads and
529 * stores on this platform.
531 if (mmap_state == pci_mmap_io)
533 * XXX we could relax this for I/O spaces for which ACPI
534 * indicates that the space is 1-to-1 mapped. But at the
535 * moment, we don't support multiple PCI address spaces and
536 * the legacy I/O space is not 1-to-1 mapped, so this is moot.
538 return -EINVAL;
541 * Leave vm_pgoff as-is, the PCI space address is the physical
542 * address on this platform.
544 vma->vm_flags |= (VM_SHM | VM_RESERVED | VM_IO);
546 if (write_combine && efi_range_is_wc(vma->vm_start,
547 vma->vm_end - vma->vm_start))
548 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
549 else
550 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
552 if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
553 vma->vm_end - vma->vm_start, vma->vm_page_prot))
554 return -EAGAIN;
556 return 0;
560 * ia64_pci_get_legacy_mem - generic legacy mem routine
561 * @bus: bus to get legacy memory base address for
563 * Find the base of legacy memory for @bus. This is typically the first
564 * megabyte of bus address space for @bus or is simply 0 on platforms whose
565 * chipsets support legacy I/O and memory routing. Returns the base address
566 * or an error pointer if an error occurred.
568 * This is the ia64 generic version of this routine. Other platforms
569 * are free to override it with a machine vector.
571 char *ia64_pci_get_legacy_mem(struct pci_bus *bus)
573 return (char *)__IA64_UNCACHED_OFFSET;
577 * pci_mmap_legacy_page_range - map legacy memory space to userland
578 * @bus: bus whose legacy space we're mapping
579 * @vma: vma passed in by mmap
581 * Map legacy memory space for this device back to userspace using a machine
582 * vector to get the base address.
585 pci_mmap_legacy_page_range(struct pci_bus *bus, struct vm_area_struct *vma)
587 char *addr;
589 addr = pci_get_legacy_mem(bus);
590 if (IS_ERR(addr))
591 return PTR_ERR(addr);
593 vma->vm_pgoff += (unsigned long)addr >> PAGE_SHIFT;
594 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
595 vma->vm_flags |= (VM_SHM | VM_RESERVED | VM_IO);
597 if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
598 vma->vm_end - vma->vm_start, vma->vm_page_prot))
599 return -EAGAIN;
601 return 0;
605 * ia64_pci_legacy_read - read from legacy I/O space
606 * @bus: bus to read
607 * @port: legacy port value
608 * @val: caller allocated storage for returned value
609 * @size: number of bytes to read
611 * Simply reads @size bytes from @port and puts the result in @val.
613 * Again, this (and the write routine) are generic versions that can be
614 * overridden by the platform. This is necessary on platforms that don't
615 * support legacy I/O routing or that hard fail on legacy I/O timeouts.
617 int ia64_pci_legacy_read(struct pci_bus *bus, u16 port, u32 *val, u8 size)
619 int ret = size;
621 switch (size) {
622 case 1:
623 *val = inb(port);
624 break;
625 case 2:
626 *val = inw(port);
627 break;
628 case 4:
629 *val = inl(port);
630 break;
631 default:
632 ret = -EINVAL;
633 break;
636 return ret;
640 * ia64_pci_legacy_write - perform a legacy I/O write
641 * @bus: bus pointer
642 * @port: port to write
643 * @val: value to write
644 * @size: number of bytes to write from @val
646 * Simply writes @size bytes of @val to @port.
648 int ia64_pci_legacy_write(struct pci_dev *bus, u16 port, u32 val, u8 size)
650 int ret = 0;
652 switch (size) {
653 case 1:
654 outb(val, port);
655 break;
656 case 2:
657 outw(val, port);
658 break;
659 case 4:
660 outl(val, port);
661 break;
662 default:
663 ret = -EINVAL;
664 break;
667 return ret;
671 * pci_cacheline_size - determine cacheline size for PCI devices
672 * @dev: void
674 * We want to use the line-size of the outer-most cache. We assume
675 * that this line-size is the same for all CPUs.
677 * Code mostly taken from arch/ia64/kernel/palinfo.c:cache_info().
679 * RETURNS: An appropriate -ERRNO error value on eror, or zero for success.
681 static unsigned long
682 pci_cacheline_size (void)
684 u64 levels, unique_caches;
685 s64 status;
686 pal_cache_config_info_t cci;
687 static u8 cacheline_size;
689 if (cacheline_size)
690 return cacheline_size;
692 status = ia64_pal_cache_summary(&levels, &unique_caches);
693 if (status != 0) {
694 printk(KERN_ERR "%s: ia64_pal_cache_summary() failed (status=%ld)\n",
695 __FUNCTION__, status);
696 return SMP_CACHE_BYTES;
699 status = ia64_pal_cache_config_info(levels - 1, /* cache_type (data_or_unified)= */ 2,
700 &cci);
701 if (status != 0) {
702 printk(KERN_ERR "%s: ia64_pal_cache_config_info() failed (status=%ld)\n",
703 __FUNCTION__, status);
704 return SMP_CACHE_BYTES;
706 cacheline_size = 1 << cci.pcci_line_size;
707 return cacheline_size;
711 * pcibios_prep_mwi - helper function for drivers/pci/pci.c:pci_set_mwi()
712 * @dev: the PCI device for which MWI is enabled
714 * For ia64, we can get the cacheline sizes from PAL.
716 * RETURNS: An appropriate -ERRNO error value on eror, or zero for success.
719 pcibios_prep_mwi (struct pci_dev *dev)
721 unsigned long desired_linesize, current_linesize;
722 int rc = 0;
723 u8 pci_linesize;
725 desired_linesize = pci_cacheline_size();
727 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &pci_linesize);
728 current_linesize = 4 * pci_linesize;
729 if (desired_linesize != current_linesize) {
730 printk(KERN_WARNING "PCI: slot %s has incorrect PCI cache line size of %lu bytes,",
731 pci_name(dev), current_linesize);
732 if (current_linesize > desired_linesize) {
733 printk(" expected %lu bytes instead\n", desired_linesize);
734 rc = -EINVAL;
735 } else {
736 printk(" correcting to %lu\n", desired_linesize);
737 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, desired_linesize / 4);
740 return rc;
743 int pci_vector_resources(int last, int nr_released)
745 int count = nr_released;
747 count += (IA64_LAST_DEVICE_VECTOR - last);
749 return count;