diff options
Diffstat (limited to 'arch/arm/mach-footbridge/dc21285.c')
-rw-r--r-- | arch/arm/mach-footbridge/dc21285.c | 384 |
1 files changed, 384 insertions, 0 deletions
diff --git a/arch/arm/mach-footbridge/dc21285.c b/arch/arm/mach-footbridge/dc21285.c new file mode 100644 index 000000000000..e79884eea1f7 --- /dev/null +++ b/arch/arm/mach-footbridge/dc21285.c | |||
@@ -0,0 +1,384 @@ | |||
1 | /* | ||
2 | * linux/arch/arm/kernel/dec21285.c: PCI functions for DC21285 | ||
3 | * | ||
4 | * Copyright (C) 1998-2001 Russell King | ||
5 | * Copyright (C) 1998-2000 Phil Blundell | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License version 2 as | ||
9 | * published by the Free Software Foundation. | ||
10 | */ | ||
11 | #include <linux/kernel.h> | ||
12 | #include <linux/pci.h> | ||
13 | #include <linux/ptrace.h> | ||
14 | #include <linux/interrupt.h> | ||
15 | #include <linux/mm.h> | ||
16 | #include <linux/slab.h> | ||
17 | #include <linux/init.h> | ||
18 | #include <linux/ioport.h> | ||
19 | |||
20 | #include <asm/io.h> | ||
21 | #include <asm/irq.h> | ||
22 | #include <asm/system.h> | ||
23 | #include <asm/mach/pci.h> | ||
24 | #include <asm/hardware/dec21285.h> | ||
25 | |||
26 | #define MAX_SLOTS 21 | ||
27 | |||
28 | #define PCICMD_ABORT ((PCI_STATUS_REC_MASTER_ABORT| \ | ||
29 | PCI_STATUS_REC_TARGET_ABORT)<<16) | ||
30 | |||
31 | #define PCICMD_ERROR_BITS ((PCI_STATUS_DETECTED_PARITY | \ | ||
32 | PCI_STATUS_REC_MASTER_ABORT | \ | ||
33 | PCI_STATUS_REC_TARGET_ABORT | \ | ||
34 | PCI_STATUS_PARITY) << 16) | ||
35 | |||
36 | extern int setup_arm_irq(int, struct irqaction *); | ||
37 | extern void pcibios_report_status(u_int status_mask, int warn); | ||
38 | extern void register_isa_ports(unsigned int, unsigned int, unsigned int); | ||
39 | |||
40 | static unsigned long | ||
41 | dc21285_base_address(struct pci_bus *bus, unsigned int devfn) | ||
42 | { | ||
43 | unsigned long addr = 0; | ||
44 | |||
45 | if (bus->number == 0) { | ||
46 | if (PCI_SLOT(devfn) == 0) | ||
47 | /* | ||
48 | * For devfn 0, point at the 21285 | ||
49 | */ | ||
50 | addr = ARMCSR_BASE; | ||
51 | else { | ||
52 | devfn -= 1 << 3; | ||
53 | |||
54 | if (devfn < PCI_DEVFN(MAX_SLOTS, 0)) | ||
55 | addr = PCICFG0_BASE | 0xc00000 | (devfn << 8); | ||
56 | } | ||
57 | } else | ||
58 | addr = PCICFG1_BASE | (bus->number << 16) | (devfn << 8); | ||
59 | |||
60 | return addr; | ||
61 | } | ||
62 | |||
63 | static int | ||
64 | dc21285_read_config(struct pci_bus *bus, unsigned int devfn, int where, | ||
65 | int size, u32 *value) | ||
66 | { | ||
67 | unsigned long addr = dc21285_base_address(bus, devfn); | ||
68 | u32 v = 0xffffffff; | ||
69 | |||
70 | if (addr) | ||
71 | switch (size) { | ||
72 | case 1: | ||
73 | asm("ldr%?b %0, [%1, %2]" | ||
74 | : "=r" (v) : "r" (addr), "r" (where)); | ||
75 | break; | ||
76 | case 2: | ||
77 | asm("ldr%?h %0, [%1, %2]" | ||
78 | : "=r" (v) : "r" (addr), "r" (where)); | ||
79 | break; | ||
80 | case 4: | ||
81 | asm("ldr%? %0, [%1, %2]" | ||
82 | : "=r" (v) : "r" (addr), "r" (where)); | ||
83 | break; | ||
84 | } | ||
85 | |||
86 | *value = v; | ||
87 | |||
88 | v = *CSR_PCICMD; | ||
89 | if (v & PCICMD_ABORT) { | ||
90 | *CSR_PCICMD = v & (0xffff|PCICMD_ABORT); | ||
91 | return -1; | ||
92 | } | ||
93 | |||
94 | return PCIBIOS_SUCCESSFUL; | ||
95 | } | ||
96 | |||
97 | static int | ||
98 | dc21285_write_config(struct pci_bus *bus, unsigned int devfn, int where, | ||
99 | int size, u32 value) | ||
100 | { | ||
101 | unsigned long addr = dc21285_base_address(bus, devfn); | ||
102 | u32 v; | ||
103 | |||
104 | if (addr) | ||
105 | switch (size) { | ||
106 | case 1: | ||
107 | asm("str%?b %0, [%1, %2]" | ||
108 | : : "r" (value), "r" (addr), "r" (where)); | ||
109 | break; | ||
110 | case 2: | ||
111 | asm("str%?h %0, [%1, %2]" | ||
112 | : : "r" (value), "r" (addr), "r" (where)); | ||
113 | break; | ||
114 | case 4: | ||
115 | asm("str%? %0, [%1, %2]" | ||
116 | : : "r" (value), "r" (addr), "r" (where)); | ||
117 | break; | ||
118 | } | ||
119 | |||
120 | v = *CSR_PCICMD; | ||
121 | if (v & PCICMD_ABORT) { | ||
122 | *CSR_PCICMD = v & (0xffff|PCICMD_ABORT); | ||
123 | return -1; | ||
124 | } | ||
125 | |||
126 | return PCIBIOS_SUCCESSFUL; | ||
127 | } | ||
128 | |||
129 | static struct pci_ops dc21285_ops = { | ||
130 | .read = dc21285_read_config, | ||
131 | .write = dc21285_write_config, | ||
132 | }; | ||
133 | |||
134 | static struct timer_list serr_timer; | ||
135 | static struct timer_list perr_timer; | ||
136 | |||
137 | static void dc21285_enable_error(unsigned long __data) | ||
138 | { | ||
139 | switch (__data) { | ||
140 | case IRQ_PCI_SERR: | ||
141 | del_timer(&serr_timer); | ||
142 | break; | ||
143 | |||
144 | case IRQ_PCI_PERR: | ||
145 | del_timer(&perr_timer); | ||
146 | break; | ||
147 | } | ||
148 | |||
149 | enable_irq(__data); | ||
150 | } | ||
151 | |||
152 | /* | ||
153 | * Warn on PCI errors. | ||
154 | */ | ||
155 | static irqreturn_t dc21285_abort_irq(int irq, void *dev_id, struct pt_regs *regs) | ||
156 | { | ||
157 | unsigned int cmd; | ||
158 | unsigned int status; | ||
159 | |||
160 | cmd = *CSR_PCICMD; | ||
161 | status = cmd >> 16; | ||
162 | cmd = cmd & 0xffff; | ||
163 | |||
164 | if (status & PCI_STATUS_REC_MASTER_ABORT) { | ||
165 | printk(KERN_DEBUG "PCI: master abort, pc=0x%08lx\n", | ||
166 | instruction_pointer(regs)); | ||
167 | cmd |= PCI_STATUS_REC_MASTER_ABORT << 16; | ||
168 | } | ||
169 | |||
170 | if (status & PCI_STATUS_REC_TARGET_ABORT) { | ||
171 | printk(KERN_DEBUG "PCI: target abort: "); | ||
172 | pcibios_report_status(PCI_STATUS_REC_MASTER_ABORT | | ||
173 | PCI_STATUS_SIG_TARGET_ABORT | | ||
174 | PCI_STATUS_REC_TARGET_ABORT, 1); | ||
175 | printk("\n"); | ||
176 | |||
177 | cmd |= PCI_STATUS_REC_TARGET_ABORT << 16; | ||
178 | } | ||
179 | |||
180 | *CSR_PCICMD = cmd; | ||
181 | |||
182 | return IRQ_HANDLED; | ||
183 | } | ||
184 | |||
185 | static irqreturn_t dc21285_serr_irq(int irq, void *dev_id, struct pt_regs *regs) | ||
186 | { | ||
187 | struct timer_list *timer = dev_id; | ||
188 | unsigned int cntl; | ||
189 | |||
190 | printk(KERN_DEBUG "PCI: system error received: "); | ||
191 | pcibios_report_status(PCI_STATUS_SIG_SYSTEM_ERROR, 1); | ||
192 | printk("\n"); | ||
193 | |||
194 | cntl = *CSR_SA110_CNTL & 0xffffdf07; | ||
195 | *CSR_SA110_CNTL = cntl | SA110_CNTL_RXSERR; | ||
196 | |||
197 | /* | ||
198 | * back off this interrupt | ||
199 | */ | ||
200 | disable_irq(irq); | ||
201 | timer->expires = jiffies + HZ; | ||
202 | add_timer(timer); | ||
203 | |||
204 | return IRQ_HANDLED; | ||
205 | } | ||
206 | |||
207 | static irqreturn_t dc21285_discard_irq(int irq, void *dev_id, struct pt_regs *regs) | ||
208 | { | ||
209 | printk(KERN_DEBUG "PCI: discard timer expired\n"); | ||
210 | *CSR_SA110_CNTL &= 0xffffde07; | ||
211 | |||
212 | return IRQ_HANDLED; | ||
213 | } | ||
214 | |||
215 | static irqreturn_t dc21285_dparity_irq(int irq, void *dev_id, struct pt_regs *regs) | ||
216 | { | ||
217 | unsigned int cmd; | ||
218 | |||
219 | printk(KERN_DEBUG "PCI: data parity error detected: "); | ||
220 | pcibios_report_status(PCI_STATUS_PARITY | PCI_STATUS_DETECTED_PARITY, 1); | ||
221 | printk("\n"); | ||
222 | |||
223 | cmd = *CSR_PCICMD & 0xffff; | ||
224 | *CSR_PCICMD = cmd | 1 << 24; | ||
225 | |||
226 | return IRQ_HANDLED; | ||
227 | } | ||
228 | |||
229 | static irqreturn_t dc21285_parity_irq(int irq, void *dev_id, struct pt_regs *regs) | ||
230 | { | ||
231 | struct timer_list *timer = dev_id; | ||
232 | unsigned int cmd; | ||
233 | |||
234 | printk(KERN_DEBUG "PCI: parity error detected: "); | ||
235 | pcibios_report_status(PCI_STATUS_PARITY | PCI_STATUS_DETECTED_PARITY, 1); | ||
236 | printk("\n"); | ||
237 | |||
238 | cmd = *CSR_PCICMD & 0xffff; | ||
239 | *CSR_PCICMD = cmd | 1 << 31; | ||
240 | |||
241 | /* | ||
242 | * back off this interrupt | ||
243 | */ | ||
244 | disable_irq(irq); | ||
245 | timer->expires = jiffies + HZ; | ||
246 | add_timer(timer); | ||
247 | |||
248 | return IRQ_HANDLED; | ||
249 | } | ||
250 | |||
251 | int __init dc21285_setup(int nr, struct pci_sys_data *sys) | ||
252 | { | ||
253 | struct resource *res; | ||
254 | |||
255 | if (nr || !footbridge_cfn_mode()) | ||
256 | return 0; | ||
257 | |||
258 | res = kmalloc(sizeof(struct resource) * 2, GFP_KERNEL); | ||
259 | if (!res) { | ||
260 | printk("out of memory for root bus resources"); | ||
261 | return 0; | ||
262 | } | ||
263 | |||
264 | memset(res, 0, sizeof(struct resource) * 2); | ||
265 | |||
266 | res[0].flags = IORESOURCE_MEM; | ||
267 | res[0].name = "Footbridge non-prefetch"; | ||
268 | res[1].flags = IORESOURCE_MEM | IORESOURCE_PREFETCH; | ||
269 | res[1].name = "Footbridge prefetch"; | ||
270 | |||
271 | allocate_resource(&iomem_resource, &res[1], 0x20000000, | ||
272 | 0xa0000000, 0xffffffff, 0x20000000, NULL, NULL); | ||
273 | allocate_resource(&iomem_resource, &res[0], 0x40000000, | ||
274 | 0x80000000, 0xffffffff, 0x40000000, NULL, NULL); | ||
275 | |||
276 | sys->resource[0] = &ioport_resource; | ||
277 | sys->resource[1] = &res[0]; | ||
278 | sys->resource[2] = &res[1]; | ||
279 | sys->mem_offset = DC21285_PCI_MEM; | ||
280 | |||
281 | return 1; | ||
282 | } | ||
283 | |||
284 | struct pci_bus * __init dc21285_scan_bus(int nr, struct pci_sys_data *sys) | ||
285 | { | ||
286 | return pci_scan_bus(0, &dc21285_ops, sys); | ||
287 | } | ||
288 | |||
289 | void __init dc21285_preinit(void) | ||
290 | { | ||
291 | unsigned int mem_size, mem_mask; | ||
292 | int cfn_mode; | ||
293 | |||
294 | mem_size = (unsigned int)high_memory - PAGE_OFFSET; | ||
295 | for (mem_mask = 0x00100000; mem_mask < 0x10000000; mem_mask <<= 1) | ||
296 | if (mem_mask >= mem_size) | ||
297 | break; | ||
298 | |||
299 | /* | ||
300 | * These registers need to be set up whether we're the | ||
301 | * central function or not. | ||
302 | */ | ||
303 | *CSR_SDRAMBASEMASK = (mem_mask - 1) & 0x0ffc0000; | ||
304 | *CSR_SDRAMBASEOFFSET = 0; | ||
305 | *CSR_ROMBASEMASK = 0x80000000; | ||
306 | *CSR_CSRBASEMASK = 0; | ||
307 | *CSR_CSRBASEOFFSET = 0; | ||
308 | *CSR_PCIADDR_EXTN = 0; | ||
309 | |||
310 | cfn_mode = __footbridge_cfn_mode(); | ||
311 | |||
312 | printk(KERN_INFO "PCI: DC21285 footbridge, revision %02lX, in " | ||
313 | "%s mode\n", *CSR_CLASSREV & 0xff, cfn_mode ? | ||
314 | "central function" : "addin"); | ||
315 | |||
316 | if (footbridge_cfn_mode()) { | ||
317 | /* | ||
318 | * Clear any existing errors - we aren't | ||
319 | * interested in historical data... | ||
320 | */ | ||
321 | *CSR_SA110_CNTL = (*CSR_SA110_CNTL & 0xffffde07) | | ||
322 | SA110_CNTL_RXSERR; | ||
323 | *CSR_PCICMD = (*CSR_PCICMD & 0xffff) | PCICMD_ERROR_BITS; | ||
324 | } | ||
325 | |||
326 | init_timer(&serr_timer); | ||
327 | init_timer(&perr_timer); | ||
328 | |||
329 | serr_timer.data = IRQ_PCI_SERR; | ||
330 | serr_timer.function = dc21285_enable_error; | ||
331 | perr_timer.data = IRQ_PCI_PERR; | ||
332 | perr_timer.function = dc21285_enable_error; | ||
333 | |||
334 | /* | ||
335 | * We don't care if these fail. | ||
336 | */ | ||
337 | request_irq(IRQ_PCI_SERR, dc21285_serr_irq, SA_INTERRUPT, | ||
338 | "PCI system error", &serr_timer); | ||
339 | request_irq(IRQ_PCI_PERR, dc21285_parity_irq, SA_INTERRUPT, | ||
340 | "PCI parity error", &perr_timer); | ||
341 | request_irq(IRQ_PCI_ABORT, dc21285_abort_irq, SA_INTERRUPT, | ||
342 | "PCI abort", NULL); | ||
343 | request_irq(IRQ_DISCARD_TIMER, dc21285_discard_irq, SA_INTERRUPT, | ||
344 | "Discard timer", NULL); | ||
345 | request_irq(IRQ_PCI_DPERR, dc21285_dparity_irq, SA_INTERRUPT, | ||
346 | "PCI data parity", NULL); | ||
347 | |||
348 | if (cfn_mode) { | ||
349 | static struct resource csrio; | ||
350 | |||
351 | csrio.flags = IORESOURCE_IO; | ||
352 | csrio.name = "Footbridge"; | ||
353 | |||
354 | allocate_resource(&ioport_resource, &csrio, 128, | ||
355 | 0xff00, 0xffff, 128, NULL, NULL); | ||
356 | |||
357 | /* | ||
358 | * Map our SDRAM at a known address in PCI space, just in case | ||
359 | * the firmware had other ideas. Using a nonzero base is | ||
360 | * necessary, since some VGA cards forcefully use PCI addresses | ||
361 | * in the range 0x000a0000 to 0x000c0000. (eg, S3 cards). | ||
362 | */ | ||
363 | *CSR_PCICSRBASE = 0xf4000000; | ||
364 | *CSR_PCICSRIOBASE = csrio.start; | ||
365 | *CSR_PCISDRAMBASE = __virt_to_bus(PAGE_OFFSET); | ||
366 | *CSR_PCIROMBASE = 0; | ||
367 | *CSR_PCICMD = PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER | | ||
368 | PCI_COMMAND_INVALIDATE | PCICMD_ERROR_BITS; | ||
369 | } else if (footbridge_cfn_mode() != 0) { | ||
370 | /* | ||
371 | * If we are not compiled to accept "add-in" mode, then | ||
372 | * we are using a constant virt_to_bus translation which | ||
373 | * can not hope to cater for the way the host BIOS has | ||
374 | * set up the machine. | ||
375 | */ | ||
376 | panic("PCI: this kernel is compiled for central " | ||
377 | "function mode only"); | ||
378 | } | ||
379 | } | ||
380 | |||
381 | void __init dc21285_postinit(void) | ||
382 | { | ||
383 | register_isa_ports(DC21285_PCI_MEM, DC21285_PCI_IO, 0); | ||
384 | } | ||