2 * Copyright (C) 2006 PA Semi, Inc
4 * Authors: Kip Walker, PA Semi
5 * Olof Johansson, PA Semi
7 * Maintained by: Olof Johansson <olof@lixom.net>
9 * Based on arch/powerpc/platforms/maple/pci.c
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
26 #include <linux/kernel.h>
27 #include <linux/pci.h>
29 #include <asm/pci-bridge.h>
30 #include <asm/machdep.h>
32 #include <asm/ppc-pci.h>
36 #define PA_PXP_CFA(bus, devfn, off) (((bus) << 20) | ((devfn) << 12) | (off))
38 static inline int pa_pxp_offset_valid(u8 bus
, u8 devfn
, int offset
)
40 /* Device 0 Function 0 is special: It's config space spans function 1 as
41 * well, so allow larger offset. It's really a two-function device but the
42 * second function does not probe.
44 if (bus
== 0 && devfn
== 0)
50 static void volatile __iomem
*pa_pxp_cfg_addr(struct pci_controller
*hose
,
51 u8 bus
, u8 devfn
, int offset
)
53 return hose
->cfg_data
+ PA_PXP_CFA(bus
, devfn
, offset
);
56 static inline int is_root_port(int busno
, int devfn
)
58 return ((busno
== 0) && (PCI_FUNC(devfn
) < 4) &&
59 ((PCI_SLOT(devfn
) == 16) || (PCI_SLOT(devfn
) == 17)));
62 static inline int is_5945_reg(int reg
)
64 return (((reg
>= 0x18) && (reg
< 0x34)) ||
65 ((reg
>= 0x158) && (reg
< 0x178)));
68 static int workaround_5945(struct pci_bus
*bus
, unsigned int devfn
,
69 int offset
, int len
, u32
*val
)
71 struct pci_controller
*hose
;
72 void volatile __iomem
*addr
, *dummy
;
76 if (!is_root_port(bus
->number
, devfn
) || !is_5945_reg(offset
))
79 hose
= pci_bus_to_host(bus
);
81 addr
= pa_pxp_cfg_addr(hose
, bus
->number
, devfn
, offset
& ~0x3);
84 /* Workaround bug 5945: write 0 to a dummy register before reading,
85 * and write back what we read. We must read/write the full 32-bit
86 * contents so we need to shift and mask by hand.
88 dummy
= pa_pxp_cfg_addr(hose
, bus
->number
, devfn
, 0x10);
95 *val
= (tmp
>> (8*byte
)) & 0xff;
101 *val
= (tmp
>> 16) & 0xffff;
111 static int pa_pxp_read_config(struct pci_bus
*bus
, unsigned int devfn
,
112 int offset
, int len
, u32
*val
)
114 struct pci_controller
*hose
;
115 void volatile __iomem
*addr
;
117 hose
= pci_bus_to_host(bus
);
119 return PCIBIOS_DEVICE_NOT_FOUND
;
121 if (!pa_pxp_offset_valid(bus
->number
, devfn
, offset
))
122 return PCIBIOS_BAD_REGISTER_NUMBER
;
124 if (workaround_5945(bus
, devfn
, offset
, len
, val
))
125 return PCIBIOS_SUCCESSFUL
;
127 addr
= pa_pxp_cfg_addr(hose
, bus
->number
, devfn
, offset
);
130 * Note: the caller has already checked that offset is
131 * suitably aligned and that len is 1, 2 or 4.
138 *val
= in_le16(addr
);
141 *val
= in_le32(addr
);
145 return PCIBIOS_SUCCESSFUL
;
148 static int pa_pxp_write_config(struct pci_bus
*bus
, unsigned int devfn
,
149 int offset
, int len
, u32 val
)
151 struct pci_controller
*hose
;
152 void volatile __iomem
*addr
;
154 hose
= pci_bus_to_host(bus
);
156 return PCIBIOS_DEVICE_NOT_FOUND
;
158 if (!pa_pxp_offset_valid(bus
->number
, devfn
, offset
))
159 return PCIBIOS_BAD_REGISTER_NUMBER
;
161 addr
= pa_pxp_cfg_addr(hose
, bus
->number
, devfn
, offset
);
164 * Note: the caller has already checked that offset is
165 * suitably aligned and that len is 1, 2 or 4.
178 return PCIBIOS_SUCCESSFUL
;
181 static struct pci_ops pa_pxp_ops
= {
182 .read
= pa_pxp_read_config
,
183 .write
= pa_pxp_write_config
,
186 static void __init
setup_pa_pxp(struct pci_controller
*hose
)
188 hose
->ops
= &pa_pxp_ops
;
189 hose
->cfg_data
= ioremap(0xe0000000, 0x10000000);
192 static int __init
pas_add_bridge(struct device_node
*dev
)
194 struct pci_controller
*hose
;
196 pr_debug("Adding PCI host bridge %pOF\n", dev
);
198 hose
= pcibios_alloc_controller(dev
);
202 hose
->first_busno
= 0;
203 hose
->last_busno
= 0xff;
204 hose
->controller_ops
= pasemi_pci_controller_ops
;
208 printk(KERN_INFO
"Found PA-PXP PCI host bridge.\n");
210 /* Interpret the "ranges" property */
211 pci_process_bridge_OF_ranges(hose
, dev
, 1);
216 void __init
pas_pci_init(void)
218 struct device_node
*np
, *root
;
220 root
= of_find_node_by_path("/");
222 printk(KERN_CRIT
"pas_pci_init: can't find root "
227 for (np
= NULL
; (np
= of_get_next_child(root
, np
)) != NULL
;)
228 if (np
->name
&& !strcmp(np
->name
, "pxp") && !pas_add_bridge(np
))
234 void __iomem
*pasemi_pci_getcfgaddr(struct pci_dev
*dev
, int offset
)
236 struct pci_controller
*hose
;
238 hose
= pci_bus_to_host(dev
->bus
);
240 return (void __iomem
*)pa_pxp_cfg_addr(hose
, dev
->bus
->number
, dev
->devfn
, offset
);
243 struct pci_controller_ops pasemi_pci_controller_ops
;