blob: d706838db023a93343a6b5c9c71249a7d1660721 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * arch/arm/mach-ixp2000/pci.c
3 *
4 * PCI routines for IXDP2400/IXDP2800 boards
5 *
6 * Original Author: Naeem Afzal <naeem.m.afzal@intel.com>
7 * Maintained by: Deepak Saxena <dsaxena@plexity.net>
8 *
9 * Copyright 2002 Intel Corp.
10 * Copyright (C) 2003-2004 MontaVista Software, Inc.
11 *
12 * This program is free software; you can redistribute it and/or modify it
13 * under the terms of the GNU General Public License as published by the
14 * Free Software Foundation; either version 2 of the License, or (at your
15 * option) any later version.
16 */
17
18#include <linux/sched.h>
19#include <linux/kernel.h>
20#include <linux/pci.h>
21#include <linux/interrupt.h>
22#include <linux/mm.h>
23#include <linux/init.h>
24#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/delay.h>
Russell Kingfced80c2008-09-06 12:10:45 +010026#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <asm/irq.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010029#include <mach/hardware.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31#include <asm/mach/pci.h>
32
Lennert Buytenhek2024c392006-12-01 16:02:40 +010033static volatile int pci_master_aborts = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35static int clear_master_aborts(void);
36
Lennert Buytenhek8443b162005-04-29 21:58:15 +010037u32 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070038ixp2000_pci_config_addr(unsigned int bus_nr, unsigned int devfn, int where)
39{
40 u32 *paddress;
41
42 if (PCI_SLOT(devfn) > 7)
43 return 0;
44
45 /* Must be dword aligned */
46 where &= ~3;
47
48 /*
49 * For top bus, generate type 0, else type 1
50 */
51 if (!bus_nr) {
52 /* only bits[23:16] are used for IDSEL */
53 paddress = (u32 *) (IXP2000_PCI_CFG0_VIRT_BASE
54 | (1 << (PCI_SLOT(devfn) + 16))
55 | (PCI_FUNC(devfn) << 8) | where);
56 } else {
57 paddress = (u32 *) (IXP2000_PCI_CFG1_VIRT_BASE
58 | (bus_nr << 16)
59 | (PCI_SLOT(devfn) << 11)
60 | (PCI_FUNC(devfn) << 8) | where);
61 }
62
63 return paddress;
64}
65
66/*
67 * Mask table, bits to mask for quantity of size 1, 2 or 4 bytes.
68 * 0 and 3 are not valid indexes...
69 */
70static u32 bytemask[] = {
71 /*0*/ 0,
72 /*1*/ 0xff,
73 /*2*/ 0xffff,
74 /*3*/ 0,
75 /*4*/ 0xffffffff,
76};
77
78
79int ixp2000_pci_read_config(struct pci_bus *bus, unsigned int devfn, int where,
80 int size, u32 *value)
81{
82 u32 n;
83 u32 *addr;
84
85 n = where % 4;
86
87 addr = ixp2000_pci_config_addr(bus->number, devfn, where);
88 if (!addr)
89 return PCIBIOS_DEVICE_NOT_FOUND;
90
91 pci_master_aborts = 0;
92 *value = (*addr >> (8*n)) & bytemask[size];
93 if (pci_master_aborts) {
94 pci_master_aborts = 0;
95 *value = 0xffffffff;
96 return PCIBIOS_DEVICE_NOT_FOUND;
97 }
98
99 return PCIBIOS_SUCCESSFUL;
100}
101
102/*
Simon Arlott6cbdc8c2007-05-11 20:40:30 +0100103 * We don't do error checks by calling clear_master_aborts() b/c the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 * assumption is that the caller did a read first to make sure a device
105 * exists.
106 */
107int ixp2000_pci_write_config(struct pci_bus *bus, unsigned int devfn, int where,
108 int size, u32 value)
109{
110 u32 mask;
111 u32 *addr;
112 u32 temp;
113
114 mask = ~(bytemask[size] << ((where % 0x4) * 8));
115 addr = ixp2000_pci_config_addr(bus->number, devfn, where);
116 if (!addr)
117 return PCIBIOS_DEVICE_NOT_FOUND;
118 temp = (u32) (value) << ((where % 0x4) * 8);
119 *addr = (*addr & mask) | temp;
120
121 clear_master_aborts();
122
123 return PCIBIOS_SUCCESSFUL;
124}
125
126
Russell Kingc23bfc32012-03-10 12:49:16 +0000127struct pci_ops ixp2000_pci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 .read = ixp2000_pci_read_config,
129 .write = ixp2000_pci_write_config
130};
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
133int ixp2000_pci_abort_handler(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
134{
135
136 volatile u32 temp;
137 unsigned long flags;
138
139 pci_master_aborts = 1;
140
141 local_irq_save(flags);
142 temp = *(IXP2000_PCI_CONTROL);
143 if (temp & ((1 << 8) | (1 << 5))) {
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000144 ixp2000_reg_wrb(IXP2000_PCI_CONTROL, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 }
146
147 temp = *(IXP2000_PCI_CMDSTAT);
148 if (temp & (1 << 29)) {
149 while (temp & (1 << 29)) {
150 ixp2000_reg_write(IXP2000_PCI_CMDSTAT, temp);
151 temp = *(IXP2000_PCI_CMDSTAT);
152 }
153 }
154 local_irq_restore(flags);
155
156 /*
157 * If it was an imprecise abort, then we need to correct the
158 * return address to be _after_ the instruction.
159 */
160 if (fsr & (1 << 10))
161 regs->ARM_pc += 4;
162
163 return 0;
164}
165
166int
167clear_master_aborts(void)
168{
169 volatile u32 temp;
170 unsigned long flags;
171
172 local_irq_save(flags);
173 temp = *(IXP2000_PCI_CONTROL);
Lennert Buytenheke9b72e42005-11-01 19:44:26 +0000174 if (temp & ((1 << 8) | (1 << 5))) {
175 ixp2000_reg_wrb(IXP2000_PCI_CONTROL, temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 }
177
178 temp = *(IXP2000_PCI_CMDSTAT);
179 if (temp & (1 << 29)) {
180 while (temp & (1 << 29)) {
181 ixp2000_reg_write(IXP2000_PCI_CMDSTAT, temp);
182 temp = *(IXP2000_PCI_CMDSTAT);
183 }
184 }
185 local_irq_restore(flags);
186
187 return 0;
188}
189
190void __init
191ixp2000_pci_preinit(void)
192{
Rob Herringdc8d9662011-06-29 10:59:45 -0500193 pci_set_flags(0);
194
Rob Herringc9d95fb2011-06-28 21:16:13 -0500195 pcibios_min_io = 0;
196 pcibios_min_mem = 0;
197
Lennert Buytenhek321ab6a2005-06-25 19:30:04 +0100198#ifndef CONFIG_IXP2000_SUPPORT_BROKEN_PCI_IO
199 /*
200 * Configure the PCI unit to properly byteswap I/O transactions,
201 * and verify that it worked.
202 */
203 ixp2000_reg_write(IXP2000_PCI_CONTROL,
204 (*IXP2000_PCI_CONTROL | PCI_CONTROL_IEE));
205
206 if ((*IXP2000_PCI_CONTROL & PCI_CONTROL_IEE) == 0)
207 panic("IXP2000: PCI I/O is broken on this ixp model, and "
208 "the needed workaround has not been configured in");
209#endif
210
Kirill A. Shutemov6338a6a2010-07-22 13:18:19 +0100211 hook_fault_code(16+6, ixp2000_pci_abort_handler, SIGBUS, 0,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212 "PCI config cycle to non-existent device");
213}
214
215
216/*
217 * IXP2000 systems often have large resource requirements, so we just
218 * use our own resource space.
219 */
220static struct resource ixp2000_pci_mem_space = {
Lennert Buytenhekae36bf52005-04-29 21:58:15 +0100221 .start = 0xe0000000,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222 .end = 0xffffffff,
223 .flags = IORESOURCE_MEM,
224 .name = "PCI Mem Space"
225};
226
227static struct resource ixp2000_pci_io_space = {
Lennert Buytenhek458a83f2005-04-29 21:58:16 +0100228 .start = 0x00010000,
229 .end = 0x0001ffff,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 .flags = IORESOURCE_IO,
231 .name = "PCI I/O Space"
232};
233
234int ixp2000_pci_setup(int nr, struct pci_sys_data *sys)
235{
236 if (nr >= 1)
237 return 0;
238
Bjorn Helgaas9f786d032012-02-23 20:19:01 -0700239 pci_add_resource_offset(&sys->resources,
240 &ixp2000_pci_io_space, sys->io_offset);
241 pci_add_resource_offset(&sys->resources,
242 &ixp2000_pci_mem_space, sys->mem_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
244 return 1;
245}
246