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 TX3927.
13 * Much of the code is derived from the original DDB5074 port by
14 * Geert Uytterhoeven <geert@sonycom.com>
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License as published by the
18 * Free Software Foundation; either version 2 of the License, or (at your
19 * option) any later version.
21 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
24 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
28 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 * You should have received a copy of the GNU General Public License along
33 * with this program; if not, write to the Free Software Foundation, Inc.,
34 * 675 Mass Ave, Cambridge, MA 02139, USA.
36 #include <linux/types.h>
37 #include <linux/pci.h>
38 #include <linux/kernel.h>
39 #include <linux/init.h>
40 #include <linux/interrupt.h>
42 #include <asm/addrspace.h>
43 #include <asm/txx9irq.h>
44 #include <asm/txx9/pci.h>
45 #include <asm/txx9/tx3927.h>
47 static int mkaddr(struct pci_bus
*bus
, unsigned char devfn
, unsigned char where
)
49 if (bus
->parent
== NULL
&&
50 devfn
>= PCI_DEVFN(TX3927_PCIC_MAX_DEVNU
, 0))
53 ((bus
->number
& 0xff) << 0x10) |
54 ((devfn
& 0xff) << 0x08) |
55 (where
& 0xfc) | (bus
->parent
? 1 : 0);
57 /* clear M_ABORT and Disable M_ABORT Int. */
58 tx3927_pcicptr
->pcistat
|= PCI_STATUS_REC_MASTER_ABORT
;
59 tx3927_pcicptr
->pcistatim
&= ~PCI_STATUS_REC_MASTER_ABORT
;
63 static inline int check_abort(void)
65 if (tx3927_pcicptr
->pcistat
& PCI_STATUS_REC_MASTER_ABORT
) {
66 tx3927_pcicptr
->pcistat
|= PCI_STATUS_REC_MASTER_ABORT
;
67 tx3927_pcicptr
->pcistatim
|= PCI_STATUS_REC_MASTER_ABORT
;
68 /* flush write buffer */
70 return PCIBIOS_DEVICE_NOT_FOUND
;
72 return PCIBIOS_SUCCESSFUL
;
75 static int tx3927_pci_read_config(struct pci_bus
*bus
, unsigned int devfn
,
76 int where
, int size
, u32
* val
)
78 if (mkaddr(bus
, devfn
, where
)) {
80 return PCIBIOS_DEVICE_NOT_FOUND
;
85 *val
= *(volatile u8
*) ((unsigned long) & tx3927_pcicptr
->icd
| (where
& 3));
89 *val
= le16_to_cpu(*(volatile u16
*) ((unsigned long) & tx3927_pcicptr
->icd
| (where
& 3)));
93 *val
= le32_to_cpu(tx3927_pcicptr
->icd
);
100 static int tx3927_pci_write_config(struct pci_bus
*bus
, unsigned int devfn
,
101 int where
, int size
, u32 val
)
103 if (mkaddr(bus
, devfn
, where
))
104 return PCIBIOS_DEVICE_NOT_FOUND
;
108 *(volatile u8
*) ((unsigned long) & tx3927_pcicptr
->icd
| (where
& 3)) = val
;
112 *(volatile u16
*) ((unsigned long) & tx3927_pcicptr
->icd
| (where
& 2)) =
117 tx3927_pcicptr
->icd
= cpu_to_le32(val
);
120 return check_abort();
123 static struct pci_ops tx3927_pci_ops
= {
124 .read
= tx3927_pci_read_config
,
125 .write
= tx3927_pci_write_config
,
128 void __init
tx3927_pcic_setup(struct pci_controller
*channel
,
129 unsigned long sdram_size
, int extarb
)
132 unsigned long io_base
=
133 channel
->io_resource
->start
+ mips_io_port_base
- IO_BASE
;
134 unsigned long io_size
=
135 channel
->io_resource
->end
- channel
->io_resource
->start
;
136 unsigned long io_pciaddr
=
137 channel
->io_resource
->start
- channel
->io_offset
;
138 unsigned long mem_base
=
139 channel
->mem_resource
->start
;
140 unsigned long mem_size
=
141 channel
->mem_resource
->end
- channel
->mem_resource
->start
;
142 unsigned long mem_pciaddr
=
143 channel
->mem_resource
->start
- channel
->mem_offset
;
145 printk(KERN_INFO
"TX3927 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:%s",
146 tx3927_pcicptr
->did
, tx3927_pcicptr
->vid
,
148 extarb
? "External" : "Internal");
149 channel
->pci_ops
= &tx3927_pci_ops
;
151 local_irq_save(flags
);
152 /* Disable External PCI Config. Access */
153 tx3927_pcicptr
->lbc
= TX3927_PCIC_LBC_EPCAD
;
155 tx3927_pcicptr
->lbc
|= TX3927_PCIC_LBC_IBSE
|
156 TX3927_PCIC_LBC_TIBSE
|
157 TX3927_PCIC_LBC_TMFBSE
| TX3927_PCIC_LBC_MSDSE
;
159 /* LB->PCI mappings */
160 tx3927_pcicptr
->iomas
= ~(io_size
- 1);
161 tx3927_pcicptr
->ilbioma
= io_base
;
162 tx3927_pcicptr
->ipbioma
= io_pciaddr
;
163 tx3927_pcicptr
->mmas
= ~(mem_size
- 1);
164 tx3927_pcicptr
->ilbmma
= mem_base
;
165 tx3927_pcicptr
->ipbmma
= mem_pciaddr
;
166 /* PCI->LB mappings */
167 tx3927_pcicptr
->iobas
= 0xffffffff;
168 tx3927_pcicptr
->ioba
= 0;
169 tx3927_pcicptr
->tlbioma
= 0;
170 tx3927_pcicptr
->mbas
= ~(sdram_size
- 1);
171 tx3927_pcicptr
->mba
= 0;
172 tx3927_pcicptr
->tlbmma
= 0;
173 /* Enable Direct mapping Address Space Decoder */
174 tx3927_pcicptr
->lbc
|= TX3927_PCIC_LBC_ILMDE
| TX3927_PCIC_LBC_ILIDE
;
176 /* Clear All Local Bus Status */
177 tx3927_pcicptr
->lbstat
= TX3927_PCIC_LBIM_ALL
;
178 /* Enable All Local Bus Interrupts */
179 tx3927_pcicptr
->lbim
= TX3927_PCIC_LBIM_ALL
;
180 /* Clear All PCI Status Error */
181 tx3927_pcicptr
->pcistat
= TX3927_PCIC_PCISTATIM_ALL
;
182 /* Enable All PCI Status Error Interrupts */
183 tx3927_pcicptr
->pcistatim
= TX3927_PCIC_PCISTATIM_ALL
;
185 /* PCIC Int => IRC IRQ10 */
186 tx3927_pcicptr
->il
= TX3927_IR_PCI
;
187 /* Target Control (per errata) */
188 tx3927_pcicptr
->tc
= TX3927_PCIC_TC_OF8E
| TX3927_PCIC_TC_IF8E
;
190 /* Enable Bus Arbiter */
192 tx3927_pcicptr
->pbapmc
= TX3927_PCIC_PBAPMC_PBAEN
;
194 tx3927_pcicptr
->pcicmd
= PCI_COMMAND_MASTER
|
197 PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
;
198 local_irq_restore(flags
);
201 static irqreturn_t
tx3927_pcierr_interrupt(int irq
, void *dev_id
)
203 struct pt_regs
*regs
= get_irq_regs();
205 if (txx9_pci_err_action
!= TXX9_PCI_ERR_IGNORE
) {
206 printk(KERN_WARNING
"PCI error interrupt at 0x%08lx.\n",
208 printk(KERN_WARNING
"pcistat:%02x, lbstat:%04lx\n",
209 tx3927_pcicptr
->pcistat
, tx3927_pcicptr
->lbstat
);
211 if (txx9_pci_err_action
!= TXX9_PCI_ERR_PANIC
) {
212 /* clear all pci errors */
213 tx3927_pcicptr
->pcistat
|= TX3927_PCIC_PCISTATIM_ALL
;
214 tx3927_pcicptr
->istat
= TX3927_PCIC_IIM_ALL
;
215 tx3927_pcicptr
->tstat
= TX3927_PCIC_TIM_ALL
;
216 tx3927_pcicptr
->lbstat
= TX3927_PCIC_LBIM_ALL
;
223 void __init
tx3927_setup_pcierr_irq(void)
225 if (request_irq(TXX9_IRQ_BASE
+ TX3927_IR_PCI
,
226 tx3927_pcierr_interrupt
,
227 IRQF_DISABLED
, "PCI error",
228 (void *)TX3927_PCIC_REG
))
229 printk(KERN_WARNING
"Failed to request irq for PCIERR\n");