3 * Copyright (c) 2005-2006, Intel Corporation.
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.
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
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.
20 #include <linux/pci.h>
21 #include <linux/slab.h>
22 #include <linux/delay.h>
23 #include <linux/jiffies.h>
25 #include <mach/hardware.h>
26 #include <asm/sizes.h>
27 #include <asm/signal.h>
28 #include <asm/mach/pci.h>
31 #define IOP13XX_PCI_DEBUG 0
32 #define PRINTK(x...) ((void)(IOP13XX_PCI_DEBUG && printk(x)))
34 u32 iop13xx_atux_pmmr_offset
; /* This offset can change based on strapping */
35 u32 iop13xx_atue_pmmr_offset
; /* This offset can change based on strapping */
36 static struct pci_bus
*pci_bus_atux
= 0;
37 static struct pci_bus
*pci_bus_atue
= 0;
38 u32 iop13xx_atue_mem_base
;
39 u32 iop13xx_atux_mem_base
;
40 size_t iop13xx_atue_mem_size
;
41 size_t iop13xx_atux_mem_size
;
43 EXPORT_SYMBOL(iop13xx_atue_mem_base
);
44 EXPORT_SYMBOL(iop13xx_atux_mem_base
);
45 EXPORT_SYMBOL(iop13xx_atue_mem_size
);
46 EXPORT_SYMBOL(iop13xx_atux_mem_size
);
48 int init_atu
= 0; /* Flag to select which ATU(s) to initialize / disable */
49 static unsigned long atux_trhfa_timeout
= 0; /* Trhfa = RST# high to first
52 /* Scan the initialized busses and ioremap the requested memory range
54 void iop13xx_map_pci_memory(void)
59 resource_size_t end
= 0;
61 for (atu
= 0; atu
< 2; atu
++) {
62 bus
= atu
? pci_bus_atue
: pci_bus_atux
;
64 list_for_each_entry(dev
, &bus
->devices
, bus_list
) {
69 max
= DEVICE_COUNT_RESOURCE
;
71 for (i
= 0; i
< max
; i
++) {
72 struct resource
*res
= &dev
->resource
[i
];
73 if (res
->flags
& IORESOURCE_MEM
)
74 end
= max(res
->end
, end
);
80 iop13xx_atux_mem_size
=
81 (end
- IOP13XX_PCIX_LOWER_MEM_RA
) + 1;
83 /* 16MB align the request */
84 if (iop13xx_atux_mem_size
& (SZ_16M
- 1)) {
85 iop13xx_atux_mem_size
&= ~(SZ_16M
- 1);
86 iop13xx_atux_mem_size
+= SZ_16M
;
90 iop13xx_atux_mem_base
=
91 (u32
) __arm_ioremap_pfn(
92 __phys_to_pfn(IOP13XX_PCIX_LOWER_MEM_PA
)
93 , 0, iop13xx_atux_mem_size
, MT_DEVICE
);
94 if (!iop13xx_atux_mem_base
) {
95 printk("%s: atux allocation "
96 "failed\n", __func__
);
100 iop13xx_atux_mem_size
= 0;
101 PRINTK("%s: atu: %d bus_size: %d mem_base: %x\n",
102 __func__
, atu
, iop13xx_atux_mem_size
,
103 iop13xx_atux_mem_base
);
106 iop13xx_atue_mem_size
=
107 (end
- IOP13XX_PCIE_LOWER_MEM_RA
) + 1;
109 /* 16MB align the request */
110 if (iop13xx_atue_mem_size
& (SZ_16M
- 1)) {
111 iop13xx_atue_mem_size
&= ~(SZ_16M
- 1);
112 iop13xx_atue_mem_size
+= SZ_16M
;
116 iop13xx_atue_mem_base
=
117 (u32
) __arm_ioremap_pfn(
118 __phys_to_pfn(IOP13XX_PCIE_LOWER_MEM_PA
)
119 , 0, iop13xx_atue_mem_size
, MT_DEVICE
);
120 if (!iop13xx_atue_mem_base
) {
121 printk("%s: atue allocation "
122 "failed\n", __func__
);
126 iop13xx_atue_mem_size
= 0;
127 PRINTK("%s: atu: %d bus_size: %d mem_base: %x\n",
128 __func__
, atu
, iop13xx_atue_mem_size
,
129 iop13xx_atue_mem_base
);
133 printk("%s: Initialized (%uM @ resource/virtual: %08lx/%08x)\n",
134 atu
? "ATUE" : "ATUX",
135 (atu
? iop13xx_atue_mem_size
: iop13xx_atux_mem_size
) /
137 atu
? IOP13XX_PCIE_LOWER_MEM_RA
:
138 IOP13XX_PCIX_LOWER_MEM_RA
,
139 atu
? iop13xx_atue_mem_base
:
140 iop13xx_atux_mem_base
);
147 static int iop13xx_atu_function(int atu
)
150 /* the function number depends on the value of the
151 * IOP13XX_INTERFACE_SEL_PCIX reset strap
152 * see C-Spec section 3.17
155 case IOP13XX_INIT_ATU_ATUX
:
156 if (__raw_readl(IOP13XX_ESSR0
) & IOP13XX_INTERFACE_SEL_PCIX
)
161 case IOP13XX_INIT_ATU_ATUE
:
162 if (__raw_readl(IOP13XX_ESSR0
) & IOP13XX_INTERFACE_SEL_PCIX
)
174 /* iop13xx_atux_cfg_address - format a configuration address for atux
175 * @bus: Target bus to access
176 * @devfn: Combined device number and function number
177 * @where: Desired register's address offset
179 * Convert the parameters to a configuration address formatted
180 * according the PCI-X 2.0 specification
182 static u32
iop13xx_atux_cfg_address(struct pci_bus
*bus
, int devfn
, int where
)
184 struct pci_sys_data
*sys
= bus
->sysdata
;
187 if (sys
->busnr
== bus
->number
)
188 addr
= 1 << (PCI_SLOT(devfn
) + 16) | (PCI_SLOT(devfn
) << 11);
190 addr
= bus
->number
<< 16 | PCI_SLOT(devfn
) << 11 | 1;
192 addr
|= PCI_FUNC(devfn
) << 8 | ((where
& 0xff) & ~3);
193 addr
|= ((where
& 0xf00) >> 8) << 24; /* upper register number */
198 /* iop13xx_atue_cfg_address - format a configuration address for atue
199 * @bus: Target bus to access
200 * @devfn: Combined device number and function number
201 * @where: Desired register's address offset
203 * Convert the parameters to an address usable by the ATUE_OCCAR
205 static u32
iop13xx_atue_cfg_address(struct pci_bus
*bus
, int devfn
, int where
)
207 struct pci_sys_data
*sys
= bus
->sysdata
;
210 PRINTK("iop13xx_atue_cfg_address: bus: %d dev: %d func: %d",
211 bus
->number
, PCI_SLOT(devfn
), PCI_FUNC(devfn
));
212 addr
= ((u32
) bus
->number
) << IOP13XX_ATUE_OCCAR_BUS_NUM
|
213 ((u32
) PCI_SLOT(devfn
)) << IOP13XX_ATUE_OCCAR_DEV_NUM
|
214 ((u32
) PCI_FUNC(devfn
)) << IOP13XX_ATUE_OCCAR_FUNC_NUM
|
217 if (sys
->busnr
!= bus
->number
)
218 addr
|= 1; /* type 1 access */
223 /* This routine checks the status of the last configuration cycle. If an error
224 * was detected it returns >0, else it returns a 0. The errors being checked
225 * are parity, master abort, target abort (master and target). These types of
226 * errors occur during a config cycle where there is no device, like during
227 * the discovery stage.
229 static int iop13xx_atux_pci_status(int clear
)
235 * Check the status registers.
237 status
= __raw_readw(IOP13XX_ATUX_ATUSR
);
238 if (status
& IOP_PCI_STATUS_ERROR
)
240 PRINTK("\t\t\tPCI error: ATUSR %#08x", status
);
242 __raw_writew(status
& IOP_PCI_STATUS_ERROR
,
246 status
= __raw_readl(IOP13XX_ATUX_ATUISR
);
247 if (status
& IOP13XX_ATUX_ATUISR_ERROR
)
249 PRINTK("\t\t\tPCI error interrupt: ATUISR %#08x", status
);
251 __raw_writel(status
& IOP13XX_ATUX_ATUISR_ERROR
,
252 IOP13XX_ATUX_ATUISR
);
258 /* Simply write the address register and read the configuration
259 * data. Note that the data dependency on %0 encourages an abort
260 * to be detected before we return.
262 static u32
iop13xx_atux_read(unsigned long addr
)
266 __asm__
__volatile__(
271 : "r" (addr
), "r" (IOP13XX_ATUX_OCCAR
), "r" (IOP13XX_ATUX_OCCDR
));
276 /* The read routines must check the error status of the last configuration
277 * cycle. If there was an error, the routine returns all hex f's.
280 iop13xx_atux_read_config(struct pci_bus
*bus
, unsigned int devfn
, int where
,
281 int size
, u32
*value
)
283 unsigned long addr
= iop13xx_atux_cfg_address(bus
, devfn
, where
);
284 u32 val
= iop13xx_atux_read(addr
) >> ((where
& 3) * 8);
286 if (iop13xx_atux_pci_status(1) || is_atux_occdr_error()) {
287 __raw_writel(__raw_readl(IOP13XX_XBG_BECSR
) & 3,
294 return PCIBIOS_SUCCESSFUL
;
298 iop13xx_atux_write_config(struct pci_bus
*bus
, unsigned int devfn
, int where
,
301 unsigned long addr
= iop13xx_atux_cfg_address(bus
, devfn
, where
);
305 val
= iop13xx_atux_read(addr
);
306 if (!iop13xx_atux_pci_status(1) == 0)
307 return PCIBIOS_SUCCESSFUL
;
309 where
= (where
& 3) * 8;
312 val
&= ~(0xff << where
);
314 val
&= ~(0xffff << where
);
316 __raw_writel(val
| value
<< where
, IOP13XX_ATUX_OCCDR
);
318 __raw_writel(addr
, IOP13XX_ATUX_OCCAR
);
319 __raw_writel(value
, IOP13XX_ATUX_OCCDR
);
322 return PCIBIOS_SUCCESSFUL
;
325 static struct pci_ops iop13xx_atux_ops
= {
326 .read
= iop13xx_atux_read_config
,
327 .write
= iop13xx_atux_write_config
,
330 /* This routine checks the status of the last configuration cycle. If an error
331 * was detected it returns >0, else it returns a 0. The errors being checked
332 * are parity, master abort, target abort (master and target). These types of
333 * errors occur during a config cycle where there is no device, like during
334 * the discovery stage.
336 static int iop13xx_atue_pci_status(int clear
)
342 * Check the status registers.
345 /* standard pci status register */
346 status
= __raw_readw(IOP13XX_ATUE_ATUSR
);
347 if (status
& IOP_PCI_STATUS_ERROR
) {
348 PRINTK("\t\t\tPCI error: ATUSR %#08x", status
);
350 __raw_writew(status
& IOP_PCI_STATUS_ERROR
,
355 /* check the normal status bits in the ATUISR */
356 status
= __raw_readl(IOP13XX_ATUE_ATUISR
);
357 if (status
& IOP13XX_ATUE_ATUISR_ERROR
) {
358 PRINTK("\t\t\tPCI error: ATUISR %#08x", status
);
360 __raw_writew(status
& IOP13XX_ATUE_ATUISR_ERROR
,
361 IOP13XX_ATUE_ATUISR
);
364 /* check the PCI-E status if the ATUISR reports an interface error */
365 if (status
& IOP13XX_ATUE_STAT_PCI_IFACE_ERR
) {
366 /* get the unmasked errors */
367 status
= __raw_readl(IOP13XX_ATUE_PIE_STS
) &
368 ~(__raw_readl(IOP13XX_ATUE_PIE_MSK
));
371 PRINTK("\t\t\tPCI-E error: ATUE_PIE_STS %#08x",
372 __raw_readl(IOP13XX_ATUE_PIE_STS
));
375 PRINTK("\t\t\tPCI-E error: ATUE_PIE_STS %#08x",
376 __raw_readl(IOP13XX_ATUE_PIE_STS
));
377 PRINTK("\t\t\tPCI-E error: ATUE_PIE_MSK %#08x",
378 __raw_readl(IOP13XX_ATUE_PIE_MSK
));
383 __raw_writel(status
, IOP13XX_ATUE_PIE_STS
);
391 iop13xx_pcie_map_irq(const struct pci_dev
*dev
, u8 idsel
, u8 pin
)
396 case 1: return ATUE_INTA
;
397 case 2: return ATUE_INTB
;
398 case 3: return ATUE_INTC
;
399 case 4: return ATUE_INTD
;
404 static u32
iop13xx_atue_read(unsigned long addr
)
408 __raw_writel(addr
, IOP13XX_ATUE_OCCAR
);
409 val
= __raw_readl(IOP13XX_ATUE_OCCDR
);
416 /* The read routines must check the error status of the last configuration
417 * cycle. If there was an error, the routine returns all hex f's.
420 iop13xx_atue_read_config(struct pci_bus
*bus
, unsigned int devfn
, int where
,
421 int size
, u32
*value
)
424 unsigned long addr
= iop13xx_atue_cfg_address(bus
, devfn
, where
);
426 /* Hide device numbers > 0 on the local PCI-E bus (Type 0 access) */
427 if (!PCI_SLOT(devfn
) || (addr
& 1)) {
428 val
= iop13xx_atue_read(addr
) >> ((where
& 3) * 8);
429 if( iop13xx_atue_pci_status(1) || is_atue_occdr_error() ) {
430 __raw_writel(__raw_readl(IOP13XX_XBG_BECSR
) & 3,
435 PRINTK("addr=%#0lx, val=%#010x", addr
, val
);
441 return PCIBIOS_SUCCESSFUL
;
445 iop13xx_atue_write_config(struct pci_bus
*bus
, unsigned int devfn
, int where
,
448 unsigned long addr
= iop13xx_atue_cfg_address(bus
, devfn
, where
);
452 val
= iop13xx_atue_read(addr
);
453 if (!iop13xx_atue_pci_status(1) == 0)
454 return PCIBIOS_SUCCESSFUL
;
456 where
= (where
& 3) * 8;
459 val
&= ~(0xff << where
);
461 val
&= ~(0xffff << where
);
463 __raw_writel(val
| value
<< where
, IOP13XX_ATUE_OCCDR
);
465 __raw_writel(addr
, IOP13XX_ATUE_OCCAR
);
466 __raw_writel(value
, IOP13XX_ATUE_OCCDR
);
469 return PCIBIOS_SUCCESSFUL
;
472 static struct pci_ops iop13xx_atue_ops
= {
473 .read
= iop13xx_atue_read_config
,
474 .write
= iop13xx_atue_write_config
,
477 /* When a PCI device does not exist during config cycles, the XScale gets a
478 * bus error instead of returning 0xffffffff. We can't rely on the ATU status
479 * bits to tell us that it was indeed a configuration cycle that caused this
480 * error especially in the case when the ATUE link is down. Instead we rely
481 * on data from the south XSI bridge to validate the abort
484 iop13xx_pci_abort(unsigned long addr
, unsigned int fsr
, struct pt_regs
*regs
)
486 PRINTK("Data abort: address = 0x%08lx "
487 "fsr = 0x%03x PC = 0x%08lx LR = 0x%08lx",
488 addr
, fsr
, regs
->ARM_pc
, regs
->ARM_lr
);
490 PRINTK("IOP13XX_XBG_BECSR: %#10x", __raw_readl(IOP13XX_XBG_BECSR
));
491 PRINTK("IOP13XX_XBG_BERAR: %#10x", __raw_readl(IOP13XX_XBG_BERAR
));
492 PRINTK("IOP13XX_XBG_BERUAR: %#10x", __raw_readl(IOP13XX_XBG_BERUAR
));
494 /* If it was an imprecise abort, then we need to correct the
495 * return address to be _after_ the instruction.
500 if (is_atue_occdr_error() || is_atux_occdr_error())
506 /* Scan an IOP13XX PCI bus. nr selects which ATU we use.
508 struct pci_bus
*iop13xx_scan_bus(int nr
, struct pci_sys_data
*sys
)
511 struct pci_bus
*bus
= NULL
;
514 case IOP13XX_INIT_ATU_ATUX
:
515 which_atu
= nr
? 0 : IOP13XX_INIT_ATU_ATUX
;
517 case IOP13XX_INIT_ATU_ATUE
:
518 which_atu
= nr
? 0 : IOP13XX_INIT_ATU_ATUE
;
520 case (IOP13XX_INIT_ATU_ATUX
| IOP13XX_INIT_ATU_ATUE
):
521 which_atu
= nr
? IOP13XX_INIT_ATU_ATUE
: IOP13XX_INIT_ATU_ATUX
;
533 case IOP13XX_INIT_ATU_ATUX
:
534 if (time_after_eq(jiffies
+ msecs_to_jiffies(1000),
535 atux_trhfa_timeout
)) /* ensure not wrap */
536 while(time_before(jiffies
, atux_trhfa_timeout
))
539 bus
= pci_bus_atux
= pci_scan_bus(sys
->busnr
,
543 case IOP13XX_INIT_ATU_ATUE
:
544 bus
= pci_bus_atue
= pci_scan_bus(sys
->busnr
,
553 /* This function is called from iop13xx_pci_init() after assigning valid
554 * values to iop13xx_atue_pmmr_offset. This is the location for common
555 * setup of ATUE for all IOP13XX implementations.
557 void __init
iop13xx_atue_setup(void)
559 int func
= iop13xx_atu_function(IOP13XX_INIT_ATU_ATUE
);
562 #ifdef CONFIG_PCI_MSI
563 /* BAR 0 (inbound msi window) */
564 __raw_writel(IOP13XX_MU_BASE_PHYS
, IOP13XX_MU_MUBAR
);
565 __raw_writel(~(IOP13XX_MU_WINDOW_SIZE
- 1), IOP13XX_ATUE_IALR0
);
566 __raw_writel(IOP13XX_MU_BASE_PHYS
, IOP13XX_ATUE_IATVR0
);
567 __raw_writel(IOP13XX_MU_BASE_PCI
, IOP13XX_ATUE_IABAR0
);
570 /* BAR 1 (1:1 mapping with Physical RAM) */
571 /* Set limit and enable */
572 __raw_writel(~(IOP13XX_MAX_RAM_SIZE
- PHYS_OFFSET
- 1) & ~0x1,
574 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR1
);
576 /* Set base at the top of the reserved address space */
577 __raw_writel(PHYS_OFFSET
| PCI_BASE_ADDRESS_MEM_TYPE_64
|
578 PCI_BASE_ADDRESS_MEM_PREFETCH
, IOP13XX_ATUE_IABAR1
);
580 /* 1:1 mapping with physical ram
581 * (leave big endian byte swap disabled)
583 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR1
);
584 __raw_writel(PHYS_OFFSET
, IOP13XX_ATUE_IATVR1
);
586 /* Outbound window 1 (PCIX/PCIE memory window) */
587 /* 32 bit Address Space */
588 __raw_writel(0x0, IOP13XX_ATUE_OUMWTVR1
);
590 __raw_writel(IOP13XX_ATUE_OUMBAR_ENABLE
|
591 (IOP13XX_PCIE_MEM_PHYS_OFFSET
>> 32),
592 IOP13XX_ATUE_OUMBAR1
);
597 __raw_writel(((IOP13XX_PCIE_LOWER_IO_PA
>> 0x4) & 0xfffff000),
598 IOP13XX_ATUE_OIOBAR
);
599 __raw_writel(IOP13XX_PCIE_LOWER_IO_BA
, IOP13XX_ATUE_OIOWTVR
);
601 /* clear startup errors */
602 iop13xx_atue_pci_status(1);
604 /* OIOBAR function number
606 reg_val
= __raw_readl(IOP13XX_ATUE_OIOBAR
);
609 __raw_writel(reg_val
, IOP13XX_ATUE_OIOBAR
);
611 /* OUMBAR function numbers
613 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR0
);
614 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
615 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
616 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
617 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR0
);
619 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR1
);
620 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
621 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
622 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
623 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR1
);
625 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR2
);
626 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
627 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
628 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
629 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR2
);
631 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR3
);
632 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
633 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
634 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
635 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR3
);
637 /* Enable inbound and outbound cycles
639 reg_val
= __raw_readw(IOP13XX_ATUE_ATUCMD
);
640 reg_val
|= PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
641 PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
;
642 __raw_writew(reg_val
, IOP13XX_ATUE_ATUCMD
);
644 reg_val
= __raw_readl(IOP13XX_ATUE_ATUCR
);
645 reg_val
|= IOP13XX_ATUE_ATUCR_OUT_EN
|
646 IOP13XX_ATUE_ATUCR_IVM
;
647 __raw_writel(reg_val
, IOP13XX_ATUE_ATUCR
);
650 void __init
iop13xx_atue_disable(void)
654 __raw_writew(0x0, IOP13XX_ATUE_ATUCMD
);
655 __raw_writel(IOP13XX_ATUE_ATUCR_IVM
, IOP13XX_ATUE_ATUCR
);
657 /* wait for cycles to quiesce */
658 while (__raw_readl(IOP13XX_ATUE_PCSR
) & (IOP13XX_ATUE_PCSR_OUT_Q_BUSY
|
659 IOP13XX_ATUE_PCSR_IN_Q_BUSY
|
660 IOP13XX_ATUE_PCSR_LLRB_BUSY
))
663 /* BAR 0 ( Disabled ) */
664 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR0
);
665 __raw_writel(0x0, IOP13XX_ATUE_IABAR0
);
666 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR0
);
667 __raw_writel(0x0, IOP13XX_ATUE_IATVR0
);
668 __raw_writel(0x0, IOP13XX_ATUE_IALR0
);
669 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR0
);
670 reg_val
&= ~IOP13XX_ATUE_OUMBAR_ENABLE
;
671 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR0
);
673 /* BAR 1 ( Disabled ) */
674 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR1
);
675 __raw_writel(0x0, IOP13XX_ATUE_IABAR1
);
676 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR1
);
677 __raw_writel(0x0, IOP13XX_ATUE_IATVR1
);
678 __raw_writel(0x0, IOP13XX_ATUE_IALR1
);
679 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR1
);
680 reg_val
&= ~IOP13XX_ATUE_OUMBAR_ENABLE
;
681 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR1
);
683 /* BAR 2 ( Disabled ) */
684 __raw_writel(0x0, IOP13XX_ATUE_IAUBAR2
);
685 __raw_writel(0x0, IOP13XX_ATUE_IABAR2
);
686 __raw_writel(0x0, IOP13XX_ATUE_IAUTVR2
);
687 __raw_writel(0x0, IOP13XX_ATUE_IATVR2
);
688 __raw_writel(0x0, IOP13XX_ATUE_IALR2
);
689 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR2
);
690 reg_val
&= ~IOP13XX_ATUE_OUMBAR_ENABLE
;
691 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR2
);
693 /* BAR 3 ( Disabled ) */
694 reg_val
= __raw_readl(IOP13XX_ATUE_OUMBAR3
);
695 reg_val
&= ~IOP13XX_ATUE_OUMBAR_ENABLE
;
696 __raw_writel(reg_val
, IOP13XX_ATUE_OUMBAR3
);
701 __raw_writel((IOP13XX_PCIE_LOWER_IO_PA
>> 0x4) & 0xfffff000,
702 IOP13XX_ATUE_OIOBAR
);
703 __raw_writel(IOP13XX_PCIE_LOWER_IO_BA
, IOP13XX_ATUE_OIOWTVR
);
706 /* This function is called from iop13xx_pci_init() after assigning valid
707 * values to iop13xx_atux_pmmr_offset. This is the location for common
708 * setup of ATUX for all IOP13XX implementations.
710 void __init
iop13xx_atux_setup(void)
713 int func
= iop13xx_atu_function(IOP13XX_INIT_ATU_ATUX
);
715 /* Take PCI-X bus out of reset if bootloader hasn't already.
716 * According to spec, we should wait for 2^25 PCI clocks to meet
717 * the PCI timing parameter Trhfa (RST# high to first access).
718 * This is rarely necessary and often ignored.
720 reg_val
= __raw_readl(IOP13XX_ATUX_PCSR
);
721 if (reg_val
& IOP13XX_ATUX_PCSR_P_RSTOUT
) {
722 int msec
= (reg_val
>> IOP13XX_ATUX_PCSR_FREQ_OFFSET
) & 0x7;
723 msec
= 1000 / (8-msec
); /* bits 100=133MHz, 111=>33MHz */
724 __raw_writel(reg_val
& ~IOP13XX_ATUX_PCSR_P_RSTOUT
,
726 atux_trhfa_timeout
= jiffies
+ msecs_to_jiffies(msec
);
729 atux_trhfa_timeout
= jiffies
;
731 #ifdef CONFIG_PCI_MSI
732 /* BAR 0 (inbound msi window) */
733 __raw_writel(IOP13XX_MU_BASE_PHYS
, IOP13XX_MU_MUBAR
);
734 __raw_writel(~(IOP13XX_MU_WINDOW_SIZE
- 1), IOP13XX_ATUX_IALR0
);
735 __raw_writel(IOP13XX_MU_BASE_PHYS
, IOP13XX_ATUX_IATVR0
);
736 __raw_writel(IOP13XX_MU_BASE_PCI
, IOP13XX_ATUX_IABAR0
);
739 /* BAR 1 (1:1 mapping with Physical RAM) */
740 /* Set limit and enable */
741 __raw_writel(~(IOP13XX_MAX_RAM_SIZE
- PHYS_OFFSET
- 1) & ~0x1,
743 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR1
);
745 /* Set base at the top of the reserved address space */
746 __raw_writel(PHYS_OFFSET
| PCI_BASE_ADDRESS_MEM_TYPE_64
|
747 PCI_BASE_ADDRESS_MEM_PREFETCH
, IOP13XX_ATUX_IABAR1
);
749 /* 1:1 mapping with physical ram
750 * (leave big endian byte swap disabled)
752 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR1
);
753 __raw_writel(PHYS_OFFSET
, IOP13XX_ATUX_IATVR1
);
755 /* Outbound window 1 (PCIX/PCIE memory window) */
756 /* 32 bit Address Space */
757 __raw_writel(0x0, IOP13XX_ATUX_OUMWTVR1
);
759 __raw_writel(IOP13XX_ATUX_OUMBAR_ENABLE
|
760 IOP13XX_PCIX_MEM_PHYS_OFFSET
>> 32,
761 IOP13XX_ATUX_OUMBAR1
);
766 __raw_writel((IOP13XX_PCIX_LOWER_IO_PA
>> 0x4) & 0xfffff000,
767 IOP13XX_ATUX_OIOBAR
);
768 __raw_writel(IOP13XX_PCIX_LOWER_IO_BA
, IOP13XX_ATUX_OIOWTVR
);
770 /* clear startup errors */
771 iop13xx_atux_pci_status(1);
773 /* OIOBAR function number
775 reg_val
= __raw_readl(IOP13XX_ATUX_OIOBAR
);
778 __raw_writel(reg_val
, IOP13XX_ATUX_OIOBAR
);
780 /* OUMBAR function numbers
782 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR0
);
783 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
784 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
785 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
786 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR0
);
788 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR1
);
789 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
790 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
791 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
792 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR1
);
794 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR2
);
795 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
796 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
797 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
798 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR2
);
800 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR3
);
801 reg_val
&= ~(IOP13XX_ATU_OUMBAR_FUNC_NUM_MASK
<<
802 IOP13XX_ATU_OUMBAR_FUNC_NUM
);
803 reg_val
|= func
<< IOP13XX_ATU_OUMBAR_FUNC_NUM
;
804 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR3
);
806 /* Enable inbound and outbound cycles
808 reg_val
= __raw_readw(IOP13XX_ATUX_ATUCMD
);
809 reg_val
|= PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
|
810 PCI_COMMAND_PARITY
| PCI_COMMAND_SERR
;
811 __raw_writew(reg_val
, IOP13XX_ATUX_ATUCMD
);
813 reg_val
= __raw_readl(IOP13XX_ATUX_ATUCR
);
814 reg_val
|= IOP13XX_ATUX_ATUCR_OUT_EN
;
815 __raw_writel(reg_val
, IOP13XX_ATUX_ATUCR
);
818 void __init
iop13xx_atux_disable(void)
822 __raw_writew(0x0, IOP13XX_ATUX_ATUCMD
);
823 __raw_writel(0x0, IOP13XX_ATUX_ATUCR
);
825 /* wait for cycles to quiesce */
826 while (__raw_readl(IOP13XX_ATUX_PCSR
) & (IOP13XX_ATUX_PCSR_OUT_Q_BUSY
|
827 IOP13XX_ATUX_PCSR_IN_Q_BUSY
))
830 /* BAR 0 ( Disabled ) */
831 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR0
);
832 __raw_writel(0x0, IOP13XX_ATUX_IABAR0
);
833 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR0
);
834 __raw_writel(0x0, IOP13XX_ATUX_IATVR0
);
835 __raw_writel(0x0, IOP13XX_ATUX_IALR0
);
836 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR0
);
837 reg_val
&= ~IOP13XX_ATUX_OUMBAR_ENABLE
;
838 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR0
);
840 /* BAR 1 ( Disabled ) */
841 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR1
);
842 __raw_writel(0x0, IOP13XX_ATUX_IABAR1
);
843 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR1
);
844 __raw_writel(0x0, IOP13XX_ATUX_IATVR1
);
845 __raw_writel(0x0, IOP13XX_ATUX_IALR1
);
846 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR1
);
847 reg_val
&= ~IOP13XX_ATUX_OUMBAR_ENABLE
;
848 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR1
);
850 /* BAR 2 ( Disabled ) */
851 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR2
);
852 __raw_writel(0x0, IOP13XX_ATUX_IABAR2
);
853 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR2
);
854 __raw_writel(0x0, IOP13XX_ATUX_IATVR2
);
855 __raw_writel(0x0, IOP13XX_ATUX_IALR2
);
856 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR2
);
857 reg_val
&= ~IOP13XX_ATUX_OUMBAR_ENABLE
;
858 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR2
);
860 /* BAR 3 ( Disabled ) */
861 __raw_writel(0x0, IOP13XX_ATUX_IAUBAR3
);
862 __raw_writel(0x0, IOP13XX_ATUX_IABAR3
);
863 __raw_writel(0x0, IOP13XX_ATUX_IAUTVR3
);
864 __raw_writel(0x0, IOP13XX_ATUX_IATVR3
);
865 __raw_writel(0x0, IOP13XX_ATUX_IALR3
);
866 reg_val
= __raw_readl(IOP13XX_ATUX_OUMBAR3
);
867 reg_val
&= ~IOP13XX_ATUX_OUMBAR_ENABLE
;
868 __raw_writel(reg_val
, IOP13XX_ATUX_OUMBAR3
);
873 __raw_writel((IOP13XX_PCIX_LOWER_IO_PA
>> 0x4) & 0xfffff000,
874 IOP13XX_ATUX_OIOBAR
);
875 __raw_writel(IOP13XX_PCIX_LOWER_IO_BA
, IOP13XX_ATUX_OIOWTVR
);
878 void __init
iop13xx_set_atu_mmr_bases(void)
880 /* Based on ESSR0, determine the ATU X/E offsets */
881 switch(__raw_readl(IOP13XX_ESSR0
) &
882 (IOP13XX_CONTROLLER_ONLY
| IOP13XX_INTERFACE_SEL_PCIX
)) {
885 iop13xx_atux_pmmr_offset
= IOP13XX_ATU1_PMMR_OFFSET
;
886 iop13xx_atue_pmmr_offset
= IOP13XX_ATU2_PMMR_OFFSET
;
888 /* IOP13XX_CONTROLLER_ONLY = deasserted
889 * IOP13XX_INTERFACE_SEL_PCIX = asserted
891 case IOP13XX_CONTROLLER_ONLY
:
892 iop13xx_atux_pmmr_offset
= IOP13XX_ATU0_PMMR_OFFSET
;
893 iop13xx_atue_pmmr_offset
= IOP13XX_ATU2_PMMR_OFFSET
;
895 /* IOP13XX_CONTROLLER_ONLY = asserted
896 * IOP13XX_INTERFACE_SEL_PCIX = deasserted
898 case IOP13XX_INTERFACE_SEL_PCIX
:
899 iop13xx_atux_pmmr_offset
= IOP13XX_ATU1_PMMR_OFFSET
;
900 iop13xx_atue_pmmr_offset
= IOP13XX_ATU2_PMMR_OFFSET
;
902 /* both deasserted */
903 case IOP13XX_CONTROLLER_ONLY
| IOP13XX_INTERFACE_SEL_PCIX
:
904 iop13xx_atux_pmmr_offset
= IOP13XX_ATU2_PMMR_OFFSET
;
905 iop13xx_atue_pmmr_offset
= IOP13XX_ATU0_PMMR_OFFSET
;
912 void __init
iop13xx_atu_select(struct hw_pci
*plat_pci
)
916 /* set system defaults
917 * note: if "iop13xx_init_atu=" is specified this autodetect
918 * sequence will be bypassed
920 if (init_atu
== IOP13XX_INIT_ATU_DEFAULT
) {
921 /* check for single/dual interface */
922 if (__raw_readl(IOP13XX_ESSR0
) & IOP13XX_INTERFACE_SEL_PCIX
) {
923 /* ATUE must be present check the device id
924 * to see if ATUX is present.
926 init_atu
|= IOP13XX_INIT_ATU_ATUE
;
927 switch (__raw_readw(IOP13XX_ATUE_DID
) & 0xf0) {
931 init_atu
|= IOP13XX_INIT_ATU_ATUX
;
935 /* ATUX must be present check the device id
936 * to see if ATUE is present.
938 init_atu
|= IOP13XX_INIT_ATU_ATUX
;
939 switch (__raw_readw(IOP13XX_ATUX_DID
) & 0xf0) {
943 init_atu
|= IOP13XX_INIT_ATU_ATUE
;
948 /* check central resource and root complex capability */
949 if (init_atu
& IOP13XX_INIT_ATU_ATUX
)
950 if (!(__raw_readl(IOP13XX_ATUX_PCSR
) &
951 IOP13XX_ATUX_PCSR_CENTRAL_RES
))
952 init_atu
&= ~IOP13XX_INIT_ATU_ATUX
;
954 if (init_atu
& IOP13XX_INIT_ATU_ATUE
)
955 if (__raw_readl(IOP13XX_ATUE_PCSR
) &
956 IOP13XX_ATUE_PCSR_END_POINT
)
957 init_atu
&= ~IOP13XX_INIT_ATU_ATUE
;
960 for (i
= 0; i
< 2; i
++) {
961 if((init_atu
& (1 << i
)) == (1 << i
))
962 plat_pci
->nr_controllers
++;
966 void __init
iop13xx_pci_init(void)
968 /* clear pre-existing south bridge errors */
969 __raw_writel(__raw_readl(IOP13XX_XBG_BECSR
) & 3, IOP13XX_XBG_BECSR
);
971 /* Setup the Min Address for PCI memory... */
973 pcibios_min_mem
= IOP13XX_PCIX_LOWER_MEM_BA
;
975 /* if Linux is given control of an ATU
976 * clear out its prior configuration,
977 * otherwise do not touch the registers
979 if (init_atu
& IOP13XX_INIT_ATU_ATUE
) {
980 iop13xx_atue_disable();
981 iop13xx_atue_setup();
984 if (init_atu
& IOP13XX_INIT_ATU_ATUX
) {
985 iop13xx_atux_disable();
986 iop13xx_atux_setup();
989 hook_fault_code(16+6, iop13xx_pci_abort
, SIGBUS
, 0,
990 "imprecise external abort");
993 /* initialize the pci memory space. handle any combination of
994 * atue and atux enabled/disabled
996 int iop13xx_pci_setup(int nr
, struct pci_sys_data
*sys
)
998 struct resource
*res
;
1005 res
= kcalloc(2, sizeof(struct resource
), GFP_KERNEL
);
1007 panic("PCI: unable to alloc resources");
1010 /* 'nr' assumptions:
1012 * ATUE is 1 when ATUX is also enabled
1013 * ATUE is 0 when ATUX is disabled
1016 case IOP13XX_INIT_ATU_ATUX
:
1017 which_atu
= nr
? 0 : IOP13XX_INIT_ATU_ATUX
;
1019 case IOP13XX_INIT_ATU_ATUE
:
1020 which_atu
= nr
? 0 : IOP13XX_INIT_ATU_ATUE
;
1022 case (IOP13XX_INIT_ATU_ATUX
| IOP13XX_INIT_ATU_ATUE
):
1023 which_atu
= nr
? IOP13XX_INIT_ATU_ATUE
: IOP13XX_INIT_ATU_ATUX
;
1035 case IOP13XX_INIT_ATU_ATUX
:
1036 pcixsr
= __raw_readl(IOP13XX_ATUX_PCIXSR
);
1038 pcixsr
|= sys
->busnr
<< IOP13XX_ATUX_PCIXSR_BUS_NUM
|
1039 0 << IOP13XX_ATUX_PCIXSR_DEV_NUM
|
1040 iop13xx_atu_function(IOP13XX_INIT_ATU_ATUX
)
1041 << IOP13XX_ATUX_PCIXSR_FUNC_NUM
;
1042 __raw_writel(pcixsr
, IOP13XX_ATUX_PCIXSR
);
1044 res
[0].start
= IOP13XX_PCIX_LOWER_IO_PA
+ IOP13XX_PCIX_IO_BUS_OFFSET
;
1045 res
[0].end
= IOP13XX_PCIX_UPPER_IO_PA
;
1046 res
[0].name
= "IQ81340 ATUX PCI I/O Space";
1047 res
[0].flags
= IORESOURCE_IO
;
1049 res
[1].start
= IOP13XX_PCIX_LOWER_MEM_RA
;
1050 res
[1].end
= IOP13XX_PCIX_UPPER_MEM_RA
;
1051 res
[1].name
= "IQ81340 ATUX PCI Memory Space";
1052 res
[1].flags
= IORESOURCE_MEM
;
1053 sys
->mem_offset
= IOP13XX_PCIX_MEM_OFFSET
;
1054 sys
->io_offset
= IOP13XX_PCIX_LOWER_IO_PA
;
1056 case IOP13XX_INIT_ATU_ATUE
:
1057 /* Note: the function number field in the PCSR is ro */
1058 pcsr
= __raw_readl(IOP13XX_ATUE_PCSR
);
1059 pcsr
&= ~(0xfff8 << 16);
1060 pcsr
|= sys
->busnr
<< IOP13XX_ATUE_PCSR_BUS_NUM
|
1061 0 << IOP13XX_ATUE_PCSR_DEV_NUM
;
1063 __raw_writel(pcsr
, IOP13XX_ATUE_PCSR
);
1065 res
[0].start
= IOP13XX_PCIE_LOWER_IO_PA
+ IOP13XX_PCIE_IO_BUS_OFFSET
;
1066 res
[0].end
= IOP13XX_PCIE_UPPER_IO_PA
;
1067 res
[0].name
= "IQ81340 ATUE PCI I/O Space";
1068 res
[0].flags
= IORESOURCE_IO
;
1070 res
[1].start
= IOP13XX_PCIE_LOWER_MEM_RA
;
1071 res
[1].end
= IOP13XX_PCIE_UPPER_MEM_RA
;
1072 res
[1].name
= "IQ81340 ATUE PCI Memory Space";
1073 res
[1].flags
= IORESOURCE_MEM
;
1074 sys
->mem_offset
= IOP13XX_PCIE_MEM_OFFSET
;
1075 sys
->io_offset
= IOP13XX_PCIE_LOWER_IO_PA
;
1076 sys
->map_irq
= iop13xx_pcie_map_irq
;
1083 request_resource(&ioport_resource
, &res
[0]);
1084 request_resource(&iomem_resource
, &res
[1]);
1086 sys
->resource
[0] = &res
[0];
1087 sys
->resource
[1] = &res
[1];
1088 sys
->resource
[2] = NULL
;
1093 u16
iop13xx_dev_id(void)
1095 if (__raw_readl(IOP13XX_ESSR0
) & IOP13XX_INTERFACE_SEL_PCIX
)
1096 return __raw_readw(IOP13XX_ATUE_DID
);
1098 return __raw_readw(IOP13XX_ATUX_DID
);
1101 static int __init
iop13xx_init_atu_setup(char *str
)
1103 init_atu
= IOP13XX_INIT_ATU_NONE
;
1105 while (*str
!= '\0') {
1109 init_atu
|= IOP13XX_INIT_ATU_ATUX
;
1110 init_atu
&= ~IOP13XX_INIT_ATU_NONE
;
1114 init_atu
|= IOP13XX_INIT_ATU_ATUE
;
1115 init_atu
&= ~IOP13XX_INIT_ATU_NONE
;
1121 PRINTK("\"iop13xx_init_atu\" malformed at "
1122 "character: \'%c\'", *str
);
1124 init_atu
= IOP13XX_INIT_ATU_DEFAULT
;
1132 __setup("iop13xx_init_atu", iop13xx_init_atu_setup
);