2 * Copyright 2001 MontaVista Software Inc.
3 * Author: MontaVista Software, Inc.
6 * Copyright (C) 2000-2001 Toshiba Corporation
7 * Copyright (C) 2004 by Ralf Baechle (ralf@linux-mips.org)
9 * Based on arch/mips/ddb5xxx/ddb5477/pci_ops.c
11 * Define the pci_ops for the Toshiba rbtx4927
13 * Much of the code is derived from the original DDB5074 port by
14 * Geert Uytterhoeven <geert@sonycom.com>
16 * Copyright 2004 MontaVista Software Inc.
17 * Author: Manish Lachwani (mlachwani@mvista.com)
19 * This program is free software; you can redistribute it and/or modify it
20 * under the terms of the GNU General Public License as published by the
21 * Free Software Foundation; either version 2 of the License, or (at your
22 * option) any later version.
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
27 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
28 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
29 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
30 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
31 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
33 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
35 * You should have received a copy of the GNU General Public License along
36 * with this program; if not, write to the Free Software Foundation, Inc.,
37 * 675 Mass Ave, Cambridge, MA 02139, USA.
39 #include <linux/types.h>
40 #include <linux/pci.h>
41 #include <linux/kernel.h>
42 #include <linux/init.h>
44 #include <asm/addrspace.h>
45 #include <asm/byteorder.h>
46 #include <asm/tx4927/tx4927_pci.h>
48 /* initialize in setup */
49 struct resource pci_io_resource
= {
50 .name
= "TX4927 PCI IO SPACE",
52 .end
= (0x1000 + (TX4927_PCIIO_SIZE
)) - 1,
53 .flags
= IORESOURCE_IO
56 /* initialize in setup */
57 struct resource pci_mem_resource
= {
58 .name
= "TX4927 PCI MEM SPACE",
59 .start
= TX4927_PCIMEM
,
60 .end
= TX4927_PCIMEM
+ TX4927_PCIMEM_SIZE
- 1,
61 .flags
= IORESOURCE_MEM
64 static int mkaddr(int bus
, int dev_fn
, int where
, int *flagsp
)
67 /* Type 1 configuration */
68 tx4927_pcicptr
->g2pcfgadrs
= ((bus
& 0xff) << 0x10) |
69 ((dev_fn
& 0xff) << 0x08) | (where
& 0xfc) | 1;
71 if (dev_fn
>= PCI_DEVFN(TX4927_PCIC_MAX_DEVNU
, 0))
74 /* Type 0 configuration */
75 tx4927_pcicptr
->g2pcfgadrs
= ((bus
& 0xff) << 0x10) |
76 ((dev_fn
& 0xff) << 0x08) | (where
& 0xfc);
78 /* clear M_ABORT and Disable M_ABORT Int. */
79 tx4927_pcicptr
->pcistatus
=
80 (tx4927_pcicptr
->pcistatus
& 0x0000ffff) |
81 (PCI_STATUS_REC_MASTER_ABORT
<< 16);
82 tx4927_pcicptr
->pcimask
&= ~PCI_STATUS_REC_MASTER_ABORT
;
86 static int check_abort(int flags
)
88 int code
= PCIBIOS_SUCCESSFUL
;
90 pcistatus
& (PCI_STATUS_REC_MASTER_ABORT
<< 16)) {
91 tx4927_pcicptr
->pcistatus
=
93 pcistatus
& 0x0000ffff) | (PCI_STATUS_REC_MASTER_ABORT
95 tx4927_pcicptr
->pcimask
|= PCI_STATUS_REC_MASTER_ABORT
;
96 code
= PCIBIOS_DEVICE_NOT_FOUND
;
101 static int tx4927_pcibios_read_config(struct pci_bus
*bus
, unsigned int devfn
, int where
,
104 int flags
, retval
, dev
, busno
, func
;
107 dev
= PCI_SLOT(devfn
);
108 func
= PCI_FUNC(devfn
);
110 /* check if the bus is top-level */
111 if (bus
->parent
!= NULL
) {
117 if (mkaddr(busno
, devfn
, where
, &flags
))
122 *val
= *(volatile u8
*) ((unsigned long) & tx4927_pcicptr
->
124 #ifdef __LITTLE_ENDIAN
127 ((where
& 0x3) ^ 0x3));
131 *val
= *(volatile u16
*) ((unsigned long) & tx4927_pcicptr
->
133 #ifdef __LITTLE_ENDIAN
136 ((where
& 0x3) ^ 0x2));
140 *val
= tx4927_pcicptr
->g2pcfgdata
;
144 retval
= check_abort(flags
);
145 if (retval
== PCIBIOS_DEVICE_NOT_FOUND
)
151 static int tx4927_pcibios_write_config(struct pci_bus
*bus
, unsigned int devfn
, int where
,
154 int flags
, dev
, busno
, func
;
156 dev
= PCI_SLOT(devfn
);
157 func
= PCI_FUNC(devfn
);
159 /* check if the bus is top-level */
160 if (bus
->parent
!= NULL
) {
166 if (mkaddr(busno
, devfn
, where
, &flags
))
171 *(volatile u8
*) ((unsigned long) & tx4927_pcicptr
->
173 #ifdef __LITTLE_ENDIAN
176 ((where
& 0x3) ^ 0x3)) = val
;
181 *(volatile u16
*) ((unsigned long) & tx4927_pcicptr
->
183 #ifdef __LITTLE_ENDIAN
186 ((where
& 0x3) ^ 0x2)) = val
;
190 tx4927_pcicptr
->g2pcfgdata
= val
;
194 return check_abort(flags
);
197 struct pci_ops tx4927_pci_ops
= {
198 tx4927_pcibios_read_config
,
199 tx4927_pcibios_write_config
203 * h/w only supports devices 0x00 to 0x14
205 struct pci_controller tx4927_controller
= {
206 .pci_ops
= &tx4927_pci_ops
,
207 .io_resource
= &pci_io_resource
,
208 .mem_resource
= &pci_mem_resource
,