xref: /linux/arch/powerpc/platforms/pasemi/pci.c (revision eff06ef0891d200eb0ddd156c6e96ce3dd18edc0)
11e76875eSOlof Johansson /*
21e76875eSOlof Johansson  * Copyright (C) 2006 PA Semi, Inc
31e76875eSOlof Johansson  *
41e76875eSOlof Johansson  * Authors: Kip Walker, PA Semi
51e76875eSOlof Johansson  *	    Olof Johansson, PA Semi
61e76875eSOlof Johansson  *
71e76875eSOlof Johansson  * Maintained by: Olof Johansson <olof@lixom.net>
81e76875eSOlof Johansson  *
91e76875eSOlof Johansson  * Based on arch/powerpc/platforms/maple/pci.c
101e76875eSOlof Johansson  *
111e76875eSOlof Johansson  * This program is free software; you can redistribute it and/or modify
121e76875eSOlof Johansson  * it under the terms of the GNU General Public License version 2 as
131e76875eSOlof Johansson  * published by the Free Software Foundation.
141e76875eSOlof Johansson  *
151e76875eSOlof Johansson  * This program is distributed in the hope that it will be useful,
161e76875eSOlof Johansson  * but WITHOUT ANY WARRANTY; without even the implied warranty of
171e76875eSOlof Johansson  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
181e76875eSOlof Johansson  * GNU General Public License for more details.
191e76875eSOlof Johansson  *
201e76875eSOlof Johansson  * You should have received a copy of the GNU General Public License
211e76875eSOlof Johansson  * along with this program; if not, write to the Free Software
221e76875eSOlof Johansson  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
231e76875eSOlof Johansson  */
241e76875eSOlof Johansson 
251e76875eSOlof Johansson 
261e76875eSOlof Johansson #include <linux/kernel.h>
271e76875eSOlof Johansson #include <linux/pci.h>
281e76875eSOlof Johansson 
291e76875eSOlof Johansson #include <asm/pci-bridge.h>
301e76875eSOlof Johansson #include <asm/machdep.h>
311e76875eSOlof Johansson 
321e76875eSOlof Johansson #include <asm/ppc-pci.h>
331e76875eSOlof Johansson 
34d28a0d94SDaniel Axtens #include "pasemi.h"
35d28a0d94SDaniel Axtens 
361e76875eSOlof Johansson #define PA_PXP_CFA(bus, devfn, off) (((bus) << 20) | ((devfn) << 12) | (off))
371e76875eSOlof Johansson 
38df7e70a2SOlof Johansson static inline int pa_pxp_offset_valid(u8 bus, u8 devfn, int offset)
39df7e70a2SOlof Johansson {
40df7e70a2SOlof Johansson 	/* Device 0 Function 0 is special: It's config space spans function 1 as
41df7e70a2SOlof Johansson 	 * well, so allow larger offset. It's really a two-function device but the
42df7e70a2SOlof Johansson 	 * second function does not probe.
43df7e70a2SOlof Johansson 	 */
44df7e70a2SOlof Johansson 	if (bus == 0 && devfn == 0)
45df7e70a2SOlof Johansson 		return offset < 8192;
46df7e70a2SOlof Johansson 	else
47df7e70a2SOlof Johansson 		return offset < 4096;
48df7e70a2SOlof Johansson }
491e76875eSOlof Johansson 
507c84ace9SAl Viro static void volatile __iomem *pa_pxp_cfg_addr(struct pci_controller *hose,
511e76875eSOlof Johansson 				       u8 bus, u8 devfn, int offset)
521e76875eSOlof Johansson {
537c84ace9SAl Viro 	return hose->cfg_data + PA_PXP_CFA(bus, devfn, offset);
541e76875eSOlof Johansson }
551e76875eSOlof Johansson 
564d442331SOlof Johansson static inline int is_root_port(int busno, int devfn)
574d442331SOlof Johansson {
584d442331SOlof Johansson 	return ((busno == 0) && (PCI_FUNC(devfn) < 4) &&
594d442331SOlof Johansson 		 ((PCI_SLOT(devfn) == 16) || (PCI_SLOT(devfn) == 17)));
604d442331SOlof Johansson }
614d442331SOlof Johansson 
624d442331SOlof Johansson static inline int is_5945_reg(int reg)
634d442331SOlof Johansson {
644d442331SOlof Johansson 	return (((reg >= 0x18) && (reg < 0x34)) ||
654d442331SOlof Johansson 		((reg >= 0x158) && (reg < 0x178)));
664d442331SOlof Johansson }
674d442331SOlof Johansson 
684d442331SOlof Johansson static int workaround_5945(struct pci_bus *bus, unsigned int devfn,
694d442331SOlof Johansson 			   int offset, int len, u32 *val)
704d442331SOlof Johansson {
714d442331SOlof Johansson 	struct pci_controller *hose;
724d442331SOlof Johansson 	void volatile __iomem *addr, *dummy;
734d442331SOlof Johansson 	int byte;
744d442331SOlof Johansson 	u32 tmp;
754d442331SOlof Johansson 
764d442331SOlof Johansson 	if (!is_root_port(bus->number, devfn) || !is_5945_reg(offset))
774d442331SOlof Johansson 		return 0;
784d442331SOlof Johansson 
794d442331SOlof Johansson 	hose = pci_bus_to_host(bus);
804d442331SOlof Johansson 
814d442331SOlof Johansson 	addr = pa_pxp_cfg_addr(hose, bus->number, devfn, offset & ~0x3);
824d442331SOlof Johansson 	byte = offset & 0x3;
834d442331SOlof Johansson 
844d442331SOlof Johansson 	/* Workaround bug 5945: write 0 to a dummy register before reading,
854d442331SOlof Johansson 	 * and write back what we read. We must read/write the full 32-bit
864d442331SOlof Johansson 	 * contents so we need to shift and mask by hand.
874d442331SOlof Johansson 	 */
884d442331SOlof Johansson 	dummy = pa_pxp_cfg_addr(hose, bus->number, devfn, 0x10);
894d442331SOlof Johansson 	out_le32(dummy, 0);
904d442331SOlof Johansson 	tmp = in_le32(addr);
914d442331SOlof Johansson 	out_le32(addr, tmp);
924d442331SOlof Johansson 
934d442331SOlof Johansson 	switch (len) {
944d442331SOlof Johansson 	case 1:
954d442331SOlof Johansson 		*val = (tmp >> (8*byte)) & 0xff;
964d442331SOlof Johansson 		break;
974d442331SOlof Johansson 	case 2:
984d442331SOlof Johansson 		if (byte == 0)
994d442331SOlof Johansson 			*val = tmp & 0xffff;
1004d442331SOlof Johansson 		else
1014d442331SOlof Johansson 			*val = (tmp >> 16) & 0xffff;
1024d442331SOlof Johansson 		break;
1034d442331SOlof Johansson 	default:
1044d442331SOlof Johansson 		*val = tmp;
1054d442331SOlof Johansson 		break;
1064d442331SOlof Johansson 	}
1074d442331SOlof Johansson 
1084d442331SOlof Johansson 	return 1;
1094d442331SOlof Johansson }
1104d442331SOlof Johansson 
1111e76875eSOlof Johansson static int pa_pxp_read_config(struct pci_bus *bus, unsigned int devfn,
1121e76875eSOlof Johansson 			      int offset, int len, u32 *val)
1131e76875eSOlof Johansson {
1141e76875eSOlof Johansson 	struct pci_controller *hose;
1157c84ace9SAl Viro 	void volatile __iomem *addr;
1161e76875eSOlof Johansson 
1171e76875eSOlof Johansson 	hose = pci_bus_to_host(bus);
1181e76875eSOlof Johansson 	if (!hose)
1191e76875eSOlof Johansson 		return PCIBIOS_DEVICE_NOT_FOUND;
1201e76875eSOlof Johansson 
121df7e70a2SOlof Johansson 	if (!pa_pxp_offset_valid(bus->number, devfn, offset))
1221e76875eSOlof Johansson 		return PCIBIOS_BAD_REGISTER_NUMBER;
1231e76875eSOlof Johansson 
1244d442331SOlof Johansson 	if (workaround_5945(bus, devfn, offset, len, val))
1254d442331SOlof Johansson 		return PCIBIOS_SUCCESSFUL;
1264d442331SOlof Johansson 
1271e76875eSOlof Johansson 	addr = pa_pxp_cfg_addr(hose, bus->number, devfn, offset);
1281e76875eSOlof Johansson 
1291e76875eSOlof Johansson 	/*
1301e76875eSOlof Johansson 	 * Note: the caller has already checked that offset is
1311e76875eSOlof Johansson 	 * suitably aligned and that len is 1, 2 or 4.
1321e76875eSOlof Johansson 	 */
1331e76875eSOlof Johansson 	switch (len) {
1341e76875eSOlof Johansson 	case 1:
1357c84ace9SAl Viro 		*val = in_8(addr);
1361e76875eSOlof Johansson 		break;
1371e76875eSOlof Johansson 	case 2:
1387c84ace9SAl Viro 		*val = in_le16(addr);
1391e76875eSOlof Johansson 		break;
1401e76875eSOlof Johansson 	default:
1417c84ace9SAl Viro 		*val = in_le32(addr);
1421e76875eSOlof Johansson 		break;
1431e76875eSOlof Johansson 	}
1441e76875eSOlof Johansson 
1451e76875eSOlof Johansson 	return PCIBIOS_SUCCESSFUL;
1461e76875eSOlof Johansson }
1471e76875eSOlof Johansson 
1481e76875eSOlof Johansson static int pa_pxp_write_config(struct pci_bus *bus, unsigned int devfn,
1491e76875eSOlof Johansson 			       int offset, int len, u32 val)
1501e76875eSOlof Johansson {
1511e76875eSOlof Johansson 	struct pci_controller *hose;
1527c84ace9SAl Viro 	void volatile __iomem *addr;
1531e76875eSOlof Johansson 
1541e76875eSOlof Johansson 	hose = pci_bus_to_host(bus);
1551e76875eSOlof Johansson 	if (!hose)
1561e76875eSOlof Johansson 		return PCIBIOS_DEVICE_NOT_FOUND;
1571e76875eSOlof Johansson 
158df7e70a2SOlof Johansson 	if (!pa_pxp_offset_valid(bus->number, devfn, offset))
1591e76875eSOlof Johansson 		return PCIBIOS_BAD_REGISTER_NUMBER;
1601e76875eSOlof Johansson 
1611e76875eSOlof Johansson 	addr = pa_pxp_cfg_addr(hose, bus->number, devfn, offset);
1621e76875eSOlof Johansson 
1631e76875eSOlof Johansson 	/*
1641e76875eSOlof Johansson 	 * Note: the caller has already checked that offset is
1651e76875eSOlof Johansson 	 * suitably aligned and that len is 1, 2 or 4.
1661e76875eSOlof Johansson 	 */
1671e76875eSOlof Johansson 	switch (len) {
1681e76875eSOlof Johansson 	case 1:
1697c84ace9SAl Viro 		out_8(addr, val);
1701e76875eSOlof Johansson 		break;
1711e76875eSOlof Johansson 	case 2:
1727c84ace9SAl Viro 		out_le16(addr, val);
1731e76875eSOlof Johansson 		break;
1741e76875eSOlof Johansson 	default:
1757c84ace9SAl Viro 		out_le32(addr, val);
1761e76875eSOlof Johansson 		break;
1771e76875eSOlof Johansson 	}
1781e76875eSOlof Johansson 	return PCIBIOS_SUCCESSFUL;
1791e76875eSOlof Johansson }
1801e76875eSOlof Johansson 
1811e76875eSOlof Johansson static struct pci_ops pa_pxp_ops = {
1821bb8c621SNathan Lynch 	.read = pa_pxp_read_config,
1831bb8c621SNathan Lynch 	.write = pa_pxp_write_config,
1841e76875eSOlof Johansson };
1851e76875eSOlof Johansson 
1861e76875eSOlof Johansson static void __init setup_pa_pxp(struct pci_controller *hose)
1871e76875eSOlof Johansson {
1881e76875eSOlof Johansson 	hose->ops = &pa_pxp_ops;
1891e76875eSOlof Johansson 	hose->cfg_data = ioremap(0xe0000000, 0x10000000);
1901e76875eSOlof Johansson }
1911e76875eSOlof Johansson 
19209b55f76SArnd Bergmann static int __init pas_add_bridge(struct device_node *dev)
1931e76875eSOlof Johansson {
1941e76875eSOlof Johansson 	struct pci_controller *hose;
1951e76875eSOlof Johansson 
196b7c670d6SRob Herring 	pr_debug("Adding PCI host bridge %pOF\n", dev);
1971e76875eSOlof Johansson 
1981e76875eSOlof Johansson 	hose = pcibios_alloc_controller(dev);
1991e76875eSOlof Johansson 	if (!hose)
2001e76875eSOlof Johansson 		return -ENOMEM;
2011e76875eSOlof Johansson 
2021e76875eSOlof Johansson 	hose->first_busno = 0;
2031e76875eSOlof Johansson 	hose->last_busno = 0xff;
204d28a0d94SDaniel Axtens 	hose->controller_ops = pasemi_pci_controller_ops;
2051e76875eSOlof Johansson 
2061e76875eSOlof Johansson 	setup_pa_pxp(hose);
2071e76875eSOlof Johansson 
2081e76875eSOlof Johansson 	printk(KERN_INFO "Found PA-PXP PCI host bridge.\n");
2091e76875eSOlof Johansson 
2101e76875eSOlof Johansson 	/* Interpret the "ranges" property */
2111e76875eSOlof Johansson 	pci_process_bridge_OF_ranges(hose, dev, 1);
2121e76875eSOlof Johansson 
2131e76875eSOlof Johansson 	return 0;
2141e76875eSOlof Johansson }
2151e76875eSOlof Johansson 
2161e76875eSOlof Johansson void __init pas_pci_init(void)
2171e76875eSOlof Johansson {
2181e76875eSOlof Johansson 	struct device_node *np, *root;
2191e76875eSOlof Johansson 
2201e76875eSOlof Johansson 	root = of_find_node_by_path("/");
2211e76875eSOlof Johansson 	if (!root) {
2221e76875eSOlof Johansson 		printk(KERN_CRIT "pas_pci_init: can't find root "
2231e76875eSOlof Johansson 			"of device tree\n");
2241e76875eSOlof Johansson 		return;
2251e76875eSOlof Johansson 	}
2261e76875eSOlof Johansson 
227*eff06ef0SOlof Johansson 	pci_set_flags(PCI_SCAN_ALL_PCIE_DEVS);
228*eff06ef0SOlof Johansson 
2291e76875eSOlof Johansson 	for (np = NULL; (np = of_get_next_child(root, np)) != NULL;)
23009b55f76SArnd Bergmann 		if (np->name && !strcmp(np->name, "pxp") && !pas_add_bridge(np))
2311e76875eSOlof Johansson 			of_node_get(np);
2321e76875eSOlof Johansson 
2331e76875eSOlof Johansson 	of_node_put(root);
2341e76875eSOlof Johansson }
23568c8404cSOlof Johansson 
23668c8404cSOlof Johansson void __iomem *pasemi_pci_getcfgaddr(struct pci_dev *dev, int offset)
23768c8404cSOlof Johansson {
23868c8404cSOlof Johansson 	struct pci_controller *hose;
23968c8404cSOlof Johansson 
2404d442331SOlof Johansson 	hose = pci_bus_to_host(dev->bus);
24168c8404cSOlof Johansson 
2424d442331SOlof Johansson 	return (void __iomem *)pa_pxp_cfg_addr(hose, dev->bus->number, dev->devfn, offset);
24368c8404cSOlof Johansson }
244d28a0d94SDaniel Axtens 
245d28a0d94SDaniel Axtens struct pci_controller_ops pasemi_pci_controller_ops;
246