blob: 2b3e657806a1f18f9b7692dc5e7a4d04e95164bf [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
23#include <asm/processor.h>
24#include <asm-ppc/io.h>
25#include <ppc4xx.h>
26#include <common.h>
27#include <pci.h>
28
Stefan Roese5fb692c2007-01-18 10:25:34 +010029#if defined(CONFIG_440SPE) && defined(CONFIG_PCI)
Rafal Jaworowski692519b2006-08-10 12:43:17 +020030
Stefan Roesec7c6da22007-10-03 07:34:10 +020031#include <asm/4xx_pcie.h>
Rafal Jaworowski692519b2006-08-10 12:43:17 +020032
33enum {
34 PTYPE_ENDPOINT = 0x0,
35 PTYPE_LEGACY_ENDPOINT = 0x1,
36 PTYPE_ROOT_PORT = 0x4,
37
38 LNKW_X1 = 0x1,
39 LNKW_X4 = 0x4,
40 LNKW_X8 = 0x8
41};
42
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020043static u8* pcie_get_base(struct pci_controller *hose, unsigned int devfn)
44{
45 u8 *base = (u8*)hose->cfg_data;
46
47 /* use local configuration space for the first bus */
48 if (PCI_BUS(devfn) == 0) {
49 if (hose->cfg_data == (u8*)CFG_PCIE0_CFGBASE)
50 base = (u8*)CFG_PCIE0_XCFGBASE;
51 if (hose->cfg_data == (u8*)CFG_PCIE1_CFGBASE)
52 base = (u8*)CFG_PCIE1_XCFGBASE;
53 if (hose->cfg_data == (u8*)CFG_PCIE2_CFGBASE)
54 base = (u8*)CFG_PCIE2_XCFGBASE;
55 }
56
57 return base;
58}
59
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020060static void pcie_dmer_disable(void)
Grzegorz Bernackic9240982007-07-31 18:51:48 +020061{
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020062 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE),
63 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) | GPL_DMER_MASK_DISA);
64 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE),
65 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) | GPL_DMER_MASK_DISA);
66 mtdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE),
67 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) | GPL_DMER_MASK_DISA);
Grzegorz Bernackic9240982007-07-31 18:51:48 +020068}
69
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020070static void pcie_dmer_enable(void)
Grzegorz Bernackic9240982007-07-31 18:51:48 +020071{
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +020072 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE0_BASE),
73 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE0_BASE)) & ~GPL_DMER_MASK_DISA);
74 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE1_BASE),
75 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE1_BASE)) & ~GPL_DMER_MASK_DISA);
76 mtdcr (DCRN_PEGPL_CFG (DCRN_PCIE2_BASE),
77 mfdcr (DCRN_PEGPL_CFG(DCRN_PCIE2_BASE)) & ~GPL_DMER_MASK_DISA);
Grzegorz Bernackic9240982007-07-31 18:51:48 +020078}
79
Rafal Jaworowski692519b2006-08-10 12:43:17 +020080static int pcie_read_config(struct pci_controller *hose, unsigned int devfn,
81 int offset, int len, u32 *val) {
82
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020083 u8 *address;
Rafal Jaworowski692519b2006-08-10 12:43:17 +020084 *val = 0;
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020085
Rafal Jaworowski692519b2006-08-10 12:43:17 +020086 /*
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020087 * Bus numbers are relative to hose->first_busno
Rafal Jaworowski692519b2006-08-10 12:43:17 +020088 */
Grzegorz Bernacki7f191392007-09-07 18:20:23 +020089 devfn -= PCI_BDF(hose->first_busno, 0, 0);
90
91 /*
92 * NOTICE: configuration space ranges are currenlty mapped only for
93 * the first 16 buses, so such limit must be imposed. In case more
94 * buses are required the TLB settings in board/amcc/<board>/init.S
95 * need to be altered accordingly (one bus takes 1 MB of memory space).
96 */
97 if (PCI_BUS(devfn) >= 16)
Rafal Jaworowski692519b2006-08-10 12:43:17 +020098 return 0;
99
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200100 /*
101 * Only single device/single function is supported for the primary and
102 * secondary buses of the 440SPe host bridge.
103 */
104 if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) &&
105 ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1)))
106 return 0;
Stefan Roese738815c2007-10-02 11:44:46 +0200107
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200108 address = pcie_get_base(hose, devfn);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200109 offset += devfn << 4;
110
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200111 /*
112 * Reading from configuration space of non-existing device can
113 * generate transaction errors. For the read duration we suppress
114 * assertion of machine check exceptions to avoid those.
115 */
116 pcie_dmer_disable ();
117
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200118 switch (len) {
119 case 1:
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200120 *val = in_8(hose->cfg_data + offset);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200121 break;
122 case 2:
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200123 *val = in_le16((u16 *)(hose->cfg_data + offset));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200124 break;
125 default:
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200126 *val = in_le32((u32*)(hose->cfg_data + offset));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200127 break;
128 }
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200129
130 pcie_dmer_enable ();
131
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200132 return 0;
133}
134
135static int pcie_write_config(struct pci_controller *hose, unsigned int devfn,
136 int offset, int len, u32 val) {
137
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200138 u8 *address;
Stefan Roese738815c2007-10-02 11:44:46 +0200139
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200140 /*
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200141 * Bus numbers are relative to hose->first_busno
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200142 */
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200143 devfn -= PCI_BDF(hose->first_busno, 0, 0);
Stefan Roese738815c2007-10-02 11:44:46 +0200144
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200145 /*
146 * Same constraints as in pcie_read_config().
147 */
148 if (PCI_BUS(devfn) >= 16)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200149 return 0;
150
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200151 if ((!((PCI_FUNC(devfn) == 0) && (PCI_DEV(devfn) == 0))) &&
152 ((PCI_BUS(devfn) == 0) || (PCI_BUS(devfn) == 1)))
153 return 0;
Stefan Roese738815c2007-10-02 11:44:46 +0200154
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200155 address = pcie_get_base(hose, devfn);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200156 offset += devfn << 4;
157
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200158 /*
159 * Suppress MCK exceptions, similar to pcie_read_config()
160 */
161 pcie_dmer_disable ();
162
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200163 switch (len) {
164 case 1:
165 out_8(hose->cfg_data + offset, val);
166 break;
167 case 2:
168 out_le16((u16 *)(hose->cfg_data + offset), val);
169 break;
170 default:
171 out_le32((u32 *)(hose->cfg_data + offset), val);
172 break;
173 }
Grzegorz Bernacki15ee4732007-09-07 17:46:18 +0200174
175 pcie_dmer_enable ();
176
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200177 return 0;
178}
179
180int pcie_read_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 *val)
181{
182 u32 v;
183 int rv;
184
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200185 rv = pcie_read_config(hose, dev, offset, 1, &v);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200186 *val = (u8)v;
187 return rv;
188}
189
190int pcie_read_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 *val)
191{
192 u32 v;
193 int rv;
194
195 rv = pcie_read_config(hose, dev, offset, 2, &v);
196 *val = (u16)v;
197 return rv;
198}
199
200int pcie_read_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 *val)
201{
202 u32 v;
203 int rv;
204
205 rv = pcie_read_config(hose, dev, offset, 3, &v);
206 *val = (u32)v;
207 return rv;
208}
209
210int pcie_write_config_byte(struct pci_controller *hose,pci_dev_t dev,int offset,u8 val)
211{
212 return pcie_write_config(hose,(u32)dev,offset,1,val);
213}
214
215int pcie_write_config_word(struct pci_controller *hose,pci_dev_t dev,int offset,u16 val)
216{
217 return pcie_write_config(hose,(u32)dev,offset,2,(u32 )val);
218}
219
220int pcie_write_config_dword(struct pci_controller *hose,pci_dev_t dev,int offset,u32 val)
221{
222 return pcie_write_config(hose,(u32)dev,offset,3,(u32 )val);
223}
224
Stefan Roese026f7112007-10-03 07:48:09 +0200225static void ppc4xx_setup_utl(u32 port) {
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200226
227 volatile void *utl_base = NULL;
228
229 /*
230 * Map UTL registers
231 */
232 switch (port) {
233 case 0:
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200234 mtdcr(DCRN_PEGPL_REGBAH(PCIE0), 0x0000000c);
235 mtdcr(DCRN_PEGPL_REGBAL(PCIE0), 0x20000000);
236 mtdcr(DCRN_PEGPL_REGMSK(PCIE0), 0x00007001);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200237 mtdcr(DCRN_PEGPL_SPECIAL(PCIE0), 0x68782800);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200238 break;
239
240 case 1:
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200241 mtdcr(DCRN_PEGPL_REGBAH(PCIE1), 0x0000000c);
242 mtdcr(DCRN_PEGPL_REGBAL(PCIE1), 0x20001000);
243 mtdcr(DCRN_PEGPL_REGMSK(PCIE1), 0x00007001);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200244 mtdcr(DCRN_PEGPL_SPECIAL(PCIE1), 0x68782800);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200245 break;
246
247 case 2:
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200248 mtdcr(DCRN_PEGPL_REGBAH(PCIE2), 0x0000000c);
249 mtdcr(DCRN_PEGPL_REGBAL(PCIE2), 0x20002000);
250 mtdcr(DCRN_PEGPL_REGMSK(PCIE2), 0x00007001);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200251 mtdcr(DCRN_PEGPL_SPECIAL(PCIE2), 0x68782800);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200252 break;
253 }
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200254 utl_base = (unsigned int *)(CFG_PCIE_BASE + 0x1000 * port);
Wolfgang Denk16850912006-08-27 18:10:01 +0200255
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200256 /*
257 * Set buffer allocations and then assert VRB and TXE.
258 */
259 out_be32(utl_base + PEUTL_OUTTR, 0x08000000);
260 out_be32(utl_base + PEUTL_INTR, 0x02000000);
261 out_be32(utl_base + PEUTL_OPDBSZ, 0x10000000);
262 out_be32(utl_base + PEUTL_PBBSZ, 0x53000000);
263 out_be32(utl_base + PEUTL_IPHBSZ, 0x08000000);
264 out_be32(utl_base + PEUTL_IPDBSZ, 0x10000000);
265 out_be32(utl_base + PEUTL_RCIRQEN, 0x00f00000);
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200266 out_be32(utl_base + PEUTL_PCTL, 0x80800066);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200267}
268
269static int check_error(void)
270{
271 u32 valPE0, valPE1, valPE2;
272 int err = 0;
273
274 /* SDR0_PEGPLLLCT1 reset */
275 if (!(valPE0 = SDR_READ(PESDR0_PLLLCT1) & 0x01000000)) {
276 printf("PCIE: SDR0_PEGPLLLCT1 reset error 0x%x\n", valPE0);
277 }
278
279 valPE0 = SDR_READ(PESDR0_RCSSET);
280 valPE1 = SDR_READ(PESDR1_RCSSET);
281 valPE2 = SDR_READ(PESDR2_RCSSET);
282
283 /* SDR0_PExRCSSET rstgu */
284 if (!(valPE0 & 0x01000000) ||
285 !(valPE1 & 0x01000000) ||
286 !(valPE2 & 0x01000000)) {
287 printf("PCIE: SDR0_PExRCSSET rstgu error\n");
288 err = -1;
289 }
290
291 /* SDR0_PExRCSSET rstdl */
292 if (!(valPE0 & 0x00010000) ||
293 !(valPE1 & 0x00010000) ||
294 !(valPE2 & 0x00010000)) {
295 printf("PCIE: SDR0_PExRCSSET rstdl error\n");
296 err = -1;
297 }
298
299 /* SDR0_PExRCSSET rstpyn */
300 if ((valPE0 & 0x00001000) ||
301 (valPE1 & 0x00001000) ||
302 (valPE2 & 0x00001000)) {
303 printf("PCIE: SDR0_PExRCSSET rstpyn error\n");
304 err = -1;
305 }
306
307 /* SDR0_PExRCSSET hldplb */
308 if ((valPE0 & 0x10000000) ||
309 (valPE1 & 0x10000000) ||
310 (valPE2 & 0x10000000)) {
311 printf("PCIE: SDR0_PExRCSSET hldplb error\n");
312 err = -1;
313 }
314
315 /* SDR0_PExRCSSET rdy */
316 if ((valPE0 & 0x00100000) ||
317 (valPE1 & 0x00100000) ||
318 (valPE2 & 0x00100000)) {
319 printf("PCIE: SDR0_PExRCSSET rdy error\n");
320 err = -1;
321 }
322
323 /* SDR0_PExRCSSET shutdown */
324 if ((valPE0 & 0x00000100) ||
325 (valPE1 & 0x00000100) ||
326 (valPE2 & 0x00000100)) {
327 printf("PCIE: SDR0_PExRCSSET shutdown error\n");
328 err = -1;
329 }
330 return err;
331}
332
333/*
334 * Initialize PCI Express core
335 */
Stefan Roese026f7112007-10-03 07:48:09 +0200336int ppc4xx_init_pcie(void)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200337{
338 int time_out = 20;
339
340 /* Set PLL clock receiver to LVPECL */
341 SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) | 1 << 28);
342
343 if (check_error())
344 return -1;
345
346 if (!(SDR_READ(PESDR0_PLLLCT2) & 0x10000))
347 {
348 printf("PCIE: PESDR_PLLCT2 resistance calibration failed (0x%08x)\n",
349 SDR_READ(PESDR0_PLLLCT2));
350 return -1;
351 }
352 /* De-assert reset of PCIe PLL, wait for lock */
353 SDR_WRITE(PESDR0_PLLLCT1, SDR_READ(PESDR0_PLLLCT1) & ~(1 << 24));
354 udelay(3);
355
Stefan Roese2b393b02006-08-29 08:05:15 +0200356 while (time_out) {
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200357 if (!(SDR_READ(PESDR0_PLLLCT3) & 0x10000000)) {
358 time_out--;
359 udelay(1);
360 } else
361 break;
362 }
363 if (!time_out) {
364 printf("PCIE: VCO output not locked\n");
365 return -1;
366 }
367 return 0;
368}
369
Stefan Roese2b393b02006-08-29 08:05:15 +0200370/*
Stefan Roese03d344b2007-10-03 10:38:09 +0200371 * Board-specific pcie initialization
372 * Platform code can reimplement ppc4xx_init_pcie_port_hw() if needed
373 */
374
375/*
376 * Initialize various parts of the PCI Express core for our port:
377 *
378 * - Set as a root port and enable max width
379 * (PXIE0 -> X8, PCIE1 and PCIE2 -> X4).
380 * - Set up UTL configuration.
381 * - Increase SERDES drive strength to levels suggested by AMCC.
382 * - De-assert RSTPYN, RSTDL and RSTGU.
383 *
384 * NOTICE for 440SPE revB chip: PESDRn_UTLSET2 is not set - we leave it
385 * with default setting 0x11310000. The register has new fields,
386 * PESDRn_UTLSET2[LKINE] in particular: clearing it leads to PCIE core
387 * hang.
388 */
389#if defined(CONFIG_440SPE)
390int __ppc4xx_init_pcie_port_hw(int port, int rootport)
391{
392 u32 val = 1 << 24;
393 u32 utlset1;
394
395 if (rootport) {
396 val = PTYPE_ROOT_PORT << 20;
397 utlset1 = 0x21222222;
398 } else {
399 val = PTYPE_LEGACY_ENDPOINT << 20;
400 utlset1 = 0x20222222;
401 }
402
403 if (port == 0)
404 val |= LNKW_X8 << 12;
405 else
406 val |= LNKW_X4 << 12;
407
408 SDR_WRITE(SDRN_PESDR_DLPSET(port), val);
409 SDR_WRITE(SDRN_PESDR_UTLSET1(port), utlset1);
410 if (!ppc440spe_revB())
411 SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x11000000);
412 SDR_WRITE(SDRN_PESDR_HSSL0SET1(port), 0x35000000);
413 SDR_WRITE(SDRN_PESDR_HSSL1SET1(port), 0x35000000);
414 SDR_WRITE(SDRN_PESDR_HSSL2SET1(port), 0x35000000);
415 SDR_WRITE(SDRN_PESDR_HSSL3SET1(port), 0x35000000);
416 if (port == 0) {
417 SDR_WRITE(PESDR0_HSSL4SET1, 0x35000000);
418 SDR_WRITE(PESDR0_HSSL5SET1, 0x35000000);
419 SDR_WRITE(PESDR0_HSSL6SET1, 0x35000000);
420 SDR_WRITE(PESDR0_HSSL7SET1, 0x35000000);
421 }
422 SDR_WRITE(SDRN_PESDR_RCSSET(port), (SDR_READ(SDRN_PESDR_RCSSET(port)) &
423 ~(1 << 24 | 1 << 16)) | 1 << 12);
424
425 return 0;
426}
427#endif /* CONFIG_440SPE */
428
429#if defined(CONFIG_405EX)
430int __ppc4xx_init_pcie_port_hw(int port, int rootport)
431{
432 u32 val;
433
Stefan Roese94276eb2007-10-03 14:14:58 +0200434 /*
435 * test-only:
436 * This needs some testing and perhaps changes for
437 * endpoint configuration. Probably no PHY reset at all, etc.
438 * sr, 2007-10-03
439 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200440 if (rootport)
441 val = 0x00401000;
442 else
443 val = 0x00101000;
444
445 SDR_WRITE(SDRN_PESDR_DLPSET(port), val);
446 SDR_WRITE(SDRN_PESDR_UTLSET1(port), 0x20222222);
447 SDR_WRITE(SDRN_PESDR_UTLSET2(port), 0x01110000);
448 SDR_WRITE(SDRN_PESDR_PHYSET1(port), 0x720F0000);
449 SDR_WRITE(SDRN_PESDR_PHYSET2(port), 0x70600003);
450
451 /* Assert the PE0_PHY reset */
452 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01010000);
453 udelay(1000);
454
455 /* deassert the PE0_hotreset */
456 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x01101000);
457
458 /* poll for phy !reset */
459 while (!(SDR_READ(SDRN_PESDR_PHYSTA(port)) & 0x00001000))
460 ;
461
462 /* deassert the PE0_gpl_utl_reset */
463 SDR_WRITE(SDRN_PESDR_RCSSET(port), 0x00101000);
464
465 if (port == 0)
466 mtdcr(DCRN_PEGPL_CFG(PCIE0), 0x10000000); /* guarded on */
467 else
468 mtdcr(DCRN_PEGPL_CFG(PCIE1), 0x10000000); /* guarded on */
469
470 return 0;
471}
472#endif /* CONFIG_405EX */
473
474int ppc4xx_init_pcie_port_hw(int port, int rootport)
475 __attribute__((weak, alias("__ppc4xx_init_pcie_port_hw")));
476
477/*
478 * We map PCI Express configuration access into the 512MB regions
479 *
480 * NOTICE: revB is very strict about PLB real addressess and ranges to
481 * be mapped for config space; it seems to only work with d_nnnn_nnnn
482 * range (hangs the core upon config transaction attempts when set
483 * otherwise) while revA uses c_nnnn_nnnn.
484 *
485 * For revA:
486 * PCIE0: 0xc_4000_0000
487 * PCIE1: 0xc_8000_0000
488 * PCIE2: 0xc_c000_0000
489 *
490 * For revB:
491 * PCIE0: 0xd_0000_0000
492 * PCIE1: 0xd_2000_0000
493 * PCIE2: 0xd_4000_0000
494 *
495 * For 405EX:
496 * PCIE0: 0xa000_0000
497 * PCIE1: 0xc000_0000
498 */
499static inline u64 ppc4xx_get_cfgaddr(int port)
500{
501#if defined(CONFIG_405EX)
502 if (port == 0)
503 return (u64)CFG_PCIE0_CFGBASE;
504 else
505 return (u64)CFG_PCIE1_CFGBASE;
506#endif
507#if defined(CONFIG_440SPE)
508 if (ppc440spe_revB()) {
509 switch (port) {
510 default: /* to satisfy compiler */
511 case 0:
512 return 0x0000000d00000000ULL;
513 case 1:
514 return 0x0000000d20000000ULL;
515 case 2:
516 return 0x0000000d40000000ULL;
517 }
518 } else {
519 switch (port) {
520 default: /* to satisfy compiler */
521 case 0:
522 return 0x0000000c40000000ULL;
523 case 1:
524 return 0x0000000c80000000ULL;
525 case 2:
526 return 0x0000000cc0000000ULL;
527 }
528 }
529#endif
530}
531
532/*
533 * 4xx boards as end point and root point setup
Stefan Roese2b393b02006-08-29 08:05:15 +0200534 * and
535 * testing inbound and out bound windows
536 *
Stefan Roese03d344b2007-10-03 10:38:09 +0200537 * 4xx boards can be plugged into another 4xx boards or you can get PCI-E
Stefan Roese2b393b02006-08-29 08:05:15 +0200538 * cable which can be used to setup loop back from one port to another port.
539 * Please rememeber that unless there is a endpoint plugged in to root port it
540 * will not initialize. It is the same in case of endpoint , unless there is
541 * root port attached it will not initialize.
542 *
543 * In this release of software all the PCI-E ports are configured as either
544 * endpoint or rootpoint.In future we will have support for selective ports
545 * setup as endpoint and root point in single board.
546 *
547 * Once your board came up as root point , you can verify by reading
548 * /proc/bus/pci/devices. Where you can see the configuration registers
549 * of end point device attached to the port.
550 *
Stefan Roese03d344b2007-10-03 10:38:09 +0200551 * Enpoint cofiguration can be verified by connecting 4xx board to any
552 * host or another 4xx board. Then try to scan the device. In case of
Stefan Roese2b393b02006-08-29 08:05:15 +0200553 * linux use "lspci" or appripriate os command.
554 *
Stefan Roese03d344b2007-10-03 10:38:09 +0200555 * How do I verify the inbound and out bound windows ? (4xx to 4xx)
Stefan Roese2b393b02006-08-29 08:05:15 +0200556 * in this configuration inbound and outbound windows are setup to access
557 * sram memroy area. SRAM is at 0x4 0000 0000 , on PLB bus. This address
558 * is mapped at 0x90000000. From u-boot prompt write data 0xb000 0000,
559 * This is waere your POM(PLB out bound memory window) mapped. then
Stefan Roese03d344b2007-10-03 10:38:09 +0200560 * read the data from other 4xx board's u-boot prompt at address
Stefan Roese2b393b02006-08-29 08:05:15 +0200561 * 0x9000 0000(SRAM). Data should match.
562 * In case of inbound , write data to u-boot command prompt at 0xb000 0000
563 * which is mapped to 0x4 0000 0000. Now on rootpoint yucca u-boot prompt check
564 * data at 0x9000 0000(SRAM).Data should match.
565 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200566int ppc4xx_init_pcie_port(int port, int rootport)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200567{
568 static int core_init;
569 volatile u32 val = 0;
570 int attempts;
Stefan Roese03d344b2007-10-03 10:38:09 +0200571 u64 addr;
572 u32 low, high;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200573
574 if (!core_init) {
575 ++core_init;
Stefan Roese026f7112007-10-03 07:48:09 +0200576 if (ppc4xx_init_pcie())
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200577 return -1;
578 }
579
580 /*
Stefan Roese03d344b2007-10-03 10:38:09 +0200581 * Initialize various parts of the PCI Express core for our port
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200582 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200583 ppc4xx_init_pcie_port_hw(port, rootport);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200584
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200585 /*
586 * Notice: the following delay has critical impact on device
587 * initialization - if too short (<50ms) the link doesn't get up.
588 */
589 mdelay(100);
590
Stefan Roese6d952892007-10-03 21:16:32 +0200591 val = SDR_READ(SDRN_PESDR_RCSSTS(port));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200592 if (val & (1 << 20)) {
593 printf("PCIE%d: PGRST failed %08x\n", port, val);
594 return -1;
595 }
596
597 /*
598 * Verify link is up
599 */
Stefan Roese6d952892007-10-03 21:16:32 +0200600 val = SDR_READ(SDRN_PESDR_LOOP(port));
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200601 if (!(val & 0x00001000)) {
602 printf("PCIE%d: link is not up.\n", port);
603 return -1;
604 }
605
606 /*
607 * Setup UTL registers - but only on revA!
608 * We use default settings for revB chip.
609 */
610 if (!ppc440spe_revB())
Stefan Roese026f7112007-10-03 07:48:09 +0200611 ppc4xx_setup_utl(port);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200612
613 /*
614 * We map PCI Express configuration access into the 512MB regions
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200615 */
Stefan Roese03d344b2007-10-03 10:38:09 +0200616 addr = ppc4xx_get_cfgaddr(port);
617 low = (u32)(addr & 0x00000000ffffffff);
618 high = (u32)(addr >> 32);
Rafal Jaworowski36b904a2006-08-11 12:35:52 +0200619
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200620 switch (port) {
621 case 0:
Stefan Roese03d344b2007-10-03 10:38:09 +0200622 mtdcr(DCRN_PEGPL_CFGBAH(PCIE0), high);
623 mtdcr(DCRN_PEGPL_CFGBAL(PCIE0), low);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200624 mtdcr(DCRN_PEGPL_CFGMSK(PCIE0), 0xe0000001); /* 512MB region, valid */
625 break;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200626 case 1:
Stefan Roese03d344b2007-10-03 10:38:09 +0200627 mtdcr(DCRN_PEGPL_CFGBAH(PCIE1), high);
628 mtdcr(DCRN_PEGPL_CFGBAL(PCIE1), low);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200629 mtdcr(DCRN_PEGPL_CFGMSK(PCIE1), 0xe0000001); /* 512MB region, valid */
630 break;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200631 case 2:
Stefan Roese03d344b2007-10-03 10:38:09 +0200632 mtdcr(DCRN_PEGPL_CFGBAH(PCIE2), high);
633 mtdcr(DCRN_PEGPL_CFGBAL(PCIE2), low);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200634 mtdcr(DCRN_PEGPL_CFGMSK(PCIE2), 0xe0000001); /* 512MB region, valid */
635 break;
636 }
637
638 /*
639 * Check for VC0 active and assert RDY.
640 */
641 attempts = 10;
Stefan Roese6d952892007-10-03 21:16:32 +0200642 while(!(SDR_READ(SDRN_PESDR_RCSSTS(port)) & (1 << 16))) {
Stefan Roese03d344b2007-10-03 10:38:09 +0200643 if (!(attempts--)) {
644 printf("PCIE%d: VC0 not active\n", port);
645 return -1;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200646 }
Stefan Roese03d344b2007-10-03 10:38:09 +0200647 mdelay(1000);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200648 }
Stefan Roese6d952892007-10-03 21:16:32 +0200649 SDR_WRITE(SDRN_PESDR_RCSSET(port),
650 SDR_READ(SDRN_PESDR_RCSSET(port)) | 1 << 20);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200651 mdelay(100);
652
653 return 0;
654}
655
Stefan Roese03d344b2007-10-03 10:38:09 +0200656int ppc4xx_init_pcie_rootport(int port)
657{
658 return ppc4xx_init_pcie_port(port, 1);
659}
660
Stefan Roese026f7112007-10-03 07:48:09 +0200661int ppc4xx_init_pcie_endport(int port)
Stefan Roese2b393b02006-08-29 08:05:15 +0200662{
Stefan Roese03d344b2007-10-03 10:38:09 +0200663 return ppc4xx_init_pcie_port(port, 0);
Stefan Roese2b393b02006-08-29 08:05:15 +0200664}
665
Stefan Roese026f7112007-10-03 07:48:09 +0200666void ppc4xx_setup_pcie_rootpoint(struct pci_controller *hose, int port)
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200667{
668 volatile void *mbase = NULL;
Stefan Roese2b393b02006-08-29 08:05:15 +0200669 volatile void *rmbase = NULL;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200670
671 pci_set_ops(hose,
Stefan Roese03d344b2007-10-03 10:38:09 +0200672 pcie_read_config_byte,
673 pcie_read_config_word,
674 pcie_read_config_dword,
675 pcie_write_config_byte,
676 pcie_write_config_word,
677 pcie_write_config_dword);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200678
Stefan Roese2b393b02006-08-29 08:05:15 +0200679 switch (port) {
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200680 case 0:
681 mbase = (u32 *)CFG_PCIE0_XCFGBASE;
Stefan Roese2b393b02006-08-29 08:05:15 +0200682 rmbase = (u32 *)CFG_PCIE0_CFGBASE;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200683 hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE;
684 break;
685 case 1:
686 mbase = (u32 *)CFG_PCIE1_XCFGBASE;
Stefan Roese2b393b02006-08-29 08:05:15 +0200687 rmbase = (u32 *)CFG_PCIE1_CFGBASE;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200688 hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE;
689 break;
690 case 2:
691 mbase = (u32 *)CFG_PCIE2_XCFGBASE;
Stefan Roese2b393b02006-08-29 08:05:15 +0200692 rmbase = (u32 *)CFG_PCIE2_CFGBASE;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200693 hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE;
694 break;
695 }
696
697 /*
698 * Set bus numbers on our root port
699 */
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200700 out_8((u8 *)mbase + PCI_PRIMARY_BUS, 0);
701 out_8((u8 *)mbase + PCI_SECONDARY_BUS, 1);
702 out_8((u8 *)mbase + PCI_SUBORDINATE_BUS, 1);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200703
704 /*
705 * Set up outbound translation to hose->mem_space from PLB
706 * addresses at an offset of 0xd_0000_0000. We set the low
707 * bits of the mask to 11 to turn off splitting into 8
708 * subregions and to enable the outbound translation.
709 */
710 out_le32(mbase + PECFG_POM0LAH, 0x00000000);
Stefan Roese2b393b02006-08-29 08:05:15 +0200711 out_le32(mbase + PECFG_POM0LAL, 0x00000000);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200712
713 switch (port) {
714 case 0:
715 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), 0x0000000d);
716 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200717 port * CFG_PCIE_MEMSIZE);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200718 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff);
719 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0),
Stefan Roese03d344b2007-10-03 10:38:09 +0200720 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200721 break;
722 case 1:
723 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), 0x0000000d);
Stefan Roese03d344b2007-10-03 10:38:09 +0200724 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE +
725 port * CFG_PCIE_MEMSIZE);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200726 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff);
727 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1),
Stefan Roese03d344b2007-10-03 10:38:09 +0200728 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200729 break;
730 case 2:
731 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), 0x0000000d);
Stefan Roese03d344b2007-10-03 10:38:09 +0200732 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE +
733 port * CFG_PCIE_MEMSIZE);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200734 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff);
735 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2),
Stefan Roese03d344b2007-10-03 10:38:09 +0200736 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200737 break;
738 }
739
740 /* Set up 16GB inbound memory window at 0 */
741 out_le32(mbase + PCI_BASE_ADDRESS_0, 0);
742 out_le32(mbase + PCI_BASE_ADDRESS_1, 0);
743 out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc);
744 out_le32(mbase + PECFG_BAR0LMPA, 0);
Stefan Roese2b393b02006-08-29 08:05:15 +0200745
746 out_le32(mbase + PECFG_PIM01SAH, 0xffff0000);
747 out_le32(mbase + PECFG_PIM01SAL, 0x00000000);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200748 out_le32(mbase + PECFG_PIM0LAL, 0);
749 out_le32(mbase + PECFG_PIM0LAH, 0);
Stefan Roese2b393b02006-08-29 08:05:15 +0200750 out_le32(mbase + PECFG_PIM1LAL, 0x00000000);
751 out_le32(mbase + PECFG_PIM1LAH, 0x00000004);
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200752 out_le32(mbase + PECFG_PIMEN, 0x1);
753
754 /* Enable I/O, Mem, and Busmaster cycles */
755 out_le16((u16 *)(mbase + PCI_COMMAND),
756 in_le16((u16 *)(mbase + PCI_COMMAND)) |
757 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
Stefan Roese738815c2007-10-02 11:44:46 +0200758
Grzegorz Bernacki7f191392007-09-07 18:20:23 +0200759 /* Set Device and Vendor Id */
760 switch (port) {
761 case 0:
762 out_le16(mbase + 0x200, 0xaaa0);
763 out_le16(mbase + 0x202, 0xbed0);
764 break;
765 case 1:
766 out_le16(mbase + 0x200, 0xaaa1);
767 out_le16(mbase + 0x202, 0xbed1);
768 break;
769 case 2:
770 out_le16(mbase + 0x200, 0xaaa2);
771 out_le16(mbase + 0x202, 0xbed2);
772 break;
773 default:
774 out_le16(mbase + 0x200, 0xaaa3);
775 out_le16(mbase + 0x202, 0xbed3);
776 }
777
778 /* Set Class Code to PCI-PCI bridge and Revision Id to 1 */
779 out_le32(mbase + 0x208, 0x06040001);
780
Stefan Roese03d344b2007-10-03 10:38:09 +0200781 printf("PCIE:%d successfully set as rootpoint\n", port);
Stefan Roese2b393b02006-08-29 08:05:15 +0200782}
783
Stefan Roese026f7112007-10-03 07:48:09 +0200784int ppc4xx_setup_pcie_endpoint(struct pci_controller *hose, int port)
Stefan Roese2b393b02006-08-29 08:05:15 +0200785{
786 volatile void *mbase = NULL;
787 int attempts = 0;
788
789 pci_set_ops(hose,
790 pcie_read_config_byte,
791 pcie_read_config_word,
792 pcie_read_config_dword,
793 pcie_write_config_byte,
794 pcie_write_config_word,
795 pcie_write_config_dword);
796
797 switch (port) {
798 case 0:
799 mbase = (u32 *)CFG_PCIE0_XCFGBASE;
800 hose->cfg_data = (u8 *)CFG_PCIE0_CFGBASE;
801 break;
802 case 1:
803 mbase = (u32 *)CFG_PCIE1_XCFGBASE;
804 hose->cfg_data = (u8 *)CFG_PCIE1_CFGBASE;
805 break;
806 case 2:
807 mbase = (u32 *)CFG_PCIE2_XCFGBASE;
808 hose->cfg_data = (u8 *)CFG_PCIE2_CFGBASE;
809 break;
810 }
811
812 /*
813 * Set up outbound translation to hose->mem_space from PLB
814 * addresses at an offset of 0xd_0000_0000. We set the low
815 * bits of the mask to 11 to turn off splitting into 8
816 * subregions and to enable the outbound translation.
817 */
818 out_le32(mbase + PECFG_POM0LAH, 0x00001ff8);
819 out_le32(mbase + PECFG_POM0LAL, 0x00001000);
820
821 switch (port) {
822 case 0:
823 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE0), 0x0000000d);
824 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE0), CFG_PCIE_MEMBASE +
Stefan Roese03d344b2007-10-03 10:38:09 +0200825 port * CFG_PCIE_MEMSIZE);
Stefan Roese2b393b02006-08-29 08:05:15 +0200826 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE0), 0x7fffffff);
827 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE0),
Stefan Roese03d344b2007-10-03 10:38:09 +0200828 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese2b393b02006-08-29 08:05:15 +0200829 break;
830 case 1:
831 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE1), 0x0000000d);
Stefan Roese03d344b2007-10-03 10:38:09 +0200832 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE1), CFG_PCIE_MEMBASE +
833 port * CFG_PCIE_MEMSIZE);
Stefan Roese2b393b02006-08-29 08:05:15 +0200834 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE1), 0x7fffffff);
835 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE1),
Stefan Roese03d344b2007-10-03 10:38:09 +0200836 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese2b393b02006-08-29 08:05:15 +0200837 break;
838 case 2:
839 mtdcr(DCRN_PEGPL_OMR1BAH(PCIE2), 0x0000000d);
Stefan Roese03d344b2007-10-03 10:38:09 +0200840 mtdcr(DCRN_PEGPL_OMR1BAL(PCIE2), CFG_PCIE_MEMBASE +
841 port * CFG_PCIE_MEMSIZE);
Stefan Roese2b393b02006-08-29 08:05:15 +0200842 mtdcr(DCRN_PEGPL_OMR1MSKH(PCIE2), 0x7fffffff);
843 mtdcr(DCRN_PEGPL_OMR1MSKL(PCIE2),
Stefan Roese03d344b2007-10-03 10:38:09 +0200844 ~(CFG_PCIE_MEMSIZE - 1) | 3);
Stefan Roese2b393b02006-08-29 08:05:15 +0200845 break;
846 }
847
848 /* Set up 16GB inbound memory window at 0 */
849 out_le32(mbase + PCI_BASE_ADDRESS_0, 0);
850 out_le32(mbase + PCI_BASE_ADDRESS_1, 0);
851 out_le32(mbase + PECFG_BAR0HMPA, 0x7fffffc);
852 out_le32(mbase + PECFG_BAR0LMPA, 0);
853 out_le32(mbase + PECFG_PIM0LAL, 0x00000000);
854 out_le32(mbase + PECFG_PIM0LAH, 0x00000004); /* pointing to SRAM */
855 out_le32(mbase + PECFG_PIMEN, 0x1);
856
857 /* Enable I/O, Mem, and Busmaster cycles */
858 out_le16((u16 *)(mbase + PCI_COMMAND),
Stefan Roese03d344b2007-10-03 10:38:09 +0200859 in_le16((u16 *)(mbase + PCI_COMMAND)) |
860 PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER);
Stefan Roese2b393b02006-08-29 08:05:15 +0200861 out_le16(mbase + 0x200,0xcaad); /* Setting vendor ID */
862 out_le16(mbase + 0x202,0xfeed); /* Setting device ID */
Stefan Roese03d344b2007-10-03 10:38:09 +0200863
Stefan Roese2b393b02006-08-29 08:05:15 +0200864 attempts = 10;
Stefan Roese6d952892007-10-03 21:16:32 +0200865 while(!(SDR_READ(SDRN_PESDR_RCSSTS(port)) & (1 << 8))) {
Stefan Roese03d344b2007-10-03 10:38:09 +0200866 if (!(attempts--)) {
867 printf("PCIE%d: BME not active\n", port);
868 return -1;
Stefan Roese2b393b02006-08-29 08:05:15 +0200869 }
Stefan Roese03d344b2007-10-03 10:38:09 +0200870 mdelay(1000);
Stefan Roese2b393b02006-08-29 08:05:15 +0200871 }
Stefan Roese03d344b2007-10-03 10:38:09 +0200872
Stefan Roese2b393b02006-08-29 08:05:15 +0200873 printf("PCIE:%d successfully set as endpoint\n",port);
874
875 return 0;
Rafal Jaworowski692519b2006-08-10 12:43:17 +0200876}
Stefan Roese5fb692c2007-01-18 10:25:34 +0100877#endif /* CONFIG_440SPE && CONFIG_PCI */