1 /**************************************************************************
3 * BRIEF MODULE DESCRIPTION
4 * PCI initialization for IDT EB434 board
6 * Copyright 2004 IDT Inc. (rischelp@idt.com)
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
13 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
14 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
15 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
16 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
17 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
18 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
19 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
20 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
21 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
22 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24 * You should have received a copy of the GNU General Public License along
25 * with this program; if not, write to the Free Software Foundation, Inc.,
26 * 675 Mass Ave, Cambridge, MA 02139, USA.
29 **************************************************************************
36 **************************************************************************
39 #include <linux/autoconf.h>
40 #include <linux/types.h>
41 #include <linux/pci.h>
42 #include <linux/kernel.h>
43 #include <linux/init.h>
45 #include <asm/rc32434/rc32434.h>
46 #include <asm/rc32434/pci.h>
48 #define PCI_ACCESS_READ 0
49 #define PCI_ACCESS_WRITE 1
51 /* define an unsigned array for the PCI registers */
52 unsigned int korinaCnfgRegs
[25] = {
53 KORINA_CNFG1
, KORINA_CNFG2
, KORINA_CNFG3
, KORINA_CNFG4
,
54 KORINA_CNFG5
, KORINA_CNFG6
, KORINA_CNFG7
, KORINA_CNFG8
,
55 KORINA_CNFG9
, KORINA_CNFG10
, KORINA_CNFG11
, KORINA_CNFG12
,
56 KORINA_CNFG13
, KORINA_CNFG14
, KORINA_CNFG15
, KORINA_CNFG16
,
57 KORINA_CNFG17
, KORINA_CNFG18
, KORINA_CNFG19
, KORINA_CNFG20
,
58 KORINA_CNFG21
, KORINA_CNFG22
, KORINA_CNFG23
, KORINA_CNFG24
60 static struct resource rc32434_res_pci_mem1
;
61 static struct resource rc32434_res_pci_mem2
;
63 static struct resource rc32434_res_pci_mem1
= {
67 .flags
= IORESOURCE_MEM
,
68 .parent
= &rc32434_res_pci_mem1
,
70 .child
= &rc32434_res_pci_mem2
73 static struct resource rc32434_res_pci_mem2
= {
77 .flags
= IORESOURCE_MEM
,
78 .parent
= &rc32434_res_pci_mem1
,
83 static struct resource rc32434_res_pci_io1
= {
87 .flags
= IORESOURCE_IO
,
90 extern struct pci_ops rc32434_pci_ops
;
92 #define PCI_MEM1_START PCI_ADDR_START
93 #define PCI_MEM1_END PCI_ADDR_START + CPUTOPCI_MEM_WIN - 1
94 #define PCI_MEM2_START PCI_ADDR_START + CPUTOPCI_MEM_WIN
95 #define PCI_MEM2_END PCI_ADDR_START + ( 2* CPUTOPCI_MEM_WIN) - 1
96 #define PCI_IO1_START PCI_ADDR_START + (2 * CPUTOPCI_MEM_WIN)
97 #define PCI_IO1_END PCI_ADDR_START + (2* CPUTOPCI_MEM_WIN) + CPUTOPCI_IO_WIN -1
98 #define PCI_IO2_START PCI_ADDR_START + (2 * CPUTOPCI_MEM_WIN) + CPUTOPCI_IO_WIN
99 #define PCI_IO2_END PCI_ADDR_START + (2* CPUTOPCI_MEM_WIN) + (2 * CPUTOPCI_IO_WIN) -1
102 struct pci_controller rc32434_controller2
;
104 struct pci_controller rc32434_controller
= {
105 .pci_ops
= &rc32434_pci_ops
,
106 .mem_resource
= &rc32434_res_pci_mem1
,
107 .io_resource
= &rc32434_res_pci_io1
,
114 #define PCI_ENDIAN_FLAG PCILBAC_sb_m
116 #define PCI_ENDIAN_FLAG 0
119 static int __init
rc32434_pcibridge_init(void)
121 unsigned int pcicValue
, pcicData
= 0;
122 unsigned int dummyRead
, pciCntlVal
;
124 unsigned int pciConfigAddr
;
126 pcicValue
= rc32434_pci
->pcic
;
127 pcicValue
= (pcicValue
>> PCIM_SHFT
) & PCIM_BIT_LEN
;
128 if (!((pcicValue
== PCIM_H_EA
) ||
129 (pcicValue
== PCIM_H_IA_FIX
) ||
130 (pcicValue
== PCIM_H_IA_RR
))) {
131 printk("PCI init error!!!\n");
132 /* Not in Host Mode, return ERROR */
135 /* Enables the Idle Grant mode, Arbiter Parking */
136 pcicData
|=(PCIC_igm_m
|PCIC_eap_m
|PCIC_en_m
);
137 rc32434_pci
->pcic
= pcicData
; /* Enable the PCI bus Interface */
138 /* Zero out the PCI status & PCI Status Mask */
141 pcicData
= rc32434_pci
->pcis
;
142 if (!(pcicData
& PCIS_rip_m
))
146 rc32434_pci
->pcis
= 0;
147 rc32434_pci
->pcism
= 0xFFFFFFFF;
148 /* Zero out the PCI decoupled registers */
149 rc32434_pci
->pcidac
=0; /* disable PCI decoupled accesses at initialization */
150 rc32434_pci
->pcidas
=0; /* clear the status */
151 rc32434_pci
->pcidasm
=0x0000007F; /* Mask all the interrupts */
152 /* Mask PCI Messaging Interrupts */
153 rc32434_pci_msg
->pciiic
= 0;
154 rc32434_pci_msg
->pciiim
= 0xFFFFFFFF;
155 rc32434_pci_msg
->pciioic
= 0;
156 rc32434_pci_msg
->pciioim
= 0;
159 /* Setup PCILB0 as Memory Window */
160 rc32434_pci
->pcilba
[0].a
= (unsigned int) (PCI_ADDR_START
);
162 /* setup the PCI map address as same as the local address */
164 rc32434_pci
->pcilba
[0].m
= (unsigned int) (PCI_ADDR_START
);
167 /* Setup PCILBA1 as MEM */
168 rc32434_pci
->pcilba
[0].c
= ( ((SIZE_256MB
& 0x1f) << PCILBAC_size_b
) | PCI_ENDIAN_FLAG
);
169 dummyRead
= rc32434_pci
->pcilba
[0].c
; /* flush the CPU write Buffers */
170 rc32434_pci
->pcilba
[1].a
= 0x60000000;
171 rc32434_pci
->pcilba
[1].m
= 0x60000000;
173 /* setup PCILBA2 as IO Window*/
174 rc32434_pci
->pcilba
[1].c
= (((SIZE_256MB
& 0x1f) << PCILBAC_size_b
)| PCI_ENDIAN_FLAG
);
175 dummyRead
= rc32434_pci
->pcilba
[1].c
; /* flush the CPU write Buffers */
176 rc32434_pci
->pcilba
[2].a
= 0x18C00000;
177 rc32434_pci
->pcilba
[2].m
= 0x18FFFFFF;
179 /* setup PCILBA2 as IO Window*/
180 rc32434_pci
->pcilba
[2].c
= (((SIZE_4MB
& 0x1f) << PCILBAC_size_b
) | PCI_ENDIAN_FLAG
);
181 dummyRead
= rc32434_pci
->pcilba
[2].c
; /* flush the CPU write Buffers */
183 /* Setup PCILBA3 as IO Window */
184 rc32434_pci
->pcilba
[3].a
= 0x18800000;
185 rc32434_pci
->pcilba
[3].m
= 0x18800000;
186 rc32434_pci
->pcilba
[3].c
= ( (((SIZE_1MB
& 0x1ff) << PCILBAC_size_b
) | PCILBAC_msi_m
) | PCI_ENDIAN_FLAG
);
187 dummyRead
= rc32434_pci
->pcilba
[3].c
; /* flush the CPU write Buffers */
189 pciConfigAddr
=(unsigned int)(0x80000004);
190 for(loopCount
=0;loopCount
<24;loopCount
++){
191 rc32434_pci
->pcicfga
=pciConfigAddr
;
192 dummyRead
=rc32434_pci
->pcicfga
;
193 rc32434_pci
->pcicfgd
= korinaCnfgRegs
[loopCount
];
194 dummyRead
=rc32434_pci
->pcicfgd
;
197 rc32434_pci
->pcitc
= (unsigned int)((PCITC_RTIMER_VAL
&0xff) << PCITC_rtimer_b
)
198 | ((PCITC_DTIMER_VAL
&0xff) << PCITC_dtimer_b
);
200 pciCntlVal
=rc32434_pci
->pcic
;
201 pciCntlVal
&=~(PCIC_tnr_m
);
202 rc32434_pci
->pcic
= pciCntlVal
;
203 pciCntlVal
=rc32434_pci
->pcic
;
207 /* Do platform specific device initialization at pci_enable_device() time */
208 int pcibios_plat_dev_init(struct pci_dev
*dev
)
210 if (PCI_SLOT(dev
->devfn
) == 6 && dev
->bus
->number
== 0) {
211 /* disable prefetched memory range */
212 pci_write_config_word(dev
, PCI_PREF_MEMORY_LIMIT
, 0);
213 pci_write_config_word(dev
, PCI_PREF_MEMORY_BASE
, 0x10);
215 pci_write_config_byte(dev
, PCI_CACHE_LINE_SIZE
, 4);
220 static int __init
rc32434_pci_init(void)
222 printk("PCI: Initializing PCI\n");
224 ioport_resource
.start
= rc32434_res_pci_io1
.start
;
225 ioport_resource
.end
= rc32434_res_pci_io1
.end
;
227 rc32434_pcibridge_init();
229 register_pci_controller(&rc32434_controller
);
235 arch_initcall(rc32434_pci_init
);