include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / arch / arm / mach-iop13xx / pci.c
CommitLineData
285f5fa7
DW
1/*
2 * iop13xx PCI support
3 * Copyright (c) 2005-2006, Intel Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 */
19
20#include <linux/pci.h>
5a0e3ad6 21#include <linux/slab.h>
285f5fa7 22#include <linux/delay.h>
e8edc6e0 23#include <linux/jiffies.h>
285f5fa7 24#include <asm/irq.h>
a09e64fb 25#include <mach/hardware.h>
285f5fa7 26#include <asm/sizes.h>
e8edc6e0 27#include <asm/signal.h>
285f5fa7 28#include <asm/mach/pci.h>
a09e64fb 29#include <mach/pci.h>
285f5fa7
DW
30
31#define IOP13XX_PCI_DEBUG 0
32#define PRINTK(x...) ((void)(IOP13XX_PCI_DEBUG && printk(x)))
33
34u32 iop13xx_atux_pmmr_offset; /* This offset can change based on strapping */
35u32 iop13xx_atue_pmmr_offset; /* This offset can change based on strapping */
36static struct pci_bus *pci_bus_atux = 0;
37static struct pci_bus *pci_bus_atue = 0;
38u32 iop13xx_atue_mem_base;
39u32 iop13xx_atux_mem_base;
40size_t iop13xx_atue_mem_size;
41size_t iop13xx_atux_mem_size;
42unsigned long iop13xx_pcibios_min_io = 0;
43unsigned long iop13xx_pcibios_min_mem = 0;
44
45EXPORT_SYMBOL(iop13xx_atue_mem_base);
46EXPORT_SYMBOL(iop13xx_atux_mem_base);
47EXPORT_SYMBOL(iop13xx_atue_mem_size);
48EXPORT_SYMBOL(iop13xx_atux_mem_size);
49
50int init_atu = 0; /* Flag to select which ATU(s) to initialize / disable */
51static unsigned long atux_trhfa_timeout = 0; /* Trhfa = RST# high to first
52 access */
53
54/* Scan the initialized busses and ioremap the requested memory range
55 */
56void iop13xx_map_pci_memory(void)
57{
58 int atu;
59 struct pci_bus *bus;
60 struct pci_dev *dev;
61 resource_size_t end = 0;
62
63 for (atu = 0; atu < 2; atu++) {
64 bus = atu ? pci_bus_atue : pci_bus_atux;
65 if (bus) {
66 list_for_each_entry(dev, &bus->devices, bus_list) {
67 int i;
68 int max = 7;
69
70 if (dev->subordinate)
71 max = DEVICE_COUNT_RESOURCE;
72
73 for (i = 0; i < max; i++) {
74 struct resource *res = &dev->resource[i];
75 if (res->flags & IORESOURCE_MEM)
76 end = max(res->end, end);
77 }
78 }
79
80 switch(atu) {
81 case 0:
82 iop13xx_atux_mem_size =
83 (end - IOP13XX_PCIX_LOWER_MEM_RA) + 1;
84
85 /* 16MB align the request */
86 if (iop13xx_atux_mem_size & (SZ_16M - 1)) {
87 iop13xx_atux_mem_size &= ~(SZ_16M - 1);
88 iop13xx_atux_mem_size += SZ_16M;
89 }
90
91 if (end) {
92 iop13xx_atux_mem_base =
3603ab2b 93 (u32) __arm_ioremap_pfn(
285f5fa7 94 __phys_to_pfn(IOP13XX_PCIX_LOWER_MEM_PA)
3603ab2b 95 , 0, iop13xx_atux_mem_size, MT_DEVICE);
285f5fa7
DW
96 if (!iop13xx_atux_mem_base) {
97 printk("%s: atux allocation "
8e86f427 98 "failed\n", __func__);
285f5fa7
DW
99 BUG();
100 }
101 } else
102 iop13xx_atux_mem_size = 0;
103 PRINTK("%s: atu: %d bus_size: %d mem_base: %x\n",
8e86f427 104 __func__, atu, iop13xx_atux_mem_size,
285f5fa7
DW
105 iop13xx_atux_mem_base);
106 break;
107 case 1:
108 iop13xx_atue_mem_size =
109 (end - IOP13XX_PCIE_LOWER_MEM_RA) + 1;
110
111 /* 16MB align the request */
112 if (iop13xx_atue_mem_size & (SZ_16M - 1)) {
113 iop13xx_atue_mem_size &= ~(SZ_16M - 1);
114 iop13xx_atue_mem_size += SZ_16M;
115 }
116
117 if (end) {
118 iop13xx_atue_mem_base =
3603ab2b 119 (u32) __arm_ioremap_pfn(
285f5fa7 120 __phys_to_pfn(IOP13XX_PCIE_LOWER_MEM_PA)
3603ab2b 121 , 0, iop13xx_atue_mem_size, MT_DEVICE);
285f5fa7
DW
122 if (!iop13xx_atue_mem_base) {
123 printk("%s: atue allocation "
8e86f427 124 "failed\n", __func__);
285f5fa7
DW
125 BUG();
126 }
127 } else
128 iop13xx_atue_mem_size = 0;
129 PRINTK("%s: atu: %d bus_size: %d mem_base: %x\n",
8e86f427 130 __func__, atu, iop13xx_atue_mem_size,
285f5fa7
DW
131 iop13xx_atue_mem_base);
132 break;
133 }
134
135 printk("%s: Initialized (%uM @ resource/virtual: %08lx/%08x)\n",
136 atu ? "ATUE" : "ATUX",
137 (atu ? iop13xx_atue_mem_size : iop13xx_atux_mem_size) /
138 SZ_1M,
139 atu ? IOP13XX_PCIE_LOWER_MEM_RA :
140 IOP13XX_PCIX_LOWER_MEM_RA,
141 atu ? iop13xx_atue_mem_base :
142 iop13xx_atux_mem_base);
143 end = 0;
144 }
145
146 }
147}
148
d73d8011 149static int iop13xx_atu_function(int atu)
285f5fa7
DW
150{
151 int func = 0;
152 /* the function number depends on the value of the
153 * IOP13XX_INTERFACE_SEL_PCIX reset strap
154 * see C-Spec section 3.17
155 */
156 switch(atu) {
157 case IOP13XX_INIT_ATU_ATUX:
158 if (__raw_readl(IOP13XX_ESSR0) & IOP13XX_INTERFACE_SEL_PCIX)
159 func = 5;
160 else
161 func = 0;
162 break;
163 case IOP13XX_INIT_ATU_ATUE:
164 if (__raw_readl(IOP13XX_ESSR0) & IOP13XX_INTERFACE_SEL_PCIX)
165 func = 0;
166 else
167 func = 5;
168 break;
169 default:
170 BUG();
171 }
172
173 return func;
174}
175
176/* iop13xx_atux_cfg_address - format a configuration address for atux
177 * @bus: Target bus to access
178 * @devfn: Combined device number and function number
179 * @where: Desired register's address offset
180 *
181 * Convert the parameters to a configuration address formatted
182 * according the PCI-X 2.0 specification
183 */
184static u32 iop13xx_atux_cfg_address(struct pci_bus *bus, int devfn, int where)
185{
186 struct pci_sys_data *sys = bus->sysdata;
187 u32 addr;
188
189 if (sys->busnr == bus->number)
190 addr = 1 << (PCI_SLOT(devfn) + 16) | (PCI_SLOT(devfn) << 11);
191 else
192 addr = bus->number << 16 | PCI_SLOT(devfn) << 11 | 1;
193
194 addr |= PCI_FUNC(devfn) << 8 | ((where & 0xff) & ~3);
195 addr |= ((where & 0xf00) >> 8) << 24; /* upper register number */
196
197 return addr;
198}
199
200/* iop13xx_atue_cfg_address - format a configuration address for atue
201 * @bus: Target bus to access
202 * @devfn: Combined device number and function number
203 * @where: Desired register's address offset
204 *
205 * Convert the parameters to an address usable by the ATUE_OCCAR
206 */
207static u32 iop13xx_atue_cfg_address(struct pci_bus *bus, int devfn, int where)
208{
209 struct pci_sys_data *sys = bus->sysdata;
210 u32 addr;
211
212 PRINTK("iop13xx_atue_cfg_address: bus: %d dev: %d func: %d",
213 bus->number, PCI_SLOT(devfn), PCI_FUNC(devfn));
214 addr = ((u32) bus->number) << IOP13XX_ATUE_OCCAR_BUS_NUM |
215 ((u32) PCI_SLOT(devfn)) << IOP13XX_ATUE_OCCAR_DEV_NUM |
216 ((u32) PCI_FUNC(devfn)) << IOP13XX_ATUE_OCCAR_FUNC_NUM |
217 (where & ~0x3);
218
219 if (sys->busnr != bus->number)
220 addr |= 1; /* type 1 access */
221
222 return addr;
223}
224
225/* This routine checks the status of the last configuration cycle. If an error
226 * was detected it returns >0, else it returns a 0. The errors being checked
227 * are parity, master abort, target abort (master and target). These types of
228 * errors occure during a config cycle where there is no device, like during
229 * the discovery stage.
230 */
231static int iop13xx_atux_pci_status(int clear)
232{
233 unsigned int status;
234 int err = 0;
235
236 /*
237 * Check the status registers.
238 */
239 status = __raw_readw(IOP13XX_ATUX_ATUSR);
240 if (status & IOP_PCI_STATUS_ERROR)
241 {
242 PRINTK("\t\t\tPCI error: ATUSR %#08x", status);
243 if(clear)
244 __raw_writew(status & IOP_PCI_STATUS_ERROR,
245 IOP13XX_ATUX_ATUSR);
246 err = 1;
247 }
248 status = __raw_readl(IOP13XX_ATUX_ATUISR);
249 if (status & IOP13XX_ATUX_ATUISR_ERROR)
250 {
251 PRINTK("\t\t\tPCI error interrupt: ATUISR %#08x", status);
252 if(clear)
253 __raw_writel(status & IOP13XX_ATUX_ATUISR_ERROR,
254 IOP13XX_ATUX_ATUISR);
255 err = 1;
256 }
257 return err;
258}
259
260/* Simply write the address register and read the configuration
261 * data. Note that the data dependency on %0 encourages an abort
262 * to be detected before we return.
263 */
d73d8011 264static u32 iop13xx_atux_read(unsigned long addr)
285f5fa7
DW
265{
266 u32 val;
267
268 __asm__ __volatile__(
269 "str %1, [%2]\n\t"
270 "ldr %0, [%3]\n\t"
271 "mov %0, %0\n\t"
272 : "=r" (val)
273 : "r" (addr), "r" (IOP13XX_ATUX_OCCAR), "r" (IOP13XX_ATUX_OCCDR));
274
275 return val;
276}
277
278/* The read routines must check the error status of the last configuration
279 * cycle. If there was an error, the routine returns all hex f's.
280 */
281static int
282iop13xx_atux_read_config(struct pci_bus *bus, unsigned int devfn, int where,
283 int size, u32 *value)
284{
285 unsigned long addr = iop13xx_atux_cfg_address(bus, devfn, where);
286 u32 val = iop13xx_atux_read(addr) >> ((where & 3) * 8);
287
288 if (iop13xx_atux_pci_status(1) || is_atux_occdr_error()) {
289 __raw_writel(__raw_readl(IOP13XX_XBG_BECSR) & 3,
290 IOP13XX_XBG_BECSR);
291 val = 0xffffffff;
292 }
293
294 *value = val;
295
296 return PCIBIOS_SUCCESSFUL;
297}
298
299static int
300iop13xx_atux_write_config(struct pci_bus *bus, unsigned int devfn, int where,
301 int size, u32 value)
302{
303 unsigned long addr = iop13xx_atux_cfg_address(bus, devfn, where);
304 u32 val;
305
306 if (size != 4) {
307 val = iop13xx_atux_read(addr);
308 if (!iop13xx_atux_pci_status(1) == 0)
309 return PCIBIOS_SUCCESSFUL;
310
311 where = (where & 3) * 8;
312
313 if (size == 1)
314 val &= ~(0xff << where);
315 else
316 val &= ~(0xffff << where);
317
318 __raw_writel(val | value << where, IOP13XX_ATUX_OCCDR);
319 } else {
320 __raw_writel(addr, IOP13XX_ATUX_OCCAR);
321 __raw_writel(value, IOP13XX_ATUX_OCCDR);
322 }
323
324 return PCIBIOS_SUCCESSFUL;
325}
326
327static struct pci_ops iop13xx_atux_ops = {
328 .read = iop13xx_atux_read_config,
329 .write = iop13xx_atux_write_config,
330};
331
332/* This routine checks the status of the last configuration cycle. If an error
333 * was detected it returns >0, else it returns a 0. The errors being checked
334 * are parity, master abort, target abort (master and target). These types of
335 * errors occure during a config cycle where there is no device, like during
336 * the discovery stage.
337 */
338static int iop13xx_atue_pci_status(int clear)
339{
340 unsigned int status;
341 int err = 0;
342
343 /*
344 * Check the status registers.
345 */
346
347 /* standard pci status register */
348 status = __raw_readw(IOP13XX_ATUE_ATUSR);
349 if (status & IOP_PCI_STATUS_ERROR) {
350 PRINTK("\t\t\tPCI error: ATUSR %#08x", status);
351 if(clear)
352 __raw_writew(status & IOP_PCI_STATUS_ERROR,
353 IOP13XX_ATUE_ATUSR);
354 err++;
355 }
356
357 /* check the normal status bits in the ATUISR */
358 status = __raw_readl(IOP13XX_ATUE_ATUISR);
359 if (status & IOP13XX_ATUE_ATUISR_ERROR) {
360 PRINTK("\t\t\tPCI error: ATUISR %#08x", status);
361 if (clear)
362 __raw_writew(status & IOP13XX_ATUE_ATUISR_ERROR,
363 IOP13XX_ATUE_ATUISR);
364 err++;
365
366 /* check the PCI-E status if the ATUISR reports an interface error */
367 if (status & IOP13XX_ATUE_STAT_PCI_IFACE_ERR) {
368 /* get the unmasked errors */
369 status = __raw_readl(IOP13XX_ATUE_PIE_STS) &
370 ~(__raw_readl(IOP13XX_ATUE_PIE_MSK));
371
372 if (status) {
373 PRINTK("\t\t\tPCI-E error: ATUE_PIE_STS %#08x",
374 __raw_readl(IOP13XX_ATUE_PIE_STS));
375 err++;
376 } else {
377 PRINTK("\t\t\tPCI-E error: ATUE_PIE_STS %#08x",
378 __raw_readl(IOP13XX_ATUE_PIE_STS));
379 PRINTK("\t\t\tPCI-E error: ATUE_PIE_MSK %#08x",
380 __raw_readl(IOP13XX_ATUE_PIE_MSK));
381 BUG();
382 }
383
384 if(clear)
385 __raw_writel(status, IOP13XX_ATUE_PIE_STS);
386 }
387 }
388
389 return err;
390}
391
d73d8011 392static int
285f5fa7
DW
393iop13xx_pcie_map_irq(struct pci_dev *dev, u8 idsel, u8 pin)
394{
395 WARN_ON(idsel != 0);
396
397 switch (pin) {
398 case 1: return ATUE_INTA;
399 case 2: return ATUE_INTB;
400 case 3: return ATUE_INTC;
401 case 4: return ATUE_INTD;
402 default: return -1;
403 }
404}
405
d73d8011 406static u32 iop13xx_atue_read(unsigned long addr)
285f5fa7
DW
407{
408 u32 val;
409
410 __raw_writel(addr, IOP13XX_ATUE_OCCAR);
411 val = __raw_readl(IOP13XX_ATUE_OCCDR);
412
413 rmb();
414
415 return val;
416}
417
418/* The read routines must check the error status of the last configuration
419 * cycle. If there was an error, the routine returns all hex f's.
420 */
421static int
422iop13xx_atue_read_config(struct pci_bus *bus, unsigned int devfn, int where,
423 int size, u32 *value)
424{
425 u32 val;
426 unsigned long addr = iop13xx_atue_cfg_address(bus, devfn, where);
427
428 /* Hide device numbers > 0 on the local PCI-E bus (Type 0 access) */
429 if (!PCI_SLOT(devfn) || (addr & 1)) {
430 val = iop13xx_atue_read(addr) >> ((where & 3) * 8);
431 if( iop13xx_atue_pci_status(1) || is_atue_occdr_error() ) {
432 __raw_writel(__raw_readl(IOP13XX_XBG_BECSR) & 3,
433 IOP13XX_XBG_BECSR);
434 val = 0xffffffff;
435 }
436
437 PRINTK("addr=%#0lx, val=%#010x", addr, val);
438 } else
439 val = 0xffffffff;
440
441 *value = val;
442
443 return PCIBIOS_SUCCESSFUL;
444}
445
446static int
447iop13xx_atue_write_config(struct pci_bus *bus, unsigned int devfn, int where,
448 int size, u32 value)
449{
450 unsigned long addr = iop13xx_atue_cfg_address(bus, devfn, where);
451 u32 val;
452
453 if (size != 4) {
454 val = iop13xx_atue_read(addr);
455 if (!iop13xx_atue_pci_status(1) == 0)
456 return PCIBIOS_SUCCESSFUL;
457
458 where = (where & 3) * 8;
459
460 if (size == 1)
461 val &= ~(0xff << where);
462 else
463 val &= ~(0xffff << where);
464
465 __raw_writel(val | value << where, IOP13XX_ATUE_OCCDR);
466 } else {
467 __raw_writel(addr, IOP13XX_ATUE_OCCAR);
468 __raw_writel(value, IOP13XX_ATUE_OCCDR);
469 }
470
471 return PCIBIOS_SUCCESSFUL;
472}
473
474static struct pci_ops iop13xx_atue_ops = {
475 .read = iop13xx_atue_read_config,
476 .write = iop13xx_atue_write_config,
477};
478
479/* When a PCI device does not exist during config cycles, the XScale gets a
480 * bus error instead of returning 0xffffffff. We can't rely on the ATU status
481 * bits to tell us that it was indeed a configuration cycle that caused this
482 * error especially in the case when the ATUE link is down. Instead we rely
483 * on data from the south XSI bridge to validate the abort
484 */
485int
486iop13xx_pci_abort(unsigned long addr, unsigned int fsr, struct pt_regs *regs)
487{
488 PRINTK("Data abort: address = 0x%08lx "
489 "fsr = 0x%03x PC = 0x%08lx LR = 0x%08lx",
490 addr, fsr, regs->ARM_pc, regs->ARM_lr);
491
492 PRINTK("IOP13XX_XBG_BECSR: %#10x", __raw_readl(IOP13XX_XBG_BECSR));
493 PRINTK("IOP13XX_XBG_BERAR: %#10x", __raw_readl(IOP13XX_XBG_BERAR));
494 PRINTK("IOP13XX_XBG_BERUAR: %#10x", __raw_readl(IOP13XX_XBG_BERUAR));
495
496 /* If it was an imprecise abort, then we need to correct the
497 * return address to be _after_ the instruction.
498 */
499 if (fsr & (1 << 10))
500 regs->ARM_pc += 4;
501
502 if (is_atue_occdr_error() || is_atux_occdr_error())
503 return 0;
504 else
505 return 1;
506}
507
508/* Scan an IOP13XX PCI bus. nr selects which ATU we use.
509 */
510struct pci_bus *iop13xx_scan_bus(int nr, struct pci_sys_data *sys)
511{
512 int which_atu;
513 struct pci_bus *bus = NULL;
514
515 switch (init_atu) {
516 case IOP13XX_INIT_ATU_ATUX:
517 which_atu = nr ? 0 : IOP13XX_INIT_ATU_ATUX;
518 break;
519 case IOP13XX_INIT_ATU_ATUE:
520 which_atu = nr ? 0 : IOP13XX_INIT_ATU_ATUE;
521 break;
522 case (IOP13XX_INIT_ATU_ATUX | IOP13XX_INIT_ATU_ATUE):
523 which_atu = nr ? IOP13XX_INIT_ATU_ATUE : IOP13XX_INIT_ATU_ATUX;
524 break;
525 default:
526 which_atu = 0;
527 }
528
529 if (!which_atu) {
530 BUG();
531 return NULL;
532 }
533
534 switch (which_atu) {
535 case IOP13XX_INIT_ATU_ATUX:
536 if (time_after_eq(jiffies + msecs_to_jiffies(1000),
537 atux_trhfa_timeout)) /* ensure not wrap */
538 while(time_before(jiffies, atux_trhfa_timeout))
539 udelay(100);
540
541 bus = pci_bus_atux = pci_scan_bus(sys->busnr,
542 &iop13xx_atux_ops,
543 sys);
544 break;
545 case IOP13XX_INIT_ATU_ATUE:
546 bus = pci_bus_atue = pci_scan_bus(sys->busnr,
547 &iop13xx_atue_ops,
548 sys);
549 break;
550 }
551
552 return bus;
553}
554
555/* This function is called from iop13xx_pci_init() after assigning valid
556 * values to iop13xx_atue_pmmr_offset. This is the location for common
557 * setup of ATUE for all IOP13XX implementations.
558 */
559void __init iop13xx_atue_setup(void)
560{
561 int func = iop13xx_atu_function(IOP13XX_INIT_ATU_ATUE);
562 u32 reg_val;
563
2fd02375
DW
564#ifdef CONFIG_PCI_MSI
565 /* BAR 0 (inbound msi window) */
566 __raw_writel(IOP13XX_MU_BASE_PHYS, IOP13XX_MU_MUBAR);
567 __raw_writel(~(IOP13XX_MU_WINDOW_SIZE - 1), IOP13XX_ATUE_IALR0);
568 __raw_writel(IOP13XX_MU_BASE_PHYS, IOP13XX_ATUE_IATVR0);
569 __raw_writel(IOP13XX_MU_BASE_PCI, IOP13XX_ATUE_IABAR0);
570#endif
571
285f5fa7
DW
572 /* BAR 1 (1:1 mapping with Physical RAM) */
573 /* Set limit and enable */
574 __raw_writel(~(IOP13XX_MAX_RAM_SIZE - PHYS_OFFSET - 1) & ~0x1,
575 IOP13XX_ATUE_IALR1);
576 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR1);
577
578 /* Set base at the top of the reserved address space */
579 __raw_writel(PHYS_OFFSET | PCI_BASE_ADDRESS_MEM_TYPE_64 |
580 PCI_BASE_ADDRESS_MEM_PREFETCH, IOP13XX_ATUE_IABAR1);
581
582 /* 1:1 mapping with physical ram
583 * (leave big endian byte swap disabled)
584 */
585 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR1);
586 __raw_writel(PHYS_OFFSET, IOP13XX_ATUE_IATVR1);
587
588 /* Outbound window 1 (PCIX/PCIE memory window) */
589 /* 32 bit Address Space */
590 __raw_writel(0x0, IOP13XX_ATUE_OUMWTVR1);
591 /* PA[35:32] */
592 __raw_writel(IOP13XX_ATUE_OUMBAR_ENABLE |
593 (IOP13XX_PCIE_MEM_PHYS_OFFSET >> 32),
594 IOP13XX_ATUE_OUMBAR1);
595
596 /* Setup the I/O Bar
597 * A[35-16] in 31-12
598 */
599 __raw_writel(((IOP13XX_PCIE_LOWER_IO_PA >> 0x4) & 0xfffff000),
600 IOP13XX_ATUE_OIOBAR);
601 __raw_writel(IOP13XX_PCIE_LOWER_IO_BA, IOP13XX_ATUE_OIOWTVR);
602
603 /* clear startup errors */
604 iop13xx_atue_pci_status(1);
605
606 /* OIOBAR function number
607 */
608 reg_val = __raw_readl(IOP13XX_ATUE_OIOBAR);
609 reg_val &= ~0x7;
610 reg_val |= func;
611 __raw_writel(reg_val, IOP13XX_ATUE_OIOBAR);
612
613 /* OUMBAR function numbers
614 */
615 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR0);
616 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
617 IOP13XX_ATU_OUMBAR_FUNC_NUM);
618 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
619 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR0);
620
621 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR1);
622 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
623 IOP13XX_ATU_OUMBAR_FUNC_NUM);
624 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
625 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR1);
626
627 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR2);
628 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
629 IOP13XX_ATU_OUMBAR_FUNC_NUM);
630 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
631 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR2);
632
633 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR3);
634 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
635 IOP13XX_ATU_OUMBAR_FUNC_NUM);
636 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
637 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR3);
638
639 /* Enable inbound and outbound cycles
640 */
641 reg_val = __raw_readw(IOP13XX_ATUE_ATUCMD);
642 reg_val |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
643 PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
644 __raw_writew(reg_val, IOP13XX_ATUE_ATUCMD);
645
646 reg_val = __raw_readl(IOP13XX_ATUE_ATUCR);
647 reg_val |= IOP13XX_ATUE_ATUCR_OUT_EN |
648 IOP13XX_ATUE_ATUCR_IVM;
649 __raw_writel(reg_val, IOP13XX_ATUE_ATUCR);
650}
651
652void __init iop13xx_atue_disable(void)
653{
654 u32 reg_val;
655
656 __raw_writew(0x0, IOP13XX_ATUE_ATUCMD);
657 __raw_writel(IOP13XX_ATUE_ATUCR_IVM, IOP13XX_ATUE_ATUCR);
658
659 /* wait for cycles to quiesce */
660 while (__raw_readl(IOP13XX_ATUE_PCSR) & (IOP13XX_ATUE_PCSR_OUT_Q_BUSY |
661 IOP13XX_ATUE_PCSR_IN_Q_BUSY |
662 IOP13XX_ATUE_PCSR_LLRB_BUSY))
663 cpu_relax();
664
665 /* BAR 0 ( Disabled ) */
666 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR0);
667 __raw_writel(0x0, IOP13XX_ATUE_IABAR0);
668 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR0);
669 __raw_writel(0x0, IOP13XX_ATUE_IATVR0);
670 __raw_writel(0x0, IOP13XX_ATUE_IALR0);
671 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR0);
672 reg_val &= ~IOP13XX_ATUE_OUMBAR_ENABLE;
673 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR0);
674
675 /* BAR 1 ( Disabled ) */
676 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR1);
677 __raw_writel(0x0, IOP13XX_ATUE_IABAR1);
678 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR1);
679 __raw_writel(0x0, IOP13XX_ATUE_IATVR1);
680 __raw_writel(0x0, IOP13XX_ATUE_IALR1);
681 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR1);
682 reg_val &= ~IOP13XX_ATUE_OUMBAR_ENABLE;
683 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR1);
684
685 /* BAR 2 ( Disabled ) */
686 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR2);
687 __raw_writel(0x0, IOP13XX_ATUE_IABAR2);
688 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR2);
689 __raw_writel(0x0, IOP13XX_ATUE_IATVR2);
690 __raw_writel(0x0, IOP13XX_ATUE_IALR2);
691 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR2);
692 reg_val &= ~IOP13XX_ATUE_OUMBAR_ENABLE;
693 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR2);
694
695 /* BAR 3 ( Disabled ) */
696 reg_val = __raw_readl(IOP13XX_ATUE_OUMBAR3);
697 reg_val &= ~IOP13XX_ATUE_OUMBAR_ENABLE;
698 __raw_writel(reg_val, IOP13XX_ATUE_OUMBAR3);
699
700 /* Setup the I/O Bar
701 * A[35-16] in 31-12
702 */
703 __raw_writel((IOP13XX_PCIE_LOWER_IO_PA >> 0x4) & 0xfffff000,
704 IOP13XX_ATUE_OIOBAR);
705 __raw_writel(IOP13XX_PCIE_LOWER_IO_BA, IOP13XX_ATUE_OIOWTVR);
706}
707
708/* This function is called from iop13xx_pci_init() after assigning valid
709 * values to iop13xx_atux_pmmr_offset. This is the location for common
710 * setup of ATUX for all IOP13XX implementations.
711 */
712void __init iop13xx_atux_setup(void)
713{
714 u32 reg_val;
715 int func = iop13xx_atu_function(IOP13XX_INIT_ATU_ATUX);
716
717 /* Take PCI-X bus out of reset if bootloader hasn't already.
718 * According to spec, we should wait for 2^25 PCI clocks to meet
719 * the PCI timing parameter Trhfa (RST# high to first access).
720 * This is rarely necessary and often ignored.
721 */
722 reg_val = __raw_readl(IOP13XX_ATUX_PCSR);
723 if (reg_val & IOP13XX_ATUX_PCSR_P_RSTOUT) {
724 int msec = (reg_val >> IOP13XX_ATUX_PCSR_FREQ_OFFSET) & 0x7;
725 msec = 1000 / (8-msec); /* bits 100=133MHz, 111=>33MHz */
726 __raw_writel(reg_val & ~IOP13XX_ATUX_PCSR_P_RSTOUT,
727 IOP13XX_ATUX_PCSR);
728 atux_trhfa_timeout = jiffies + msecs_to_jiffies(msec);
729 }
730 else
731 atux_trhfa_timeout = jiffies;
732
2fd02375
DW
733#ifdef CONFIG_PCI_MSI
734 /* BAR 0 (inbound msi window) */
735 __raw_writel(IOP13XX_MU_BASE_PHYS, IOP13XX_MU_MUBAR);
736 __raw_writel(~(IOP13XX_MU_WINDOW_SIZE - 1), IOP13XX_ATUX_IALR0);
737 __raw_writel(IOP13XX_MU_BASE_PHYS, IOP13XX_ATUX_IATVR0);
738 __raw_writel(IOP13XX_MU_BASE_PCI, IOP13XX_ATUX_IABAR0);
739#endif
740
285f5fa7
DW
741 /* BAR 1 (1:1 mapping with Physical RAM) */
742 /* Set limit and enable */
743 __raw_writel(~(IOP13XX_MAX_RAM_SIZE - PHYS_OFFSET - 1) & ~0x1,
744 IOP13XX_ATUX_IALR1);
745 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR1);
746
747 /* Set base at the top of the reserved address space */
748 __raw_writel(PHYS_OFFSET | PCI_BASE_ADDRESS_MEM_TYPE_64 |
749 PCI_BASE_ADDRESS_MEM_PREFETCH, IOP13XX_ATUX_IABAR1);
750
751 /* 1:1 mapping with physical ram
752 * (leave big endian byte swap disabled)
753 */
754 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR1);
755 __raw_writel(PHYS_OFFSET, IOP13XX_ATUX_IATVR1);
756
757 /* Outbound window 1 (PCIX/PCIE memory window) */
758 /* 32 bit Address Space */
759 __raw_writel(0x0, IOP13XX_ATUX_OUMWTVR1);
760 /* PA[35:32] */
761 __raw_writel(IOP13XX_ATUX_OUMBAR_ENABLE |
762 IOP13XX_PCIX_MEM_PHYS_OFFSET >> 32,
763 IOP13XX_ATUX_OUMBAR1);
764
765 /* Setup the I/O Bar
766 * A[35-16] in 31-12
767 */
768 __raw_writel((IOP13XX_PCIX_LOWER_IO_PA >> 0x4) & 0xfffff000,
769 IOP13XX_ATUX_OIOBAR);
770 __raw_writel(IOP13XX_PCIX_LOWER_IO_BA, IOP13XX_ATUX_OIOWTVR);
771
772 /* clear startup errors */
773 iop13xx_atux_pci_status(1);
774
775 /* OIOBAR function number
776 */
777 reg_val = __raw_readl(IOP13XX_ATUX_OIOBAR);
778 reg_val &= ~0x7;
779 reg_val |= func;
780 __raw_writel(reg_val, IOP13XX_ATUX_OIOBAR);
781
782 /* OUMBAR function numbers
783 */
784 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR0);
785 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
786 IOP13XX_ATU_OUMBAR_FUNC_NUM);
787 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
788 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR0);
789
790 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR1);
791 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
792 IOP13XX_ATU_OUMBAR_FUNC_NUM);
793 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
794 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR1);
795
796 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR2);
797 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
798 IOP13XX_ATU_OUMBAR_FUNC_NUM);
799 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
800 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR2);
801
802 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR3);
803 reg_val &= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK <<
804 IOP13XX_ATU_OUMBAR_FUNC_NUM);
805 reg_val |= func << IOP13XX_ATU_OUMBAR_FUNC_NUM;
806 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR3);
807
808 /* Enable inbound and outbound cycles
809 */
810 reg_val = __raw_readw(IOP13XX_ATUX_ATUCMD);
811 reg_val |= PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER |
812 PCI_COMMAND_PARITY | PCI_COMMAND_SERR;
813 __raw_writew(reg_val, IOP13XX_ATUX_ATUCMD);
814
815 reg_val = __raw_readl(IOP13XX_ATUX_ATUCR);
816 reg_val |= IOP13XX_ATUX_ATUCR_OUT_EN;
817 __raw_writel(reg_val, IOP13XX_ATUX_ATUCR);
818}
819
820void __init iop13xx_atux_disable(void)
821{
822 u32 reg_val;
823
824 __raw_writew(0x0, IOP13XX_ATUX_ATUCMD);
825 __raw_writel(0x0, IOP13XX_ATUX_ATUCR);
826
827 /* wait for cycles to quiesce */
828 while (__raw_readl(IOP13XX_ATUX_PCSR) & (IOP13XX_ATUX_PCSR_OUT_Q_BUSY |
829 IOP13XX_ATUX_PCSR_IN_Q_BUSY))
830 cpu_relax();
831
832 /* BAR 0 ( Disabled ) */
833 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR0);
834 __raw_writel(0x0, IOP13XX_ATUX_IABAR0);
835 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR0);
836 __raw_writel(0x0, IOP13XX_ATUX_IATVR0);
837 __raw_writel(0x0, IOP13XX_ATUX_IALR0);
838 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR0);
839 reg_val &= ~IOP13XX_ATUX_OUMBAR_ENABLE;
840 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR0);
841
842 /* BAR 1 ( Disabled ) */
843 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR1);
844 __raw_writel(0x0, IOP13XX_ATUX_IABAR1);
845 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR1);
846 __raw_writel(0x0, IOP13XX_ATUX_IATVR1);
847 __raw_writel(0x0, IOP13XX_ATUX_IALR1);
848 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR1);
849 reg_val &= ~IOP13XX_ATUX_OUMBAR_ENABLE;
850 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR1);
851
852 /* BAR 2 ( Disabled ) */
853 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR2);
854 __raw_writel(0x0, IOP13XX_ATUX_IABAR2);
855 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR2);
856 __raw_writel(0x0, IOP13XX_ATUX_IATVR2);
857 __raw_writel(0x0, IOP13XX_ATUX_IALR2);
858 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR2);
859 reg_val &= ~IOP13XX_ATUX_OUMBAR_ENABLE;
860 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR2);
861
862 /* BAR 3 ( Disabled ) */
863 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR3);
864 __raw_writel(0x0, IOP13XX_ATUX_IABAR3);
865 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR3);
866 __raw_writel(0x0, IOP13XX_ATUX_IATVR3);
867 __raw_writel(0x0, IOP13XX_ATUX_IALR3);
868 reg_val = __raw_readl(IOP13XX_ATUX_OUMBAR3);
869 reg_val &= ~IOP13XX_ATUX_OUMBAR_ENABLE;
870 __raw_writel(reg_val, IOP13XX_ATUX_OUMBAR3);
871
872 /* Setup the I/O Bar
873 * A[35-16] in 31-12
874 */
875 __raw_writel((IOP13XX_PCIX_LOWER_IO_PA >> 0x4) & 0xfffff000,
876 IOP13XX_ATUX_OIOBAR);
877 __raw_writel(IOP13XX_PCIX_LOWER_IO_BA, IOP13XX_ATUX_OIOWTVR);
878}
879
880void __init iop13xx_set_atu_mmr_bases(void)
881{
882 /* Based on ESSR0, determine the ATU X/E offsets */
883 switch(__raw_readl(IOP13XX_ESSR0) &
884 (IOP13XX_CONTROLLER_ONLY | IOP13XX_INTERFACE_SEL_PCIX)) {
885 /* both asserted */
886 case 0:
887 iop13xx_atux_pmmr_offset = IOP13XX_ATU1_PMMR_OFFSET;
888 iop13xx_atue_pmmr_offset = IOP13XX_ATU2_PMMR_OFFSET;
889 break;
890 /* IOP13XX_CONTROLLER_ONLY = deasserted
891 * IOP13XX_INTERFACE_SEL_PCIX = asserted
892 */
893 case IOP13XX_CONTROLLER_ONLY:
894 iop13xx_atux_pmmr_offset = IOP13XX_ATU0_PMMR_OFFSET;
895 iop13xx_atue_pmmr_offset = IOP13XX_ATU2_PMMR_OFFSET;
896 break;
897 /* IOP13XX_CONTROLLER_ONLY = asserted
898 * IOP13XX_INTERFACE_SEL_PCIX = deasserted
899 */
900 case IOP13XX_INTERFACE_SEL_PCIX:
901 iop13xx_atux_pmmr_offset = IOP13XX_ATU1_PMMR_OFFSET;
902 iop13xx_atue_pmmr_offset = IOP13XX_ATU2_PMMR_OFFSET;
903 break;
904 /* both deasserted */
905 case IOP13XX_CONTROLLER_ONLY | IOP13XX_INTERFACE_SEL_PCIX:
906 iop13xx_atux_pmmr_offset = IOP13XX_ATU2_PMMR_OFFSET;
907 iop13xx_atue_pmmr_offset = IOP13XX_ATU0_PMMR_OFFSET;
908 break;
909 default:
910 BUG();
911 }
912}
913
914void __init iop13xx_atu_select(struct hw_pci *plat_pci)
915{
916 int i;
917
918 /* set system defaults
919 * note: if "iop13xx_init_atu=" is specified this autodetect
920 * sequence will be bypassed
921 */
922 if (init_atu == IOP13XX_INIT_ATU_DEFAULT) {
923 /* check for single/dual interface */
924 if (__raw_readl(IOP13XX_ESSR0) & IOP13XX_INTERFACE_SEL_PCIX) {
925 /* ATUE must be present check the device id
926 * to see if ATUX is present.
927 */
928 init_atu |= IOP13XX_INIT_ATU_ATUE;
929 switch (__raw_readw(IOP13XX_ATUE_DID) & 0xf0) {
930 case 0x70:
931 case 0x80:
932 case 0xc0:
933 init_atu |= IOP13XX_INIT_ATU_ATUX;
934 break;
935 }
936 } else {
937 /* ATUX must be present check the device id
938 * to see if ATUE is present.
939 */
940 init_atu |= IOP13XX_INIT_ATU_ATUX;
941 switch (__raw_readw(IOP13XX_ATUX_DID) & 0xf0) {
942 case 0x70:
943 case 0x80:
944 case 0xc0:
945 init_atu |= IOP13XX_INIT_ATU_ATUE;
946 break;
947 }
948 }
949
950 /* check central resource and root complex capability */
951 if (init_atu & IOP13XX_INIT_ATU_ATUX)
952 if (!(__raw_readl(IOP13XX_ATUX_PCSR) &
953 IOP13XX_ATUX_PCSR_CENTRAL_RES))
954 init_atu &= ~IOP13XX_INIT_ATU_ATUX;
955
956 if (init_atu & IOP13XX_INIT_ATU_ATUE)
957 if (__raw_readl(IOP13XX_ATUE_PCSR) &
958 IOP13XX_ATUE_PCSR_END_POINT)
959 init_atu &= ~IOP13XX_INIT_ATU_ATUE;
960 }
961
962 for (i = 0; i < 2; i++) {
963 if((init_atu & (1 << i)) == (1 << i))
964 plat_pci->nr_controllers++;
965 }
966}
967
968void __init iop13xx_pci_init(void)
969{
970 /* clear pre-existing south bridge errors */
971 __raw_writel(__raw_readl(IOP13XX_XBG_BECSR) & 3, IOP13XX_XBG_BECSR);
972
973 /* Setup the Min Address for PCI memory... */
974 iop13xx_pcibios_min_mem = IOP13XX_PCIX_LOWER_MEM_BA;
975
976 /* if Linux is given control of an ATU
977 * clear out its prior configuration,
978 * otherwise do not touch the registers
979 */
980 if (init_atu & IOP13XX_INIT_ATU_ATUE) {
981 iop13xx_atue_disable();
982 iop13xx_atue_setup();
983 }
984
985 if (init_atu & IOP13XX_INIT_ATU_ATUX) {
986 iop13xx_atux_disable();
987 iop13xx_atux_setup();
988 }
989
990 hook_fault_code(16+6, iop13xx_pci_abort, SIGBUS,
991 "imprecise external abort");
992}
993
6cbdc8c5 994/* initialize the pci memory space. handle any combination of
285f5fa7
DW
995 * atue and atux enabled/disabled
996 */
997int iop13xx_pci_setup(int nr, struct pci_sys_data *sys)
998{
999 struct resource *res;
1000 int which_atu;
1001 u32 pcixsr, pcsr;
1002
1003 if (nr > 1)
1004 return 0;
1005
dd00cc48 1006 res = kcalloc(2, sizeof(struct resource), GFP_KERNEL);
285f5fa7
DW
1007 if (!res)
1008 panic("PCI: unable to alloc resources");
1009
285f5fa7
DW
1010
1011 /* 'nr' assumptions:
1012 * ATUX is always 0
1013 * ATUE is 1 when ATUX is also enabled
1014 * ATUE is 0 when ATUX is disabled
1015 */
1016 switch(init_atu) {
1017 case IOP13XX_INIT_ATU_ATUX:
1018 which_atu = nr ? 0 : IOP13XX_INIT_ATU_ATUX;
1019 break;
1020 case IOP13XX_INIT_ATU_ATUE:
1021 which_atu = nr ? 0 : IOP13XX_INIT_ATU_ATUE;
1022 break;
1023 case (IOP13XX_INIT_ATU_ATUX | IOP13XX_INIT_ATU_ATUE):
1024 which_atu = nr ? IOP13XX_INIT_ATU_ATUE : IOP13XX_INIT_ATU_ATUX;
1025 break;
1026 default:
1027 which_atu = 0;
1028 }
1029
b23c7a42
AC
1030 if (!which_atu) {
1031 kfree(res);
285f5fa7 1032 return 0;
b23c7a42 1033 }
285f5fa7
DW
1034
1035 switch(which_atu) {
1036 case IOP13XX_INIT_ATU_ATUX:
1037 pcixsr = __raw_readl(IOP13XX_ATUX_PCIXSR);
1038 pcixsr &= ~0xffff;
1039 pcixsr |= sys->busnr << IOP13XX_ATUX_PCIXSR_BUS_NUM |
1040 0 << IOP13XX_ATUX_PCIXSR_DEV_NUM |
1041 iop13xx_atu_function(IOP13XX_INIT_ATU_ATUX)
1042 << IOP13XX_ATUX_PCIXSR_FUNC_NUM;
1043 __raw_writel(pcixsr, IOP13XX_ATUX_PCIXSR);
1044
7dcad376 1045 res[0].start = IOP13XX_PCIX_LOWER_IO_PA + IOP13XX_PCIX_IO_BUS_OFFSET;
285f5fa7
DW
1046 res[0].end = IOP13XX_PCIX_UPPER_IO_PA;
1047 res[0].name = "IQ81340 ATUX PCI I/O Space";
1048 res[0].flags = IORESOURCE_IO;
1049
1050 res[1].start = IOP13XX_PCIX_LOWER_MEM_RA;
1051 res[1].end = IOP13XX_PCIX_UPPER_MEM_RA;
1052 res[1].name = "IQ81340 ATUX PCI Memory Space";
1053 res[1].flags = IORESOURCE_MEM;
1054 sys->mem_offset = IOP13XX_PCIX_MEM_OFFSET;
7dcad376 1055 sys->io_offset = IOP13XX_PCIX_LOWER_IO_PA;
285f5fa7
DW
1056 break;
1057 case IOP13XX_INIT_ATU_ATUE:
1058 /* Note: the function number field in the PCSR is ro */
1059 pcsr = __raw_readl(IOP13XX_ATUE_PCSR);
1060 pcsr &= ~(0xfff8 << 16);
1061 pcsr |= sys->busnr << IOP13XX_ATUE_PCSR_BUS_NUM |
1062 0 << IOP13XX_ATUE_PCSR_DEV_NUM;
1063
1064 __raw_writel(pcsr, IOP13XX_ATUE_PCSR);
1065
7dcad376 1066 res[0].start = IOP13XX_PCIE_LOWER_IO_PA + IOP13XX_PCIE_IO_BUS_OFFSET;
285f5fa7
DW
1067 res[0].end = IOP13XX_PCIE_UPPER_IO_PA;
1068 res[0].name = "IQ81340 ATUE PCI I/O Space";
1069 res[0].flags = IORESOURCE_IO;
1070
1071 res[1].start = IOP13XX_PCIE_LOWER_MEM_RA;
1072 res[1].end = IOP13XX_PCIE_UPPER_MEM_RA;
1073 res[1].name = "IQ81340 ATUE PCI Memory Space";
1074 res[1].flags = IORESOURCE_MEM;
1075 sys->mem_offset = IOP13XX_PCIE_MEM_OFFSET;
7dcad376 1076 sys->io_offset = IOP13XX_PCIE_LOWER_IO_PA;
285f5fa7
DW
1077 sys->map_irq = iop13xx_pcie_map_irq;
1078 break;
1079 default:
b23c7a42 1080 kfree(res);
285f5fa7
DW
1081 return 0;
1082 }
1083
1084 request_resource(&ioport_resource, &res[0]);
1085 request_resource(&iomem_resource, &res[1]);
1086
1087 sys->resource[0] = &res[0];
1088 sys->resource[1] = &res[1];
1089 sys->resource[2] = NULL;
1090
1091 return 1;
1092}
1093
1094u16 iop13xx_dev_id(void)
1095{
1096 if (__raw_readl(IOP13XX_ESSR0) & IOP13XX_INTERFACE_SEL_PCIX)
1097 return __raw_readw(IOP13XX_ATUE_DID);
1098 else
1099 return __raw_readw(IOP13XX_ATUX_DID);
1100}
1101
1102static int __init iop13xx_init_atu_setup(char *str)
1103{
1104 init_atu = IOP13XX_INIT_ATU_NONE;
1105 if (str) {
1106 while (*str != '\0') {
1107 switch (*str) {
1108 case 'x':
1109 case 'X':
1110 init_atu |= IOP13XX_INIT_ATU_ATUX;
1111 init_atu &= ~IOP13XX_INIT_ATU_NONE;
1112 break;
1113 case 'e':
1114 case 'E':
1115 init_atu |= IOP13XX_INIT_ATU_ATUE;
1116 init_atu &= ~IOP13XX_INIT_ATU_NONE;
1117 break;
1118 case ',':
1119 case '=':
1120 break;
1121 default:
1122 PRINTK("\"iop13xx_init_atu\" malformed at "
1123 "character: \'%c\'", *str);
1124 *(str + 1) = '\0';
1125 init_atu = IOP13XX_INIT_ATU_DEFAULT;
1126 }
1127 str++;
1128 }
1129 }
1130 return 1;
1131}
1132
1133__setup("iop13xx_init_atu", iop13xx_init_atu_setup);