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>
40 #include <linux/console.h>
44 #include <asm/netlogic/interrupt.h>
45 #include <asm/netlogic/xlr/iomap.h>
46 #include <asm/netlogic/xlr/pic.h>
47 #include <asm/netlogic/xlr/xlr.h>
49 static void *pci_config_base
;
51 #define pci_cfg_addr(bus, devfn, off) (((bus) << 16) | ((devfn) << 8) | (off))
54 static inline u32
pci_cfg_read_32bit(struct pci_bus
*bus
, unsigned int devfn
,
60 cfgaddr
= (u32
*)(pci_config_base
+
61 pci_cfg_addr(bus
->number
, devfn
, where
& ~3));
63 return cpu_to_le32(data
);
66 static inline void pci_cfg_write_32bit(struct pci_bus
*bus
, unsigned int devfn
,
71 cfgaddr
= (u32
*)(pci_config_base
+
72 pci_cfg_addr(bus
->number
, devfn
, where
& ~3));
73 *cfgaddr
= cpu_to_le32(data
);
76 static int nlm_pcibios_read(struct pci_bus
*bus
, unsigned int devfn
,
77 int where
, int size
, u32
*val
)
81 if ((size
== 2) && (where
& 1))
82 return PCIBIOS_BAD_REGISTER_NUMBER
;
83 else if ((size
== 4) && (where
& 3))
84 return PCIBIOS_BAD_REGISTER_NUMBER
;
86 data
= pci_cfg_read_32bit(bus
, devfn
, where
);
89 *val
= (data
>> ((where
& 3) << 3)) & 0xff;
91 *val
= (data
>> ((where
& 3) << 3)) & 0xffff;
95 return PCIBIOS_SUCCESSFUL
;
99 static int nlm_pcibios_write(struct pci_bus
*bus
, unsigned int devfn
,
100 int where
, int size
, u32 val
)
104 if ((size
== 2) && (where
& 1))
105 return PCIBIOS_BAD_REGISTER_NUMBER
;
106 else if ((size
== 4) && (where
& 3))
107 return PCIBIOS_BAD_REGISTER_NUMBER
;
109 data
= pci_cfg_read_32bit(bus
, devfn
, where
);
112 data
= (data
& ~(0xff << ((where
& 3) << 3))) |
113 (val
<< ((where
& 3) << 3));
115 data
= (data
& ~(0xffff << ((where
& 3) << 3))) |
116 (val
<< ((where
& 3) << 3));
120 pci_cfg_write_32bit(bus
, devfn
, where
, data
);
122 return PCIBIOS_SUCCESSFUL
;
125 struct pci_ops nlm_pci_ops
= {
126 .read
= nlm_pcibios_read
,
127 .write
= nlm_pcibios_write
130 static struct resource nlm_pci_mem_resource
= {
131 .name
= "XLR PCI MEM",
132 .start
= 0xd0000000UL
, /* 256MB PCI mem @ 0xd000_0000 */
134 .flags
= IORESOURCE_MEM
,
137 static struct resource nlm_pci_io_resource
= {
138 .name
= "XLR IO MEM",
139 .start
= 0x10000000UL
, /* 16MB PCI IO @ 0x1000_0000 */
141 .flags
= IORESOURCE_IO
,
144 struct pci_controller nlm_pci_controller
= {
146 .pci_ops
= &nlm_pci_ops
,
147 .mem_resource
= &nlm_pci_mem_resource
,
148 .mem_offset
= 0x00000000UL
,
149 .io_resource
= &nlm_pci_io_resource
,
150 .io_offset
= 0x00000000UL
,
153 int __init
pcibios_map_irq(const struct pci_dev
*dev
, u8 slot
, u8 pin
)
155 if (!nlm_chip_is_xls())
156 return PIC_PCIX_IRQ
; /* for XLR just one IRQ*/
159 * For XLS PCIe, there is an IRQ per Link, find out which
160 * link the device is on to assign interrupts
162 if (dev
->bus
->self
== NULL
)
165 switch (dev
->bus
->self
->devfn
) {
167 return PIC_PCIE_LINK0_IRQ
;
169 return PIC_PCIE_LINK1_IRQ
;
171 if (nlm_chip_is_xls_b())
172 return PIC_PCIE_XLSB0_LINK2_IRQ
;
174 return PIC_PCIE_LINK2_IRQ
;
176 if (nlm_chip_is_xls_b())
177 return PIC_PCIE_XLSB0_LINK3_IRQ
;
179 return PIC_PCIE_LINK3_IRQ
;
181 WARN(1, "Unexpected devfn %d\n", dev
->bus
->self
->devfn
);
185 /* Do platform specific device initialization at pci_enable_device() time */
186 int pcibios_plat_dev_init(struct pci_dev
*dev
)
191 static int __init
pcibios_init(void)
193 /* PSB assigns PCI resources */
195 pci_config_base
= ioremap(DEFAULT_PCI_CONFIG_BASE
, 16 << 20);
197 /* Extend IO port for memory mapped io */
198 ioport_resource
.start
= 0;
199 ioport_resource
.end
= ~0;
201 set_io_port_base(CKSEG1
);
202 nlm_pci_controller
.io_map_base
= CKSEG1
;
204 pr_info("Registering XLR/XLS PCIX/PCIE Controller.\n");
205 register_pci_controller(&nlm_pci_controller
);
210 arch_initcall(pcibios_init
);
212 struct pci_fixup pcibios_fixups
[] = {