3 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5 * See file CREDITS for list of people who contributed to this
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 /* System RAM mapped to PCI space */
32 #define CONFIG_PCI_SYS_MEM_BUS CFG_SDRAM_BASE
33 #define CONFIG_PCI_SYS_MEM_PHYS CFG_SDRAM_BASE
34 #define CONFIG_PCI_SYS_MEM_SIZE (1024 * 1024 * 1024)
36 #ifndef CONFIG_PCI_PNP
37 static struct pci_config_table pci_tqm834x_config_table
[] = {
38 {PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
, PCI_ANY_ID
,
39 PCI_IDSEL_NUMBER
, PCI_ANY_ID
,
40 pci_cfgfunc_config_device
, {PCI_ENET0_IOADDR
,
42 PCI_COMMAND_MEMORY
| PCI_COMMAND_MASTER
49 static struct pci_controller pci1_hose
= {
50 #ifndef CONFIG_PCI_PNP
51 config_table
:pci_tqm834x_config_table
,
56 /**************************************************************************
59 * NOTICE: MPC8349 internally has two PCI controllers (PCI1 and PCI2) but since
60 * per TQM834x design physical connections to external devices (PCI sockets)
61 * are routed only to the PCI1 we do not account for the second one - this code
62 * supports PCI1 module only. Should support for the PCI2 be required in the
63 * future it needs a separate pci_controller structure (above) and handling -
64 * please refer to other boards' implementation for dual PCI host controllers,
65 * for example board/Marvell/db64360/pci.c, pci_init_board()
71 volatile immap_t
* immr
;
72 volatile clk8349_t
* clk
;
73 volatile law8349_t
* pci_law
;
74 volatile pot8349_t
* pci_pot
;
75 volatile pcictrl8349_t
* pci_ctrl
;
76 volatile pciconf8349_t
* pci_conf
;
79 struct pci_controller
* hose
;
81 immr
= (immap_t
*)CFG_IMMRBAR
;
82 clk
= (clk8349_t
*)&immr
->clk
;
83 pci_law
= immr
->sysconf
.pcilaw
;
84 pci_pot
= immr
->ios
.pot
;
85 pci_ctrl
= immr
->pci_ctrl
;
86 pci_conf
= immr
->pci_conf
;
91 * Configure PCI controller and PCI_CLK_OUTPUT
95 * WARNING! only PCI_CLK_OUTPUT1 is enabled here as this is the one
96 * line actually used for clocking all external PCI devices in TQM83xx.
97 * Enabling other PCI_CLK_OUTPUT lines may lead to board's hang for
98 * unknown reasons - particularly PCI_CLK_OUTPUT6 and PCI_CLK_OUTPUT7
99 * are known to hang the board; this issue is under investigation
102 reg32
= OCCR_PCICOE1
;
104 /* enabling all PCI_CLK_OUTPUT lines HANGS the board... */
107 if (clk
->spmr
& SPMR_CKID
) {
108 /* PCI Clock is half CONFIG_83XX_CLKIN so need to set up OCCR
109 * fields accordingly */
110 reg32
|= (OCCR_PCI1CR
| OCCR_PCI2CR
);
112 reg32
|= (OCCR_PCICD0
| OCCR_PCICD1
| OCCR_PCICD2 \
113 | OCCR_PCICD3
| OCCR_PCICD4
| OCCR_PCICD5 \
114 | OCCR_PCICD6
| OCCR_PCICD7
);
121 * Release PCI RST Output signal
129 * Configure PCI Local Access Windows
131 pci_law
[0].bar
= CFG_PCI1_MEM_PHYS
& LAWBAR_BAR
;
132 pci_law
[0].ar
= LAWAR_EN
| LAWAR_SIZE_512M
;
134 pci_law
[1].bar
= CFG_PCI1_IO_PHYS
& LAWBAR_BAR
;
135 pci_law
[1].ar
= LAWAR_EN
| LAWAR_SIZE_16M
;
138 * Configure PCI Outbound Translation Windows
142 pci_pot
[0].potar
= (CFG_PCI1_MEM_BASE
>> 12) & POTAR_TA_MASK
;
143 pci_pot
[0].pobar
= (CFG_PCI1_MEM_PHYS
>> 12) & POBAR_BA_MASK
;
144 pci_pot
[0].pocmr
= POCMR_EN
| (POCMR_CM_512M
& POCMR_CM_MASK
);
147 pci_pot
[1].potar
= (CFG_PCI1_IO_BASE
>> 12) & POTAR_TA_MASK
;
148 pci_pot
[1].pobar
= (CFG_PCI1_IO_PHYS
>> 12) & POBAR_BA_MASK
;
149 pci_pot
[1].pocmr
= POCMR_EN
| POCMR_IO
| (POCMR_CM_16M
& POCMR_CM_MASK
);
152 * Configure PCI Inbound Translation Windows
155 /* we need RAM mapped to PCI space for the devices to
156 * access main memory */
157 pci_ctrl
[0].pitar1
= 0x0;
158 pci_ctrl
[0].pibar1
= 0x0;
159 pci_ctrl
[0].piebar1
= 0x0;
160 pci_ctrl
[0].piwar1
= PIWAR_EN
| PIWAR_PF
| PIWAR_RTT_SNOOP
| PIWAR_WTT_SNOOP
| PIWAR_IWS_256M
;
162 hose
->first_busno
= 0;
163 hose
->last_busno
= 0xff;
165 /* PCI memory space */
166 pci_set_region(hose
->regions
+ 0,
173 pci_set_region(hose
->regions
+ 1,
179 /* System memory space */
180 pci_set_region(hose
->regions
+ 2,
181 CONFIG_PCI_SYS_MEM_BUS
,
182 CONFIG_PCI_SYS_MEM_PHYS
,
183 CONFIG_PCI_SYS_MEM_SIZE
,
184 PCI_REGION_MEM
| PCI_REGION_MEMORY
);
186 hose
->region_count
= 3;
188 pci_setup_indirect(hose
,
189 (CFG_IMMRBAR
+0x8300),
190 (CFG_IMMRBAR
+0x8304));
192 pci_register_hose(hose
);
195 * Write to Command register
198 pci_hose_read_config_word (hose
, PCI_BDF(0,0,0), PCI_COMMAND
,
200 reg16
|= PCI_COMMAND_SERR
| PCI_COMMAND_MASTER
| PCI_COMMAND_MEMORY
;
201 pci_hose_write_config_word(hose
, PCI_BDF(0,0,0), PCI_COMMAND
,
205 * Clear non-reserved bits in status register.
207 pci_hose_write_config_word(hose
, PCI_BDF(0,0,0), PCI_STATUS
,
209 pci_hose_write_config_byte(hose
, PCI_BDF(0,0,0), PCI_LATENCY_TIMER
,
212 #ifdef CONFIG_PCI_SCAN_SHOW
213 printf("PCI: Bus Dev VenId DevId Class Int\n");
218 hose
->last_busno
= pci_hose_scan(hose
);
220 #endif /* CONFIG_PCI */