1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35#include <linux/types.h>
36#include <linux/pci.h>
37#include <linux/kernel.h>
38#include <linux/init.h>
39#include <linux/msi.h>
40#include <linux/mm.h>
41#include <linux/irq.h>
42#include <linux/irqdesc.h>
43#include <linux/console.h>
44#include <linux/pci_regs.h>
45
46#include <asm/io.h>
47
48#include <asm/netlogic/interrupt.h>
49#include <asm/netlogic/haldefs.h>
50#include <asm/netlogic/common.h>
51
52#include <asm/netlogic/xlr/msidef.h>
53#include <asm/netlogic/xlr/iomap.h>
54#include <asm/netlogic/xlr/pic.h>
55#include <asm/netlogic/xlr/xlr.h>
56
57static void *pci_config_base;
58
59#define pci_cfg_addr(bus, devfn, off) (((bus) << 16) | ((devfn) << 8) | (off))
60
61
62static inline u32 pci_cfg_read_32bit(struct pci_bus *bus, unsigned int devfn,
63 int where)
64{
65 u32 data;
66 u32 *cfgaddr;
67
68 cfgaddr = (u32 *)(pci_config_base +
69 pci_cfg_addr(bus->number, devfn, where & ~3));
70 data = *cfgaddr;
71 return cpu_to_le32(data);
72}
73
74static inline void pci_cfg_write_32bit(struct pci_bus *bus, unsigned int devfn,
75 int where, u32 data)
76{
77 u32 *cfgaddr;
78
79 cfgaddr = (u32 *)(pci_config_base +
80 pci_cfg_addr(bus->number, devfn, where & ~3));
81 *cfgaddr = cpu_to_le32(data);
82}
83
84static int nlm_pcibios_read(struct pci_bus *bus, unsigned int devfn,
85 int where, int size, u32 *val)
86{
87 u32 data;
88
89 if ((size == 2) && (where & 1))
90 return PCIBIOS_BAD_REGISTER_NUMBER;
91 else if ((size == 4) && (where & 3))
92 return PCIBIOS_BAD_REGISTER_NUMBER;
93
94 data = pci_cfg_read_32bit(bus, devfn, where);
95
96 if (size == 1)
97 *val = (data >> ((where & 3) << 3)) & 0xff;
98 else if (size == 2)
99 *val = (data >> ((where & 3) << 3)) & 0xffff;
100 else
101 *val = data;
102
103 return PCIBIOS_SUCCESSFUL;
104}
105
106
107static int nlm_pcibios_write(struct pci_bus *bus, unsigned int devfn,
108 int where, int size, u32 val)
109{
110 u32 data;
111
112 if ((size == 2) && (where & 1))
113 return PCIBIOS_BAD_REGISTER_NUMBER;
114 else if ((size == 4) && (where & 3))
115 return PCIBIOS_BAD_REGISTER_NUMBER;
116
117 data = pci_cfg_read_32bit(bus, devfn, where);
118
119 if (size == 1)
120 data = (data & ~(0xff << ((where & 3) << 3))) |
121 (val << ((where & 3) << 3));
122 else if (size == 2)
123 data = (data & ~(0xffff << ((where & 3) << 3))) |
124 (val << ((where & 3) << 3));
125 else
126 data = val;
127
128 pci_cfg_write_32bit(bus, devfn, where, data);
129
130 return PCIBIOS_SUCCESSFUL;
131}
132
133struct pci_ops nlm_pci_ops = {
134 .read = nlm_pcibios_read,
135 .write = nlm_pcibios_write
136};
137
138static struct resource nlm_pci_mem_resource = {
139 .name = "XLR PCI MEM",
140 .start = 0xd0000000UL,
141 .end = 0xdfffffffUL,
142 .flags = IORESOURCE_MEM,
143};
144
145static struct resource nlm_pci_io_resource = {
146 .name = "XLR IO MEM",
147 .start = 0x10000000UL,
148 .end = 0x100fffffUL,
149 .flags = IORESOURCE_IO,
150};
151
152struct pci_controller nlm_pci_controller = {
153 .index = 0,
154 .pci_ops = &nlm_pci_ops,
155 .mem_resource = &nlm_pci_mem_resource,
156 .mem_offset = 0x00000000UL,
157 .io_resource = &nlm_pci_io_resource,
158 .io_offset = 0x00000000UL,
159};
160
161
162
163
164
165
166static struct pci_dev *xls_get_pcie_link(const struct pci_dev *dev)
167{
168 struct pci_bus *bus, *p;
169
170
171 bus = dev->bus;
172 for (p = bus->parent; p && p->number != 0; p = p->parent)
173 bus = p;
174
175 return p ? bus->self : NULL;
176}
177
178static int nlm_pci_link_to_irq(int link)
179{
180 switch (link) {
181 case 0:
182 return PIC_PCIE_LINK0_IRQ;
183 case 1:
184 return PIC_PCIE_LINK1_IRQ;
185 case 2:
186 if (nlm_chip_is_xls_b())
187 return PIC_PCIE_XLSB0_LINK2_IRQ;
188 else
189 return PIC_PCIE_LINK2_IRQ;
190 case 3:
191 if (nlm_chip_is_xls_b())
192 return PIC_PCIE_XLSB0_LINK3_IRQ;
193 else
194 return PIC_PCIE_LINK3_IRQ;
195 }
196 WARN(1, "Unexpected link %d\n", link);
197 return 0;
198}
199
200static int get_irq_vector(const struct pci_dev *dev)
201{
202 struct pci_dev *lnk;
203 int link;
204
205 if (!nlm_chip_is_xls())
206 return PIC_PCIX_IRQ;
207
208 lnk = xls_get_pcie_link(dev);
209 if (lnk == NULL)
210 return 0;
211
212 link = PCI_SLOT(lnk->devfn);
213 return nlm_pci_link_to_irq(link);
214}
215
216#ifdef CONFIG_PCI_MSI
217void arch_teardown_msi_irq(unsigned int irq)
218{
219}
220
221int arch_setup_msi_irq(struct pci_dev *dev, struct msi_desc *desc)
222{
223 struct msi_msg msg;
224 struct pci_dev *lnk;
225 int irq, ret;
226 u16 val;
227
228
229 if (!nlm_chip_is_xls())
230 return 1;
231
232
233
234
235
236 lnk = xls_get_pcie_link(dev);
237 if (lnk == NULL)
238 return 1;
239
240 pci_read_config_word(lnk, 0x50 + PCI_MSI_FLAGS, &val);
241 if ((val & PCI_MSI_FLAGS_ENABLE) == 0) {
242 val |= PCI_MSI_FLAGS_ENABLE;
243 pci_write_config_word(lnk, 0x50 + PCI_MSI_FLAGS, val);
244 }
245
246 irq = get_irq_vector(dev);
247 if (irq <= 0)
248 return 1;
249
250 msg.address_hi = MSI_ADDR_BASE_HI;
251 msg.address_lo = MSI_ADDR_BASE_LO |
252 MSI_ADDR_DEST_MODE_PHYSICAL |
253 MSI_ADDR_REDIRECTION_CPU;
254
255 msg.data = MSI_DATA_TRIGGER_EDGE |
256 MSI_DATA_LEVEL_ASSERT |
257 MSI_DATA_DELIVERY_FIXED;
258
259 ret = irq_set_msi_desc(irq, desc);
260 if (ret < 0)
261 return ret;
262
263 pci_write_msi_msg(irq, &msg);
264 return 0;
265}
266#endif
267
268
269static void xlr_pci_ack(struct irq_data *d)
270{
271 uint64_t pcibase = nlm_mmio_base(NETLOGIC_IO_PCIX_OFFSET);
272
273 nlm_read_reg(pcibase, (0x140 >> 2));
274}
275
276
277static void xls_pcie_ack(struct irq_data *d)
278{
279 uint64_t pciebase_le = nlm_mmio_base(NETLOGIC_IO_PCIE_1_OFFSET);
280
281 switch (d->irq) {
282 case PIC_PCIE_LINK0_IRQ:
283 nlm_write_reg(pciebase_le, (0x90 >> 2), 0xffffffff);
284 break;
285 case PIC_PCIE_LINK1_IRQ:
286 nlm_write_reg(pciebase_le, (0x94 >> 2), 0xffffffff);
287 break;
288 case PIC_PCIE_LINK2_IRQ:
289 nlm_write_reg(pciebase_le, (0x190 >> 2), 0xffffffff);
290 break;
291 case PIC_PCIE_LINK3_IRQ:
292 nlm_write_reg(pciebase_le, (0x194 >> 2), 0xffffffff);
293 break;
294 }
295}
296
297
298static void xls_pcie_ack_b(struct irq_data *d)
299{
300 uint64_t pciebase_le = nlm_mmio_base(NETLOGIC_IO_PCIE_1_OFFSET);
301
302 switch (d->irq) {
303 case PIC_PCIE_LINK0_IRQ:
304 nlm_write_reg(pciebase_le, (0x90 >> 2), 0xffffffff);
305 break;
306 case PIC_PCIE_LINK1_IRQ:
307 nlm_write_reg(pciebase_le, (0x94 >> 2), 0xffffffff);
308 break;
309 case PIC_PCIE_XLSB0_LINK2_IRQ:
310 nlm_write_reg(pciebase_le, (0x190 >> 2), 0xffffffff);
311 break;
312 case PIC_PCIE_XLSB0_LINK3_IRQ:
313 nlm_write_reg(pciebase_le, (0x194 >> 2), 0xffffffff);
314 break;
315 }
316}
317
318int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
319{
320 return get_irq_vector(dev);
321}
322
323
324int pcibios_plat_dev_init(struct pci_dev *dev)
325{
326 return 0;
327}
328
329static int __init pcibios_init(void)
330{
331 void (*extra_ack)(struct irq_data *);
332 int link, irq;
333
334
335 pci_set_flags(PCI_PROBE_ONLY);
336 pci_config_base = ioremap(DEFAULT_PCI_CONFIG_BASE, 16 << 20);
337
338
339 ioport_resource.start = 0;
340 ioport_resource.end = ~0;
341
342 set_io_port_base(CKSEG1);
343 nlm_pci_controller.io_map_base = CKSEG1;
344
345 pr_info("Registering XLR/XLS PCIX/PCIE Controller.\n");
346 register_pci_controller(&nlm_pci_controller);
347
348
349
350
351
352 if (!nlm_chip_is_xls()) {
353
354 nlm_set_pic_extra_ack(0, PIC_PCIX_IRQ, xlr_pci_ack);
355 } else {
356 if (nlm_chip_is_xls_b())
357 extra_ack = xls_pcie_ack_b;
358 else
359 extra_ack = xls_pcie_ack;
360 for (link = 0; link < 4; link++) {
361 irq = nlm_pci_link_to_irq(link);
362 nlm_set_pic_extra_ack(0, irq, extra_ack);
363 }
364 }
365 return 0;
366}
367
368arch_initcall(pcibios_init);
369