2 * Copyright 2003-2011 NetLogic Microsystems, Inc. (NetLogic). All rights
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the NetLogic
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
15 * 1. Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 * 2. Redistributions in binary form must reproduce the above copyright
18 * notice, this list of conditions and the following disclaimer in
19 * the documentation and/or other materials provided with the
22 * THIS SOFTWARE IS PROVIDED BY NETLOGIC ``AS IS'' AND ANY EXPRESS OR
23 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
24 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25 * ARE DISCLAIMED. IN NO EVENT SHALL NETLOGIC OR CONTRIBUTORS BE LIABLE
26 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29 * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
30 * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
31 * OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
32 * IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
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>
41 #include <linux/irq.h>
42 #include <linux/irqdesc.h>
43 #include <linux/console.h>
47 #include <asm/netlogic/interrupt.h>
48 #include <asm/netlogic/haldefs.h>
50 #include <asm/netlogic/xlr/msidef.h>
51 #include <asm/netlogic/xlr/iomap.h>
52 #include <asm/netlogic/xlr/pic.h>
53 #include <asm/netlogic/xlr/xlr.h>
55 static void *pci_config_base
;
57 #define pci_cfg_addr(bus, devfn, off) (((bus) << 16) | ((devfn) << 8) | (off))
60 static inline u32
pci_cfg_read_32bit(struct pci_bus
*bus
, unsigned int devfn
,
66 cfgaddr
= (u32
*)(pci_config_base
+
67 pci_cfg_addr(bus
->number
, devfn
, where
& ~3));
69 return cpu_to_le32(data
);
72 static inline void pci_cfg_write_32bit(struct pci_bus
*bus
, unsigned int devfn
,
77 cfgaddr
= (u32
*)(pci_config_base
+
78 pci_cfg_addr(bus
->number
, devfn
, where
& ~3));
79 *cfgaddr
= cpu_to_le32(data
);
82 static int nlm_pcibios_read(struct pci_bus
*bus
, unsigned int devfn
,
83 int where
, int size
, u32
*val
)
87 if ((size
== 2) && (where
& 1))
88 return PCIBIOS_BAD_REGISTER_NUMBER
;
89 else if ((size
== 4) && (where
& 3))
90 return PCIBIOS_BAD_REGISTER_NUMBER
;
92 data
= pci_cfg_read_32bit(bus
, devfn
, where
);
95 *val
= (data
>> ((where
& 3) << 3)) & 0xff;
97 *val
= (data
>> ((where
& 3) << 3)) & 0xffff;
101 return PCIBIOS_SUCCESSFUL
;
105 static int nlm_pcibios_write(struct pci_bus
*bus
, unsigned int devfn
,
106 int where
, int size
, u32 val
)
110 if ((size
== 2) && (where
& 1))
111 return PCIBIOS_BAD_REGISTER_NUMBER
;
112 else if ((size
== 4) && (where
& 3))
113 return PCIBIOS_BAD_REGISTER_NUMBER
;
115 data
= pci_cfg_read_32bit(bus
, devfn
, where
);
118 data
= (data
& ~(0xff << ((where
& 3) << 3))) |
119 (val
<< ((where
& 3) << 3));
121 data
= (data
& ~(0xffff << ((where
& 3) << 3))) |
122 (val
<< ((where
& 3) << 3));
126 pci_cfg_write_32bit(bus
, devfn
, where
, data
);
128 return PCIBIOS_SUCCESSFUL
;
131 struct pci_ops nlm_pci_ops
= {
132 .read
= nlm_pcibios_read
,
133 .write
= nlm_pcibios_write
136 static struct resource nlm_pci_mem_resource
= {
137 .name
= "XLR PCI MEM",
138 .start
= 0xd0000000UL
, /* 256MB PCI mem @ 0xd000_0000 */
140 .flags
= IORESOURCE_MEM
,
143 static struct resource nlm_pci_io_resource
= {
144 .name
= "XLR IO MEM",
145 .start
= 0x10000000UL
, /* 16MB PCI IO @ 0x1000_0000 */
147 .flags
= IORESOURCE_IO
,
150 struct pci_controller nlm_pci_controller
= {
152 .pci_ops
= &nlm_pci_ops
,
153 .mem_resource
= &nlm_pci_mem_resource
,
154 .mem_offset
= 0x00000000UL
,
155 .io_resource
= &nlm_pci_io_resource
,
156 .io_offset
= 0x00000000UL
,
159 static int get_irq_vector(const struct pci_dev
*dev
)
161 if (!nlm_chip_is_xls())
162 return PIC_PCIX_IRQ
; /* for XLR just one IRQ*/
165 * For XLS PCIe, there is an IRQ per Link, find out which
166 * link the device is on to assign interrupts
168 if (dev
->bus
->self
== NULL
)
171 switch (dev
->bus
->self
->devfn
) {
173 return PIC_PCIE_LINK0_IRQ
;
175 return PIC_PCIE_LINK1_IRQ
;
177 if (nlm_chip_is_xls_b())
178 return PIC_PCIE_XLSB0_LINK2_IRQ
;
180 return PIC_PCIE_LINK2_IRQ
;
182 if (nlm_chip_is_xls_b())
183 return PIC_PCIE_XLSB0_LINK3_IRQ
;
185 return PIC_PCIE_LINK3_IRQ
;
187 WARN(1, "Unexpected devfn %d\n", dev
->bus
->self
->devfn
);
191 #ifdef CONFIG_PCI_MSI
192 void destroy_irq(unsigned int irq
)
194 /* nothing to do yet */
197 void arch_teardown_msi_irq(unsigned int irq
)
202 int arch_setup_msi_irq(struct pci_dev
*dev
, struct msi_desc
*desc
)
207 irq
= get_irq_vector(dev
);
211 msg
.address_hi
= MSI_ADDR_BASE_HI
;
212 msg
.address_lo
= MSI_ADDR_BASE_LO
|
213 MSI_ADDR_DEST_MODE_PHYSICAL
|
214 MSI_ADDR_REDIRECTION_CPU
;
216 msg
.data
= MSI_DATA_TRIGGER_EDGE
|
217 MSI_DATA_LEVEL_ASSERT
|
218 MSI_DATA_DELIVERY_FIXED
;
220 ret
= irq_set_msi_desc(irq
, desc
);
226 write_msi_msg(irq
, &msg
);
231 /* Extra ACK needed for XLR on chip PCI controller */
232 static void xlr_pci_ack(struct irq_data
*d
)
234 uint64_t pcibase
= nlm_mmio_base(NETLOGIC_IO_PCIX_OFFSET
);
236 nlm_read_reg(pcibase
, (0x140 >> 2));
239 /* Extra ACK needed for XLS on chip PCIe controller */
240 static void xls_pcie_ack(struct irq_data
*d
)
242 uint64_t pciebase_le
= nlm_mmio_base(NETLOGIC_IO_PCIE_1_OFFSET
);
245 case PIC_PCIE_LINK0_IRQ
:
246 nlm_write_reg(pciebase_le
, (0x90 >> 2), 0xffffffff);
248 case PIC_PCIE_LINK1_IRQ
:
249 nlm_write_reg(pciebase_le
, (0x94 >> 2), 0xffffffff);
251 case PIC_PCIE_LINK2_IRQ
:
252 nlm_write_reg(pciebase_le
, (0x190 >> 2), 0xffffffff);
254 case PIC_PCIE_LINK3_IRQ
:
255 nlm_write_reg(pciebase_le
, (0x194 >> 2), 0xffffffff);
260 /* For XLS B silicon, the 3,4 PCI interrupts are different */
261 static void xls_pcie_ack_b(struct irq_data
*d
)
263 uint64_t pciebase_le
= nlm_mmio_base(NETLOGIC_IO_PCIE_1_OFFSET
);
266 case PIC_PCIE_LINK0_IRQ
:
267 nlm_write_reg(pciebase_le
, (0x90 >> 2), 0xffffffff);
269 case PIC_PCIE_LINK1_IRQ
:
270 nlm_write_reg(pciebase_le
, (0x94 >> 2), 0xffffffff);
272 case PIC_PCIE_XLSB0_LINK2_IRQ
:
273 nlm_write_reg(pciebase_le
, (0x190 >> 2), 0xffffffff);
275 case PIC_PCIE_XLSB0_LINK3_IRQ
:
276 nlm_write_reg(pciebase_le
, (0x194 >> 2), 0xffffffff);
281 int __init
pcibios_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
283 return get_irq_vector(dev
);
286 /* Do platform specific device initialization at pci_enable_device() time */
287 int pcibios_plat_dev_init(struct pci_dev
*dev
)
292 static int __init
pcibios_init(void)
294 /* PSB assigns PCI resources */
296 pci_config_base
= ioremap(DEFAULT_PCI_CONFIG_BASE
, 16 << 20);
298 /* Extend IO port for memory mapped io */
299 ioport_resource
.start
= 0;
300 ioport_resource
.end
= ~0;
302 set_io_port_base(CKSEG1
);
303 nlm_pci_controller
.io_map_base
= CKSEG1
;
305 pr_info("Registering XLR/XLS PCIX/PCIE Controller.\n");
306 register_pci_controller(&nlm_pci_controller
);
309 * For PCI interrupts, we need to ack the PCI controller too, overload
310 * irq handler data to do this
312 if (nlm_chip_is_xls()) {
313 if (nlm_chip_is_xls_b()) {
314 irq_set_handler_data(PIC_PCIE_LINK0_IRQ
,
316 irq_set_handler_data(PIC_PCIE_LINK1_IRQ
,
318 irq_set_handler_data(PIC_PCIE_XLSB0_LINK2_IRQ
,
320 irq_set_handler_data(PIC_PCIE_XLSB0_LINK3_IRQ
,
323 irq_set_handler_data(PIC_PCIE_LINK0_IRQ
, xls_pcie_ack
);
324 irq_set_handler_data(PIC_PCIE_LINK1_IRQ
, xls_pcie_ack
);
325 irq_set_handler_data(PIC_PCIE_LINK2_IRQ
, xls_pcie_ack
);
326 irq_set_handler_data(PIC_PCIE_LINK3_IRQ
, xls_pcie_ack
);
329 /* XLR PCI controller ACK */
330 irq_set_handler_data(PIC_PCIE_XLSB0_LINK3_IRQ
, xlr_pci_ack
);
336 arch_initcall(pcibios_init
);
338 struct pci_fixup pcibios_fixups
[] = {