mm: convert anon_vma->lock to a mutex
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / arch / powerpc / kernel / io-workarounds.c
blobffafaea3d261f8f2fbeb3ee45cd58bc958e40572
1 /*
2 * Support PCI IO workaround
4 * Copyright (C) 2006 Benjamin Herrenschmidt <benh@kernel.crashing.org>
5 * IBM, Corp.
6 * (C) Copyright 2007-2008 TOSHIBA CORPORATION
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
12 #undef DEBUG
14 #include <linux/kernel.h>
16 #include <asm/io.h>
17 #include <asm/machdep.h>
18 #include <asm/pgtable.h>
19 #include <asm/ppc-pci.h>
20 #include <asm/io-workarounds.h>
22 #define IOWA_MAX_BUS 8
24 static struct iowa_bus iowa_busses[IOWA_MAX_BUS];
25 static unsigned int iowa_bus_count;
27 static struct iowa_bus *iowa_pci_find(unsigned long vaddr, unsigned long paddr)
29 int i, j;
30 struct resource *res;
31 unsigned long vstart, vend;
33 for (i = 0; i < iowa_bus_count; i++) {
34 struct iowa_bus *bus = &iowa_busses[i];
35 struct pci_controller *phb = bus->phb;
37 if (vaddr) {
38 vstart = (unsigned long)phb->io_base_virt;
39 vend = vstart + phb->pci_io_size - 1;
40 if ((vaddr >= vstart) && (vaddr <= vend))
41 return bus;
44 if (paddr)
45 for (j = 0; j < 3; j++) {
46 res = &phb->mem_resources[j];
47 if (paddr >= res->start && paddr <= res->end)
48 return bus;
52 return NULL;
55 struct iowa_bus *iowa_mem_find_bus(const PCI_IO_ADDR addr)
57 struct iowa_bus *bus;
58 int token;
60 token = PCI_GET_ADDR_TOKEN(addr);
62 if (token && token <= iowa_bus_count)
63 bus = &iowa_busses[token - 1];
64 else {
65 unsigned long vaddr, paddr;
66 pte_t *ptep;
68 vaddr = (unsigned long)PCI_FIX_ADDR(addr);
69 if (vaddr < PHB_IO_BASE || vaddr >= PHB_IO_END)
70 return NULL;
72 ptep = find_linux_pte(init_mm.pgd, vaddr);
73 if (ptep == NULL)
74 paddr = 0;
75 else
76 paddr = pte_pfn(*ptep) << PAGE_SHIFT;
77 bus = iowa_pci_find(vaddr, paddr);
79 if (bus == NULL)
80 return NULL;
83 return bus;
86 struct iowa_bus *iowa_pio_find_bus(unsigned long port)
88 unsigned long vaddr = (unsigned long)pci_io_base + port;
89 return iowa_pci_find(vaddr, 0);
93 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) \
94 static ret iowa_##name at \
95 { \
96 struct iowa_bus *bus; \
97 bus = iowa_##space##_find_bus(aa); \
98 if (bus && bus->ops && bus->ops->name) \
99 return bus->ops->name al; \
100 return __do_##name al; \
103 #define DEF_PCI_AC_NORET(name, at, al, space, aa) \
104 static void iowa_##name at \
106 struct iowa_bus *bus; \
107 bus = iowa_##space##_find_bus(aa); \
108 if (bus && bus->ops && bus->ops->name) { \
109 bus->ops->name al; \
110 return; \
112 __do_##name al; \
115 #include <asm/io-defs.h>
117 #undef DEF_PCI_AC_RET
118 #undef DEF_PCI_AC_NORET
120 static const struct ppc_pci_io __devinitconst iowa_pci_io = {
122 #define DEF_PCI_AC_RET(name, ret, at, al, space, aa) .name = iowa_##name,
123 #define DEF_PCI_AC_NORET(name, at, al, space, aa) .name = iowa_##name,
125 #include <asm/io-defs.h>
127 #undef DEF_PCI_AC_RET
128 #undef DEF_PCI_AC_NORET
132 static void __iomem *iowa_ioremap(phys_addr_t addr, unsigned long size,
133 unsigned long flags, void *caller)
135 struct iowa_bus *bus;
136 void __iomem *res = __ioremap_caller(addr, size, flags, caller);
137 int busno;
139 bus = iowa_pci_find(0, (unsigned long)addr);
140 if (bus != NULL) {
141 busno = bus - iowa_busses;
142 PCI_SET_ADDR_TOKEN(res, busno + 1);
144 return res;
147 /* Enable IO workaround */
148 static void __devinit io_workaround_init(void)
150 static int io_workaround_inited;
152 if (io_workaround_inited)
153 return;
154 ppc_pci_io = iowa_pci_io;
155 ppc_md.ioremap = iowa_ioremap;
156 io_workaround_inited = 1;
159 /* Register new bus to support workaround */
160 void __devinit iowa_register_bus(struct pci_controller *phb,
161 struct ppc_pci_io *ops,
162 int (*initfunc)(struct iowa_bus *, void *), void *data)
164 struct iowa_bus *bus;
165 struct device_node *np = phb->dn;
167 io_workaround_init();
169 if (iowa_bus_count >= IOWA_MAX_BUS) {
170 pr_err("IOWA:Too many pci bridges, "
171 "workarounds disabled for %s\n", np->full_name);
172 return;
175 bus = &iowa_busses[iowa_bus_count];
176 bus->phb = phb;
177 bus->ops = ops;
178 bus->private = data;
180 if (initfunc)
181 if ((*initfunc)(bus, data))
182 return;
184 iowa_bus_count++;
186 pr_debug("IOWA:[%d]Add bus, %s.\n", iowa_bus_count-1, np->full_name);