2 * Copyright (C) 1999, 2000, 2004, 2005 MIPS Technologies, Inc.
4 * Authors: Carsten Langgaard <carstenl@mips.com>
5 * Maciej W. Rozycki <macro@mips.com>
6 * Copyright (C) 2005 Ralf Baechle (ralf@linux-mips.org)
8 * This program is free software; you can distribute it and/or modify it
9 * under the terms of the GNU General Public License (Version 2) as
10 * published by the Free Software Foundation.
12 * This program is distributed in the hope it will be useful, but WITHOUT
13 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 59 Temple Place - Suite 330, Boston MA 02111-1307, USA.
21 * MIPS boards specific PCI support.
24 #include <linux/config.h>
25 #include <linux/types.h>
26 #include <linux/pci.h>
27 #include <linux/kernel.h>
28 #include <linux/init.h>
30 #include <asm/mips-boards/msc01_pci.h>
32 #define PCI_ACCESS_READ 0
33 #define PCI_ACCESS_WRITE 1
36 * PCI configuration cycle AD bus definition
39 #define PCI_CFG_TYPE0_REG_SHF 0
40 #define PCI_CFG_TYPE0_FUNC_SHF 8
43 #define PCI_CFG_TYPE1_REG_SHF 0
44 #define PCI_CFG_TYPE1_FUNC_SHF 8
45 #define PCI_CFG_TYPE1_DEV_SHF 11
46 #define PCI_CFG_TYPE1_BUS_SHF 16
48 static int msc_pcibios_config_access(unsigned char access_type
,
49 struct pci_bus
*bus
, unsigned int devfn
, int where
, u32
* data
)
51 unsigned char busnum
= bus
->number
;
55 #ifdef CONFIG_MIPS_BOARDS_GEN
56 if ((busnum
== 0) && (PCI_SLOT(devfn
) == 17)) {
57 /* MIPS Core boards have SOCit connected as device 17 */
62 /* Clear status register bits. */
63 MSC_WRITE(MSC01_PCI_INTSTAT
,
64 (MSC01_PCI_INTCFG_MA_BIT
| MSC01_PCI_INTCFG_TA_BIT
));
68 type
= 0; /* Type 0 */
70 type
= 1; /* Type 1 */
72 MSC_WRITE(MSC01_PCI_CFGADDR
,
73 ((busnum
<< MSC01_PCI_CFGADDR_BNUM_SHF
) |
74 (PCI_SLOT(devfn
) << MSC01_PCI_CFGADDR_DNUM_SHF
)
76 MSC01_PCI_CFGADDR_FNUM_SHF
) | ((where
/
78 MSC01_PCI_CFGADDR_RNUM_SHF
)
82 if (access_type
== PCI_ACCESS_WRITE
)
83 MSC_WRITE(MSC01_PCI_CFGDATA
, *data
);
85 MSC_READ(MSC01_PCI_CFGDATA
, *data
);
87 /* Detect Master/Target abort */
88 MSC_READ(MSC01_PCI_INTSTAT
, intr
);
89 if (intr
& (MSC01_PCI_INTCFG_MA_BIT
|
90 MSC01_PCI_INTCFG_TA_BIT
)) {
94 MSC_READ(MSC01_PCI_INTSTAT
, intr
);
95 MSC_WRITE(MSC01_PCI_INTSTAT
,
96 (MSC01_PCI_INTCFG_MA_BIT
|
97 MSC01_PCI_INTCFG_TA_BIT
));
107 * We can't address 8 and 16 bit words directly. Instead we have to
108 * read/write a 32bit word and mask/modify the data we actually want.
110 static int msc_pcibios_read(struct pci_bus
*bus
, unsigned int devfn
,
111 int where
, int size
, u32
* val
)
115 if ((size
== 2) && (where
& 1))
116 return PCIBIOS_BAD_REGISTER_NUMBER
;
117 else if ((size
== 4) && (where
& 3))
118 return PCIBIOS_BAD_REGISTER_NUMBER
;
120 if (msc_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
, where
,
125 *val
= (data
>> ((where
& 3) << 3)) & 0xff;
127 *val
= (data
>> ((where
& 3) << 3)) & 0xffff;
131 return PCIBIOS_SUCCESSFUL
;
134 static int msc_pcibios_write(struct pci_bus
*bus
, unsigned int devfn
,
135 int where
, int size
, u32 val
)
139 if ((size
== 2) && (where
& 1))
140 return PCIBIOS_BAD_REGISTER_NUMBER
;
141 else if ((size
== 4) && (where
& 3))
142 return PCIBIOS_BAD_REGISTER_NUMBER
;
147 if (msc_pcibios_config_access(PCI_ACCESS_READ
, bus
, devfn
,
152 data
= (data
& ~(0xff << ((where
& 3) << 3))) |
153 (val
<< ((where
& 3) << 3));
155 data
= (data
& ~(0xffff << ((where
& 3) << 3))) |
156 (val
<< ((where
& 3) << 3));
159 if (msc_pcibios_config_access(PCI_ACCESS_WRITE
, bus
, devfn
, where
,
163 return PCIBIOS_SUCCESSFUL
;
166 struct pci_ops msc_pci_ops
= {
167 .read
= msc_pcibios_read
,
168 .write
= msc_pcibios_write