2 * Copyright (C) 1999, 2000, 2004 MIPS Technologies, Inc.
4 * Authors: Carsten Langgaard <carstenl@mips.com>
5 * Maciej W. Rozycki <macro@mips.com>
7 * This program is free software; you can distribute it and/or modify it
8 * under the terms of the GNU General Public License (Version 2) as
9 * published by the Free Software Foundation.
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
20 * MIPS boards specific PCI support.
22 #include <linux/types.h>
23 #include <linux/pci.h>
24 #include <linux/kernel.h>
26 #include <asm/mips-boards/bonito64.h>
28 #define PCI_ACCESS_READ 0
29 #define PCI_ACCESS_WRITE 1
31 #define CFG_SPACE_REG(offset) (void *)CKSEG1ADDR(_pcictrl_bonito_pcicfg + (offset))
32 #define ID_SEL_BEGIN 10
33 #define MAX_DEV_NUM (31 - ID_SEL_BEGIN)
36 static int bonito64_pcibios_config_access(unsigned char access_type,
38 unsigned int devfn, int where,
41 u32 busnum = bus->number;
45 int device = PCI_SLOT(devfn);
46 int function = PCI_FUNC(devfn);
50 /* Type 0 configuration for onboard PCI bus */
51 if (device > MAX_DEV_NUM)
54 addr = (1 << (device + ID_SEL_BEGIN)) | (function << 8) | reg;
57 /* Type 1 configuration for offboard PCI bus */
58 addr = (busnum << 16) | (device << 11) | (function << 8) | reg;
63 BONITO_PCICMD |= BONITO_PCICMD_MABORT_CLR | BONITO_PCICMD_MTABORT_CLR;
65 BONITO_PCIMAP_CFG = (addr >> 16) | type;
67 /* Flush Bonito register block */
68 dummy = BONITO_PCIMAP_CFG;
71 addrp = CFG_SPACE_REG(addr & 0xffff);
72 if (access_type == PCI_ACCESS_WRITE) {
73 writel(cpu_to_le32(*data), addrp);
75 while (BONITO_PCIMSTAT & 0xF);
77 *data = le32_to_cpu(readl(addrp));
80 /* Detect Master/Target abort */
81 if (BONITO_PCICMD & (BONITO_PCICMD_MABORT_CLR |
82 BONITO_PCICMD_MTABORT_CLR)) {
86 BONITO_PCICMD |= (BONITO_PCICMD_MABORT_CLR |
87 BONITO_PCICMD_MTABORT_CLR);
98 * We can't address 8 and 16 bit words directly. Instead we have to
99 * read/write a 32bit word and mask/modify the data we actually want.
101 static int bonito64_pcibios_read(struct pci_bus *bus, unsigned int devfn,
102 int where, int size, u32 * val)
106 if ((size == 2) && (where & 1))
107 return PCIBIOS_BAD_REGISTER_NUMBER;
108 else if ((size == 4) && (where & 3))
109 return PCIBIOS_BAD_REGISTER_NUMBER;
111 if (bonito64_pcibios_config_access(PCI_ACCESS_READ, bus, devfn, where,
116 *val = (data >> ((where & 3) << 3)) & 0xff;
118 *val = (data >> ((where & 3) << 3)) & 0xffff;
122 return PCIBIOS_SUCCESSFUL;
125 static int bonito64_pcibios_write(struct pci_bus *bus, unsigned int devfn,
126 int where, int size, u32 val)
130 if ((size == 2) && (where & 1))
131 return PCIBIOS_BAD_REGISTER_NUMBER;
132 else if ((size == 4) && (where & 3))
133 return PCIBIOS_BAD_REGISTER_NUMBER;
138 if (bonito64_pcibios_config_access(PCI_ACCESS_READ, bus, devfn,
143 data = (data & ~(0xff << ((where & 3) << 3))) |
144 (val << ((where & 3) << 3));
146 data = (data & ~(0xffff << ((where & 3) << 3))) |
147 (val << ((where & 3) << 3));
150 if (bonito64_pcibios_config_access(PCI_ACCESS_WRITE, bus, devfn, where,
154 return PCIBIOS_SUCCESSFUL;
157 struct pci_ops bonito64_pci_ops = {
158 .read = bonito64_pcibios_read,
159 .write = bonito64_pcibios_write