diff options
author | Michael Ellerman <michael@ozlabs.org> | 2011-04-11 17:25:01 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-04-27 00:18:29 -0400 |
commit | 3cc30d0726d258ac336283bcde66a8ab58283b61 (patch) | |
tree | d0b6664707f2d6ee5b5a008af1c2810d5ba1390c /arch/powerpc/kernel/io-workarounds.c | |
parent | 21176fed25c3b0cb17c6c42d71b4e3d68b8f9dd4 (diff) |
powerpc/pci: Move IO workarounds to the common kernel dir
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/kernel/io-workarounds.c')
-rw-r--r-- | arch/powerpc/kernel/io-workarounds.c | 184 |
1 files changed, 184 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/io-workarounds.c b/arch/powerpc/kernel/io-workarounds.c new file mode 100644 index 000000000000..7e5845798788 --- /dev/null +++ b/arch/powerpc/kernel/io-workarounds.c | |||
@@ -0,0 +1,184 @@ | |||
1 | /* | ||
2 | * Support PCI IO workaround | ||
3 | * | ||
4 | * Copyright (C) 2006 Benjamin Herrenschmidt <benh@kernel.crashing.org> | ||
5 | * IBM, Corp. | ||
6 | * (C) Copyright 2007-2008 TOSHIBA CORPORATION | ||
7 | * | ||
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. | ||
11 | */ | ||
12 | #undef DEBUG | ||
13 | |||
14 | #include <linux/kernel.h> | ||
15 | |||
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> | ||
21 | |||
22 | #define IOWA_MAX_BUS 8 | ||
23 | |||
24 | static struct iowa_bus iowa_busses[IOWA_MAX_BUS]; | ||
25 | static unsigned int iowa_bus_count; | ||
26 | |||
27 | static struct iowa_bus *iowa_pci_find(unsigned long vaddr, unsigned long paddr) | ||
28 | { | ||
29 | int i, j; | ||
30 | struct resource *res; | ||
31 | unsigned long vstart, vend; | ||
32 | |||
33 | for (i = 0; i < iowa_bus_count; i++) { | ||
34 | struct iowa_bus *bus = &iowa_busses[i]; | ||
35 | struct pci_controller *phb = bus->phb; | ||
36 | |||
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; | ||
42 | } | ||
43 | |||
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; | ||
49 | } | ||
50 | } | ||
51 | |||
52 | return NULL; | ||
53 | } | ||
54 | |||
55 | struct iowa_bus *iowa_mem_find_bus(const PCI_IO_ADDR addr) | ||
56 | { | ||
57 | struct iowa_bus *bus; | ||
58 | int token; | ||
59 | |||
60 | token = PCI_GET_ADDR_TOKEN(addr); | ||
61 | |||
62 | if (token && token <= iowa_bus_count) | ||
63 | bus = &iowa_busses[token - 1]; | ||
64 | else { | ||
65 | unsigned long vaddr, paddr; | ||
66 | pte_t *ptep; | ||
67 | |||
68 | vaddr = (unsigned long)PCI_FIX_ADDR(addr); | ||
69 | if (vaddr < PHB_IO_BASE || vaddr >= PHB_IO_END) | ||
70 | return NULL; | ||
71 | |||
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); | ||
78 | |||
79 | if (bus == NULL) | ||
80 | return NULL; | ||
81 | } | ||
82 | |||
83 | return bus; | ||
84 | } | ||
85 | |||
86 | struct iowa_bus *iowa_pio_find_bus(unsigned long port) | ||
87 | { | ||
88 | unsigned long vaddr = (unsigned long)pci_io_base + port; | ||
89 | return iowa_pci_find(vaddr, 0); | ||
90 | } | ||
91 | |||
92 | |||
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; \ | ||
101 | } | ||
102 | |||
103 | #define DEF_PCI_AC_NORET(name, at, al, space, aa) \ | ||
104 | static void iowa_##name at \ | ||
105 | { \ | ||
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; \ | ||
111 | } \ | ||
112 | __do_##name al; \ | ||
113 | } | ||
114 | |||
115 | #include <asm/io-defs.h> | ||
116 | |||
117 | #undef DEF_PCI_AC_RET | ||
118 | #undef DEF_PCI_AC_NORET | ||
119 | |||
120 | static const struct ppc_pci_io __devinitconst iowa_pci_io = { | ||
121 | |||
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, | ||
124 | |||
125 | #include <asm/io-defs.h> | ||
126 | |||
127 | #undef DEF_PCI_AC_RET | ||
128 | #undef DEF_PCI_AC_NORET | ||
129 | |||
130 | }; | ||
131 | |||
132 | static void __iomem *iowa_ioremap(phys_addr_t addr, unsigned long size, | ||
133 | unsigned long flags, void *caller) | ||
134 | { | ||
135 | struct iowa_bus *bus; | ||
136 | void __iomem *res = __ioremap_caller(addr, size, flags, caller); | ||
137 | int busno; | ||
138 | |||
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); | ||
143 | } | ||
144 | return res; | ||
145 | } | ||
146 | |||
147 | /* Regist new bus to support workaround */ | ||
148 | void __devinit iowa_register_bus(struct pci_controller *phb, | ||
149 | struct ppc_pci_io *ops, | ||
150 | int (*initfunc)(struct iowa_bus *, void *), void *data) | ||
151 | { | ||
152 | struct iowa_bus *bus; | ||
153 | struct device_node *np = phb->dn; | ||
154 | |||
155 | if (iowa_bus_count >= IOWA_MAX_BUS) { | ||
156 | pr_err("IOWA:Too many pci bridges, " | ||
157 | "workarounds disabled for %s\n", np->full_name); | ||
158 | return; | ||
159 | } | ||
160 | |||
161 | bus = &iowa_busses[iowa_bus_count]; | ||
162 | bus->phb = phb; | ||
163 | bus->ops = ops; | ||
164 | |||
165 | if (initfunc) | ||
166 | if ((*initfunc)(bus, data)) | ||
167 | return; | ||
168 | |||
169 | iowa_bus_count++; | ||
170 | |||
171 | pr_debug("IOWA:[%d]Add bus, %s.\n", iowa_bus_count-1, np->full_name); | ||
172 | } | ||
173 | |||
174 | /* enable IO workaround */ | ||
175 | void __devinit io_workaround_init(void) | ||
176 | { | ||
177 | static int io_workaround_inited; | ||
178 | |||
179 | if (io_workaround_inited) | ||
180 | return; | ||
181 | ppc_pci_io = iowa_pci_io; | ||
182 | ppc_md.ioremap = iowa_ioremap; | ||
183 | io_workaround_inited = 1; | ||
184 | } | ||