61dd8608da4f9483288f2eed009c1ebe15d93a7d
[deliverable/linux.git] / arch / ia64 / pci / pci.c
1 /*
2 * pci.c - Low-Level PCI Access in IA-64
3 *
4 * Derived from bios32.c of i386 tree.
5 *
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.
10 *
11 * Note: Above list of copyright holders is incomplete...
12 */
13 #include <linux/config.h>
14
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>
24
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>
33
34 /*
35 * Low-level SAL-based PCI configuration access functions. Note that SAL
36 * calls are already serialized (via sal_lock), so we don't need another
37 * synchronization mechanism here.
38 */
39
40 #define PCI_SAL_ADDRESS(seg, bus, devfn, reg) \
41 (((u64) seg << 24) | (bus << 16) | (devfn << 8) | (reg))
42
43 /* SAL 3.2 adds support for extended config space. */
44
45 #define PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg) \
46 (((u64) seg << 28) | (bus << 20) | (devfn << 12) | (reg))
47
48 static int
49 pci_sal_read (unsigned int seg, unsigned int bus, unsigned int devfn,
50 int reg, int len, u32 *value)
51 {
52 u64 addr, data = 0;
53 int mode, result;
54
55 if (!value || (seg > 65535) || (bus > 255) || (devfn > 255) || (reg > 4095))
56 return -EINVAL;
57
58 if ((seg | reg) <= 255) {
59 addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg);
60 mode = 0;
61 } else {
62 addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg);
63 mode = 1;
64 }
65 result = ia64_sal_pci_config_read(addr, mode, len, &data);
66 if (result != 0)
67 return -EINVAL;
68
69 *value = (u32) data;
70 return 0;
71 }
72
73 static int
74 pci_sal_write (unsigned int seg, unsigned int bus, unsigned int devfn,
75 int reg, int len, u32 value)
76 {
77 u64 addr;
78 int mode, result;
79
80 if ((seg > 65535) || (bus > 255) || (devfn > 255) || (reg > 4095))
81 return -EINVAL;
82
83 if ((seg | reg) <= 255) {
84 addr = PCI_SAL_ADDRESS(seg, bus, devfn, reg);
85 mode = 0;
86 } else {
87 addr = PCI_SAL_EXT_ADDRESS(seg, bus, devfn, reg);
88 mode = 1;
89 }
90 result = ia64_sal_pci_config_write(addr, mode, len, value);
91 if (result != 0)
92 return -EINVAL;
93 return 0;
94 }
95
96 static struct pci_raw_ops pci_sal_ops = {
97 .read = pci_sal_read,
98 .write = pci_sal_write
99 };
100
101 struct pci_raw_ops *raw_pci_ops = &pci_sal_ops;
102
103 static int
104 pci_read (struct pci_bus *bus, unsigned int devfn, int where, int size, u32 *value)
105 {
106 return raw_pci_ops->read(pci_domain_nr(bus), bus->number,
107 devfn, where, size, value);
108 }
109
110 static int
111 pci_write (struct pci_bus *bus, unsigned int devfn, int where, int size, u32 value)
112 {
113 return raw_pci_ops->write(pci_domain_nr(bus), bus->number,
114 devfn, where, size, value);
115 }
116
117 struct pci_ops pci_root_ops = {
118 .read = pci_read,
119 .write = pci_write,
120 };
121
122 /* Called by ACPI when it finds a new root bus. */
123
124 static struct pci_controller * __devinit
125 alloc_pci_controller (int seg)
126 {
127 struct pci_controller *controller;
128
129 controller = kmalloc(sizeof(*controller), GFP_KERNEL);
130 if (!controller)
131 return NULL;
132
133 memset(controller, 0, sizeof(*controller));
134 controller->segment = seg;
135 controller->node = -1;
136 return controller;
137 }
138
139 struct pci_root_info {
140 struct pci_controller *controller;
141 char *name;
142 };
143
144 static unsigned int
145 new_space (u64 phys_base, int sparse)
146 {
147 u64 mmio_base;
148 int i;
149
150 if (phys_base == 0)
151 return 0; /* legacy I/O port space */
152
153 mmio_base = (u64) ioremap(phys_base, 0);
154 for (i = 0; i < num_io_spaces; i++)
155 if (io_space[i].mmio_base == mmio_base &&
156 io_space[i].sparse == sparse)
157 return i;
158
159 if (num_io_spaces == MAX_IO_SPACES) {
160 printk(KERN_ERR "PCI: Too many IO port spaces "
161 "(MAX_IO_SPACES=%lu)\n", MAX_IO_SPACES);
162 return ~0;
163 }
164
165 i = num_io_spaces++;
166 io_space[i].mmio_base = mmio_base;
167 io_space[i].sparse = sparse;
168
169 return i;
170 }
171
172 static u64 __devinit
173 add_io_space (struct pci_root_info *info, struct acpi_resource_address64 *addr)
174 {
175 struct resource *resource;
176 char *name;
177 u64 base, min, max, base_port;
178 unsigned int sparse = 0, space_nr, len;
179
180 resource = kzalloc(sizeof(*resource), GFP_KERNEL);
181 if (!resource) {
182 printk(KERN_ERR "PCI: No memory for %s I/O port space\n",
183 info->name);
184 goto out;
185 }
186
187 len = strlen(info->name) + 32;
188 name = kzalloc(len, GFP_KERNEL);
189 if (!name) {
190 printk(KERN_ERR "PCI: No memory for %s I/O port space name\n",
191 info->name);
192 goto free_resource;
193 }
194
195 min = addr->minimum;
196 max = min + addr->address_length - 1;
197 if (addr->info.io.translation_type == ACPI_SPARSE_TRANSLATION)
198 sparse = 1;
199
200 space_nr = new_space(addr->translation_offset, sparse);
201 if (space_nr == ~0)
202 goto free_name;
203
204 base = __pa(io_space[space_nr].mmio_base);
205 base_port = IO_SPACE_BASE(space_nr);
206 snprintf(name, len, "%s I/O Ports %08lx-%08lx", info->name,
207 base_port + min, base_port + max);
208
209 /*
210 * The SDM guarantees the legacy 0-64K space is sparse, but if the
211 * mapping is done by the processor (not the bridge), ACPI may not
212 * mark it as sparse.
213 */
214 if (space_nr == 0)
215 sparse = 1;
216
217 resource->name = name;
218 resource->flags = IORESOURCE_MEM;
219 resource->start = base + (sparse ? IO_SPACE_SPARSE_ENCODING(min) : min);
220 resource->end = base + (sparse ? IO_SPACE_SPARSE_ENCODING(max) : max);
221 insert_resource(&iomem_resource, resource);
222
223 return base_port;
224
225 free_name:
226 kfree(name);
227 free_resource:
228 kfree(resource);
229 out:
230 return ~0;
231 }
232
233 static acpi_status __devinit resource_to_window(struct acpi_resource *resource,
234 struct acpi_resource_address64 *addr)
235 {
236 acpi_status status;
237
238 /*
239 * We're only interested in _CRS descriptors that are
240 * - address space descriptors for memory or I/O space
241 * - non-zero size
242 * - producers, i.e., the address space is routed downstream,
243 * not consumed by the bridge itself
244 */
245 status = acpi_resource_to_address64(resource, addr);
246 if (ACPI_SUCCESS(status) &&
247 (addr->resource_type == ACPI_MEMORY_RANGE ||
248 addr->resource_type == ACPI_IO_RANGE) &&
249 addr->address_length &&
250 addr->producer_consumer == ACPI_PRODUCER)
251 return AE_OK;
252
253 return AE_ERROR;
254 }
255
256 static acpi_status __devinit
257 count_window (struct acpi_resource *resource, void *data)
258 {
259 unsigned int *windows = (unsigned int *) data;
260 struct acpi_resource_address64 addr;
261 acpi_status status;
262
263 status = resource_to_window(resource, &addr);
264 if (ACPI_SUCCESS(status))
265 (*windows)++;
266
267 return AE_OK;
268 }
269
270 static __devinit acpi_status add_window(struct acpi_resource *res, void *data)
271 {
272 struct pci_root_info *info = data;
273 struct pci_window *window;
274 struct acpi_resource_address64 addr;
275 acpi_status status;
276 unsigned long flags, offset = 0;
277 struct resource *root;
278
279 /* Return AE_OK for non-window resources to keep scanning for more */
280 status = resource_to_window(res, &addr);
281 if (!ACPI_SUCCESS(status))
282 return AE_OK;
283
284 if (addr.resource_type == ACPI_MEMORY_RANGE) {
285 flags = IORESOURCE_MEM;
286 root = &iomem_resource;
287 offset = addr.translation_offset;
288 } else if (addr.resource_type == ACPI_IO_RANGE) {
289 flags = IORESOURCE_IO;
290 root = &ioport_resource;
291 offset = add_io_space(info, &addr);
292 if (offset == ~0)
293 return AE_OK;
294 } else
295 return AE_OK;
296
297 window = &info->controller->window[info->controller->windows++];
298 window->resource.name = info->name;
299 window->resource.flags = flags;
300 window->resource.start = addr.minimum + offset;
301 window->resource.end = window->resource.start + addr.address_length - 1;
302 window->resource.child = NULL;
303 window->offset = offset;
304
305 if (insert_resource(root, &window->resource)) {
306 printk(KERN_ERR "alloc 0x%lx-0x%lx from %s for %s failed\n",
307 window->resource.start, window->resource.end,
308 root->name, info->name);
309 }
310
311 return AE_OK;
312 }
313
314 static void __devinit
315 pcibios_setup_root_windows(struct pci_bus *bus, struct pci_controller *ctrl)
316 {
317 int i, j;
318
319 j = 0;
320 for (i = 0; i < ctrl->windows; i++) {
321 struct resource *res = &ctrl->window[i].resource;
322 /* HP's firmware has a hack to work around a Windows bug.
323 * Ignore these tiny memory ranges */
324 if ((res->flags & IORESOURCE_MEM) &&
325 (res->end - res->start < 16))
326 continue;
327 if (j >= PCI_BUS_NUM_RESOURCES) {
328 printk("Ignoring range [%lx-%lx] (%lx)\n", res->start,
329 res->end, res->flags);
330 continue;
331 }
332 bus->resource[j++] = res;
333 }
334 }
335
336 struct pci_bus * __devinit
337 pci_acpi_scan_root(struct acpi_device *device, int domain, int bus)
338 {
339 struct pci_root_info info;
340 struct pci_controller *controller;
341 unsigned int windows = 0;
342 struct pci_bus *pbus;
343 char *name;
344 int pxm;
345
346 controller = alloc_pci_controller(domain);
347 if (!controller)
348 goto out1;
349
350 controller->acpi_handle = device->handle;
351
352 pxm = acpi_get_pxm(controller->acpi_handle);
353 #ifdef CONFIG_NUMA
354 if (pxm >= 0)
355 controller->node = pxm_to_node(pxm);
356 #endif
357
358 acpi_walk_resources(device->handle, METHOD_NAME__CRS, count_window,
359 &windows);
360 controller->window = kmalloc_node(sizeof(*controller->window) * windows,
361 GFP_KERNEL, controller->node);
362 if (!controller->window)
363 goto out2;
364
365 name = kmalloc(16, GFP_KERNEL);
366 if (!name)
367 goto out3;
368
369 sprintf(name, "PCI Bus %04x:%02x", domain, bus);
370 info.controller = controller;
371 info.name = name;
372 acpi_walk_resources(device->handle, METHOD_NAME__CRS, add_window,
373 &info);
374
375 pbus = pci_scan_bus_parented(NULL, bus, &pci_root_ops, controller);
376 if (pbus)
377 pcibios_setup_root_windows(pbus, controller);
378
379 return pbus;
380
381 out3:
382 kfree(controller->window);
383 out2:
384 kfree(controller);
385 out1:
386 return NULL;
387 }
388
389 void pcibios_resource_to_bus(struct pci_dev *dev,
390 struct pci_bus_region *region, struct resource *res)
391 {
392 struct pci_controller *controller = PCI_CONTROLLER(dev);
393 unsigned long offset = 0;
394 int i;
395
396 for (i = 0; i < controller->windows; i++) {
397 struct pci_window *window = &controller->window[i];
398 if (!(window->resource.flags & res->flags))
399 continue;
400 if (window->resource.start > res->start)
401 continue;
402 if (window->resource.end < res->end)
403 continue;
404 offset = window->offset;
405 break;
406 }
407
408 region->start = res->start - offset;
409 region->end = res->end - offset;
410 }
411 EXPORT_SYMBOL(pcibios_resource_to_bus);
412
413 void pcibios_bus_to_resource(struct pci_dev *dev,
414 struct resource *res, struct pci_bus_region *region)
415 {
416 struct pci_controller *controller = PCI_CONTROLLER(dev);
417 unsigned long offset = 0;
418 int i;
419
420 for (i = 0; i < controller->windows; i++) {
421 struct pci_window *window = &controller->window[i];
422 if (!(window->resource.flags & res->flags))
423 continue;
424 if (window->resource.start - window->offset > region->start)
425 continue;
426 if (window->resource.end - window->offset < region->end)
427 continue;
428 offset = window->offset;
429 break;
430 }
431
432 res->start = region->start + offset;
433 res->end = region->end + offset;
434 }
435 EXPORT_SYMBOL(pcibios_bus_to_resource);
436
437 static int __devinit is_valid_resource(struct pci_dev *dev, int idx)
438 {
439 unsigned int i, type_mask = IORESOURCE_IO | IORESOURCE_MEM;
440 struct resource *devr = &dev->resource[idx];
441
442 if (!dev->bus)
443 return 0;
444 for (i=0; i<PCI_BUS_NUM_RESOURCES; i++) {
445 struct resource *busr = dev->bus->resource[i];
446
447 if (!busr || ((busr->flags ^ devr->flags) & type_mask))
448 continue;
449 if ((devr->start) && (devr->start >= busr->start) &&
450 (devr->end <= busr->end))
451 return 1;
452 }
453 return 0;
454 }
455
456 static void __devinit
457 pcibios_fixup_resources(struct pci_dev *dev, int start, int limit)
458 {
459 struct pci_bus_region region;
460 int i;
461
462 for (i = start; i < limit; i++) {
463 if (!dev->resource[i].flags)
464 continue;
465 region.start = dev->resource[i].start;
466 region.end = dev->resource[i].end;
467 pcibios_bus_to_resource(dev, &dev->resource[i], &region);
468 if ((is_valid_resource(dev, i)))
469 pci_claim_resource(dev, i);
470 }
471 }
472
473 static void __devinit pcibios_fixup_device_resources(struct pci_dev *dev)
474 {
475 pcibios_fixup_resources(dev, 0, PCI_BRIDGE_RESOURCES);
476 }
477
478 static void __devinit pcibios_fixup_bridge_resources(struct pci_dev *dev)
479 {
480 pcibios_fixup_resources(dev, PCI_BRIDGE_RESOURCES, PCI_NUM_RESOURCES);
481 }
482
483 /*
484 * Called after each bus is probed, but before its children are examined.
485 */
486 void __devinit
487 pcibios_fixup_bus (struct pci_bus *b)
488 {
489 struct pci_dev *dev;
490
491 if (b->self) {
492 pci_read_bridge_bases(b);
493 pcibios_fixup_bridge_resources(b->self);
494 }
495 list_for_each_entry(dev, &b->devices, bus_list)
496 pcibios_fixup_device_resources(dev);
497
498 return;
499 }
500
501 void __devinit
502 pcibios_update_irq (struct pci_dev *dev, int irq)
503 {
504 pci_write_config_byte(dev, PCI_INTERRUPT_LINE, irq);
505
506 /* ??? FIXME -- record old value for shutdown. */
507 }
508
509 static inline int
510 pcibios_enable_resources (struct pci_dev *dev, int mask)
511 {
512 u16 cmd, old_cmd;
513 int idx;
514 struct resource *r;
515 unsigned long type_mask = IORESOURCE_IO | IORESOURCE_MEM;
516
517 if (!dev)
518 return -EINVAL;
519
520 pci_read_config_word(dev, PCI_COMMAND, &cmd);
521 old_cmd = cmd;
522 for (idx=0; idx<PCI_NUM_RESOURCES; idx++) {
523 /* Only set up the desired resources. */
524 if (!(mask & (1 << idx)))
525 continue;
526
527 r = &dev->resource[idx];
528 if (!(r->flags & type_mask))
529 continue;
530 if ((idx == PCI_ROM_RESOURCE) &&
531 (!(r->flags & IORESOURCE_ROM_ENABLE)))
532 continue;
533 if (!r->start && r->end) {
534 printk(KERN_ERR
535 "PCI: Device %s not available because of resource collisions\n",
536 pci_name(dev));
537 return -EINVAL;
538 }
539 if (r->flags & IORESOURCE_IO)
540 cmd |= PCI_COMMAND_IO;
541 if (r->flags & IORESOURCE_MEM)
542 cmd |= PCI_COMMAND_MEMORY;
543 }
544 if (cmd != old_cmd) {
545 printk("PCI: Enabling device %s (%04x -> %04x)\n", pci_name(dev), old_cmd, cmd);
546 pci_write_config_word(dev, PCI_COMMAND, cmd);
547 }
548 return 0;
549 }
550
551 int
552 pcibios_enable_device (struct pci_dev *dev, int mask)
553 {
554 int ret;
555
556 ret = pcibios_enable_resources(dev, mask);
557 if (ret < 0)
558 return ret;
559
560 return acpi_pci_irq_enable(dev);
561 }
562
563 void
564 pcibios_disable_device (struct pci_dev *dev)
565 {
566 acpi_pci_irq_disable(dev);
567 }
568
569 void
570 pcibios_align_resource (void *data, struct resource *res,
571 unsigned long size, unsigned long align)
572 {
573 }
574
575 /*
576 * PCI BIOS setup, always defaults to SAL interface
577 */
578 char * __init
579 pcibios_setup (char *str)
580 {
581 return str;
582 }
583
584 int
585 pci_mmap_page_range (struct pci_dev *dev, struct vm_area_struct *vma,
586 enum pci_mmap_state mmap_state, int write_combine)
587 {
588 /*
589 * I/O space cannot be accessed via normal processor loads and
590 * stores on this platform.
591 */
592 if (mmap_state == pci_mmap_io)
593 /*
594 * XXX we could relax this for I/O spaces for which ACPI
595 * indicates that the space is 1-to-1 mapped. But at the
596 * moment, we don't support multiple PCI address spaces and
597 * the legacy I/O space is not 1-to-1 mapped, so this is moot.
598 */
599 return -EINVAL;
600
601 /*
602 * Leave vm_pgoff as-is, the PCI space address is the physical
603 * address on this platform.
604 */
605 vma->vm_flags |= (VM_SHM | VM_RESERVED | VM_IO);
606
607 if (write_combine && efi_range_is_wc(vma->vm_start,
608 vma->vm_end - vma->vm_start))
609 vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
610 else
611 vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
612
613 if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
614 vma->vm_end - vma->vm_start, vma->vm_page_prot))
615 return -EAGAIN;
616
617 return 0;
618 }
619
620 /**
621 * ia64_pci_get_legacy_mem - generic legacy mem routine
622 * @bus: bus to get legacy memory base address for
623 *
624 * Find the base of legacy memory for @bus. This is typically the first
625 * megabyte of bus address space for @bus or is simply 0 on platforms whose
626 * chipsets support legacy I/O and memory routing. Returns the base address
627 * or an error pointer if an error occurred.
628 *
629 * This is the ia64 generic version of this routine. Other platforms
630 * are free to override it with a machine vector.
631 */
632 char *ia64_pci_get_legacy_mem(struct pci_bus *bus)
633 {
634 return (char *)__IA64_UNCACHED_OFFSET;
635 }
636
637 /**
638 * pci_mmap_legacy_page_range - map legacy memory space to userland
639 * @bus: bus whose legacy space we're mapping
640 * @vma: vma passed in by mmap
641 *
642 * Map legacy memory space for this device back to userspace using a machine
643 * vector to get the base address.
644 */
645 int
646 pci_mmap_legacy_page_range(struct pci_bus *bus, struct vm_area_struct *vma)
647 {
648 unsigned long size = vma->vm_end - vma->vm_start;
649 pgprot_t prot;
650 char *addr;
651
652 /*
653 * Avoid attribute aliasing. See Documentation/ia64/aliasing.txt
654 * for more details.
655 */
656 if (!valid_mmap_phys_addr_range(vma->vm_pgoff << PAGE_SHIFT, size))
657 return -EINVAL;
658 prot = phys_mem_access_prot(NULL, vma->vm_pgoff, size,
659 vma->vm_page_prot);
660 if (pgprot_val(prot) != pgprot_val(pgprot_noncached(vma->vm_page_prot)))
661 return -EINVAL;
662
663 addr = pci_get_legacy_mem(bus);
664 if (IS_ERR(addr))
665 return PTR_ERR(addr);
666
667 vma->vm_pgoff += (unsigned long)addr >> PAGE_SHIFT;
668 vma->vm_page_prot = prot;
669 vma->vm_flags |= (VM_SHM | VM_RESERVED | VM_IO);
670
671 if (remap_pfn_range(vma, vma->vm_start, vma->vm_pgoff,
672 size, vma->vm_page_prot))
673 return -EAGAIN;
674
675 return 0;
676 }
677
678 /**
679 * ia64_pci_legacy_read - read from legacy I/O space
680 * @bus: bus to read
681 * @port: legacy port value
682 * @val: caller allocated storage for returned value
683 * @size: number of bytes to read
684 *
685 * Simply reads @size bytes from @port and puts the result in @val.
686 *
687 * Again, this (and the write routine) are generic versions that can be
688 * overridden by the platform. This is necessary on platforms that don't
689 * support legacy I/O routing or that hard fail on legacy I/O timeouts.
690 */
691 int ia64_pci_legacy_read(struct pci_bus *bus, u16 port, u32 *val, u8 size)
692 {
693 int ret = size;
694
695 switch (size) {
696 case 1:
697 *val = inb(port);
698 break;
699 case 2:
700 *val = inw(port);
701 break;
702 case 4:
703 *val = inl(port);
704 break;
705 default:
706 ret = -EINVAL;
707 break;
708 }
709
710 return ret;
711 }
712
713 /**
714 * ia64_pci_legacy_write - perform a legacy I/O write
715 * @bus: bus pointer
716 * @port: port to write
717 * @val: value to write
718 * @size: number of bytes to write from @val
719 *
720 * Simply writes @size bytes of @val to @port.
721 */
722 int ia64_pci_legacy_write(struct pci_bus *bus, u16 port, u32 val, u8 size)
723 {
724 int ret = size;
725
726 switch (size) {
727 case 1:
728 outb(val, port);
729 break;
730 case 2:
731 outw(val, port);
732 break;
733 case 4:
734 outl(val, port);
735 break;
736 default:
737 ret = -EINVAL;
738 break;
739 }
740
741 return ret;
742 }
743
744 /**
745 * pci_cacheline_size - determine cacheline size for PCI devices
746 * @dev: void
747 *
748 * We want to use the line-size of the outer-most cache. We assume
749 * that this line-size is the same for all CPUs.
750 *
751 * Code mostly taken from arch/ia64/kernel/palinfo.c:cache_info().
752 *
753 * RETURNS: An appropriate -ERRNO error value on eror, or zero for success.
754 */
755 static unsigned long
756 pci_cacheline_size (void)
757 {
758 u64 levels, unique_caches;
759 s64 status;
760 pal_cache_config_info_t cci;
761 static u8 cacheline_size;
762
763 if (cacheline_size)
764 return cacheline_size;
765
766 status = ia64_pal_cache_summary(&levels, &unique_caches);
767 if (status != 0) {
768 printk(KERN_ERR "%s: ia64_pal_cache_summary() failed (status=%ld)\n",
769 __FUNCTION__, status);
770 return SMP_CACHE_BYTES;
771 }
772
773 status = ia64_pal_cache_config_info(levels - 1, /* cache_type (data_or_unified)= */ 2,
774 &cci);
775 if (status != 0) {
776 printk(KERN_ERR "%s: ia64_pal_cache_config_info() failed (status=%ld)\n",
777 __FUNCTION__, status);
778 return SMP_CACHE_BYTES;
779 }
780 cacheline_size = 1 << cci.pcci_line_size;
781 return cacheline_size;
782 }
783
784 /**
785 * pcibios_prep_mwi - helper function for drivers/pci/pci.c:pci_set_mwi()
786 * @dev: the PCI device for which MWI is enabled
787 *
788 * For ia64, we can get the cacheline sizes from PAL.
789 *
790 * RETURNS: An appropriate -ERRNO error value on eror, or zero for success.
791 */
792 int
793 pcibios_prep_mwi (struct pci_dev *dev)
794 {
795 unsigned long desired_linesize, current_linesize;
796 int rc = 0;
797 u8 pci_linesize;
798
799 desired_linesize = pci_cacheline_size();
800
801 pci_read_config_byte(dev, PCI_CACHE_LINE_SIZE, &pci_linesize);
802 current_linesize = 4 * pci_linesize;
803 if (desired_linesize != current_linesize) {
804 printk(KERN_WARNING "PCI: slot %s has incorrect PCI cache line size of %lu bytes,",
805 pci_name(dev), current_linesize);
806 if (current_linesize > desired_linesize) {
807 printk(" expected %lu bytes instead\n", desired_linesize);
808 rc = -EINVAL;
809 } else {
810 printk(" correcting to %lu\n", desired_linesize);
811 pci_write_config_byte(dev, PCI_CACHE_LINE_SIZE, desired_linesize / 4);
812 }
813 }
814 return rc;
815 }
816
817 int pci_vector_resources(int last, int nr_released)
818 {
819 int count = nr_released;
820
821 count += (IA64_LAST_DEVICE_VECTOR - last);
822
823 return count;
824 }
This page took 0.26775 seconds and 5 git commands to generate.