blob: de7955280e05dd93a7568c0495460392f01a2bc1 [file] [log] [blame]
Rafal Jaworowski692519b2006-08-10 12:43:17 +02001/*
Grzegorz Bernackic9240982007-07-31 18:51:48 +02002 * (C) Copyright 2006 - 2007
Rafal Jaworowski692519b2006-08-10 12:43:17 +02003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * Copyright (c) 2005 Cisco Systems. All rights reserved.
6 * Roland Dreier <rolandd@cisco.com>
7 *
8 * See file CREDITS for list of people who contributed to this
9 * project.
10 *
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License as
13 * published by the Free Software Foundation; either version 2 of
14 * the License, or (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 */
22
Stefan Roese4dbee8a2007-10-05 07:57:20 +020023/* define DEBUG for debugging output (obviously ;-)) */
Stefan Roeseff68f662007-10-05 09:22:33 +020024#if 0
Stefan Roese4dbee8a2007-10-05 07:57:20 +020025#define DEBUG
26#endif
27
Rafal Jaworowski692519b2006-08-10 12:43:17 +020028#include <asm/processor.h>
29#include <asm-ppc/io.h>
30#include <ppc4xx.h>
31#include <common.h>
32#include <pci.h>
33
Stefan Roese97923772007-10-05 09:18:23 +020034#if (defined(CONFIG_440SPE) || defined(CONFIG_405EX)) && \
35 defined(CONFIG_PCI)
Rafal Jaworowski692519b2006-08-10 12:43:17 +020036
Stefan Roesec7c6da22007-10-03 07:34:10 +020037#include <asm/4xx_pcie.h>
Rafal Jaworowski692519b2006-08-10 12:43:17 +020038
39enum {
40 PTYPE_ENDPOINT = 0x0,
41 PTYPE_LEGACY_ENDPOINT = 0x1,
42 PTYPE_ROOT_PORT = 0x4,
43
44 LNKW_X1 = 0x1,
45 LNKW_X4 = 0x4,
46 LNKW_X8 = 0x8
47};
48
Stefan Roesed4cb2d12007-10-13 16:43:23 +020049static int validate_endpoint(struct pci_controller *hose)
50{
51 if (hose->cfg_data == (u8 *)CFG_PCIE0_CFGBASE)
52 return (is_end_point(0));
53 else if (hose->cfg_data == (u8 *)CFG_PCIE1_CFGBASE)
54 return (is_end_point(1));
55#if CFG_PCIE_NR_PORTS > 2
56 else if (hose->cfg_data == (u8 *)CFG_PCIE2_CFGBASE)
57 return (is_end_point(2));
58#endif
59
60 return 0;
61}
62
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020063static u8* pcie_get_base(struct pci_controller *hose, unsigned int devfn)
64{
65 u8 *base = (u8*)hose->cfg_data;
66
67 /* use local configuration space for the first bus */
68 if (PCI_BUS(devfn) == 0) {
69 if (hose->cfg_data == (u8*)CFG_PCIE0_CFGBASE)
70 base = (u8*)CFG_PCIE0_XCFGBASE;
71 if (hose->cfg_data == (u8*)CFG_PCIE1_CFGBASE)
72 base = (u8*)CFG_PCIE1_XCFGBASE;
Stefan Roese97923772007-10-05 09:18:23 +020073#if CFG_PCIE_NR_PORTS > 2
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020074 if (hose->cfg_data == (u8*)CFG_PCIE2_CFGBASE)
75 base = (u8*)CFG_PCIE2_XCFGBASE;
Stefan Roese97923772007-10-05 09:18:23 +020076#endif
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020077 }
78
79 return base;
80}
81
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020082static void pcie_dmer_disable(void)
Grzegorz Bernackic9240982007-07-31 18:51:48 +020083{
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020084 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE),
85 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) | GPL_DMER_MASK_DISA);
86 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE),
87 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) | GPL_DMER_MASK_DISA);
Stefan Roese97923772007-10-05 09:18:23 +020088#if CFG_PCIE_NR_PORTS > 2
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020089 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE),
90 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) | GPL_DMER_MASK_DISA);
Stefan Roese97923772007-10-05 09:18:23 +020091#endif
Grzegorz Bernackic9240982007-07-31 18:51:48 +020092}
93
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020094static void pcie_dmer_enable(void)
Grzegorz Bernackic9240982007-07-31 18:51:48 +020095{
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020096 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE0_BASE),
97 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) & ~GPL_DMER_MASK_DISA);
98 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE1_BASE),
99 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) & ~GPL_DMER_MASK_DISA);
Stefan Roese97923772007-10-05 09:18:23 +0200100#if CFG_PCIE_NR_PORTS > 2
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200101 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE2_BASE),
102 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) & ~GPL_DMER_MASK_DISA);
Stefan Roese97923772007-10-05 09:18:23 +0200103#endif
Grzegorz Bernackic9240982007-07-31 18:51:48 +0200104}
105
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200106static int pcie_read_config(struct pci_controller *hose, unsigned int devfn,
107 int offset, int len, u32 *val) {
108
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200109 u8 *address;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200110 *val = 0;
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200111
Stefan Roesed4cb2d12007-10-13 16:43:23 +0200112 if (validate_endpoint(hose))
113 return 0; /* No upstream config access */
114
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200115 /*
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200116 * Bus numbers are relative to hose->first_busno
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200117 */
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200118 devfn -= PCI_BDF(hose->first_busno, 0, 0);
119
120 /*
121 * NOTICE: configuration space ranges are currenlty mapped only for
122 * the first 16 buses, so such limit must be imposed. In case more
123 * buses are required the TLB settings in board/amcc/<board>/init.S
124 * need to be altered accordingly (one bus takes 1 MB of memory space).
125 */
126 if (PCI_BUS(devfn) >= 16)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200127 return 0;
128
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200129 /*
130 * Only single device/single function is supported for the primary and
131 * secondary buses of the 440SPe host bridge.
132 */
133 if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) &&
134 ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1)))
135 return 0;
Stefan Roese738815c2007-10-02 11:44:46 +0200136
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200137 address = pcie_get_base(hose, devfn);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200138 offset += devfn << 4;
139
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200140 /*
141 * Reading from configuration space of non-existing device can
142 * generate transaction errors. For the read duration we suppress
143 * assertion of machine check exceptions to avoid those.
144 */
145 pcie_dmer_disable ();
146
Stefan Roese97923772007-10-05 09:18:23 +0200147 debug("%s: cfg_data=%08x offset=%08x\n", __func__, hose->cfg_data, offset);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200148 switch (len) {
149 case 1:
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200150 *val = in_8(hose->cfg_data + offset);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200151 break;
152 case 2:
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200153 *val = in_le16((u16 *)(hose->cfg_data + offset));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200154 break;
155 default:
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200156 *val = in_le32((u32*)(hose->cfg_data + offset));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200157 break;
158 }
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200159
160 pcie_dmer_enable ();
161
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200162 return 0;
163}
164
165static int pcie_write_config(struct pci_controller *hose, unsigned int devfn,
166 int offset, int len, u32 val) {
167
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200168 u8 *address;
Stefan Roese738815c2007-10-02 11:44:46 +0200169
Stefan Roesed4cb2d12007-10-13 16:43:23 +0200170 if (validate_endpoint(hose))
171 return 0; /* No upstream config access */
172
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200173 /*
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200174 * Bus numbers are relative to hose->first_busno
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200175 */
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200176 devfn -= PCI_BDF(hose->first_busno, 0, 0);
Stefan Roese738815c2007-10-02 11:44:46 +0200177
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200178 /*
179 * Same constraints as in pcie_read_config().
180 */
181 if (PCI_BUS(devfn) >= 16)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200182 return 0;
183
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200184 if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) &&
185 ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1)))
186 return 0;
Stefan Roese738815c2007-10-02 11:44:46 +0200187
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200188 address = pcie_get_base(hose, devfn);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200189 offset += devfn << 4;
190
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200191 /*
192 * Suppress MCK exceptions, similar to pcie_read_config()
193 */
194 pcie_dmer_disable ();
195
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200196 switch (len) {
197 case 1:
198 out_8(hose->cfg_data + offset, val);
199 break;
200 case 2:
201 out_le16((u16 *)(hose->cfg_data + offset), val);
202 break;
203 default:
204 out_le32((u32 *)(hose->cfg_data + offset), val);
205 break;
206 }
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200207
208 pcie_dmer_enable ();
209
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200210 return 0;
211}
212
213int pcie_read_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 *val)
214{
215 u32 v;
216 int rv;
217
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200218 rv = pcie_read_config(hose, dev, offset, 1, &v);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200219 *val = (u8)v;
220 return rv;
221}
222
223int pcie_read_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 *val)
224{
225 u32 v;
226 int rv;
227
228 rv = pcie_read_config(hose, dev, offset, 2, &v);
229 *val = (u16)v;
230 return rv;
231}
232
233int pcie_read_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 *val)
234{
235 u32 v;
236 int rv;
237
238 rv = pcie_read_config(hose, dev, offset, 3, &v);
239 *val = (u32)v;
240 return rv;
241}
242
243int pcie_write_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 val)
244{
245 return pcie_write_config(hose,(u32)dev,offset,1,val);
246}
247
248int pcie_write_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 val)
249{
250 return pcie_write_config(hose,(u32)dev,offset,2,(u32 )val);
251}
252
253int pcie_write_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 val)
254{
255 return pcie_write_config(hose,(u32)dev,offset,3,(u32 )val);
256}
257
Stefan Roese97923772007-10-05 09:18:23 +0200258#if defined(CONFIG_440SPE)
Stefan Roese026f7112007-10-03 07:48:09 +0200259static void ppc4xx_setup_utl(u32 port) {
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200260
261 volatile void *utl_base = NULL;
262
263 /*
264 * Map UTL registers
265 */
266 switch (port) {
267 case 0:
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200268 mtdcr(DCRN_PEGPL_REGBAH(PCIE0), 0x0000000c);
269 mtdcr(DCRN_PEGPL_REGBAL(PCIE0), 0x20000000);
270 mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200271 mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0x68782800);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200272 break;
273
274 case 1:
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200275 mtdcr(DCRN_PEGPL_REGBAH(PCIE1), 0x0000000c);
276 mtdcr(DCRN_PEGPL_REGBAL(PCIE1), 0x20001000);
277 mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200278 mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0x68782800);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200279 break;
280
281 case 2:
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200282 mtdcr(DCRN_PEGPL_REGBAH(PCIE2), 0x0000000c);
283 mtdcr(DCRN_PEGPL_REGBAL(PCIE2), 0x20002000);
284 mtdcr(DCRN_PEGPL_REGMSK(PCIE2), 0x00007001);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200285 mtdcr(DCRN_PEGPL_SPECIAL(PCIE2), 0x68782800);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200286 break;
287 }
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200288 utl_base = (unsigned int *)(CFG_PCIE_BASE + 0x1000 * port);
Wolfgang Denk16850912006-08-27 18:10:01 +0200289
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200290 /*
291 * Set buffer allocations and then assert VRB and TXE.
292 */
293 out_be32(utl_base + PEUTL_OUTTR, 0x08000000);
294 out_be32(utl_base + PEUTL_INTR, 0x02000000);
295 out_be32(utl_base + PEUTL_OPDBSZ, 0x10000000);
296 out_be32(utl_base + PEUTL_PBBSZ, 0x53000000);
297 out_be32(utl_base + PEUTL_IPHBSZ, 0x08000000);
298 out_be32(utl_base + PEUTL_IPDBSZ, 0x10000000);
299 out_be32(utl_base + PEUTL_RCIRQEN, 0x00f00000);
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200300 out_be32(utl_base + PEUTL_PCTL, 0x80800066);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200301}
302
303static int check_error(void)
304{
305 u32 valPE0, valPE1, valPE2;
306 int err = 0;
307
308 /* SDR0_PEGPLLLCT1 reset */
309 if (!(valPE0 = SDR_READ(PESDR0_PLLLCT1) & 0x01000000)) {
310 printf("PCIE: SDR0_PEGPLLLCT1 reset error 0x%x\n", valPE0);
311 }
312
313 valPE0 = SDR_READ(PESDR0_RCSSET);
314 valPE1 = SDR_READ(PESDR1_RCSSET);
315 valPE2 = SDR_READ(PESDR2_RCSSET);
316
317 /* SDR0_PExRCSSET rstgu */
318 if (!(valPE0 & 0x01000000) ||
319 !(valPE1 & 0x01000000) ||
320 !(valPE2 & 0x01000000)) {
321 printf("PCIE: SDR0_PExRCSSET rstgu error\n");
322 err = -1;
323 }
324
325 /* SDR0_PExRCSSET rstdl */
326 if (!(valPE0 & 0x00010000) ||
327 !(valPE1 & 0x00010000) ||
328 !(valPE2 & 0x00010000)) {
329 printf("PCIE: SDR0_PExRCSSET rstdl error\n");
330 err = -1;
331 }
332
333 /* SDR0_PExRCSSET rstpyn */
334 if ((valPE0 & 0x00001000) ||
335 (valPE1 & 0x00001000) ||
336 (valPE2 & 0x00001000)) {
337 printf("PCIE: SDR0_PExRCSSET rstpyn error\n");
338 err = -1;
339 }
340
341 /* SDR0_PExRCSSET hldplb */
342 if ((valPE0 & 0x10000000) ||
343 (valPE1 & 0x10000000) ||
344 (valPE2 & 0x10000000)) {
345 printf("PCIE: SDR0_PExRCSSET hldplb error\n");
346 err = -1;
347 }
348
349 /* SDR0_PExRCSSET rdy */
350 if ((valPE0 & 0x00100000) ||
351 (valPE1 & 0x00100000) ||
352 (valPE2 & 0x00100000)) {
353 printf("PCIE: SDR0_PExRCSSET rdy error\n");
354 err = -1;
355 }
356
357 /* SDR0_PExRCSSET shutdown */
358 if ((valPE0 & 0x00000100) ||
359 (valPE1 & 0x00000100) ||
360 (valPE2 & 0x00000100)) {
361 printf("PCIE: SDR0_PExRCSSET shutdown error\n");
362 err = -1;
363 }
364 return err;
365}
366
367/*
368 * Initialize PCI Express core
369 */
Stefan Roese026f7112007-10-03 07:48:09 +0200370int ppc4xx_init_pcie(void)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200371{
372 int time_out = 20;
373
374 /* Set PLL clock receiver to LVPECL */
375 SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) | 1 << 28);
376
377 if (check_error())
378 return -1;
379
380 if (!(SDR_READ(PESDR0_PLLLCT2) & 0x10000))
381 {
382 printf("PCIE: PESDR_PLLCT2 resistance calibration failed (0x%08x)\n",
383 SDR_READ(PESDR0_PLLLCT2));
384 return -1;
385 }
386 /* De-assert reset of PCIe PLL, wait for lock */
387 SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) & ~(1 << 24));
388 udelay(3);
389
Stefan Roese2b393b02006-08-29 08:05:15 +0200390 while (time_out) {
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200391 if (!(SDR_READ(PESDR0_PLLLCT3) & 0x10000000)) {
392 time_out--;
393 udelay(1);
394 } else
395 break;
396 }
397 if (!time_out) {
398 printf("PCIE: VCO output not locked\n");
399 return -1;
400 }
401 return 0;
402}
Stefan Roese97923772007-10-05 09:18:23 +0200403#else
404int ppc4xx_init_pcie(void)
405{
406 /*
407 * Nothing to do on 405EX
408 */
409 return 0;
410}
411#endif
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200412
Stefan Roese2b393b02006-08-29 08:05:15 +0200413/*
Stefan Roese03d344b2007-10-03 10:38:09 +0200414 * Board-specific pcie initialization
415 * Platform code can reimplement ppc4xx_init_pcie_port_hw() if needed
416 */
417
418/*
419 * Initialize various parts of the PCI Express core for our port:
420 *
421 * - Set as a root port and enable max width
422 * (PXIE0 -> X8, PCIE1 and PCIE2 -> X4).
423 * - Set up UTL configuration.
424 * - Increase SERDES drive strength to levels suggested by AMCC.
425 * - De-assert RSTPYN, RSTDL and RSTGU.
426 *
427 * NOTICE for 440SPE revB chip: PESDRn_UTLSET2 is not set - we leave it
428 * with default setting 0x11310000. The register has new fields,
429 * PESDRn_UTLSET2[LKINE] in particular: clearing it leads to PCIE core
430 * hang.
431 */
432#if defined(CONFIG_440SPE)
433int __ppc4xx_init_pcie_port_hw(int port, int rootport)
434{
435 u32 val = 1 << 24;
436 u32 utlset1;
437
438 if (rootport) {
439 val = PTYPE_ROOT_PORT << 20;
440 utlset1 = 0x21222222;
441 } else {
442 val = PTYPE_LEGACY_ENDPOINT << 20;
443 utlset1 = 0x20222222;
444 }
445
446 if (port == 0)
447 val |= LNKW_X8 << 12;
448 else
449 val |= LNKW_X4 << 12;
450
451 SDR_WRITE(SDRN_PESDR_DLPSET(port), val);
452 SDR_WRITE(SDRN_PESDR_UTLSET1(port), utlset1);
453 if (!ppc440spe_revB())
454 SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x11000000);
455 SDR_WRITE(SDRN_PESDR_HSSL0SET1(port), 0x35000000);
456 SDR_WRITE(SDRN_PESDR_HSSL1SET1(port), 0x35000000);
457 SDR_WRITE(SDRN_PESDR_HSSL2SET1(port), 0x35000000);
458 SDR_WRITE(SDRN_PESDR_HSSL3SET1(port), 0x35000000);
459 if (port == 0) {
460 SDR_WRITE(PESDR0_HSSL4SET1, 0x35000000);
461 SDR_WRITE(PESDR0_HSSL5SET1, 0x35000000);
462 SDR_WRITE(PESDR0_HSSL6SET1, 0x35000000);
463 SDR_WRITE(PESDR0_HSSL7SET1, 0x35000000);
464 }
465 SDR_WRITE(SDRN_PESDR_RCSSET(port), (SDR_READ(SDRN_PESDR_RCSSET(port)) &
466 ~(1 << 24 | 1 << 16)) | 1 << 12);
467
468 return 0;
469}
470#endif /* CONFIG_440SPE */
471
472#if defined(CONFIG_405EX)
473int __ppc4xx_init_pcie_port_hw(int port, int rootport)
474{
475 u32 val;
476
477 if (rootport)
478 val = 0x00401000;
479 else
480 val = 0x00101000;
481
482 SDR_WRITE(SDRN_PESDR_DLPSET(port), val);
Stefan Roese7d0a4062007-11-13 08:06:11 +0100483 SDR_WRITE(SDRN_PESDR_UTLSET1(port), 0x00000000);
484 SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x01010000);
Stefan Roese03d344b2007-10-03 10:38:09 +0200485 SDR_WRITE(SDRN_PESDR_PHYSET1(port), 0x720F0000);
486 SDR_WRITE(SDRN_PESDR_PHYSET2(port), 0x70600003);
487
488 /* Assert the PE0_PHY reset */
489 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01010000);
490 udelay(1000);
491
492 /* deassert the PE0_hotreset */
Stefan Roese5cb4af42007-10-18 07:39:38 +0200493 if (is_end_point(port))
494 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01111000);
495 else
496 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01101000);
Stefan Roese03d344b2007-10-03 10:38:09 +0200497
498 /* poll for phy !reset */
499 while (!(SDR_READ(SDRN_PESDR_PHYSTA(port)) & 0x00001000))
500 ;
501
502 /* deassert the PE0_gpl_utl_reset */
503 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x00101000);
504
505 if (port == 0)
506 mtdcr(DCRN_PEGPL_CFG(PCIE0), 0x10000000); /* guarded on */
507 else
508 mtdcr(DCRN_PEGPL_CFG(PCIE1), 0x10000000); /* guarded on */
509
510 return 0;
511}
512#endif /* CONFIG_405EX */
513
514int ppc4xx_init_pcie_port_hw(int port, int rootport)
515 __attribute__((weak, alias("__ppc4xx_init_pcie_port_hw")));
516
517/*
518 * We map PCI Express configuration access into the 512MB regions
519 *
520 * NOTICE: revB is very strict about PLB real addressess and ranges to
521 * be mapped for config space; it seems to only work with d_nnnn_nnnn
522 * range (hangs the core upon config transaction attempts when set
523 * otherwise) while revA uses c_nnnn_nnnn.
524 *
525 * For revA:
526 * PCIE0: 0xc_4000_0000
527 * PCIE1: 0xc_8000_0000
528 * PCIE2: 0xc_c000_0000
529 *
530 * For revB:
531 * PCIE0: 0xd_0000_0000
532 * PCIE1: 0xd_2000_0000
533 * PCIE2: 0xd_4000_0000
534 *
535 * For 405EX:
536 * PCIE0: 0xa000_0000
537 * PCIE1: 0xc000_0000
538 */
539static inline u64 ppc4xx_get_cfgaddr(int port)
540{
541#if defined(CONFIG_405EX)
542 if (port == 0)
543 return (u64)CFG_PCIE0_CFGBASE;
544 else
545 return (u64)CFG_PCIE1_CFGBASE;
546#endif
547#if defined(CONFIG_440SPE)
548 if (ppc440spe_revB()) {
549 switch (port) {
550 default: /* to satisfy compiler */
551 case 0:
552 return 0x0000000d00000000ULL;
553 case 1:
554 return 0x0000000d20000000ULL;
555 case 2:
556 return 0x0000000d40000000ULL;
557 }
558 } else {
559 switch (port) {
560 default: /* to satisfy compiler */
561 case 0:
562 return 0x0000000c40000000ULL;
563 case 1:
564 return 0x0000000c80000000ULL;
565 case 2:
566 return 0x0000000cc0000000ULL;
567 }
568 }
569#endif
570}
571
572/*
573 * 4xx boards as end point and root point setup
Stefan Roese2b393b02006-08-29 08:05:15 +0200574 * and
575 * testing inbound and out bound windows
576 *
Stefan Roese03d344b2007-10-03 10:38:09 +0200577 * 4xx boards can be plugged into another 4xx boards or you can get PCI-E
Stefan Roese2b393b02006-08-29 08:05:15 +0200578 * cable which can be used to setup loop back from one port to another port.
579 * Please rememeber that unless there is a endpoint plugged in to root port it
580 * will not initialize. It is the same in case of endpoint , unless there is
581 * root port attached it will not initialize.
582 *
583 * In this release of software all the PCI-E ports are configured as either
584 * endpoint or rootpoint.In future we will have support for selective ports
585 * setup as endpoint and root point in single board.
586 *
587 * Once your board came up as root point , you can verify by reading
588 * /proc/bus/pci/devices. Where you can see the configuration registers
589 * of end point device attached to the port.
590 *
Stefan Roese03d344b2007-10-03 10:38:09 +0200591 * Enpoint cofiguration can be verified by connecting 4xx board to any
592 * host or another 4xx board. Then try to scan the device. In case of
Stefan Roese2b393b02006-08-29 08:05:15 +0200593 * linux use "lspci" or appripriate os command.
594 *
Stefan Roese03d344b2007-10-03 10:38:09 +0200595 * How do I verify the inbound and out bound windows ? (4xx to 4xx)
Stefan Roese2b393b02006-08-29 08:05:15 +0200596 * in this configuration inbound and outbound windows are setup to access
597 * sram memroy area. SRAM is at 0x4 0000 0000 , on PLB bus. This address
598 * is mapped at 0x90000000. From u-boot prompt write data 0xb000 0000,
599 * This is waere your POM(PLB out bound memory window) mapped. then
Stefan Roese03d344b2007-10-03 10:38:09 +0200600 * read the data from other 4xx board's u-boot prompt at address
Stefan Roese2b393b02006-08-29 08:05:15 +0200601 * 0x9000 0000(SRAM). Data should match.
602 * In case of inbound , write data to u-boot command prompt at 0xb000 0000
603 * which is mapped to 0x4 0000 0000. Now on rootpoint yucca u-boot prompt check
604 * data at 0x9000 0000(SRAM).Data should match.
605 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200606int ppc4xx_init_pcie_port(int port, int rootport)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200607{
608 static int core_init;
609 volatile u32 val = 0;
610 int attempts;
Stefan Roese03d344b2007-10-03 10:38:09 +0200611 u64 addr;
612 u32 low, high;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200613
614 if (!core_init) {
Stefan Roese026f7112007-10-03 07:48:09 +0200615 if (ppc4xx_init_pcie())
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200616 return -1;
Stefan Roesed4cb2d12007-10-13 16:43:23 +0200617 ++core_init;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200618 }
619
620 /*
Stefan Roese03d344b2007-10-03 10:38:09 +0200621 * Initialize various parts of the PCI Express core for our port
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200622 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200623 ppc4xx_init_pcie_port_hw(port, rootport);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200624
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200625 /*
626 * Notice: the following delay has critical impact on device
627 * initialization - if too short (<50ms) the link doesn't get up.
628 */
629 mdelay(100);
630
Stefan Roese6d952892007-10-03 21:16:32 +0200631 val = SDR_READ(SDRN_PESDR_RCSSTS(port));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200632 if (val & (1 << 20)) {
633 printf("PCIE%d: PGRST failed %08x\n", port, val);
634 return -1;
635 }
636
637 /*
638 * Verify link is up
639 */
Stefan Roese6d952892007-10-03 21:16:32 +0200640 val = SDR_READ(SDRN_PESDR_LOOP(port));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200641 if (!(val & 0x00001000)) {
642 printf("PCIE%d: link is not up.\n", port);
643 return -1;
644 }
645
Stefan Roese97923772007-10-05 09:18:23 +0200646#if defined(CONFIG_440SPE)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200647 /*
648 * Setup UTL registers - but only on revA!
649 * We use default settings for revB chip.
650 */
651 if (!ppc440spe_revB())
Stefan Roese026f7112007-10-03 07:48:09 +0200652 ppc4xx_setup_utl(port);
Stefan Roese97923772007-10-05 09:18:23 +0200653#endif
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200654
655 /*
656 * We map PCI Express configuration access into the 512MB regions
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200657 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200658 addr = ppc4xx_get_cfgaddr(port);
Stefan Roese97923772007-10-05 09:18:23 +0200659 low = U64_TO_U32_LOW(addr);
660 high = U64_TO_U32_HIGH(addr);
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200661
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200662 switch (port) {
663 case 0:
Stefan Roese03d344b2007-10-03 10:38:09 +0200664 mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), high);
665 mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), low);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200666 mtdcr(DCRN_PEGPL_CFGMSK(PCIE0), 0xe0000001); /* 512MB region, valid */
667 break;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200668 case 1:
Stefan Roese03d344b2007-10-03 10:38:09 +0200669 mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), high);
670 mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), low);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200671 mtdcr(DCRN_PEGPL_CFGMSK(PCIE1), 0xe0000001); /* 512MB region, valid */
672 break;
Stefan Roese97923772007-10-05 09:18:23 +0200673#if CFG_PCIE_NR_PORTS > 2
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200674 case 2:
Stefan Roese03d344b2007-10-03 10:38:09 +0200675 mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), high);
676 mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), low);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200677 mtdcr(DCRN_PEGPL_CFGMSK(PCIE2), 0xe0000001); /* 512MB region, valid */
678 break;
Stefan Roese97923772007-10-05 09:18:23 +0200679#endif
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200680 }
681
682 /*
683 * Check for VC0 active and assert RDY.
684 */
685 attempts = 10;
Stefan Roese6d952892007-10-03 21:16:32 +0200686 while(!(SDR_READ(SDRN_PESDR_RCSSTS(port)) & (1 << 16))) {
Stefan Roese03d344b2007-10-03 10:38:09 +0200687 if (!(attempts--)) {
688 printf("PCIE%d: VC0 not active\n", port);
689 return -1;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200690 }
Stefan Roese03d344b2007-10-03 10:38:09 +0200691 mdelay(1000);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200692 }
Stefan Roese6d952892007-10-03 21:16:32 +0200693 SDR_WRITE(SDRN_PESDR_RCSSET(port),
694 SDR_READ(SDRN_PESDR_RCSSET(port)) | 1 << 20);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200695 mdelay(100);
696
697 return 0;
698}
699
Stefan Roese03d344b2007-10-03 10:38:09 +0200700int ppc4xx_init_pcie_rootport(int port)
701{
702 return ppc4xx_init_pcie_port(port, 1);
703}
704
Stefan Roese026f7112007-10-03 07:48:09 +0200705int ppc4xx_init_pcie_endport(int port)
Stefan Roese2b393b02006-08-29 08:05:15 +0200706{
Stefan Roese03d344b2007-10-03 10:38:09 +0200707 return ppc4xx_init_pcie_port(port, 0);
Stefan Roese2b393b02006-08-29 08:05:15 +0200708}
709
Stefan Roese026f7112007-10-03 07:48:09 +0200710void ppc4xx_setup_pcie_rootpoint(struct pci_controller *hose, int port)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200711{
712 volatile void *mbase = NULL;
Stefan Roese2b393b02006-08-29 08:05:15 +0200713 volatile void *rmbase = NULL;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200714
715 pci_set_ops(hose,
Stefan Roese03d344b2007-10-03 10:38:09 +0200716 pcie_read_config_byte,
717 pcie_read_config_word,
718 pcie_read_config_dword,
719 pcie_write_config_byte,
720 pcie_write_config_word,
721 pcie_write_config_dword);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200722
Stefan Roese2b393b02006-08-29 08:05:15 +0200723 switch (port) {
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200724 case 0:
725 mbase = (u32 *)CFG_PCIE0_XCFGBASE;
Stefan Roese2b393b02006-08-29 08:05:15 +0200726 rmbase = (u32 *)CFG_PCIE0_CFGBASE;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200727 hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE;
728 break;
729 case 1:
730 mbase = (u32 *)CFG_PCIE1_XCFGBASE;
Stefan Roese2b393b02006-08-29 08:05:15 +0200731 rmbase = (u32 *)CFG_PCIE1_CFGBASE;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200732 hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE;
733 break;
Stefan Roese97923772007-10-05 09:18:23 +0200734#if CFG_PCIE_NR_PORTS > 2
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200735 case 2:
736 mbase = (u32 *)CFG_PCIE2_XCFGBASE;
Stefan Roese2b393b02006-08-29 08:05:15 +0200737 rmbase = (u32 *)CFG_PCIE2_CFGBASE;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200738 hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE;
739 break;
Stefan Roese97923772007-10-05 09:18:23 +0200740#endif
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200741 }
742
743 /*
744 * Set bus numbers on our root port
745 */
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200746 out_8((u8 *)mbase + PCI_PRIMARY_BUS, 0);
747 out_8((u8 *)mbase + PCI_SECONDARY_BUS, 1);
748 out_8((u8 *)mbase + PCI_SUBORDINATE_BUS, 1);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200749
750 /*
751 * Set up outbound translation to hose->mem_space from PLB
752 * addresses at an offset of 0xd_0000_0000. We set the low
753 * bits of the mask to 11 to turn off splitting into 8
754 * subregions and to enable the outbound translation.
755 */
756 out_le32(mbase + PECFG_POM0LAH, 0x00000000);
Stefan Roese4dbee8a2007-10-05 07:57:20 +0200757 out_le32(mbase + PECFG_POM0LAL, CFG_PCIE_MEMBASE +
758 port * CFG_PCIE_MEMSIZE);
759 debug("PECFG_POM0LA=%08x.%08x\n", in_le32(mbase + PECFG_POM0LAH),
760 in_le32(mbase + PECFG_POM0LAL));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200761
762 switch (port) {
763 case 0:
Stefan Roese97923772007-10-05 09:18:23 +0200764 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), CFG_PCIE_ADDR_HIGH);
765 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200766 port * CFG_PCIE_MEMSIZE);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200767 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff);
768 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0),
Stefan Roese03d344b2007-10-03 10:38:09 +0200769 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese4dbee8a2007-10-05 07:57:20 +0200770 debug("0:PEGPL_OMR1BA=%08x.%08x MSK=%08x.%08x\n",
771 mfdcr(DCRN_PEGPL_OMR1BAH(PCIE0)),
772 mfdcr(DCRN_PEGPL_OMR1BAL(PCIE0)),
773 mfdcr(DCRN_PEGPL_OMR1MSKH(PCIE0)),
774 mfdcr(DCRN_PEGPL_OMR1MSKL(PCIE0)));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200775 break;
776 case 1:
Stefan Roese97923772007-10-05 09:18:23 +0200777 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), CFG_PCIE_ADDR_HIGH);
778 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200779 port * CFG_PCIE_MEMSIZE);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200780 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff);
781 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1),
Stefan Roese03d344b2007-10-03 10:38:09 +0200782 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese4dbee8a2007-10-05 07:57:20 +0200783 debug("1:PEGPL_OMR1BA=%08x.%08x MSK=%08x.%08x\n",
784 mfdcr(DCRN_PEGPL_OMR1BAH(PCIE1)),
785 mfdcr(DCRN_PEGPL_OMR1BAL(PCIE1)),
786 mfdcr(DCRN_PEGPL_OMR1MSKH(PCIE1)),
787 mfdcr(DCRN_PEGPL_OMR1MSKL(PCIE1)));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200788 break;
Stefan Roese97923772007-10-05 09:18:23 +0200789#if CFG_PCIE_NR_PORTS > 2
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200790 case 2:
Stefan Roese97923772007-10-05 09:18:23 +0200791 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), CFG_PCIE_ADDR_HIGH);
792 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200793 port * CFG_PCIE_MEMSIZE);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200794 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff);
795 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2),
Stefan Roese03d344b2007-10-03 10:38:09 +0200796 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese4dbee8a2007-10-05 07:57:20 +0200797 debug("2:PEGPL_OMR1BA=%08x.%08x MSK=%08x.%08x\n",
798 mfdcr(DCRN_PEGPL_OMR1BAH(PCIE2)),
799 mfdcr(DCRN_PEGPL_OMR1BAL(PCIE2)),
800 mfdcr(DCRN_PEGPL_OMR1MSKH(PCIE2)),
801 mfdcr(DCRN_PEGPL_OMR1MSKL(PCIE2)));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200802 break;
Stefan Roese97923772007-10-05 09:18:23 +0200803#endif
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200804 }
805
806 /* Set up 16GB inbound memory window at 0 */
807 out_le32(mbase + PCI_BASE_ADDRESS_0, 0);
808 out_le32(mbase + PCI_BASE_ADDRESS_1, 0);
809 out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc);
810 out_le32(mbase + PECFG_BAR0LMPA, 0);
Stefan Roese2b393b02006-08-29 08:05:15 +0200811
812 out_le32(mbase + PECFG_PIM01SAH, 0xffff0000);
813 out_le32(mbase + PECFG_PIM01SAL, 0x00000000);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200814 out_le32(mbase + PECFG_PIM0LAL, 0);
815 out_le32(mbase + PECFG_PIM0LAH, 0);
Stefan Roese97923772007-10-05 09:18:23 +0200816 out_le32(mbase + PECFG_PIM1LAL, 0x00000000);
817 out_le32(mbase + PECFG_PIM1LAH, 0x00000004);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200818 out_le32(mbase + PECFG_PIMEN, 0x1);
819
820 /* Enable I/O, Mem, and Busmaster cycles */
821 out_le16((u16 *)(mbase + PCI_COMMAND),
822 in_le16((u16 *)(mbase + PCI_COMMAND)) |
823 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
Stefan Roese738815c2007-10-02 11:44:46 +0200824
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200825 /* Set Device and Vendor Id */
Stefan Roese97923772007-10-05 09:18:23 +0200826 out_le16(mbase + 0x200, 0xaaa0 + port);
827 out_le16(mbase + 0x202, 0xbed0 + port);
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200828
829 /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */
830 out_le32(mbase + 0x208, 0x06040001);
831
Stefan Roese19e93b12007-10-05 14:23:43 +0200832 printf("PCIE%d: successfully set as root-complex\n", port);
Stefan Roese2b393b02006-08-29 08:05:15 +0200833}
834
Stefan Roese026f7112007-10-03 07:48:09 +0200835int ppc4xx_setup_pcie_endpoint(struct pci_controller *hose, int port)
Stefan Roese2b393b02006-08-29 08:05:15 +0200836{
837 volatile void *mbase = NULL;
838 int attempts = 0;
839
840 pci_set_ops(hose,
841 pcie_read_config_byte,
842 pcie_read_config_word,
843 pcie_read_config_dword,
844 pcie_write_config_byte,
845 pcie_write_config_word,
846 pcie_write_config_dword);
847
848 switch (port) {
849 case 0:
850 mbase = (u32 *)CFG_PCIE0_XCFGBASE;
851 hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE;
852 break;
853 case 1:
854 mbase = (u32 *)CFG_PCIE1_XCFGBASE;
855 hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE;
856 break;
Stefan Roese97923772007-10-05 09:18:23 +0200857#if defined(CFG_PCIE2_CFGBASE)
Stefan Roese2b393b02006-08-29 08:05:15 +0200858 case 2:
859 mbase = (u32 *)CFG_PCIE2_XCFGBASE;
860 hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE;
861 break;
Stefan Roese97923772007-10-05 09:18:23 +0200862#endif
Stefan Roese2b393b02006-08-29 08:05:15 +0200863 }
864
865 /*
866 * Set up outbound translation to hose->mem_space from PLB
867 * addresses at an offset of 0xd_0000_0000. We set the low
868 * bits of the mask to 11 to turn off splitting into 8
869 * subregions and to enable the outbound translation.
870 */
871 out_le32(mbase + PECFG_POM0LAH, 0x00001ff8);
872 out_le32(mbase + PECFG_POM0LAL, 0x00001000);
873
874 switch (port) {
875 case 0:
Stefan Roese97923772007-10-05 09:18:23 +0200876 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), CFG_PCIE_ADDR_HIGH);
877 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200878 port * CFG_PCIE_MEMSIZE);
Stefan Roese2b393b02006-08-29 08:05:15 +0200879 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff);
880 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0),
Stefan Roese03d344b2007-10-03 10:38:09 +0200881 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese2b393b02006-08-29 08:05:15 +0200882 break;
883 case 1:
Stefan Roese97923772007-10-05 09:18:23 +0200884 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), CFG_PCIE_ADDR_HIGH);
885 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200886 port * CFG_PCIE_MEMSIZE);
Stefan Roese2b393b02006-08-29 08:05:15 +0200887 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff);
888 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1),
Stefan Roese03d344b2007-10-03 10:38:09 +0200889 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese2b393b02006-08-29 08:05:15 +0200890 break;
Stefan Roese97923772007-10-05 09:18:23 +0200891#if CFG_PCIE_NR_PORTS > 2
Stefan Roese2b393b02006-08-29 08:05:15 +0200892 case 2:
Stefan Roese97923772007-10-05 09:18:23 +0200893 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), CFG_PCIE_ADDR_HIGH);
894 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200895 port * CFG_PCIE_MEMSIZE);
Stefan Roese2b393b02006-08-29 08:05:15 +0200896 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff);
897 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2),
Stefan Roese03d344b2007-10-03 10:38:09 +0200898 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese2b393b02006-08-29 08:05:15 +0200899 break;
Stefan Roese97923772007-10-05 09:18:23 +0200900#endif
Stefan Roese2b393b02006-08-29 08:05:15 +0200901 }
902
Stefan Roese5cb4af42007-10-18 07:39:38 +0200903 /* Set up 64MB inbound memory window at 0 */
Stefan Roese2b393b02006-08-29 08:05:15 +0200904 out_le32(mbase + PCI_BASE_ADDRESS_0, 0);
905 out_le32(mbase + PCI_BASE_ADDRESS_1, 0);
Stefan Roese5cb4af42007-10-18 07:39:38 +0200906
907 out_le32(mbase + PECFG_PIM01SAH, 0xffffffff);
908 out_le32(mbase + PECFG_PIM01SAL, 0xfc000000);
909
910 /* Setup BAR0 */
911 out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffff);
912 out_le32(mbase + PECFG_BAR0LMPA, 0xfc000000 | PCI_BASE_ADDRESS_MEM_TYPE_64);
913
914 /* Disable BAR1 & BAR2 */
915 out_le32(mbase + PECFG_BAR1MPA, 0);
916 out_le32(mbase + PECFG_BAR2HMPA, 0);
917 out_le32(mbase + PECFG_BAR2LMPA, 0);
918
Stefan Roese97923772007-10-05 09:18:23 +0200919 out_le32(mbase + PECFG_PIM0LAL, U64_TO_U32_LOW(CFG_PCIE_INBOUND_BASE));
920 out_le32(mbase + PECFG_PIM0LAH, U64_TO_U32_HIGH(CFG_PCIE_INBOUND_BASE));
Stefan Roese2b393b02006-08-29 08:05:15 +0200921 out_le32(mbase + PECFG_PIMEN, 0x1);
922
923 /* Enable I/O, Mem, and Busmaster cycles */
924 out_le16((u16 *)(mbase + PCI_COMMAND),
Stefan Roese03d344b2007-10-03 10:38:09 +0200925 in_le16((u16 *)(mbase + PCI_COMMAND)) |
926 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
Stefan Roese97923772007-10-05 09:18:23 +0200927 out_le16(mbase + 0x200, 0xcaad); /* Setting vendor ID */
928 out_le16(mbase + 0x202, 0xfeed); /* Setting device ID */
Stefan Roese03d344b2007-10-03 10:38:09 +0200929
Stefan Roese5cb4af42007-10-18 07:39:38 +0200930 /* Set Class Code to Processor/PPC */
931 out_le32(mbase + 0x208, 0x0b200001);
932
Stefan Roese2b393b02006-08-29 08:05:15 +0200933 attempts = 10;
Stefan Roese6d952892007-10-03 21:16:32 +0200934 while(!(SDR_READ(SDRN_PESDR_RCSSTS(port)) & (1 << 8))) {
Stefan Roese03d344b2007-10-03 10:38:09 +0200935 if (!(attempts--)) {
936 printf("PCIE%d: BME not active\n", port);
937 return -1;
Stefan Roese2b393b02006-08-29 08:05:15 +0200938 }
Stefan Roese03d344b2007-10-03 10:38:09 +0200939 mdelay(1000);
Stefan Roese2b393b02006-08-29 08:05:15 +0200940 }
Stefan Roese03d344b2007-10-03 10:38:09 +0200941
Stefan Roese19e93b12007-10-05 14:23:43 +0200942 printf("PCIE%d: successfully set as endpoint\n", port);
Stefan Roese2b393b02006-08-29 08:05:15 +0200943
944 return 0;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200945}
Stefan Roese5fb692c2007-01-18 10:25:34 +0100946#endif /* CONFIG_440SPE && CONFIG_PCI */