kernel: bump 5.15 to 5.15.100
[openwrt/openwrt.git] / target / linux / lantiq / patches-5.15 / 0001-MIPS-lantiq-add-pcie-driver.patch
1 From 6f933347d0b4ed02d9534f5fa07f7b99f13eeaa1 Mon Sep 17 00:00:00 2001
2 From: John Crispin <blogic@openwrt.org>
3 Date: Thu, 7 Aug 2014 18:12:28 +0200
4 Subject: [PATCH 01/36] MIPS: lantiq: add pcie driver
5
6 Signed-off-by: John Crispin <blogic@openwrt.org>
7 ---
8 arch/mips/lantiq/Kconfig | 10 +
9 arch/mips/lantiq/xway/sysctrl.c | 2 +
10 arch/mips/pci/Makefile | 2 +
11 arch/mips/pci/fixup-lantiq-pcie.c | 82 +++
12 arch/mips/pci/fixup-lantiq.c | 5 +-
13 arch/mips/pci/ifxmips_pci_common.h | 57 ++
14 arch/mips/pci/ifxmips_pcie.c | 1099 ++++++++++++++++++++++++++++++
15 arch/mips/pci/ifxmips_pcie.h | 135 ++++
16 arch/mips/pci/ifxmips_pcie_ar10.h | 290 ++++++++
17 arch/mips/pci/ifxmips_pcie_msi.c | 392 +++++++++++
18 arch/mips/pci/ifxmips_pcie_phy.c | 478 +++++++++++++
19 arch/mips/pci/ifxmips_pcie_pm.c | 176 +++++
20 arch/mips/pci/ifxmips_pcie_pm.h | 36 +
21 arch/mips/pci/ifxmips_pcie_reg.h | 1001 +++++++++++++++++++++++++++
22 arch/mips/pci/ifxmips_pcie_vr9.h | 271 ++++++++
23 arch/mips/pci/pci.c | 25 +
24 arch/mips/pci/pcie-lantiq.h | 1305 ++++++++++++++++++++++++++++++++++++
25 drivers/pci/pcie/aer/Kconfig | 2 +-
26 include/linux/pci.h | 2 +
27 include/linux/pci_ids.h | 6 +
28 20 files changed, 5374 insertions(+), 2 deletions(-)
29 create mode 100644 arch/mips/pci/fixup-lantiq-pcie.c
30 create mode 100644 arch/mips/pci/ifxmips_pci_common.h
31 create mode 100644 arch/mips/pci/ifxmips_pcie.c
32 create mode 100644 arch/mips/pci/ifxmips_pcie.h
33 create mode 100644 arch/mips/pci/ifxmips_pcie_ar10.h
34 create mode 100644 arch/mips/pci/ifxmips_pcie_msi.c
35 create mode 100644 arch/mips/pci/ifxmips_pcie_phy.c
36 create mode 100644 arch/mips/pci/ifxmips_pcie_pm.c
37 create mode 100644 arch/mips/pci/ifxmips_pcie_pm.h
38 create mode 100644 arch/mips/pci/ifxmips_pcie_reg.h
39 create mode 100644 arch/mips/pci/ifxmips_pcie_vr9.h
40 create mode 100644 arch/mips/pci/pcie-lantiq.h
41
42 --- a/arch/mips/lantiq/Kconfig
43 +++ b/arch/mips/lantiq/Kconfig
44 @@ -20,6 +20,7 @@ config SOC_XWAY
45 bool "XWAY"
46 select SOC_TYPE_XWAY
47 select HAVE_PCI
48 + select ARCH_SUPPORTS_MSI
49 select MFD_SYSCON
50 select MFD_CORE
51
52 @@ -52,4 +53,13 @@ config PCI_LANTIQ
53 bool "PCI Support"
54 depends on SOC_XWAY && PCI
55
56 +config PCIE_LANTIQ
57 + bool "PCIE Support"
58 + depends on SOC_XWAY && PCI
59 +
60 +config PCIE_LANTIQ_MSI
61 + bool
62 + depends on PCIE_LANTIQ && PCI_MSI
63 + default y
64 +
65 endif
66 --- a/arch/mips/pci/Makefile
67 +++ b/arch/mips/pci/Makefile
68 @@ -43,6 +43,8 @@ obj-$(CONFIG_PCI_LANTIQ) += pci-lantiq.o
69 obj-$(CONFIG_SOC_MT7620) += pci-mt7620.o
70 obj-$(CONFIG_SOC_RT288X) += pci-rt2880.o
71 obj-$(CONFIG_SOC_RT3883) += pci-rt3883.o
72 +obj-$(CONFIG_PCIE_LANTIQ) += ifxmips_pcie_phy.o ifxmips_pcie.o fixup-lantiq-pcie.o
73 +obj-$(CONFIG_PCIE_LANTIQ_MSI) += pcie-lantiq-msi.o
74 obj-$(CONFIG_TANBAC_TB0219) += fixup-tb0219.o
75 obj-$(CONFIG_TANBAC_TB0226) += fixup-tb0226.o
76 obj-$(CONFIG_TANBAC_TB0287) += fixup-tb0287.o
77 --- /dev/null
78 +++ b/arch/mips/pci/fixup-lantiq-pcie.c
79 @@ -0,0 +1,74 @@
80 +/******************************************************************************
81 +**
82 +** FILE NAME : ifxmips_fixup_pcie.c
83 +** PROJECT : IFX UEIP for VRX200
84 +** MODULES : PCIe
85 +**
86 +** DATE : 02 Mar 2009
87 +** AUTHOR : Lei Chuanhua
88 +** DESCRIPTION : PCIe Root Complex Driver
89 +** COPYRIGHT : Copyright (c) 2009
90 +** Infineon Technologies AG
91 +** Am Campeon 1-12, 85579 Neubiberg, Germany
92 +**
93 +** This program is free software; you can redistribute it and/or modify
94 +** it under the terms of the GNU General Public License as published by
95 +** the Free Software Foundation; either version 2 of the License, or
96 +** (at your option) any later version.
97 +** HISTORY
98 +** $Version $Date $Author $Comment
99 +** 0.0.1 17 Mar,2009 Lei Chuanhua Initial version
100 +*******************************************************************************/
101 +/*!
102 + \file ifxmips_fixup_pcie.c
103 + \ingroup IFX_PCIE
104 + \brief PCIe Fixup functions source file
105 +*/
106 +#include <linux/pci.h>
107 +#include <linux/pci_regs.h>
108 +#include <linux/pci_ids.h>
109 +
110 +#include <lantiq_soc.h>
111 +
112 +#include "pcie-lantiq.h"
113 +
114 +static void
115 +ifx_pcie_fixup_resource(struct pci_dev *dev)
116 +{
117 + u32 reg;
118 +
119 + IFX_PCIE_PRINT(PCIE_MSG_FIXUP, "%s dev %s: enter\n", __func__, pci_name(dev));
120 +
121 + printk("%s: fixup host controller %s (%04x:%04x)\n",
122 + __func__, pci_name(dev), dev->vendor, dev->device);
123 +
124 + /* Setup COMMAND register */
125 + reg = PCI_COMMAND_IO | PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER /* |
126 + PCI_COMMAND_INTX_DISABLE */| PCI_COMMAND_SERR;
127 + pci_write_config_word(dev, PCI_COMMAND, reg);
128 + IFX_PCIE_PRINT(PCIE_MSG_FIXUP, "%s dev %s: exit\n", __func__, pci_name(dev));
129 +}
130 +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INFINEON, PCI_DEVICE_ID_INFINEON_PCIE, ifx_pcie_fixup_resource);
131 +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LANTIQ, PCI_VENDOR_ID_LANTIQ, ifx_pcie_fixup_resource);
132 +
133 +static void
134 +ifx_pcie_rc_class_early_fixup(struct pci_dev *dev)
135 +{
136 + IFX_PCIE_PRINT(PCIE_MSG_FIXUP, "%s dev %s: enter\n", __func__, pci_name(dev));
137 +
138 + if (dev->devfn == PCI_DEVFN(0, 0) &&
139 + (dev->class >> 8) == PCI_CLASS_BRIDGE_HOST) {
140 +
141 + dev->class = (PCI_CLASS_BRIDGE_PCI << 8) | (dev->class & 0xff);
142 +
143 + printk(KERN_INFO "%s: fixed pcie host bridge to pci-pci bridge\n", __func__);
144 + }
145 + IFX_PCIE_PRINT(PCIE_MSG_FIXUP, "%s dev %s: exit\n", __func__, pci_name(dev));
146 + mdelay(10);
147 +}
148 +
149 +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_INFINEON, PCI_DEVICE_ID_INFINEON_PCIE,
150 + ifx_pcie_rc_class_early_fixup);
151 +
152 +DECLARE_PCI_FIXUP_EARLY(PCI_VENDOR_ID_LANTIQ, PCI_DEVICE_ID_LANTIQ_PCIE,
153 + ifx_pcie_rc_class_early_fixup);
154 --- a/arch/mips/pci/fixup-lantiq.c
155 +++ b/arch/mips/pci/fixup-lantiq.c
156 @@ -6,12 +6,19 @@
157
158 #include <linux/of_irq.h>
159 #include <linux/of_pci.h>
160 +#include <linux/pci.h>
161 +#include "ifxmips_pci_common.h"
162
163 int (*ltq_pci_plat_arch_init)(struct pci_dev *dev) = NULL;
164 int (*ltq_pci_plat_dev_init)(struct pci_dev *dev) = NULL;
165
166 int pcibios_plat_dev_init(struct pci_dev *dev)
167 {
168 +#ifdef CONFIG_PCIE_LANTIQ
169 + if (pci_find_capability(dev, PCI_CAP_ID_EXP))
170 + ifx_pcie_bios_plat_dev_init(dev);
171 +#endif
172 +
173 if (ltq_pci_plat_arch_init)
174 return ltq_pci_plat_arch_init(dev);
175
176 @@ -23,5 +30,10 @@ int pcibios_plat_dev_init(struct pci_dev
177
178 int pcibios_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
179 {
180 +#ifdef CONFIG_PCIE_LANTIQ
181 + if (pci_find_capability(dev, PCI_CAP_ID_EXP))
182 + return ifx_pcie_bios_map_irq(dev, slot, pin);
183 +#endif
184 +
185 return of_irq_parse_and_map_pci(dev, slot, pin);
186 }
187 --- /dev/null
188 +++ b/arch/mips/pci/ifxmips_pci_common.h
189 @@ -0,0 +1,53 @@
190 +/******************************************************************************
191 +**
192 +** FILE NAME : ifxmips_pci_common.h
193 +** PROJECT : IFX UEIP
194 +** MODULES : PCI subsystem
195 +**
196 +** DATE : 30 June 2009
197 +** AUTHOR : Lei Chuanhua
198 +** DESCRIPTION : PCIe Root Complex Driver
199 +** COPYRIGHT : Copyright (c) 2009
200 +** Infineon Technologies AG
201 +** Am Campeon 1-12, 85579 Neubiberg, Germany
202 +**
203 +** This program is free software; you can redistribute it and/or modify
204 +** it under the terms of the GNU General Public License as published by
205 +** the Free Software Foundation; either version 2 of the License, or
206 +** (at your option) any later version.
207 +** HISTORY
208 +** $Version $Date $Author $Comment
209 +** 0.0.1 30 June,2009 Lei Chuanhua Initial version
210 +*******************************************************************************/
211 +
212 +#ifndef IFXMIPS_PCI_COMMON_H
213 +#define IFXMIPS_PCI_COMMON_H
214 +#include <linux/version.h>
215 +/*!
216 + \defgroup IFX_PCI_COM IFX PCI/PCIe common parts for OS integration
217 + \brief PCI/PCIe common parts
218 +*/
219 +
220 +/*!
221 + \defgroup IFX_PCI_COM_OS OS APIs
222 + \ingroup IFX_PCI_COM
223 + \brief PCI/PCIe bus driver OS interface functions
224 +*/
225 +/*!
226 + \file ifxmips_pci_common.h
227 + \ingroup IFX_PCI_COM
228 + \brief PCI/PCIe bus driver common OS header file
229 +*/
230 +#define IFX_PCI_CONST const
231 +#ifdef CONFIG_IFX_PCI
232 +extern int ifx_pci_bios_map_irq(IFX_PCI_CONST struct pci_dev *dev, u8 slot, u8 pin);
233 +extern int ifx_pci_bios_plat_dev_init(struct pci_dev *dev);
234 +#endif /* COFNIG_IFX_PCI */
235 +
236 +#ifdef CONFIG_PCIE_LANTIQ
237 +extern int ifx_pcie_bios_map_irq(IFX_PCI_CONST struct pci_dev *dev, u8 slot, u8 pin);
238 +extern int ifx_pcie_bios_plat_dev_init(struct pci_dev *dev);
239 +#endif
240 +
241 +#endif /* IFXMIPS_PCI_COMMON_H */
242 +
243 --- /dev/null
244 +++ b/arch/mips/pci/ifxmips_pcie.c
245 @@ -0,0 +1,1091 @@
246 +/*
247 + * This program is free software; you can redistribute it and/or modify it
248 + * under the terms of the GNU General Public License version 2 as published
249 + * by the Free Software Foundation.
250 + *
251 + * Copyright (C) 2009 Lei Chuanhua <chuanhua.lei@infineon.com>
252 + * Copyright (C) 2013 John Crispin <blogic@openwrt.org>
253 + */
254 +
255 +#include <linux/types.h>
256 +#include <linux/pci.h>
257 +#include <linux/kernel.h>
258 +#include <linux/init.h>
259 +#include <linux/delay.h>
260 +#include <linux/mm.h>
261 +#include <asm/paccess.h>
262 +#include <linux/pci.h>
263 +#include <linux/pci_regs.h>
264 +#include <linux/module.h>
265 +
266 +#include "ifxmips_pcie.h"
267 +#include "ifxmips_pcie_reg.h"
268 +
269 +/* Enable 32bit io due to its mem mapped io nature */
270 +#define IFX_PCIE_ERROR_INT
271 +#define IFX_PCIE_IO_32BIT
272 +
273 +#define IFX_PCIE_IR (INT_NUM_IM4_IRL0 + 25)
274 +#define IFX_PCIE_INTA (INT_NUM_IM4_IRL0 + 8)
275 +#define IFX_PCIE_INTB (INT_NUM_IM4_IRL0 + 9)
276 +#define IFX_PCIE_INTC (INT_NUM_IM4_IRL0 + 10)
277 +#define IFX_PCIE_INTD (INT_NUM_IM4_IRL0 + 11)
278 +#define MS(_v, _f) (((_v) & (_f)) >> _f##_S)
279 +#define SM(_v, _f) (((_v) << _f##_S) & (_f))
280 +#define IFX_REG_SET_BIT(_f, _r) \
281 + IFX_REG_W32((IFX_REG_R32((_r)) &~ (_f)) | (_f), (_r))
282 +
283 +#define IFX_PCIE_LTSSM_ENABLE_TIMEOUT 10
284 +
285 +static DEFINE_SPINLOCK(ifx_pcie_lock);
286 +
287 +u32 g_pcie_debug_flag = PCIE_MSG_ANY & (~PCIE_MSG_CFG);
288 +
289 +static ifx_pcie_irq_t pcie_irqs[IFX_PCIE_CORE_NR] = {
290 + {
291 + .ir_irq = {
292 + .irq = IFX_PCIE_IR,
293 + .name = "ifx_pcie_rc0",
294 + },
295 +
296 + .legacy_irq = {
297 + {
298 + .irq_bit = PCIE_IRN_INTA,
299 + .irq = IFX_PCIE_INTA,
300 + },
301 + {
302 + .irq_bit = PCIE_IRN_INTB,
303 + .irq = IFX_PCIE_INTB,
304 + },
305 + {
306 + .irq_bit = PCIE_IRN_INTC,
307 + .irq = IFX_PCIE_INTC,
308 + },
309 + {
310 + .irq_bit = PCIE_IRN_INTD,
311 + .irq = IFX_PCIE_INTD,
312 + },
313 + },
314 + },
315 +
316 +};
317 +
318 +void ifx_pcie_debug(const char *fmt, ...)
319 +{
320 + static char buf[256] = {0}; /* XXX */
321 + va_list ap;
322 +
323 + va_start(ap, fmt);
324 + vsnprintf(buf, sizeof(buf), fmt, ap);
325 + va_end(ap);
326 +
327 + printk("%s", buf);
328 +}
329 +
330 +
331 +static inline int pcie_ltssm_enable(int pcie_port)
332 +{
333 + int i;
334 +
335 + /* Enable LTSSM */
336 + IFX_REG_W32(PCIE_RC_CCR_LTSSM_ENABLE, PCIE_RC_CCR(pcie_port));
337 +
338 + /* Wait for the link to come up */
339 + for (i = 0; i < IFX_PCIE_LTSSM_ENABLE_TIMEOUT; i++) {
340 + if (!(IFX_REG_R32(PCIE_LCTLSTS(pcie_port)) & PCIE_LCTLSTS_RETRAIN_PENDING))
341 + return 0;
342 + udelay(10);
343 + }
344 +
345 + printk("%s link timeout!!!!!\n", __func__);
346 + return -1;
347 +}
348 +
349 +static inline void pcie_status_register_clear(int pcie_port)
350 +{
351 + IFX_REG_W32(0, PCIE_RC_DR(pcie_port));
352 + IFX_REG_W32(0, PCIE_PCICMDSTS(pcie_port));
353 + IFX_REG_W32(0, PCIE_DCTLSTS(pcie_port));
354 + IFX_REG_W32(0, PCIE_LCTLSTS(pcie_port));
355 + IFX_REG_W32(0, PCIE_SLCTLSTS(pcie_port));
356 + IFX_REG_W32(0, PCIE_RSTS(pcie_port));
357 + IFX_REG_W32(0, PCIE_UES_R(pcie_port));
358 + IFX_REG_W32(0, PCIE_UEMR(pcie_port));
359 + IFX_REG_W32(0, PCIE_UESR(pcie_port));
360 + IFX_REG_W32(0, PCIE_CESR(pcie_port));
361 + IFX_REG_W32(0, PCIE_CEMR(pcie_port));
362 + IFX_REG_W32(0, PCIE_RESR(pcie_port));
363 + IFX_REG_W32(0, PCIE_PVCCRSR(pcie_port));
364 + IFX_REG_W32(0, PCIE_VC0_RSR0(pcie_port));
365 + IFX_REG_W32(0, PCIE_TPFCS(pcie_port));
366 + IFX_REG_W32(0, PCIE_TNPFCS(pcie_port));
367 + IFX_REG_W32(0, PCIE_TCFCS(pcie_port));
368 + IFX_REG_W32(0, PCIE_QSR(pcie_port));
369 + IFX_REG_W32(0, PCIE_IOBLSECS(pcie_port));
370 +}
371 +
372 +static inline int ifx_pcie_link_up(int pcie_port)
373 +{
374 + return (IFX_REG_R32(PCIE_PHY_SR(pcie_port)) & PCIE_PHY_SR_PHY_LINK_UP) ? 1 : 0;
375 +}
376 +
377 +
378 +static inline void pcie_mem_io_setup(int pcie_port)
379 +{
380 + u32 reg;
381 + /*
382 + * BAR[0:1] readonly register
383 + * RC contains only minimal BARs for packets mapped to this device
384 + * Mem/IO filters defines a range of memory occupied by memory mapped IO devices that
385 + * reside on the downstream side fo the bridge.
386 + */
387 + reg = SM((PCIE_MEM_PHY_PORT_TO_END(pcie_port) >> 20), PCIE_MBML_MEM_LIMIT_ADDR)
388 + | SM((PCIE_MEM_PHY_PORT_TO_BASE(pcie_port) >> 20), PCIE_MBML_MEM_BASE_ADDR);
389 +
390 + IFX_REG_W32(reg, PCIE_MBML(pcie_port));
391 +
392 +
393 +#ifdef IFX_PCIE_PREFETCH_MEM_64BIT
394 + reg = SM((PCIE_MEM_PHY_PORT_TO_END(pcie_port) >> 20), PCIE_PMBL_END_ADDR)
395 + | SM((PCIE_MEM_PHY_PORT_TO_BASE(pcie_port) >> 20), PCIE_PMBL_UPPER_12BIT)
396 + | PCIE_PMBL_64BIT_ADDR;
397 + IFX_REG_W32(reg, PCIE_PMBL(pcie_port));
398 +
399 + /* Must configure upper 32bit */
400 + IFX_REG_W32(0, PCIE_PMBU32(pcie_port));
401 + IFX_REG_W32(0, PCIE_PMLU32(pcie_port));
402 +#else
403 + /* PCIe_PBML, same as MBML */
404 + IFX_REG_W32(IFX_REG_R32(PCIE_MBML(pcie_port)), PCIE_PMBL(pcie_port));
405 +#endif
406 +
407 + /* IO Address Range */
408 + reg = SM((PCIE_IO_PHY_PORT_TO_END(pcie_port) >> 12), PCIE_IOBLSECS_IO_LIMIT_ADDR)
409 + | SM((PCIE_IO_PHY_PORT_TO_BASE(pcie_port) >> 12), PCIE_IOBLSECS_IO_BASE_ADDR);
410 +#ifdef IFX_PCIE_IO_32BIT
411 + reg |= PCIE_IOBLSECS_32BIT_IO_ADDR;
412 +#endif /* IFX_PCIE_IO_32BIT */
413 + IFX_REG_W32(reg, PCIE_IOBLSECS(pcie_port));
414 +
415 +#ifdef IFX_PCIE_IO_32BIT
416 + reg = SM((PCIE_IO_PHY_PORT_TO_END(pcie_port) >> 16), PCIE_IO_BANDL_UPPER_16BIT_IO_LIMIT)
417 + | SM((PCIE_IO_PHY_PORT_TO_BASE(pcie_port) >> 16), PCIE_IO_BANDL_UPPER_16BIT_IO_BASE);
418 + IFX_REG_W32(reg, PCIE_IO_BANDL(pcie_port));
419 +
420 +#endif /* IFX_PCIE_IO_32BIT */
421 +}
422 +
423 +static inline void
424 +pcie_device_setup(int pcie_port)
425 +{
426 + u32 reg;
427 +
428 + /* Device capability register, set up Maximum payload size */
429 + reg = IFX_REG_R32(PCIE_DCAP(pcie_port));
430 + reg |= PCIE_DCAP_ROLE_BASE_ERR_REPORT;
431 + reg |= SM(PCIE_MAX_PAYLOAD_128, PCIE_DCAP_MAX_PAYLOAD_SIZE);
432 +
433 + /* Only available for EP */
434 + reg &= ~(PCIE_DCAP_EP_L0S_LATENCY | PCIE_DCAP_EP_L1_LATENCY);
435 + IFX_REG_W32(reg, PCIE_DCAP(pcie_port));
436 +
437 + /* Device control and status register */
438 + /* Set Maximum Read Request size for the device as a Requestor */
439 + reg = IFX_REG_R32(PCIE_DCTLSTS(pcie_port));
440 +
441 + /*
442 + * Request size can be larger than the MPS used, but the completions returned
443 + * for the read will be bounded by the MPS size.
444 + * In our system, Max request size depends on AHB burst size. It is 64 bytes.
445 + * but we set it as 128 as minimum one.
446 + */
447 + reg |= SM(PCIE_MAX_PAYLOAD_128, PCIE_DCTLSTS_MAX_READ_SIZE)
448 + | SM(PCIE_MAX_PAYLOAD_128, PCIE_DCTLSTS_MAX_PAYLOAD_SIZE);
449 +
450 + /* Enable relaxed ordering, no snoop, and all kinds of errors */
451 + reg |= PCIE_DCTLSTS_RELAXED_ORDERING_EN | PCIE_DCTLSTS_ERR_EN | PCIE_DCTLSTS_NO_SNOOP_EN;
452 +
453 + IFX_REG_W32(reg, PCIE_DCTLSTS(pcie_port));
454 +}
455 +
456 +static inline void
457 +pcie_link_setup(int pcie_port)
458 +{
459 + u32 reg;
460 +
461 + /*
462 + * XXX, Link capability register, bit 18 for EP CLKREQ# dynamic clock management for L1, L2/3 CPM
463 + * L0s is reported during link training via TS1 order set by N_FTS
464 + */
465 + reg = IFX_REG_R32(PCIE_LCAP(pcie_port));
466 + reg &= ~PCIE_LCAP_L0S_EIXT_LATENCY;
467 + reg |= SM(3, PCIE_LCAP_L0S_EIXT_LATENCY);
468 + IFX_REG_W32(reg, PCIE_LCAP(pcie_port));
469 +
470 + /* Link control and status register */
471 + reg = IFX_REG_R32(PCIE_LCTLSTS(pcie_port));
472 +
473 + /* Link Enable, ASPM enabled */
474 + reg &= ~PCIE_LCTLSTS_LINK_DISABLE;
475 +
476 +#ifdef CONFIG_PCIEASPM
477 + /*
478 + * We use the same physical reference clock that the platform provides on the connector
479 + * It paved the way for ASPM to calculate the new exit Latency
480 + */
481 + reg |= PCIE_LCTLSTS_SLOT_CLK_CFG;
482 + reg |= PCIE_LCTLSTS_COM_CLK_CFG;
483 + /*
484 + * We should disable ASPM by default except that we have dedicated power management support
485 + * Enable ASPM will cause the system hangup/instability, performance degration
486 + */
487 + reg |= PCIE_LCTLSTS_ASPM_ENABLE;
488 +#else
489 + reg &= ~PCIE_LCTLSTS_ASPM_ENABLE;
490 +#endif /* CONFIG_PCIEASPM */
491 +
492 + /*
493 + * The maximum size of any completion with data packet is bounded by the MPS setting
494 + * in device control register
495 + */
496 +
497 + /* RCB may cause multiple split transactions, two options available, we use 64 byte RCB */
498 + reg &= ~ PCIE_LCTLSTS_RCB128;
499 +
500 + IFX_REG_W32(reg, PCIE_LCTLSTS(pcie_port));
501 +}
502 +
503 +static inline void pcie_error_setup(int pcie_port)
504 +{
505 + u32 reg;
506 +
507 + /*
508 + * Forward ERR_COR, ERR_NONFATAL, ERR_FATAL to the backbone
509 + * Poisoned write TLPs and completions indicating poisoned TLPs will set the PCIe_PCICMDSTS.MDPE
510 + */
511 + reg = IFX_REG_R32(PCIE_INTRBCTRL(pcie_port));
512 + reg |= PCIE_INTRBCTRL_SERR_ENABLE | PCIE_INTRBCTRL_PARITY_ERR_RESP_ENABLE;
513 +
514 + IFX_REG_W32(reg, PCIE_INTRBCTRL(pcie_port));
515 +
516 + /* Uncorrectable Error Mask Register, Unmask <enable> all bits in PCIE_UESR */
517 + reg = IFX_REG_R32(PCIE_UEMR(pcie_port));
518 + reg &= ~PCIE_ALL_UNCORRECTABLE_ERR;
519 + IFX_REG_W32(reg, PCIE_UEMR(pcie_port));
520 +
521 + /* Uncorrectable Error Severity Register, ALL errors are FATAL */
522 + IFX_REG_W32(PCIE_ALL_UNCORRECTABLE_ERR, PCIE_UESR(pcie_port));
523 +
524 + /* Correctable Error Mask Register, unmask <enable> all bits */
525 + reg = IFX_REG_R32(PCIE_CEMR(pcie_port));
526 + reg &= ~PCIE_CORRECTABLE_ERR;
527 + IFX_REG_W32(reg, PCIE_CEMR(pcie_port));
528 +
529 + /* Advanced Error Capabilities and Control Registr */
530 + reg = IFX_REG_R32(PCIE_AECCR(pcie_port));
531 + reg |= PCIE_AECCR_ECRC_CHECK_EN | PCIE_AECCR_ECRC_GEN_EN;
532 + IFX_REG_W32(reg, PCIE_AECCR(pcie_port));
533 +
534 + /* Root Error Command Register, Report all types of errors */
535 + reg = IFX_REG_R32(PCIE_RECR(pcie_port));
536 + reg |= PCIE_RECR_ERR_REPORT_EN;
537 + IFX_REG_W32(reg, PCIE_RECR(pcie_port));
538 +
539 + /* Clear the Root status register */
540 + reg = IFX_REG_R32(PCIE_RESR(pcie_port));
541 + IFX_REG_W32(reg, PCIE_RESR(pcie_port));
542 +}
543 +
544 +static inline void pcie_port_logic_setup(int pcie_port)
545 +{
546 + u32 reg;
547 +
548 + /* FTS number, default 12, increase to 63, may increase time from/to L0s to L0 */
549 + reg = IFX_REG_R32(PCIE_AFR(pcie_port));
550 + reg &= ~(PCIE_AFR_FTS_NUM | PCIE_AFR_COM_FTS_NUM);
551 + reg |= SM(PCIE_AFR_FTS_NUM_DEFAULT, PCIE_AFR_FTS_NUM)
552 + | SM(PCIE_AFR_FTS_NUM_DEFAULT, PCIE_AFR_COM_FTS_NUM);
553 + /* L0s and L1 entry latency */
554 + reg &= ~(PCIE_AFR_L0S_ENTRY_LATENCY | PCIE_AFR_L1_ENTRY_LATENCY);
555 + reg |= SM(PCIE_AFR_L0S_ENTRY_LATENCY_DEFAULT, PCIE_AFR_L0S_ENTRY_LATENCY)
556 + | SM(PCIE_AFR_L1_ENTRY_LATENCY_DEFAULT, PCIE_AFR_L1_ENTRY_LATENCY);
557 + IFX_REG_W32(reg, PCIE_AFR(pcie_port));
558 +
559 +
560 + /* Port Link Control Register */
561 + reg = IFX_REG_R32(PCIE_PLCR(pcie_port));
562 + reg |= PCIE_PLCR_DLL_LINK_EN; /* Enable the DLL link */
563 + IFX_REG_W32(reg, PCIE_PLCR(pcie_port));
564 +
565 + /* Lane Skew Register */
566 + reg = IFX_REG_R32(PCIE_LSR(pcie_port));
567 + /* Enable ACK/NACK and FC */
568 + reg &= ~(PCIE_LSR_ACKNAK_DISABLE | PCIE_LSR_FC_DISABLE);
569 + IFX_REG_W32(reg, PCIE_LSR(pcie_port));
570 +
571 + /* Symbol Timer Register and Filter Mask Register 1 */
572 + reg = IFX_REG_R32(PCIE_STRFMR(pcie_port));
573 +
574 + /* Default SKP interval is very accurate already, 5us */
575 + /* Enable IO/CFG transaction */
576 + reg |= PCIE_STRFMR_RX_CFG_TRANS_ENABLE | PCIE_STRFMR_RX_IO_TRANS_ENABLE;
577 + /* Disable FC WDT */
578 + reg &= ~PCIE_STRFMR_FC_WDT_DISABLE;
579 + IFX_REG_W32(reg, PCIE_STRFMR(pcie_port));
580 +
581 + /* Filter Masker Register 2 */
582 + reg = IFX_REG_R32(PCIE_FMR2(pcie_port));
583 + reg |= PCIE_FMR2_VENDOR_MSG1_PASSED_TO_TRGT1 | PCIE_FMR2_VENDOR_MSG0_PASSED_TO_TRGT1;
584 + IFX_REG_W32(reg, PCIE_FMR2(pcie_port));
585 +
586 + /* VC0 Completion Receive Queue Control Register */
587 + reg = IFX_REG_R32(PCIE_VC0_CRQCR(pcie_port));
588 + reg &= ~PCIE_VC0_CRQCR_CPL_TLP_QUEUE_MODE;
589 + reg |= SM(PCIE_VC0_TLP_QUEUE_MODE_BYPASS, PCIE_VC0_CRQCR_CPL_TLP_QUEUE_MODE);
590 + IFX_REG_W32(reg, PCIE_VC0_CRQCR(pcie_port));
591 +}
592 +
593 +static inline void pcie_rc_cfg_reg_setup(int pcie_port)
594 +{
595 + u32 reg;
596 +
597 + /* Disable LTSSM */
598 + IFX_REG_W32(0, PCIE_RC_CCR(pcie_port)); /* Disable LTSSM */
599 +
600 + pcie_mem_io_setup(pcie_port);
601 +
602 + /* XXX, MSI stuff should only apply to EP */
603 + /* MSI Capability: Only enable 32-bit addresses */
604 + reg = IFX_REG_R32(PCIE_MCAPR(pcie_port));
605 + reg &= ~PCIE_MCAPR_ADDR64_CAP;
606 +
607 + reg |= PCIE_MCAPR_MSI_ENABLE;
608 +
609 + /* Disable multiple message */
610 + reg &= ~(PCIE_MCAPR_MULTI_MSG_CAP | PCIE_MCAPR_MULTI_MSG_ENABLE);
611 + IFX_REG_W32(reg, PCIE_MCAPR(pcie_port));
612 +
613 +
614 + /* Enable PME, Soft reset enabled */
615 + reg = IFX_REG_R32(PCIE_PM_CSR(pcie_port));
616 + reg |= PCIE_PM_CSR_PME_ENABLE | PCIE_PM_CSR_SW_RST;
617 + IFX_REG_W32(reg, PCIE_PM_CSR(pcie_port));
618 +
619 + /* setup the bus */
620 + reg = SM(0, PCIE_BNR_PRIMARY_BUS_NUM) | SM(1, PCIE_PNR_SECONDARY_BUS_NUM) | SM(0xFF, PCIE_PNR_SUB_BUS_NUM);
621 + IFX_REG_W32(reg, PCIE_BNR(pcie_port));
622 +
623 +
624 + pcie_device_setup(pcie_port);
625 + pcie_link_setup(pcie_port);
626 + pcie_error_setup(pcie_port);
627 +
628 + /* Root control and capabilities register */
629 + reg = IFX_REG_R32(PCIE_RCTLCAP(pcie_port));
630 + reg |= PCIE_RCTLCAP_SERR_ENABLE | PCIE_RCTLCAP_PME_INT_EN;
631 + IFX_REG_W32(reg, PCIE_RCTLCAP(pcie_port));
632 +
633 + /* Port VC Capability Register 2 */
634 + reg = IFX_REG_R32(PCIE_PVC2(pcie_port));
635 + reg &= ~PCIE_PVC2_VC_ARB_WRR;
636 + reg |= PCIE_PVC2_VC_ARB_16P_FIXED_WRR;
637 + IFX_REG_W32(reg, PCIE_PVC2(pcie_port));
638 +
639 + /* VC0 Resource Capability Register */
640 + reg = IFX_REG_R32(PCIE_VC0_RC(pcie_port));
641 + reg &= ~PCIE_VC0_RC_REJECT_SNOOP;
642 + IFX_REG_W32(reg, PCIE_VC0_RC(pcie_port));
643 +
644 + pcie_port_logic_setup(pcie_port);
645 +}
646 +
647 +static int ifx_pcie_wait_phy_link_up(int pcie_port)
648 +{
649 +#define IFX_PCIE_PHY_LINK_UP_TIMEOUT 1000 /* XXX, tunable */
650 + int i;
651 +
652 + /* Wait for PHY link is up */
653 + for (i = 0; i < IFX_PCIE_PHY_LINK_UP_TIMEOUT; i++) {
654 + if (ifx_pcie_link_up(pcie_port)) {
655 + break;
656 + }
657 + udelay(100);
658 + }
659 + if (i >= IFX_PCIE_PHY_LINK_UP_TIMEOUT) {
660 + printk(KERN_ERR "%s timeout\n", __func__);
661 + return -1;
662 + }
663 +
664 + /* Check data link up or not */
665 + if (!(IFX_REG_R32(PCIE_RC_DR(pcie_port)) & PCIE_RC_DR_DLL_UP)) {
666 + printk(KERN_ERR "%s DLL link is still down\n", __func__);
667 + return -1;
668 + }
669 +
670 + /* Check Data link active or not */
671 + if (!(IFX_REG_R32(PCIE_LCTLSTS(pcie_port)) & PCIE_LCTLSTS_DLL_ACTIVE)) {
672 + printk(KERN_ERR "%s DLL is not active\n", __func__);
673 + return -1;
674 + }
675 + return 0;
676 +}
677 +
678 +static inline int pcie_app_loigc_setup(int pcie_port)
679 +{
680 + /* supress ahb bus errrors */
681 + IFX_REG_W32(PCIE_AHB_CTRL_BUS_ERROR_SUPPRESS, PCIE_AHB_CTRL(pcie_port));
682 +
683 + /* Pull PCIe EP out of reset */
684 + pcie_device_rst_deassert(pcie_port);
685 +
686 + /* Start LTSSM training between RC and EP */
687 + pcie_ltssm_enable(pcie_port);
688 +
689 + /* Check PHY status after enabling LTSSM */
690 + if (ifx_pcie_wait_phy_link_up(pcie_port) != 0)
691 + return -1;
692 +
693 + return 0;
694 +}
695 +
696 +/*
697 + * The numbers below are directly from the PCIe spec table 3-4/5.
698 + */
699 +static inline void pcie_replay_time_update(int pcie_port)
700 +{
701 + u32 reg;
702 + int nlw;
703 + int rtl;
704 +
705 + reg = IFX_REG_R32(PCIE_LCTLSTS(pcie_port));
706 +
707 + nlw = MS(reg, PCIE_LCTLSTS_NEGOTIATED_LINK_WIDTH);
708 + switch (nlw) {
709 + case PCIE_MAX_LENGTH_WIDTH_X1:
710 + rtl = 1677;
711 + break;
712 + case PCIE_MAX_LENGTH_WIDTH_X2:
713 + rtl = 867;
714 + break;
715 + case PCIE_MAX_LENGTH_WIDTH_X4:
716 + rtl = 462;
717 + break;
718 + case PCIE_MAX_LENGTH_WIDTH_X8:
719 + rtl = 258;
720 + break;
721 + default:
722 + rtl = 1677;
723 + break;
724 + }
725 + reg = IFX_REG_R32(PCIE_ALTRT(pcie_port));
726 + reg &= ~PCIE_ALTRT_REPLAY_TIME_LIMIT;
727 + reg |= SM(rtl, PCIE_ALTRT_REPLAY_TIME_LIMIT);
728 + IFX_REG_W32(reg, PCIE_ALTRT(pcie_port));
729 +}
730 +
731 +/*
732 + * Table 359 Enhanced Configuration Address Mapping1)
733 + * 1) This table is defined in Table 7-1, page 341, PCI Express Base Specification v1.1
734 + * Memory Address PCI Express Configuration Space
735 + * A[(20+n-1):20] Bus Number 1 < n < 8
736 + * A[19:15] Device Number
737 + * A[14:12] Function Number
738 + * A[11:8] Extended Register Number
739 + * A[7:2] Register Number
740 + * A[1:0] Along with size of the access, used to generate Byte Enables
741 + * For VR9, only the address bits [22:0] are mapped to the configuration space:
742 + * . Address bits [22:20] select the target bus (1-of-8)1)
743 + * . Address bits [19:15] select the target device (1-of-32) on the bus
744 + * . Address bits [14:12] select the target function (1-of-8) within the device.
745 + * . Address bits [11:2] selects the target dword (1-of-1024) within the selected function.s configuration space
746 + * . Address bits [1:0] define the start byte location within the selected dword.
747 + */
748 +static inline u32 pcie_bus_addr(u8 bus_num, u16 devfn, int where)
749 +{
750 + u32 addr;
751 + u8 bus;
752 +
753 + if (!bus_num) {
754 + /* type 0 */
755 + addr = ((PCI_SLOT(devfn) & 0x1F) << 15) | ((PCI_FUNC(devfn) & 0x7) << 12) | ((where & 0xFFF)& ~3);
756 + } else {
757 + bus = bus_num;
758 + /* type 1, only support 8 buses */
759 + addr = ((bus & 0x7) << 20) | ((PCI_SLOT(devfn) & 0x1F) << 15) |
760 + ((PCI_FUNC(devfn) & 0x7) << 12) | ((where & 0xFFF) & ~3);
761 + }
762 + return addr;
763 +}
764 +
765 +static int pcie_valid_config(int pcie_port, int bus, int dev)
766 +{
767 + /* RC itself */
768 + if ((bus == 0) && (dev == 0)) {
769 + return 1;
770 + }
771 +
772 + /* No physical link */
773 + if (!ifx_pcie_link_up(pcie_port)) {
774 + return 0;
775 + }
776 +
777 + /* Bus zero only has RC itself
778 + * XXX, check if EP will be integrated
779 + */
780 + if ((bus == 0) && (dev != 0)) {
781 + return 0;
782 + }
783 +
784 + /* Maximum 8 buses supported for VRX */
785 + if (bus > 9) {
786 + return 0;
787 + }
788 +
789 + /*
790 + * PCIe is PtP link, one bus only supports only one device
791 + * except bus zero and PCIe switch which is virtual bus device
792 + * The following two conditions really depends on the system design
793 + * and attached the device.
794 + * XXX, how about more new switch
795 + */
796 + if ((bus == 1) && (dev != 0)) {
797 + return 0;
798 + }
799 +
800 + if ((bus >= 3) && (dev != 0)) {
801 + return 0;
802 + }
803 + return 1;
804 +}
805 +
806 +static inline u32 ifx_pcie_cfg_rd(int pcie_port, u32 reg)
807 +{
808 + return IFX_REG_R32((volatile u32 *)(PCIE_CFG_PORT_TO_BASE(pcie_port) + reg));
809 +}
810 +
811 +static inline void ifx_pcie_cfg_wr(int pcie_port, unsigned int reg, u32 val)
812 +{
813 + IFX_REG_W32( val, (volatile u32 *)(PCIE_CFG_PORT_TO_BASE(pcie_port) + reg));
814 +}
815 +
816 +static inline u32 ifx_pcie_rc_cfg_rd(int pcie_port, u32 reg)
817 +{
818 + return IFX_REG_R32((volatile u32 *)(PCIE_RC_PORT_TO_BASE(pcie_port) + reg));
819 +}
820 +
821 +static inline void ifx_pcie_rc_cfg_wr(int pcie_port, unsigned int reg, u32 val)
822 +{
823 + IFX_REG_W32(val, (volatile u32 *)(PCIE_RC_PORT_TO_BASE(pcie_port) + reg));
824 +}
825 +
826 +u32 ifx_pcie_bus_enum_read_hack(int where, u32 value)
827 +{
828 + u32 tvalue = value;
829 +
830 + if (where == PCI_PRIMARY_BUS) {
831 + u8 primary, secondary, subordinate;
832 +
833 + primary = tvalue & 0xFF;
834 + secondary = (tvalue >> 8) & 0xFF;
835 + subordinate = (tvalue >> 16) & 0xFF;
836 + primary += pcibios_1st_host_bus_nr();
837 + secondary += pcibios_1st_host_bus_nr();
838 + subordinate += pcibios_1st_host_bus_nr();
839 + tvalue = (tvalue & 0xFF000000) | (u32)primary | (u32)(secondary << 8) | (u32)(subordinate << 16);
840 + }
841 + return tvalue;
842 +}
843 +
844 +u32 ifx_pcie_bus_enum_write_hack(int where, u32 value)
845 +{
846 + u32 tvalue = value;
847 +
848 + if (where == PCI_PRIMARY_BUS) {
849 + u8 primary, secondary, subordinate;
850 +
851 + primary = tvalue & 0xFF;
852 + secondary = (tvalue >> 8) & 0xFF;
853 + subordinate = (tvalue >> 16) & 0xFF;
854 + if (primary > 0 && primary != 0xFF) {
855 + primary -= pcibios_1st_host_bus_nr();
856 + }
857 +
858 + if (secondary > 0 && secondary != 0xFF) {
859 + secondary -= pcibios_1st_host_bus_nr();
860 + }
861 + if (subordinate > 0 && subordinate != 0xFF) {
862 + subordinate -= pcibios_1st_host_bus_nr();
863 + }
864 + tvalue = (tvalue & 0xFF000000) | (u32)primary | (u32)(secondary << 8) | (u32)(subordinate << 16);
865 + }
866 + else if (where == PCI_SUBORDINATE_BUS) {
867 + u8 subordinate = tvalue & 0xFF;
868 +
869 + subordinate = subordinate > 0 ? subordinate - pcibios_1st_host_bus_nr() : 0;
870 + tvalue = subordinate;
871 + }
872 + return tvalue;
873 +}
874 +
875 +static int ifx_pcie_read_config(struct pci_bus *bus, u32 devfn,
876 + int where, int size, u32 *value)
877 +{
878 + u32 data = 0;
879 + int bus_number = bus->number;
880 + static const u32 mask[8] = {0, 0xff, 0xffff, 0, 0xffffffff, 0, 0, 0};
881 + int ret = PCIBIOS_SUCCESSFUL;
882 + struct ifx_pci_controller *ctrl = bus->sysdata;
883 + int pcie_port = ctrl->port;
884 +
885 + if (unlikely(size != 1 && size != 2 && size != 4)){
886 + ret = PCIBIOS_BAD_REGISTER_NUMBER;
887 + goto out;
888 + }
889 +
890 + /* Make sure the address is aligned to natural boundary */
891 + if (unlikely(((size - 1) & where))) {
892 + ret = PCIBIOS_BAD_REGISTER_NUMBER;
893 + goto out;
894 + }
895 +
896 + /*
897 + * If we are second controller, we have to cheat OS so that it assume
898 + * its bus number starts from 0 in host controller
899 + */
900 + bus_number = ifx_pcie_bus_nr_deduct(bus_number, pcie_port);
901 +
902 + /*
903 + * We need to force the bus number to be zero on the root
904 + * bus. Linux numbers the 2nd root bus to start after all
905 + * busses on root 0.
906 + */
907 + if (bus->parent == NULL) {
908 + bus_number = 0;
909 + }
910 +
911 + /*
912 + * PCIe only has a single device connected to it. It is
913 + * always device ID 0. Don't bother doing reads for other
914 + * device IDs on the first segment.
915 + */
916 + if ((bus_number == 0) && (PCI_SLOT(devfn) != 0)) {
917 + ret = PCIBIOS_FUNC_NOT_SUPPORTED;
918 + goto out;
919 + }
920 +
921 + if (pcie_valid_config(pcie_port, bus_number, PCI_SLOT(devfn)) == 0) {
922 + *value = 0xffffffff;
923 + ret = PCIBIOS_DEVICE_NOT_FOUND;
924 + goto out;
925 + }
926 +
927 + PCIE_IRQ_LOCK(ifx_pcie_lock);
928 + if (bus_number == 0) { /* RC itself */
929 + u32 t;
930 +
931 + t = (where & ~3);
932 + data = ifx_pcie_rc_cfg_rd(pcie_port, t);
933 + } else {
934 + u32 addr = pcie_bus_addr(bus_number, devfn, where);
935 +
936 + data = ifx_pcie_cfg_rd(pcie_port, addr);
937 + #ifdef CONFIG_IFX_PCIE_HW_SWAP
938 + data = le32_to_cpu(data);
939 + #endif /* CONFIG_IFX_PCIE_HW_SWAP */
940 + }
941 + /* To get a correct PCI topology, we have to restore the bus number to OS */
942 + data = ifx_pcie_bus_enum_hack(bus, devfn, where, data, pcie_port, 1);
943 +
944 + PCIE_IRQ_UNLOCK(ifx_pcie_lock);
945 +
946 + *value = (data >> (8 * (where & 3))) & mask[size & 7];
947 +out:
948 + return ret;
949 +}
950 +
951 +static u32 ifx_pcie_size_to_value(int where, int size, u32 data, u32 value)
952 +{
953 + u32 shift;
954 + u32 tdata = data;
955 +
956 + switch (size) {
957 + case 1:
958 + shift = (where & 0x3) << 3;
959 + tdata &= ~(0xffU << shift);
960 + tdata |= ((value & 0xffU) << shift);
961 + break;
962 + case 2:
963 + shift = (where & 3) << 3;
964 + tdata &= ~(0xffffU << shift);
965 + tdata |= ((value & 0xffffU) << shift);
966 + break;
967 + case 4:
968 + tdata = value;
969 + break;
970 + }
971 + return tdata;
972 +}
973 +
974 +static int ifx_pcie_write_config(struct pci_bus *bus, u32 devfn,
975 + int where, int size, u32 value)
976 +{
977 + int bus_number = bus->number;
978 + int ret = PCIBIOS_SUCCESSFUL;
979 + struct ifx_pci_controller *ctrl = bus->sysdata;
980 + int pcie_port = ctrl->port;
981 + u32 tvalue = value;
982 + u32 data;
983 +
984 + /* Make sure the address is aligned to natural boundary */
985 + if (unlikely(((size - 1) & where))) {
986 + ret = PCIBIOS_BAD_REGISTER_NUMBER;
987 + goto out;
988 + }
989 + /*
990 + * If we are second controller, we have to cheat OS so that it assume
991 + * its bus number starts from 0 in host controller
992 + */
993 + bus_number = ifx_pcie_bus_nr_deduct(bus_number, pcie_port);
994 +
995 + /*
996 + * We need to force the bus number to be zero on the root
997 + * bus. Linux numbers the 2nd root bus to start after all
998 + * busses on root 0.
999 + */
1000 + if (bus->parent == NULL) {
1001 + bus_number = 0;
1002 + }
1003 +
1004 + if (pcie_valid_config(pcie_port, bus_number, PCI_SLOT(devfn)) == 0) {
1005 + ret = PCIBIOS_DEVICE_NOT_FOUND;
1006 + goto out;
1007 + }
1008 +
1009 + /* XXX, some PCIe device may need some delay */
1010 + PCIE_IRQ_LOCK(ifx_pcie_lock);
1011 +
1012 + /*
1013 + * To configure the correct bus topology using native way, we have to cheat Os so that
1014 + * it can configure the PCIe hardware correctly.
1015 + */
1016 + tvalue = ifx_pcie_bus_enum_hack(bus, devfn, where, value, pcie_port, 0);
1017 +
1018 + if (bus_number == 0) { /* RC itself */
1019 + u32 t;
1020 +
1021 + t = (where & ~3);
1022 + data = ifx_pcie_rc_cfg_rd(pcie_port, t);
1023 +
1024 + data = ifx_pcie_size_to_value(where, size, data, tvalue);
1025 +
1026 + ifx_pcie_rc_cfg_wr(pcie_port, t, data);
1027 + } else {
1028 + u32 addr = pcie_bus_addr(bus_number, devfn, where);
1029 +
1030 + data = ifx_pcie_cfg_rd(pcie_port, addr);
1031 +#ifdef CONFIG_IFX_PCIE_HW_SWAP
1032 + data = le32_to_cpu(data);
1033 +#endif
1034 +
1035 + data = ifx_pcie_size_to_value(where, size, data, tvalue);
1036 +#ifdef CONFIG_IFX_PCIE_HW_SWAP
1037 + data = cpu_to_le32(data);
1038 +#endif
1039 + ifx_pcie_cfg_wr(pcie_port, addr, data);
1040 + }
1041 + PCIE_IRQ_UNLOCK(ifx_pcie_lock);
1042 +out:
1043 + return ret;
1044 +}
1045 +
1046 +static struct resource ifx_pcie_io_resource = {
1047 + .name = "PCIe0 I/O space",
1048 + .start = PCIE_IO_PHY_BASE,
1049 + .end = PCIE_IO_PHY_END,
1050 + .flags = IORESOURCE_IO,
1051 +};
1052 +
1053 +static struct resource ifx_pcie_mem_resource = {
1054 + .name = "PCIe0 Memory space",
1055 + .start = PCIE_MEM_PHY_BASE,
1056 + .end = PCIE_MEM_PHY_END,
1057 + .flags = IORESOURCE_MEM,
1058 +};
1059 +
1060 +static struct pci_ops ifx_pcie_ops = {
1061 + .read = ifx_pcie_read_config,
1062 + .write = ifx_pcie_write_config,
1063 +};
1064 +
1065 +static struct ifx_pci_controller ifx_pcie_controller[IFX_PCIE_CORE_NR] = {
1066 + {
1067 + .pcic = {
1068 + .pci_ops = &ifx_pcie_ops,
1069 + .mem_resource = &ifx_pcie_mem_resource,
1070 + .io_resource = &ifx_pcie_io_resource,
1071 + },
1072 + .port = IFX_PCIE_PORT0,
1073 + },
1074 +};
1075 +
1076 +#ifdef IFX_PCIE_ERROR_INT
1077 +
1078 +static irqreturn_t pcie_rc_core_isr(int irq, void *dev_id)
1079 +{
1080 + struct ifx_pci_controller *ctrl = (struct ifx_pci_controller *)dev_id;
1081 + int pcie_port = ctrl->port;
1082 + u32 reg;
1083 +
1084 + pr_debug("PCIe RC error intr %d\n", irq);
1085 + reg = IFX_REG_R32(PCIE_IRNCR(pcie_port));
1086 + reg &= PCIE_RC_CORE_COMBINED_INT;
1087 + IFX_REG_W32(reg, PCIE_IRNCR(pcie_port));
1088 +
1089 + return IRQ_HANDLED;
1090 +}
1091 +
1092 +static int
1093 +pcie_rc_core_int_init(int pcie_port)
1094 +{
1095 + int ret;
1096 +
1097 + /* Enable core interrupt */
1098 + IFX_REG_SET_BIT(PCIE_RC_CORE_COMBINED_INT, PCIE_IRNEN(pcie_port));
1099 +
1100 + /* Clear it first */
1101 + IFX_REG_SET_BIT(PCIE_RC_CORE_COMBINED_INT, PCIE_IRNCR(pcie_port));
1102 + ret = request_irq(pcie_irqs[pcie_port].ir_irq.irq, pcie_rc_core_isr, 0,
1103 + pcie_irqs[pcie_port].ir_irq.name, &ifx_pcie_controller[pcie_port]);
1104 + if (ret)
1105 + printk(KERN_ERR "%s request irq %d failed\n", __func__, IFX_PCIE_IR);
1106 +
1107 + return ret;
1108 +}
1109 +#endif
1110 +
1111 +int ifx_pcie_bios_map_irq(IFX_PCI_CONST struct pci_dev *dev, u8 slot, u8 pin)
1112 +{
1113 + u32 irq_bit = 0;
1114 + int irq = 0;
1115 + struct ifx_pci_controller *ctrl = dev->bus->sysdata;
1116 + int pcie_port = ctrl->port;
1117 +
1118 + printk("%s port %d dev %s slot %d pin %d \n", __func__, pcie_port, pci_name(dev), slot, pin);
1119 +
1120 + if ((pin == PCIE_LEGACY_DISABLE) || (pin > PCIE_LEGACY_INT_MAX)) {
1121 + printk(KERN_WARNING "WARNING: dev %s: invalid interrupt pin %d\n", pci_name(dev), pin);
1122 + return -1;
1123 + }
1124 +
1125 + /* Pin index so minus one */
1126 + irq_bit = pcie_irqs[pcie_port].legacy_irq[pin - 1].irq_bit;
1127 + irq = pcie_irqs[pcie_port].legacy_irq[pin - 1].irq;
1128 + IFX_REG_SET_BIT(irq_bit, PCIE_IRNEN(pcie_port));
1129 + IFX_REG_SET_BIT(irq_bit, PCIE_IRNCR(pcie_port));
1130 + printk("%s dev %s irq %d assigned\n", __func__, pci_name(dev), irq);
1131 + return irq;
1132 +}
1133 +
1134 +int ifx_pcie_bios_plat_dev_init(struct pci_dev *dev)
1135 +{
1136 + u16 config;
1137 +#ifdef IFX_PCIE_ERROR_INT
1138 + u32 dconfig;
1139 + int pos;
1140 +#endif
1141 +
1142 + /* Enable reporting System errors and parity errors on all devices */
1143 + /* Enable parity checking and error reporting */
1144 + pci_read_config_word(dev, PCI_COMMAND, &config);
1145 + config |= PCI_COMMAND_PARITY | PCI_COMMAND_SERR /*| PCI_COMMAND_INVALIDATE |
1146 + PCI_COMMAND_FAST_BACK*/;
1147 + pci_write_config_word(dev, PCI_COMMAND, config);
1148 +
1149 + if (dev->subordinate) {
1150 + /* Set latency timers on sub bridges */
1151 + pci_write_config_byte(dev, PCI_SEC_LATENCY_TIMER, 0x40); /* XXX, */
1152 + /* More bridge error detection */
1153 + pci_read_config_word(dev, PCI_BRIDGE_CONTROL, &config);
1154 + config |= PCI_BRIDGE_CTL_PARITY | PCI_BRIDGE_CTL_SERR;
1155 + pci_write_config_word(dev, PCI_BRIDGE_CONTROL, config);
1156 + }
1157 +#ifdef IFX_PCIE_ERROR_INT
1158 + /* Enable the PCIe normal error reporting */
1159 + pos = pci_find_capability(dev, PCI_CAP_ID_EXP);
1160 + if (pos) {
1161 +
1162 + /* Disable system error generation in response to error messages */
1163 + pci_read_config_word(dev, pos + PCI_EXP_RTCTL, &config);
1164 + config &= ~(PCI_EXP_RTCTL_SECEE | PCI_EXP_RTCTL_SENFEE | PCI_EXP_RTCTL_SEFEE);
1165 + pci_write_config_word(dev, pos + PCI_EXP_RTCTL, config);
1166 +
1167 + /* Clear PCIE Capability's Device Status */
1168 + pci_read_config_word(dev, pos + PCI_EXP_DEVSTA, &config);
1169 + pci_write_config_word(dev, pos + PCI_EXP_DEVSTA, config);
1170 +
1171 + /* Update Device Control */
1172 + pci_read_config_word(dev, pos + PCI_EXP_DEVCTL, &config);
1173 + /* Correctable Error Reporting */
1174 + config |= PCI_EXP_DEVCTL_CERE;
1175 + /* Non-Fatal Error Reporting */
1176 + config |= PCI_EXP_DEVCTL_NFERE;
1177 + /* Fatal Error Reporting */
1178 + config |= PCI_EXP_DEVCTL_FERE;
1179 + /* Unsupported Request */
1180 + config |= PCI_EXP_DEVCTL_URRE;
1181 + pci_write_config_word(dev, pos + PCI_EXP_DEVCTL, config);
1182 + }
1183 +
1184 + /* Find the Advanced Error Reporting capability */
1185 + pos = pci_find_ext_capability(dev, PCI_EXT_CAP_ID_ERR);
1186 + if (pos) {
1187 + /* Clear Uncorrectable Error Status */
1188 + pci_read_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, &dconfig);
1189 + pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_STATUS, dconfig);
1190 + /* Enable reporting of all uncorrectable errors */
1191 + /* Uncorrectable Error Mask - turned on bits disable errors */
1192 + pci_write_config_dword(dev, pos + PCI_ERR_UNCOR_MASK, 0);
1193 + /*
1194 + * Leave severity at HW default. This only controls if
1195 + * errors are reported as uncorrectable or
1196 + * correctable, not if the error is reported.
1197 + */
1198 + /* PCI_ERR_UNCOR_SEVER - Uncorrectable Error Severity */
1199 + /* Clear Correctable Error Status */
1200 + pci_read_config_dword(dev, pos + PCI_ERR_COR_STATUS, &dconfig);
1201 + pci_write_config_dword(dev, pos + PCI_ERR_COR_STATUS, dconfig);
1202 + /* Enable reporting of all correctable errors */
1203 + /* Correctable Error Mask - turned on bits disable errors */
1204 + pci_write_config_dword(dev, pos + PCI_ERR_COR_MASK, 0);
1205 + /* Advanced Error Capabilities */
1206 + pci_read_config_dword(dev, pos + PCI_ERR_CAP, &dconfig);
1207 + /* ECRC Generation Enable */
1208 + if (dconfig & PCI_ERR_CAP_ECRC_GENC) {
1209 + dconfig |= PCI_ERR_CAP_ECRC_GENE;
1210 + }
1211 + /* ECRC Check Enable */
1212 + if (dconfig & PCI_ERR_CAP_ECRC_CHKC) {
1213 + dconfig |= PCI_ERR_CAP_ECRC_CHKE;
1214 + }
1215 + pci_write_config_dword(dev, pos + PCI_ERR_CAP, dconfig);
1216 +
1217 + /* PCI_ERR_HEADER_LOG - Header Log Register (16 bytes) */
1218 + /* Enable Root Port's interrupt in response to error messages */
1219 + pci_write_config_dword(dev, pos + PCI_ERR_ROOT_COMMAND,
1220 + PCI_ERR_ROOT_CMD_COR_EN |
1221 + PCI_ERR_ROOT_CMD_NONFATAL_EN |
1222 + PCI_ERR_ROOT_CMD_FATAL_EN);
1223 + /* Clear the Root status register */
1224 + pci_read_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, &dconfig);
1225 + pci_write_config_dword(dev, pos + PCI_ERR_ROOT_STATUS, dconfig);
1226 + }
1227 +#endif /* IFX_PCIE_ERROR_INT */
1228 + /* WAR, only 128 MRRS is supported, force all EPs to support this value */
1229 + pcie_set_readrq(dev, 128);
1230 + return 0;
1231 +}
1232 +
1233 +static int
1234 +pcie_rc_initialize(int pcie_port)
1235 +{
1236 + int i;
1237 +#define IFX_PCIE_PHY_LOOP_CNT 5
1238 +
1239 + pcie_rcu_endian_setup(pcie_port);
1240 +
1241 + pcie_ep_gpio_rst_init(pcie_port);
1242 +
1243 + /*
1244 + * XXX, PCIe elastic buffer bug will cause not to be detected. One more
1245 + * reset PCIe PHY will solve this issue
1246 + */
1247 + for (i = 0; i < IFX_PCIE_PHY_LOOP_CNT; i++) {
1248 + /* Disable PCIe PHY Analog part for sanity check */
1249 + pcie_phy_pmu_disable(pcie_port);
1250 +
1251 + pcie_phy_rst_assert(pcie_port);
1252 + pcie_phy_rst_deassert(pcie_port);
1253 +
1254 + /* Make sure PHY PLL is stable */
1255 + udelay(20);
1256 +
1257 + /* PCIe Core reset enabled, low active, sw programmed */
1258 + pcie_core_rst_assert(pcie_port);
1259 +
1260 + /* Put PCIe EP in reset status */
1261 + pcie_device_rst_assert(pcie_port);
1262 +
1263 + /* PCI PHY & Core reset disabled, high active, sw programmed */
1264 + pcie_core_rst_deassert(pcie_port);
1265 +
1266 + /* Already in a quiet state, program PLL, enable PHY, check ready bit */
1267 + pcie_phy_clock_mode_setup(pcie_port);
1268 +
1269 + /* Enable PCIe PHY and Clock */
1270 + pcie_core_pmu_setup(pcie_port);
1271 +
1272 + /* Clear status registers */
1273 + pcie_status_register_clear(pcie_port);
1274 +
1275 +#ifdef CONFIG_PCI_MSI
1276 + pcie_msi_init(pcie_port);
1277 +#endif /* CONFIG_PCI_MSI */
1278 + pcie_rc_cfg_reg_setup(pcie_port);
1279 +
1280 + /* Once link is up, break out */
1281 + if (pcie_app_loigc_setup(pcie_port) == 0)
1282 + break;
1283 + }
1284 + if (i >= IFX_PCIE_PHY_LOOP_CNT) {
1285 + printk(KERN_ERR "%s link up failed!!!!!\n", __func__);
1286 + return -EIO;
1287 + }
1288 + /* NB, don't increase ACK/NACK timer timeout value, which will cause a lot of COR errors */
1289 + pcie_replay_time_update(pcie_port);
1290 + return 0;
1291 +}
1292 +
1293 +static int __init ifx_pcie_bios_init(void)
1294 +{
1295 + void __iomem *io_map_base;
1296 + int pcie_port;
1297 + int startup_port;
1298 +
1299 + /* Enable AHB Master/ Slave */
1300 + pcie_ahb_pmu_setup();
1301 +
1302 + startup_port = IFX_PCIE_PORT0;
1303 +
1304 + for (pcie_port = startup_port; pcie_port < IFX_PCIE_CORE_NR; pcie_port++){
1305 + if (pcie_rc_initialize(pcie_port) == 0) {
1306 + IFX_PCIE_PRINT(PCIE_MSG_INIT, "%s: ifx_pcie_cfg_base 0x%p\n",
1307 + __func__, PCIE_CFG_PORT_TO_BASE(pcie_port));
1308 + /* Otherwise, warning will pop up */
1309 + io_map_base = ioremap(PCIE_IO_PHY_PORT_TO_BASE(pcie_port), PCIE_IO_SIZE);
1310 + if (io_map_base == NULL) {
1311 + IFX_PCIE_PRINT(PCIE_MSG_ERR, "%s io space ioremap failed\n", __func__);
1312 + return -ENOMEM;
1313 + }
1314 + ifx_pcie_controller[pcie_port].pcic.io_map_base = (unsigned long)io_map_base;
1315 +
1316 + register_pci_controller(&ifx_pcie_controller[pcie_port].pcic);
1317 + /* XXX, clear error status */
1318 +
1319 + IFX_PCIE_PRINT(PCIE_MSG_INIT, "%s: mem_resource 0x%p, io_resource 0x%p\n",
1320 + __func__, &ifx_pcie_controller[pcie_port].pcic.mem_resource,
1321 + &ifx_pcie_controller[pcie_port].pcic.io_resource);
1322 +
1323 + #ifdef IFX_PCIE_ERROR_INT
1324 + pcie_rc_core_int_init(pcie_port);
1325 + #endif /* IFX_PCIE_ERROR_INT */
1326 + }
1327 + }
1328 +
1329 + return 0;
1330 +}
1331 +arch_initcall(ifx_pcie_bios_init);
1332 +
1333 +MODULE_LICENSE("GPL");
1334 +MODULE_AUTHOR("Chuanhua.Lei@infineon.com");
1335 +MODULE_DESCRIPTION("Infineon builtin PCIe RC driver");
1336 +
1337 --- /dev/null
1338 +++ b/arch/mips/pci/ifxmips_pcie.h
1339 @@ -0,0 +1,131 @@
1340 +/******************************************************************************
1341 +**
1342 +** FILE NAME : ifxmips_pcie.h
1343 +** PROJECT : IFX UEIP for VRX200
1344 +** MODULES : PCIe module
1345 +**
1346 +** DATE : 02 Mar 2009
1347 +** AUTHOR : Lei Chuanhua
1348 +** DESCRIPTION : PCIe Root Complex Driver
1349 +** COPYRIGHT : Copyright (c) 2009
1350 +** Infineon Technologies AG
1351 +** Am Campeon 1-12, 85579 Neubiberg, Germany
1352 +**
1353 +** This program is free software; you can redistribute it and/or modify
1354 +** it under the terms of the GNU General Public License as published by
1355 +** the Free Software Foundation; either version 2 of the License, or
1356 +** (at your option) any later version.
1357 +** HISTORY
1358 +** $Version $Date $Author $Comment
1359 +** 0.0.1 17 Mar,2009 Lei Chuanhua Initial version
1360 +*******************************************************************************/
1361 +#ifndef IFXMIPS_PCIE_H
1362 +#define IFXMIPS_PCIE_H
1363 +#include <linux/version.h>
1364 +#include <linux/types.h>
1365 +#include <linux/pci.h>
1366 +#include <linux/interrupt.h>
1367 +#include "ifxmips_pci_common.h"
1368 +#include "ifxmips_pcie_reg.h"
1369 +
1370 +/*!
1371 + \defgroup IFX_PCIE PCI Express bus driver module
1372 + \brief PCI Express IP module support VRX200
1373 +*/
1374 +
1375 +/*!
1376 + \defgroup IFX_PCIE_OS OS APIs
1377 + \ingroup IFX_PCIE
1378 + \brief PCIe bus driver OS interface functions
1379 +*/
1380 +
1381 +/*!
1382 + \file ifxmips_pcie.h
1383 + \ingroup IFX_PCIE
1384 + \brief header file for PCIe module common header file
1385 +*/
1386 +#define PCIE_IRQ_LOCK(lock) do { \
1387 + unsigned long flags; \
1388 + spin_lock_irqsave(&(lock), flags);
1389 +#define PCIE_IRQ_UNLOCK(lock) \
1390 + spin_unlock_irqrestore(&(lock), flags); \
1391 +} while (0)
1392 +
1393 +#define PCIE_MSG_MSI 0x00000001
1394 +#define PCIE_MSG_ISR 0x00000002
1395 +#define PCIE_MSG_FIXUP 0x00000004
1396 +#define PCIE_MSG_READ_CFG 0x00000008
1397 +#define PCIE_MSG_WRITE_CFG 0x00000010
1398 +#define PCIE_MSG_CFG (PCIE_MSG_READ_CFG | PCIE_MSG_WRITE_CFG)
1399 +#define PCIE_MSG_REG 0x00000020
1400 +#define PCIE_MSG_INIT 0x00000040
1401 +#define PCIE_MSG_ERR 0x00000080
1402 +#define PCIE_MSG_PHY 0x00000100
1403 +#define PCIE_MSG_ANY 0x000001ff
1404 +
1405 +#define IFX_PCIE_PORT0 0
1406 +#define IFX_PCIE_PORT1 1
1407 +
1408 +#ifdef CONFIG_IFX_PCIE_2ND_CORE
1409 +#define IFX_PCIE_CORE_NR 2
1410 +#else
1411 +#define IFX_PCIE_CORE_NR 1
1412 +#endif
1413 +
1414 +#define IFX_PCIE_ERROR_INT
1415 +
1416 +//#define IFX_PCIE_DBG
1417 +
1418 +#if defined(IFX_PCIE_DBG)
1419 +#define IFX_PCIE_PRINT(_m, _fmt, args...) do { \
1420 + ifx_pcie_debug((_fmt), ##args); \
1421 +} while (0)
1422 +
1423 +#define INLINE
1424 +#else
1425 +#define IFX_PCIE_PRINT(_m, _fmt, args...) \
1426 + do {} while(0)
1427 +#define INLINE inline
1428 +#endif
1429 +
1430 +struct ifx_pci_controller {
1431 + struct pci_controller pcic;
1432 +
1433 + /* RC specific, per host bus information */
1434 + u32 port; /* Port index, 0 -- 1st core, 1 -- 2nd core */
1435 +};
1436 +
1437 +typedef struct ifx_pcie_ir_irq {
1438 + const unsigned int irq;
1439 + const char name[16];
1440 +}ifx_pcie_ir_irq_t;
1441 +
1442 +typedef struct ifx_pcie_legacy_irq{
1443 + const u32 irq_bit;
1444 + const int irq;
1445 +}ifx_pcie_legacy_irq_t;
1446 +
1447 +typedef struct ifx_pcie_irq {
1448 + ifx_pcie_ir_irq_t ir_irq;
1449 + ifx_pcie_legacy_irq_t legacy_irq[PCIE_LEGACY_INT_MAX];
1450 +}ifx_pcie_irq_t;
1451 +
1452 +extern u32 g_pcie_debug_flag;
1453 +extern void ifx_pcie_debug(const char *fmt, ...);
1454 +extern void pcie_phy_clock_mode_setup(int pcie_port);
1455 +extern void pcie_msi_pic_init(int pcie_port);
1456 +extern u32 ifx_pcie_bus_enum_read_hack(int where, u32 value);
1457 +extern u32 ifx_pcie_bus_enum_write_hack(int where, u32 value);
1458 +
1459 +#define CONFIG_VR9
1460 +
1461 +#ifdef CONFIG_VR9
1462 +#include "ifxmips_pcie_vr9.h"
1463 +#elif defined (CONFIG_AR10)
1464 +#include "ifxmips_pcie_ar10.h"
1465 +#else
1466 +#error "PCIE: platform not defined"
1467 +#endif /* CONFIG_VR9 */
1468 +
1469 +#endif /* IFXMIPS_PCIE_H */
1470 +
1471 --- /dev/null
1472 +++ b/arch/mips/pci/ifxmips_pcie_ar10.h
1473 @@ -0,0 +1,290 @@
1474 +/****************************************************************************
1475 + Copyright (c) 2010
1476 + Lantiq Deutschland GmbH
1477 + Am Campeon 3; 85579 Neubiberg, Germany
1478 +
1479 + For licensing information, see the file 'LICENSE' in the root folder of
1480 + this software module.
1481 +
1482 + *****************************************************************************/
1483 +/*!
1484 + \file ifxmips_pcie_ar10.h
1485 + \ingroup IFX_PCIE
1486 + \brief PCIe RC driver ar10 specific file
1487 +*/
1488 +
1489 +#ifndef IFXMIPS_PCIE_AR10_H
1490 +#define IFXMIPS_PCIE_AR10_H
1491 +#ifndef AUTOCONF_INCLUDED
1492 +#include <linux/config.h>
1493 +#endif /* AUTOCONF_INCLUDED */
1494 +#include <linux/types.h>
1495 +#include <linux/delay.h>
1496 +
1497 +/* Project header file */
1498 +#include <asm/ifx/ifx_types.h>
1499 +#include <asm/ifx/ifx_pmu.h>
1500 +#include <asm/ifx/ifx_gpio.h>
1501 +#include <asm/ifx/ifx_ebu_led.h>
1502 +
1503 +static inline void pcie_ep_gpio_rst_init(int pcie_port)
1504 +{
1505 + ifx_ebu_led_enable();
1506 + if (pcie_port == 0) {
1507 + ifx_ebu_led_set_data(11, 1);
1508 + }
1509 + else {
1510 + ifx_ebu_led_set_data(12, 1);
1511 + }
1512 +}
1513 +
1514 +static inline void pcie_ahb_pmu_setup(void)
1515 +{
1516 + /* XXX, moved to CGU to control AHBM */
1517 +}
1518 +
1519 +static inline void pcie_rcu_endian_setup(int pcie_port)
1520 +{
1521 + u32 reg;
1522 +
1523 + reg = IFX_REG_R32(IFX_RCU_AHB_ENDIAN);
1524 + /* Inbound, big endian */
1525 + reg |= IFX_RCU_BE_AHB4S;
1526 + if (pcie_port == 0) {
1527 + reg |= IFX_RCU_BE_PCIE0M;
1528 +
1529 + #ifdef CONFIG_IFX_PCIE_HW_SWAP
1530 + /* Outbound, software swap needed */
1531 + reg |= IFX_RCU_BE_AHB3M;
1532 + reg &= ~IFX_RCU_BE_PCIE0S;
1533 + #else
1534 + /* Outbound little endian */
1535 + reg &= ~IFX_RCU_BE_AHB3M;
1536 + reg &= ~IFX_RCU_BE_PCIE0S;
1537 + #endif
1538 + }
1539 + else {
1540 + reg |= IFX_RCU_BE_PCIE1M;
1541 + #ifdef CONFIG_IFX_PCIE1_HW_SWAP
1542 + /* Outbound, software swap needed */
1543 + reg |= IFX_RCU_BE_AHB3M;
1544 + reg &= ~IFX_RCU_BE_PCIE1S;
1545 + #else
1546 + /* Outbound little endian */
1547 + reg &= ~IFX_RCU_BE_AHB3M;
1548 + reg &= ~IFX_RCU_BE_PCIE1S;
1549 + #endif
1550 + }
1551 +
1552 + IFX_REG_W32(reg, IFX_RCU_AHB_ENDIAN);
1553 + IFX_PCIE_PRINT(PCIE_MSG_REG, "%s IFX_RCU_AHB_ENDIAN: 0x%08x\n", __func__, IFX_REG_R32(IFX_RCU_AHB_ENDIAN));
1554 +}
1555 +
1556 +static inline void pcie_phy_pmu_enable(int pcie_port)
1557 +{
1558 + if (pcie_port == 0) { /* XXX, should use macro*/
1559 + PCIE0_PHY_PMU_SETUP(IFX_PMU_ENABLE);
1560 + }
1561 + else {
1562 + PCIE1_PHY_PMU_SETUP(IFX_PMU_ENABLE);
1563 + }
1564 +}
1565 +
1566 +static inline void pcie_phy_pmu_disable(int pcie_port)
1567 +{
1568 + if (pcie_port == 0) { /* XXX, should use macro*/
1569 + PCIE0_PHY_PMU_SETUP(IFX_PMU_DISABLE);
1570 + }
1571 + else {
1572 + PCIE1_PHY_PMU_SETUP(IFX_PMU_DISABLE);
1573 + }
1574 +}
1575 +
1576 +static inline void pcie_pdi_big_endian(int pcie_port)
1577 +{
1578 + u32 reg;
1579 +
1580 + reg = IFX_REG_R32(IFX_RCU_AHB_ENDIAN);
1581 + if (pcie_port == 0) {
1582 + /* Config AHB->PCIe and PDI endianness */
1583 + reg |= IFX_RCU_BE_PCIE0_PDI;
1584 + }
1585 + else {
1586 + /* Config AHB->PCIe and PDI endianness */
1587 + reg |= IFX_RCU_BE_PCIE1_PDI;
1588 + }
1589 + IFX_REG_W32(reg, IFX_RCU_AHB_ENDIAN);
1590 +}
1591 +
1592 +static inline void pcie_pdi_pmu_enable(int pcie_port)
1593 +{
1594 + if (pcie_port == 0) {
1595 + /* Enable PDI to access PCIe PHY register */
1596 + PDI0_PMU_SETUP(IFX_PMU_ENABLE);
1597 + }
1598 + else {
1599 + PDI1_PMU_SETUP(IFX_PMU_ENABLE);
1600 + }
1601 +}
1602 +
1603 +static inline void pcie_core_rst_assert(int pcie_port)
1604 +{
1605 + u32 reg;
1606 +
1607 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
1608 +
1609 + /* Reset Core, bit 22 */
1610 + if (pcie_port == 0) {
1611 + reg |= 0x00400000;
1612 + }
1613 + else {
1614 + reg |= 0x08000000; /* Bit 27 */
1615 + }
1616 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
1617 +}
1618 +
1619 +static inline void pcie_core_rst_deassert(int pcie_port)
1620 +{
1621 + u32 reg;
1622 +
1623 + /* Make sure one micro-second delay */
1624 + udelay(1);
1625 +
1626 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
1627 + if (pcie_port == 0) {
1628 + reg &= ~0x00400000; /* bit 22 */
1629 + }
1630 + else {
1631 + reg &= ~0x08000000; /* Bit 27 */
1632 + }
1633 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
1634 +}
1635 +
1636 +static inline void pcie_phy_rst_assert(int pcie_port)
1637 +{
1638 + u32 reg;
1639 +
1640 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
1641 + if (pcie_port == 0) {
1642 + reg |= 0x00001000; /* Bit 12 */
1643 + }
1644 + else {
1645 + reg |= 0x00002000; /* Bit 13 */
1646 + }
1647 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
1648 +}
1649 +
1650 +static inline void pcie_phy_rst_deassert(int pcie_port)
1651 +{
1652 + u32 reg;
1653 +
1654 + /* Make sure one micro-second delay */
1655 + udelay(1);
1656 +
1657 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
1658 + if (pcie_port == 0) {
1659 + reg &= ~0x00001000; /* Bit 12 */
1660 + }
1661 + else {
1662 + reg &= ~0x00002000; /* Bit 13 */
1663 + }
1664 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
1665 +}
1666 +
1667 +static inline void pcie_device_rst_assert(int pcie_port)
1668 +{
1669 + if (pcie_port == 0) {
1670 + ifx_ebu_led_set_data(11, 0);
1671 + }
1672 + else {
1673 + ifx_ebu_led_set_data(12, 0);
1674 + }
1675 +}
1676 +
1677 +static inline void pcie_device_rst_deassert(int pcie_port)
1678 +{
1679 + mdelay(100);
1680 + if (pcie_port == 0) {
1681 + ifx_ebu_led_set_data(11, 1);
1682 + }
1683 + else {
1684 + ifx_ebu_led_set_data(12, 1);
1685 + }
1686 + ifx_ebu_led_disable();
1687 +}
1688 +
1689 +static inline void pcie_core_pmu_setup(int pcie_port)
1690 +{
1691 + if (pcie_port == 0) {
1692 + PCIE0_CTRL_PMU_SETUP(IFX_PMU_ENABLE);
1693 + }
1694 + else {
1695 + PCIE1_CTRL_PMU_SETUP(IFX_PMU_ENABLE);
1696 + }
1697 +}
1698 +
1699 +static inline void pcie_msi_init(int pcie_port)
1700 +{
1701 + pcie_msi_pic_init(pcie_port);
1702 + if (pcie_port == 0) {
1703 + MSI0_PMU_SETUP(IFX_PMU_ENABLE);
1704 + }
1705 + else {
1706 + MSI1_PMU_SETUP(IFX_PMU_ENABLE);
1707 + }
1708 +}
1709 +
1710 +static inline u32
1711 +ifx_pcie_bus_nr_deduct(u32 bus_number, int pcie_port)
1712 +{
1713 + u32 tbus_number = bus_number;
1714 +
1715 +#ifdef CONFIG_IFX_PCIE_2ND_CORE
1716 + if (pcie_port == IFX_PCIE_PORT1) { /* Port 1 must check if there are two cores enabled */
1717 + if (pcibios_host_nr() > 1) {
1718 + tbus_number -= pcibios_1st_host_bus_nr();
1719 + }
1720 + }
1721 +#endif /* CONFIG_IFX_PCI */
1722 + return tbus_number;
1723 +}
1724 +
1725 +static inline u32
1726 +ifx_pcie_bus_enum_hack(struct pci_bus *bus, u32 devfn, int where, u32 value, int pcie_port, int read)
1727 +{
1728 + struct pci_dev *pdev;
1729 + u32 tvalue = value;
1730 +
1731 + /* Sanity check */
1732 + pdev = pci_get_slot(bus, devfn);
1733 + if (pdev == NULL) {
1734 + return tvalue;
1735 + }
1736 +
1737 + /* Only care about PCI bridge */
1738 + if (pdev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
1739 + return tvalue;
1740 + }
1741 +
1742 + if (read) { /* Read hack */
1743 + #ifdef CONFIG_IFX_PCIE_2ND_CORE
1744 + if (pcie_port == IFX_PCIE_PORT1) { /* Port 1 must check if there are two cores enabled */
1745 + if (pcibios_host_nr() > 1) {
1746 + tvalue = ifx_pcie_bus_enum_read_hack(where, tvalue);
1747 + }
1748 + }
1749 + #endif /* CONFIG_IFX_PCIE_2ND_CORE */
1750 + }
1751 + else { /* Write hack */
1752 + #ifdef CONFIG_IFX_PCIE_2ND_CORE
1753 + if (pcie_port == IFX_PCIE_PORT1) { /* Port 1 must check if there are two cores enabled */
1754 + if (pcibios_host_nr() > 1) {
1755 + tvalue = ifx_pcie_bus_enum_write_hack(where, tvalue);
1756 + }
1757 + }
1758 + #endif
1759 + }
1760 + return tvalue;
1761 +}
1762 +
1763 +#endif /* IFXMIPS_PCIE_AR10_H */
1764 --- /dev/null
1765 +++ b/arch/mips/pci/ifxmips_pcie_msi.c
1766 @@ -0,0 +1,391 @@
1767 +/******************************************************************************
1768 +**
1769 +** FILE NAME : ifxmips_pcie_msi.c
1770 +** PROJECT : IFX UEIP for VRX200
1771 +** MODULES : PCI MSI sub module
1772 +**
1773 +** DATE : 02 Mar 2009
1774 +** AUTHOR : Lei Chuanhua
1775 +** DESCRIPTION : PCIe MSI Driver
1776 +** COPYRIGHT : Copyright (c) 2009
1777 +** Infineon Technologies AG
1778 +** Am Campeon 1-12, 85579 Neubiberg, Germany
1779 +**
1780 +** This program is free software; you can redistribute it and/or modify
1781 +** it under the terms of the GNU General Public License as published by
1782 +** the Free Software Foundation; either version 2 of the License, or
1783 +** (at your option) any later version.
1784 +** HISTORY
1785 +** $Date $Author $Comment
1786 +** 02 Mar,2009 Lei Chuanhua Initial version
1787 +*******************************************************************************/
1788 +/*!
1789 + \defgroup IFX_PCIE_MSI MSI OS APIs
1790 + \ingroup IFX_PCIE
1791 + \brief PCIe bus driver OS interface functions
1792 +*/
1793 +
1794 +/*!
1795 + \file ifxmips_pcie_msi.c
1796 + \ingroup IFX_PCIE
1797 + \brief PCIe MSI OS interface file
1798 +*/
1799 +
1800 +#ifndef AUTOCONF_INCLUDED
1801 +#include <linux/config.h>
1802 +#endif /* AUTOCONF_INCLUDED */
1803 +#include <linux/init.h>
1804 +#include <linux/sched.h>
1805 +#include <linux/slab.h>
1806 +#include <linux/interrupt.h>
1807 +#include <linux/kernel_stat.h>
1808 +#include <linux/pci.h>
1809 +#include <linux/msi.h>
1810 +#include <linux/module.h>
1811 +#include <asm/bootinfo.h>
1812 +#include <asm/irq.h>
1813 +#include <asm/traps.h>
1814 +
1815 +#include <asm/ifx/ifx_types.h>
1816 +#include <asm/ifx/ifx_regs.h>
1817 +#include <asm/ifx/common_routines.h>
1818 +#include <asm/ifx/irq.h>
1819 +
1820 +#include "ifxmips_pcie_reg.h"
1821 +#include "ifxmips_pcie.h"
1822 +
1823 +#define IFX_MSI_IRQ_NUM 16
1824 +
1825 +enum {
1826 + IFX_PCIE_MSI_IDX0 = 0,
1827 + IFX_PCIE_MSI_IDX1,
1828 + IFX_PCIE_MSI_IDX2,
1829 + IFX_PCIE_MSI_IDX3,
1830 +};
1831 +
1832 +typedef struct ifx_msi_irq_idx {
1833 + const int irq;
1834 + const int idx;
1835 +}ifx_msi_irq_idx_t;
1836 +
1837 +struct ifx_msi_pic {
1838 + volatile u32 pic_table[IFX_MSI_IRQ_NUM];
1839 + volatile u32 pic_endian; /* 0x40 */
1840 +};
1841 +typedef struct ifx_msi_pic *ifx_msi_pic_t;
1842 +
1843 +typedef struct ifx_msi_irq {
1844 + const volatile ifx_msi_pic_t msi_pic_p;
1845 + const u32 msi_phy_base;
1846 + const ifx_msi_irq_idx_t msi_irq_idx[IFX_MSI_IRQ_NUM];
1847 + /*
1848 + * Each bit in msi_free_irq_bitmask represents a MSI interrupt that is
1849 + * in use.
1850 + */
1851 + u16 msi_free_irq_bitmask;
1852 +
1853 + /*
1854 + * Each bit in msi_multiple_irq_bitmask tells that the device using
1855 + * this bit in msi_free_irq_bitmask is also using the next bit. This
1856 + * is used so we can disable all of the MSI interrupts when a device
1857 + * uses multiple.
1858 + */
1859 + u16 msi_multiple_irq_bitmask;
1860 +}ifx_msi_irq_t;
1861 +
1862 +static ifx_msi_irq_t msi_irqs[IFX_PCIE_CORE_NR] = {
1863 + {
1864 + .msi_pic_p = (const volatile ifx_msi_pic_t)IFX_MSI_PIC_REG_BASE,
1865 + .msi_phy_base = PCIE_MSI_PHY_BASE,
1866 + .msi_irq_idx = {
1867 + {IFX_PCIE_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE_MSI_IR1, IFX_PCIE_MSI_IDX1},
1868 + {IFX_PCIE_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE_MSI_IR3, IFX_PCIE_MSI_IDX3},
1869 + {IFX_PCIE_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE_MSI_IR1, IFX_PCIE_MSI_IDX1},
1870 + {IFX_PCIE_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE_MSI_IR3, IFX_PCIE_MSI_IDX3},
1871 + {IFX_PCIE_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE_MSI_IR1, IFX_PCIE_MSI_IDX1},
1872 + {IFX_PCIE_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE_MSI_IR3, IFX_PCIE_MSI_IDX3},
1873 + {IFX_PCIE_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE_MSI_IR1, IFX_PCIE_MSI_IDX1},
1874 + {IFX_PCIE_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE_MSI_IR3, IFX_PCIE_MSI_IDX3},
1875 + },
1876 + .msi_free_irq_bitmask = 0,
1877 + .msi_multiple_irq_bitmask= 0,
1878 + },
1879 +#ifdef CONFIG_IFX_PCIE_2ND_CORE
1880 + {
1881 + .msi_pic_p = (const volatile ifx_msi_pic_t)IFX_MSI1_PIC_REG_BASE,
1882 + .msi_phy_base = PCIE1_MSI_PHY_BASE,
1883 + .msi_irq_idx = {
1884 + {IFX_PCIE1_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE1_MSI_IR1, IFX_PCIE_MSI_IDX1},
1885 + {IFX_PCIE1_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE1_MSI_IR3, IFX_PCIE_MSI_IDX3},
1886 + {IFX_PCIE1_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE1_MSI_IR1, IFX_PCIE_MSI_IDX1},
1887 + {IFX_PCIE1_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE1_MSI_IR3, IFX_PCIE_MSI_IDX3},
1888 + {IFX_PCIE1_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE1_MSI_IR1, IFX_PCIE_MSI_IDX1},
1889 + {IFX_PCIE1_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE1_MSI_IR3, IFX_PCIE_MSI_IDX3},
1890 + {IFX_PCIE1_MSI_IR0, IFX_PCIE_MSI_IDX0}, {IFX_PCIE1_MSI_IR1, IFX_PCIE_MSI_IDX1},
1891 + {IFX_PCIE1_MSI_IR2, IFX_PCIE_MSI_IDX2}, {IFX_PCIE1_MSI_IR3, IFX_PCIE_MSI_IDX3},
1892 + },
1893 + .msi_free_irq_bitmask = 0,
1894 + .msi_multiple_irq_bitmask= 0,
1895 +
1896 + },
1897 +#endif /* CONFIG_IFX_PCIE_2ND_CORE */
1898 +};
1899 +
1900 +/*
1901 + * This lock controls updates to msi_free_irq_bitmask,
1902 + * msi_multiple_irq_bitmask and pic register settting
1903 + */
1904 +static DEFINE_SPINLOCK(ifx_pcie_msi_lock);
1905 +
1906 +void pcie_msi_pic_init(int pcie_port)
1907 +{
1908 + spin_lock(&ifx_pcie_msi_lock);
1909 + msi_irqs[pcie_port].msi_pic_p->pic_endian = IFX_MSI_PIC_BIG_ENDIAN;
1910 + spin_unlock(&ifx_pcie_msi_lock);
1911 +}
1912 +
1913 +/**
1914 + * \fn int arch_setup_msi_irq(struct pci_dev *pdev, struct msi_desc *desc)
1915 + * \brief Called when a driver request MSI interrupts instead of the
1916 + * legacy INT A-D. This routine will allocate multiple interrupts
1917 + * for MSI devices that support them. A device can override this by
1918 + * programming the MSI control bits [6:4] before calling
1919 + * pci_enable_msi().
1920 + *
1921 + * \param[in] pdev Device requesting MSI interrupts
1922 + * \param[in] desc MSI descriptor
1923 + *
1924 + * \return -EINVAL Invalid pcie root port or invalid msi bit
1925 + * \return 0 OK
1926 + * \ingroup IFX_PCIE_MSI
1927 + */
1928 +int
1929 +arch_setup_msi_irq(struct pci_dev *pdev, struct msi_desc *desc)
1930 +{
1931 + int irq, pos;
1932 + u16 control;
1933 + int irq_idx;
1934 + int irq_step;
1935 + int configured_private_bits;
1936 + int request_private_bits;
1937 + struct msi_msg msg;
1938 + u16 search_mask;
1939 + struct ifx_pci_controller *ctrl = pdev->bus->sysdata;
1940 + int pcie_port = ctrl->port;
1941 +
1942 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "%s %s enter\n", __func__, pci_name(pdev));
1943 +
1944 + /* XXX, skip RC MSI itself */
1945 + if (pdev->pcie_type == PCI_EXP_TYPE_ROOT_PORT) {
1946 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "%s RC itself doesn't use MSI interrupt\n", __func__);
1947 + return -EINVAL;
1948 + }
1949 +
1950 + /*
1951 + * Read the MSI config to figure out how many IRQs this device
1952 + * wants. Most devices only want 1, which will give
1953 + * configured_private_bits and request_private_bits equal 0.
1954 + */
1955 + pci_read_config_word(pdev, desc->msi_attrib.pos + PCI_MSI_FLAGS, &control);
1956 +
1957 + /*
1958 + * If the number of private bits has been configured then use
1959 + * that value instead of the requested number. This gives the
1960 + * driver the chance to override the number of interrupts
1961 + * before calling pci_enable_msi().
1962 + */
1963 + configured_private_bits = (control & PCI_MSI_FLAGS_QSIZE) >> 4;
1964 + if (configured_private_bits == 0) {
1965 + /* Nothing is configured, so use the hardware requested size */
1966 + request_private_bits = (control & PCI_MSI_FLAGS_QMASK) >> 1;
1967 + }
1968 + else {
1969 + /*
1970 + * Use the number of configured bits, assuming the
1971 + * driver wanted to override the hardware request
1972 + * value.
1973 + */
1974 + request_private_bits = configured_private_bits;
1975 + }
1976 +
1977 + /*
1978 + * The PCI 2.3 spec mandates that there are at most 32
1979 + * interrupts. If this device asks for more, only give it one.
1980 + */
1981 + if (request_private_bits > 5) {
1982 + request_private_bits = 0;
1983 + }
1984 +again:
1985 + /*
1986 + * The IRQs have to be aligned on a power of two based on the
1987 + * number being requested.
1988 + */
1989 + irq_step = (1 << request_private_bits);
1990 +
1991 + /* Mask with one bit for each IRQ */
1992 + search_mask = (1 << irq_step) - 1;
1993 +
1994 + /*
1995 + * We're going to search msi_free_irq_bitmask_lock for zero
1996 + * bits. This represents an MSI interrupt number that isn't in
1997 + * use.
1998 + */
1999 + spin_lock(&ifx_pcie_msi_lock);
2000 + for (pos = 0; pos < IFX_MSI_IRQ_NUM; pos += irq_step) {
2001 + if ((msi_irqs[pcie_port].msi_free_irq_bitmask & (search_mask << pos)) == 0) {
2002 + msi_irqs[pcie_port].msi_free_irq_bitmask |= search_mask << pos;
2003 + msi_irqs[pcie_port].msi_multiple_irq_bitmask |= (search_mask >> 1) << pos;
2004 + break;
2005 + }
2006 + }
2007 + spin_unlock(&ifx_pcie_msi_lock);
2008 +
2009 + /* Make sure the search for available interrupts didn't fail */
2010 + if (pos >= IFX_MSI_IRQ_NUM) {
2011 + if (request_private_bits) {
2012 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "%s: Unable to find %d free "
2013 + "interrupts, trying just one", __func__, 1 << request_private_bits);
2014 + request_private_bits = 0;
2015 + goto again;
2016 + }
2017 + else {
2018 + printk(KERN_ERR "%s: Unable to find a free MSI interrupt\n", __func__);
2019 + return -EINVAL;
2020 + }
2021 + }
2022 + irq = msi_irqs[pcie_port].msi_irq_idx[pos].irq;
2023 + irq_idx = msi_irqs[pcie_port].msi_irq_idx[pos].idx;
2024 +
2025 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "pos %d, irq %d irq_idx %d\n", pos, irq, irq_idx);
2026 +
2027 + /*
2028 + * Initialize MSI. This has to match the memory-write endianess from the device
2029 + * Address bits [23:12]
2030 + */
2031 + spin_lock(&ifx_pcie_msi_lock);
2032 + msi_irqs[pcie_port].msi_pic_p->pic_table[pos] = SM(irq_idx, IFX_MSI_PIC_INT_LINE) |
2033 + SM((msi_irqs[pcie_port].msi_phy_base >> 12), IFX_MSI_PIC_MSG_ADDR) |
2034 + SM((1 << pos), IFX_MSI_PIC_MSG_DATA);
2035 +
2036 + /* Enable this entry */
2037 + msi_irqs[pcie_port].msi_pic_p->pic_table[pos] &= ~IFX_MSI_PCI_INT_DISABLE;
2038 + spin_unlock(&ifx_pcie_msi_lock);
2039 +
2040 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "pic_table[%d]: 0x%08x\n",
2041 + pos, msi_irqs[pcie_port].msi_pic_p->pic_table[pos]);
2042 +
2043 + /* Update the number of IRQs the device has available to it */
2044 + control &= ~PCI_MSI_FLAGS_QSIZE;
2045 + control |= (request_private_bits << 4);
2046 + pci_write_config_word(pdev, desc->msi_attrib.pos + PCI_MSI_FLAGS, control);
2047 +
2048 + set_irq_msi(irq, desc);
2049 + msg.address_hi = 0x0;
2050 + msg.address_lo = msi_irqs[pcie_port].msi_phy_base;
2051 + msg.data = SM((1 << pos), IFX_MSI_PIC_MSG_DATA);
2052 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "msi_data: pos %d 0x%08x\n", pos, msg.data);
2053 +
2054 + write_msi_msg(irq, &msg);
2055 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "%s exit\n", __func__);
2056 + return 0;
2057 +}
2058 +
2059 +static int
2060 +pcie_msi_irq_to_port(unsigned int irq, int *port)
2061 +{
2062 + int ret = 0;
2063 +
2064 + if (irq == IFX_PCIE_MSI_IR0 || irq == IFX_PCIE_MSI_IR1 ||
2065 + irq == IFX_PCIE_MSI_IR2 || irq == IFX_PCIE_MSI_IR3) {
2066 + *port = IFX_PCIE_PORT0;
2067 + }
2068 +#ifdef CONFIG_IFX_PCIE_2ND_CORE
2069 + else if (irq == IFX_PCIE1_MSI_IR0 || irq == IFX_PCIE1_MSI_IR1 ||
2070 + irq == IFX_PCIE1_MSI_IR2 || irq == IFX_PCIE1_MSI_IR3) {
2071 + *port = IFX_PCIE_PORT1;
2072 + }
2073 +#endif /* CONFIG_IFX_PCIE_2ND_CORE */
2074 + else {
2075 + printk(KERN_ERR "%s: Attempted to teardown illegal "
2076 + "MSI interrupt (%d)\n", __func__, irq);
2077 + ret = -EINVAL;
2078 + }
2079 + return ret;
2080 +}
2081 +
2082 +/**
2083 + * \fn void arch_teardown_msi_irq(unsigned int irq)
2084 + * \brief Called when a device no longer needs its MSI interrupts. All
2085 + * MSI interrupts for the device are freed.
2086 + *
2087 + * \param irq The devices first irq number. There may be multple in sequence.
2088 + * \return none
2089 + * \ingroup IFX_PCIE_MSI
2090 + */
2091 +void
2092 +arch_teardown_msi_irq(unsigned int irq)
2093 +{
2094 + int pos;
2095 + int number_irqs;
2096 + u16 bitmask;
2097 + int pcie_port;
2098 +
2099 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "%s enter\n", __func__);
2100 +
2101 + BUG_ON(irq > INT_NUM_IM4_IRL31);
2102 +
2103 + if (pcie_msi_irq_to_port(irq, &pcie_port) != 0) {
2104 + return;
2105 + }
2106 +
2107 + /* Shift the mask to the correct bit location, not always correct
2108 + * Probally, the first match will be chosen.
2109 + */
2110 + for (pos = 0; pos < IFX_MSI_IRQ_NUM; pos++) {
2111 + if ((msi_irqs[pcie_port].msi_irq_idx[pos].irq == irq)
2112 + && (msi_irqs[pcie_port].msi_free_irq_bitmask & ( 1 << pos))) {
2113 + break;
2114 + }
2115 + }
2116 + if (pos >= IFX_MSI_IRQ_NUM) {
2117 + printk(KERN_ERR "%s: Unable to find a matched MSI interrupt\n", __func__);
2118 + return;
2119 + }
2120 + spin_lock(&ifx_pcie_msi_lock);
2121 + /* Disable this entry */
2122 + msi_irqs[pcie_port].msi_pic_p->pic_table[pos] |= IFX_MSI_PCI_INT_DISABLE;
2123 + msi_irqs[pcie_port].msi_pic_p->pic_table[pos] &= ~(IFX_MSI_PIC_INT_LINE | IFX_MSI_PIC_MSG_ADDR | IFX_MSI_PIC_MSG_DATA);
2124 + spin_unlock(&ifx_pcie_msi_lock);
2125 + /*
2126 + * Count the number of IRQs we need to free by looking at the
2127 + * msi_multiple_irq_bitmask. Each bit set means that the next
2128 + * IRQ is also owned by this device.
2129 + */
2130 + number_irqs = 0;
2131 + while (((pos + number_irqs) < IFX_MSI_IRQ_NUM) &&
2132 + (msi_irqs[pcie_port].msi_multiple_irq_bitmask & (1 << (pos + number_irqs)))) {
2133 + number_irqs++;
2134 + }
2135 + number_irqs++;
2136 +
2137 + /* Mask with one bit for each IRQ */
2138 + bitmask = (1 << number_irqs) - 1;
2139 +
2140 + bitmask <<= pos;
2141 + if ((msi_irqs[pcie_port].msi_free_irq_bitmask & bitmask) != bitmask) {
2142 + printk(KERN_ERR "%s: Attempted to teardown MSI "
2143 + "interrupt (%d) not in use\n", __func__, irq);
2144 + return;
2145 + }
2146 + /* Checks are done, update the in use bitmask */
2147 + spin_lock(&ifx_pcie_msi_lock);
2148 + msi_irqs[pcie_port].msi_free_irq_bitmask &= ~bitmask;
2149 + msi_irqs[pcie_port].msi_multiple_irq_bitmask &= ~(bitmask >> 1);
2150 + spin_unlock(&ifx_pcie_msi_lock);
2151 + IFX_PCIE_PRINT(PCIE_MSG_MSI, "%s exit\n", __func__);
2152 +}
2153 +
2154 +MODULE_LICENSE("GPL");
2155 +MODULE_AUTHOR("Chuanhua.Lei@infineon.com");
2156 +MODULE_DESCRIPTION("Infineon PCIe IP builtin MSI PIC driver");
2157 +
2158 --- /dev/null
2159 +++ b/arch/mips/pci/ifxmips_pcie_phy.c
2160 @@ -0,0 +1,478 @@
2161 +/******************************************************************************
2162 +**
2163 +** FILE NAME : ifxmips_pcie_phy.c
2164 +** PROJECT : IFX UEIP for VRX200
2165 +** MODULES : PCIe PHY sub module
2166 +**
2167 +** DATE : 14 May 2009
2168 +** AUTHOR : Lei Chuanhua
2169 +** DESCRIPTION : PCIe Root Complex Driver
2170 +** COPYRIGHT : Copyright (c) 2009
2171 +** Infineon Technologies AG
2172 +** Am Campeon 1-12, 85579 Neubiberg, Germany
2173 +**
2174 +** This program is free software; you can redistribute it and/or modify
2175 +** it under the terms of the GNU General Public License as published by
2176 +** the Free Software Foundation; either version 2 of the License, or
2177 +** (at your option) any later version.
2178 +** HISTORY
2179 +** $Version $Date $Author $Comment
2180 +** 0.0.1 14 May,2009 Lei Chuanhua Initial version
2181 +*******************************************************************************/
2182 +/*!
2183 + \file ifxmips_pcie_phy.c
2184 + \ingroup IFX_PCIE
2185 + \brief PCIe PHY PLL register programming source file
2186 +*/
2187 +#include <linux/types.h>
2188 +#include <linux/kernel.h>
2189 +#include <asm/paccess.h>
2190 +#include <linux/delay.h>
2191 +
2192 +#include "ifxmips_pcie_reg.h"
2193 +#include "ifxmips_pcie.h"
2194 +
2195 +/* PCIe PDI only supports 16 bit operation */
2196 +
2197 +#define IFX_PCIE_PHY_REG_WRITE16(__addr, __data) \
2198 + ((*(volatile u16 *) (__addr)) = (__data))
2199 +
2200 +#define IFX_PCIE_PHY_REG_READ16(__addr) \
2201 + (*(volatile u16 *) (__addr))
2202 +
2203 +#define IFX_PCIE_PHY_REG16(__addr) \
2204 + (*(volatile u16 *) (__addr))
2205 +
2206 +#define IFX_PCIE_PHY_REG(__reg, __value, __mask) do { \
2207 + u16 read_data; \
2208 + u16 write_data; \
2209 + read_data = IFX_PCIE_PHY_REG_READ16((__reg)); \
2210 + write_data = (read_data & ((u16)~(__mask))) | (((u16)(__value)) & ((u16)(__mask)));\
2211 + IFX_PCIE_PHY_REG_WRITE16((__reg), write_data); \
2212 +} while (0)
2213 +
2214 +#define IFX_PCIE_PLL_TIMEOUT 1000 /* Tunnable */
2215 +
2216 +//#define IFX_PCI_PHY_REG_DUMP
2217 +
2218 +#ifdef IFX_PCI_PHY_REG_DUMP
2219 +static void
2220 +pcie_phy_reg_dump(int pcie_port)
2221 +{
2222 + printk("PLL REGFILE\n");
2223 + printk("PCIE_PHY_PLL_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL1(pcie_port)));
2224 + printk("PCIE_PHY_PLL_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL2(pcie_port)));
2225 + printk("PCIE_PHY_PLL_CTRL3 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL3(pcie_port)));
2226 + printk("PCIE_PHY_PLL_CTRL4 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL4(pcie_port)));
2227 + printk("PCIE_PHY_PLL_CTRL5 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL5(pcie_port)));
2228 + printk("PCIE_PHY_PLL_CTRL6 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL6(pcie_port)));
2229 + printk("PCIE_PHY_PLL_CTRL7 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_CTRL7(pcie_port)));
2230 + printk("PCIE_PHY_PLL_A_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_A_CTRL1(pcie_port)));
2231 + printk("PCIE_PHY_PLL_A_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_A_CTRL2(pcie_port)));
2232 + printk("PCIE_PHY_PLL_A_CTRL3 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_A_CTRL3(pcie_port)));
2233 + printk("PCIE_PHY_PLL_STATUS 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_STATUS(pcie_port)));
2234 +
2235 + printk("TX1 REGFILE\n");
2236 + printk("PCIE_PHY_TX1_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_CTRL1(pcie_port)));
2237 + printk("PCIE_PHY_TX1_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_CTRL2(pcie_port)));
2238 + printk("PCIE_PHY_TX1_CTRL3 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_CTRL3(pcie_port)));
2239 + printk("PCIE_PHY_TX1_A_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_A_CTRL1(pcie_port)));
2240 + printk("PCIE_PHY_TX1_A_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_A_CTRL2(pcie_port)));
2241 + printk("PCIE_PHY_TX1_MOD1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_MOD1(pcie_port)));
2242 + printk("PCIE_PHY_TX1_MOD2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_MOD2(pcie_port)));
2243 + printk("PCIE_PHY_TX1_MOD3 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX1_MOD3(pcie_port)));
2244 +
2245 + printk("TX2 REGFILE\n");
2246 + printk("PCIE_PHY_TX2_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_CTRL1(pcie_port)));
2247 + printk("PCIE_PHY_TX2_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_CTRL2(pcie_port)));
2248 + printk("PCIE_PHY_TX2_A_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_A_CTRL1(pcie_port)));
2249 + printk("PCIE_PHY_TX2_A_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_A_CTRL2(pcie_port)));
2250 + printk("PCIE_PHY_TX2_MOD1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_MOD1(pcie_port)));
2251 + printk("PCIE_PHY_TX2_MOD2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_MOD2(pcie_port)));
2252 + printk("PCIE_PHY_TX2_MOD3 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_TX2_MOD3(pcie_port)));
2253 +
2254 + printk("RX1 REGFILE\n");
2255 + printk("PCIE_PHY_RX1_CTRL1 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_RX1_CTRL1(pcie_port)));
2256 + printk("PCIE_PHY_RX1_CTRL2 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_RX1_CTRL2(pcie_port)));
2257 + printk("PCIE_PHY_RX1_CDR 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_RX1_CDR(pcie_port)));
2258 + printk("PCIE_PHY_RX1_EI 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_RX1_EI(pcie_port)));
2259 + printk("PCIE_PHY_RX1_A_CTRL 0x%04x\n", IFX_PCIE_PHY_REG16(PCIE_PHY_RX1_A_CTRL(pcie_port)));
2260 +}
2261 +#endif /* IFX_PCI_PHY_REG_DUMP */
2262 +
2263 +static void
2264 +pcie_phy_comm_setup(int pcie_port)
2265 +{
2266 + /* PLL Setting */
2267 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL1(pcie_port), 0x120e, 0xFFFF);
2268 +
2269 + /* increase the bias reference voltage */
2270 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL2(pcie_port), 0x39D7, 0xFFFF);
2271 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL3(pcie_port), 0x0900, 0xFFFF);
2272 +
2273 + /* Endcnt */
2274 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_EI(pcie_port), 0x0004, 0xFFFF);
2275 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_A_CTRL(pcie_port), 0x6803, 0xFFFF);
2276 +
2277 + /* force */
2278 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL1(pcie_port), 0x0008, 0x0008);
2279 +
2280 + /* predrv_ser_en */
2281 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_A_CTRL2(pcie_port), 0x0706, 0xFFFF);
2282 +
2283 + /* ctrl_lim */
2284 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL3(pcie_port), 0x1FFF, 0xFFFF);
2285 +
2286 + /* ctrl */
2287 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_A_CTRL1(pcie_port), 0x0800, 0xFF00);
2288 +
2289 + /* predrv_ser_en */
2290 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_A_CTRL2(pcie_port), 0x4702, 0x7F00);
2291 +
2292 + /* RTERM*/
2293 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL2(pcie_port), 0x2e00, 0xFFFF);
2294 +
2295 + /* Improved 100MHz clock output */
2296 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_CTRL2(pcie_port), 0x3096, 0xFFFF);
2297 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_A_CTRL2(pcie_port), 0x4707, 0xFFFF);
2298 +
2299 + /* Reduced CDR BW to avoid glitches */
2300 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_CDR(pcie_port), 0x0235, 0xFFFF);
2301 +}
2302 +
2303 +#ifdef CONFIG_IFX_PCIE_PHY_36MHZ_MODE
2304 +static void
2305 +pcie_phy_36mhz_mode_setup(int pcie_port)
2306 +{
2307 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d enter\n", __func__, pcie_port);
2308 +#ifdef IFX_PCI_PHY_REG_DUMP
2309 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "Initial PHY register dump\n");
2310 + pcie_phy_reg_dump(pcie_port);
2311 +#endif
2312 +
2313 + /* en_ext_mmd_div_ratio */
2314 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0000, 0x0002);
2315 +
2316 + /* ext_mmd_div_ratio*/
2317 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0000, 0x0070);
2318 +
2319 + /* pll_ensdm */
2320 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0200, 0x0200);
2321 +
2322 + /* en_const_sdm */
2323 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0100, 0x0100);
2324 +
2325 + /* mmd */
2326 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL3(pcie_port), 0x2000, 0xe000);
2327 +
2328 + /* lf_mode */
2329 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL2(pcie_port), 0x0000, 0x4000);
2330 +
2331 + /* const_sdm */
2332 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL1(pcie_port), 0x38e4, 0xFFFF);
2333 +
2334 + /* const sdm */
2335 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x00ee, 0x00FF);
2336 +
2337 + /* pllmod */
2338 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL7(pcie_port), 0x0002, 0xFFFF);
2339 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL6(pcie_port), 0x3a04, 0xFFFF);
2340 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL5(pcie_port), 0xfae3, 0xFFFF);
2341 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL4(pcie_port), 0x1b72, 0xFFFF);
2342 +
2343 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d exit\n", __func__, pcie_port);
2344 +}
2345 +#endif /* CONFIG_IFX_PCIE_PHY_36MHZ_MODE */
2346 +
2347 +#ifdef CONFIG_IFX_PCIE_PHY_36MHZ_SSC_MODE
2348 +static void
2349 +pcie_phy_36mhz_ssc_mode_setup(int pcie_port)
2350 +{
2351 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d enter\n", __func__, pcie_port);
2352 +#ifdef IFX_PCI_PHY_REG_DUMP
2353 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "Initial PHY register dump\n");
2354 + pcie_phy_reg_dump(pcie_port);
2355 +#endif
2356 +
2357 + /* PLL Setting */
2358 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL1(pcie_port), 0x120e, 0xFFFF);
2359 +
2360 + /* Increase the bias reference voltage */
2361 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL2(pcie_port), 0x39D7, 0xFFFF);
2362 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL3(pcie_port), 0x0900, 0xFFFF);
2363 +
2364 + /* Endcnt */
2365 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_EI(pcie_port), 0x0004, 0xFFFF);
2366 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_A_CTRL(pcie_port), 0x6803, 0xFFFF);
2367 +
2368 + /* Force */
2369 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL1(pcie_port), 0x0008, 0x0008);
2370 +
2371 + /* Predrv_ser_en */
2372 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_A_CTRL2(pcie_port), 0x0706, 0xFFFF);
2373 +
2374 + /* ctrl_lim */
2375 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL3(pcie_port), 0x1FFF, 0xFFFF);
2376 +
2377 + /* ctrl */
2378 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_A_CTRL1(pcie_port), 0x0800, 0xFF00);
2379 +
2380 + /* predrv_ser_en */
2381 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_A_CTRL2(pcie_port), 0x4702, 0x7F00);
2382 +
2383 + /* RTERM*/
2384 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL2(pcie_port), 0x2e00, 0xFFFF);
2385 +
2386 + /* en_ext_mmd_div_ratio */
2387 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0000, 0x0002);
2388 +
2389 + /* ext_mmd_div_ratio*/
2390 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0000, 0x0070);
2391 +
2392 + /* pll_ensdm */
2393 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0400, 0x0400);
2394 +
2395 + /* en_const_sdm */
2396 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0200, 0x0200);
2397 +
2398 + /* mmd */
2399 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL3(pcie_port), 0x2000, 0xe000);
2400 +
2401 + /* lf_mode */
2402 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL2(pcie_port), 0x0000, 0x4000);
2403 +
2404 + /* const_sdm */
2405 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL1(pcie_port), 0x38e4, 0xFFFF);
2406 +
2407 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0000, 0x0100);
2408 + /* const sdm */
2409 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x00ee, 0x00FF);
2410 +
2411 + /* pllmod */
2412 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL7(pcie_port), 0x0002, 0xFFFF);
2413 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL6(pcie_port), 0x3a04, 0xFFFF);
2414 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL5(pcie_port), 0xfae3, 0xFFFF);
2415 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL4(pcie_port), 0x1c72, 0xFFFF);
2416 +
2417 + /* improved 100MHz clock output */
2418 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_CTRL2(pcie_port), 0x3096, 0xFFFF);
2419 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_A_CTRL2(pcie_port), 0x4707, 0xFFFF);
2420 +
2421 + /* reduced CDR BW to avoid glitches */
2422 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_CDR(pcie_port), 0x0235, 0xFFFF);
2423 +
2424 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d exit\n", __func__, pcie_port);
2425 +}
2426 +#endif /* CONFIG_IFX_PCIE_PHY_36MHZ_SSC_MODE */
2427 +
2428 +#ifdef CONFIG_IFX_PCIE_PHY_25MHZ_MODE
2429 +static void
2430 +pcie_phy_25mhz_mode_setup(int pcie_port)
2431 +{
2432 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d enter\n", __func__, pcie_port);
2433 +#ifdef IFX_PCI_PHY_REG_DUMP
2434 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "Initial PHY register dump\n");
2435 + pcie_phy_reg_dump(pcie_port);
2436 +#endif
2437 + /* en_const_sdm */
2438 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0100, 0x0100);
2439 +
2440 + /* pll_ensdm */
2441 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0000, 0x0200);
2442 +
2443 + /* en_ext_mmd_div_ratio*/
2444 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0002, 0x0002);
2445 +
2446 + /* ext_mmd_div_ratio*/
2447 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0040, 0x0070);
2448 +
2449 + /* mmd */
2450 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL3(pcie_port), 0x6000, 0xe000);
2451 +
2452 + /* lf_mode */
2453 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL2(pcie_port), 0x4000, 0x4000);
2454 +
2455 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d exit\n", __func__, pcie_port);
2456 +}
2457 +#endif /* CONFIG_IFX_PCIE_PHY_25MHZ_MODE */
2458 +
2459 +#ifdef CONFIG_IFX_PCIE_PHY_100MHZ_MODE
2460 +static void
2461 +pcie_phy_100mhz_mode_setup(int pcie_port)
2462 +{
2463 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d enter\n", __func__, pcie_port);
2464 +#ifdef IFX_PCI_PHY_REG_DUMP
2465 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "Initial PHY register dump\n");
2466 + pcie_phy_reg_dump(pcie_port);
2467 +#endif
2468 + /* en_ext_mmd_div_ratio */
2469 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0000, 0x0002);
2470 +
2471 + /* ext_mmd_div_ratio*/
2472 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL3(pcie_port), 0x0000, 0x0070);
2473 +
2474 + /* pll_ensdm */
2475 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0200, 0x0200);
2476 +
2477 + /* en_const_sdm */
2478 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x0100, 0x0100);
2479 +
2480 + /* mmd */
2481 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL3(pcie_port), 0x2000, 0xe000);
2482 +
2483 + /* lf_mode */
2484 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_A_CTRL2(pcie_port), 0x0000, 0x4000);
2485 +
2486 + /* const_sdm */
2487 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL1(pcie_port), 0x38e4, 0xFFFF);
2488 +
2489 + /* const sdm */
2490 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL2(pcie_port), 0x00ee, 0x00FF);
2491 +
2492 + /* pllmod */
2493 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL7(pcie_port), 0x0002, 0xFFFF);
2494 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL6(pcie_port), 0x3a04, 0xFFFF);
2495 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL5(pcie_port), 0xfae3, 0xFFFF);
2496 + IFX_PCIE_PHY_REG(PCIE_PHY_PLL_CTRL4(pcie_port), 0x1b72, 0xFFFF);
2497 +
2498 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "%s pcie_port %d exit\n", __func__, pcie_port);
2499 +}
2500 +#endif /* CONFIG_IFX_PCIE_PHY_100MHZ_MODE */
2501 +
2502 +static int
2503 +pcie_phy_wait_startup_ready(int pcie_port)
2504 +{
2505 + int i;
2506 +
2507 + for (i = 0; i < IFX_PCIE_PLL_TIMEOUT; i++) {
2508 + if ((IFX_PCIE_PHY_REG16(PCIE_PHY_PLL_STATUS(pcie_port)) & 0x0040) != 0) {
2509 + break;
2510 + }
2511 + udelay(10);
2512 + }
2513 + if (i >= IFX_PCIE_PLL_TIMEOUT) {
2514 + printk(KERN_ERR "%s PLL Link timeout\n", __func__);
2515 + return -1;
2516 + }
2517 + return 0;
2518 +}
2519 +
2520 +static void
2521 +pcie_phy_load_enable(int pcie_port, int slice)
2522 +{
2523 + /* Set the load_en of tx/rx slice to '1' */
2524 + switch (slice) {
2525 + case 1:
2526 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL1(pcie_port), 0x0010, 0x0010);
2527 + break;
2528 + case 2:
2529 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_CTRL1(pcie_port), 0x0010, 0x0010);
2530 + break;
2531 + case 3:
2532 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_CTRL1(pcie_port), 0x0002, 0x0002);
2533 + break;
2534 + }
2535 +}
2536 +
2537 +static void
2538 +pcie_phy_load_disable(int pcie_port, int slice)
2539 +{
2540 + /* set the load_en of tx/rx slice to '0' */
2541 + switch (slice) {
2542 + case 1:
2543 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_CTRL1(pcie_port), 0x0000, 0x0010);
2544 + break;
2545 + case 2:
2546 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_CTRL1(pcie_port), 0x0000, 0x0010);
2547 + break;
2548 + case 3:
2549 + IFX_PCIE_PHY_REG(PCIE_PHY_RX1_CTRL1(pcie_port), 0x0000, 0x0002);
2550 + break;
2551 + }
2552 +}
2553 +
2554 +static void
2555 +pcie_phy_load_war(int pcie_port)
2556 +{
2557 + int slice;
2558 +
2559 + for (slice = 1; slice < 4; slice++) {
2560 + pcie_phy_load_enable(pcie_port, slice);
2561 + udelay(1);
2562 + pcie_phy_load_disable(pcie_port, slice);
2563 + }
2564 +}
2565 +
2566 +static void
2567 +pcie_phy_tx2_modulation(int pcie_port)
2568 +{
2569 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_MOD1(pcie_port), 0x1FFE, 0xFFFF);
2570 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_MOD2(pcie_port), 0xFFFE, 0xFFFF);
2571 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_MOD3(pcie_port), 0x0601, 0xFFFF);
2572 + mdelay(1);
2573 + IFX_PCIE_PHY_REG(PCIE_PHY_TX2_MOD3(pcie_port), 0x0001, 0xFFFF);
2574 +}
2575 +
2576 +static void
2577 +pcie_phy_tx1_modulation(int pcie_port)
2578 +{
2579 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_MOD1(pcie_port), 0x1FFE, 0xFFFF);
2580 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_MOD2(pcie_port), 0xFFFE, 0xFFFF);
2581 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_MOD3(pcie_port), 0x0601, 0xFFFF);
2582 + mdelay(1);
2583 + IFX_PCIE_PHY_REG(PCIE_PHY_TX1_MOD3(pcie_port), 0x0001, 0xFFFF);
2584 +}
2585 +
2586 +static void
2587 +pcie_phy_tx_modulation_war(int pcie_port)
2588 +{
2589 + int i;
2590 +
2591 +#define PCIE_PHY_MODULATION_NUM 5
2592 + for (i = 0; i < PCIE_PHY_MODULATION_NUM; i++) {
2593 + pcie_phy_tx2_modulation(pcie_port);
2594 + pcie_phy_tx1_modulation(pcie_port);
2595 + }
2596 +#undef PCIE_PHY_MODULATION_NUM
2597 +}
2598 +
2599 +void
2600 +pcie_phy_clock_mode_setup(int pcie_port)
2601 +{
2602 + pcie_pdi_big_endian(pcie_port);
2603 +
2604 + /* Enable PDI to access PCIe PHY register */
2605 + pcie_pdi_pmu_enable(pcie_port);
2606 +
2607 + /* Configure PLL and PHY clock */
2608 + pcie_phy_comm_setup(pcie_port);
2609 +
2610 +#ifdef CONFIG_IFX_PCIE_PHY_36MHZ_MODE
2611 + pcie_phy_36mhz_mode_setup(pcie_port);
2612 +#elif defined(CONFIG_IFX_PCIE_PHY_36MHZ_SSC_MODE)
2613 + pcie_phy_36mhz_ssc_mode_setup(pcie_port);
2614 +#elif defined(CONFIG_IFX_PCIE_PHY_25MHZ_MODE)
2615 + pcie_phy_25mhz_mode_setup(pcie_port);
2616 +#elif defined (CONFIG_IFX_PCIE_PHY_100MHZ_MODE)
2617 + pcie_phy_100mhz_mode_setup(pcie_port);
2618 +#else
2619 + #error "PCIE PHY Clock Mode must be chosen first!!!!"
2620 +#endif /* CONFIG_IFX_PCIE_PHY_36MHZ_MODE */
2621 +
2622 + /* Enable PCIe PHY and make PLL setting take effect */
2623 + pcie_phy_pmu_enable(pcie_port);
2624 +
2625 + /* Check if we are in startup_ready status */
2626 + pcie_phy_wait_startup_ready(pcie_port);
2627 +
2628 + pcie_phy_load_war(pcie_port);
2629 +
2630 + /* Apply TX modulation workarounds */
2631 + pcie_phy_tx_modulation_war(pcie_port);
2632 +
2633 +#ifdef IFX_PCI_PHY_REG_DUMP
2634 + IFX_PCIE_PRINT(PCIE_MSG_PHY, "Modified PHY register dump\n");
2635 + pcie_phy_reg_dump(pcie_port);
2636 +#endif
2637 +}
2638 +
2639 --- /dev/null
2640 +++ b/arch/mips/pci/ifxmips_pcie_pm.c
2641 @@ -0,0 +1,176 @@
2642 +/******************************************************************************
2643 +**
2644 +** FILE NAME : ifxmips_pcie_pm.c
2645 +** PROJECT : IFX UEIP
2646 +** MODULES : PCIE Root Complex Driver
2647 +**
2648 +** DATE : 21 Dec 2009
2649 +** AUTHOR : Lei Chuanhua
2650 +** DESCRIPTION : PCIE Root Complex Driver Power Managment
2651 +** COPYRIGHT : Copyright (c) 2009
2652 +** Lantiq Deutschland GmbH
2653 +** Am Campeon 3, 85579 Neubiberg, Germany
2654 +**
2655 +** This program is free software; you can redistribute it and/or modify
2656 +** it under the terms of the GNU General Public License as published by
2657 +** the Free Software Foundation; either version 2 of the License, or
2658 +** (at your option) any later version.
2659 +**
2660 +** HISTORY
2661 +** $Date $Author $Comment
2662 +** 21 Dec,2009 Lei Chuanhua First UEIP release
2663 +*******************************************************************************/
2664 +/*!
2665 + \defgroup IFX_PCIE_PM Power Management functions
2666 + \ingroup IFX_PCIE
2667 + \brief IFX PCIE Root Complex Driver power management functions
2668 +*/
2669 +
2670 +/*!
2671 + \file ifxmips_pcie_pm.c
2672 + \ingroup IFX_PCIE
2673 + \brief source file for PCIE Root Complex Driver Power Management
2674 +*/
2675 +
2676 +#ifndef EXPORT_SYMTAB
2677 +#define EXPORT_SYMTAB
2678 +#endif
2679 +#ifndef AUTOCONF_INCLUDED
2680 +#include <linux/config.h>
2681 +#endif /* AUTOCONF_INCLUDED */
2682 +#include <linux/version.h>
2683 +#include <linux/module.h>
2684 +#include <linux/types.h>
2685 +#include <linux/kernel.h>
2686 +#include <asm/system.h>
2687 +
2688 +/* Project header */
2689 +#include <asm/ifx/ifx_types.h>
2690 +#include <asm/ifx/ifx_regs.h>
2691 +#include <asm/ifx/common_routines.h>
2692 +#include <asm/ifx/ifx_pmcu.h>
2693 +#include "ifxmips_pcie_pm.h"
2694 +
2695 +/**
2696 + * \fn static IFX_PMCU_RETURN_t ifx_pcie_pmcu_state_change(IFX_PMCU_STATE_t pmcuState)
2697 + * \brief the callback function to request pmcu state in the power management hardware-dependent module
2698 + *
2699 + * \param pmcuState This parameter is a PMCU state.
2700 + *
2701 + * \return IFX_PMCU_RETURN_SUCCESS Set Power State successfully
2702 + * \return IFX_PMCU_RETURN_ERROR Failed to set power state.
2703 + * \return IFX_PMCU_RETURN_DENIED Not allowed to operate power state
2704 + * \ingroup IFX_PCIE_PM
2705 + */
2706 +static IFX_PMCU_RETURN_t
2707 +ifx_pcie_pmcu_state_change(IFX_PMCU_STATE_t pmcuState)
2708 +{
2709 + switch(pmcuState)
2710 + {
2711 + case IFX_PMCU_STATE_D0:
2712 + return IFX_PMCU_RETURN_SUCCESS;
2713 + case IFX_PMCU_STATE_D1: // Not Applicable
2714 + return IFX_PMCU_RETURN_DENIED;
2715 + case IFX_PMCU_STATE_D2: // Not Applicable
2716 + return IFX_PMCU_RETURN_DENIED;
2717 + case IFX_PMCU_STATE_D3: // Module clock gating and Power gating
2718 + return IFX_PMCU_RETURN_SUCCESS;
2719 + default:
2720 + return IFX_PMCU_RETURN_DENIED;
2721 + }
2722 +}
2723 +
2724 +/**
2725 + * \fn static IFX_PMCU_RETURN_t ifx_pcie_pmcu_state_get(IFX_PMCU_STATE_t *pmcuState)
2726 + * \brief the callback function to get pmcu state in the power management hardware-dependent module
2727 +
2728 + * \param pmcuState Pointer to return power state.
2729 + *
2730 + * \return IFX_PMCU_RETURN_SUCCESS Set Power State successfully
2731 + * \return IFX_PMCU_RETURN_ERROR Failed to set power state.
2732 + * \return IFX_PMCU_RETURN_DENIED Not allowed to operate power state
2733 + * \ingroup IFX_PCIE_PM
2734 + */
2735 +static IFX_PMCU_RETURN_t
2736 +ifx_pcie_pmcu_state_get(IFX_PMCU_STATE_t *pmcuState)
2737 +{
2738 + return IFX_PMCU_RETURN_SUCCESS;
2739 +}
2740 +
2741 +/**
2742 + * \fn IFX_PMCU_RETURN_t ifx_pcie_pmcu_prechange(IFX_PMCU_MODULE_t pmcuModule, IFX_PMCU_STATE_t newState, IFX_PMCU_STATE_t oldState)
2743 + * \brief Apply all callbacks registered to be executed before a state change for pmcuModule
2744 + *
2745 + * \param pmcuModule Module
2746 + * \param newState New state
2747 + * \param oldState Old state
2748 + * \return IFX_PMCU_RETURN_SUCCESS Set Power State successfully
2749 + * \return IFX_PMCU_RETURN_ERROR Failed to set power state.
2750 + * \ingroup IFX_PCIE_PM
2751 + */
2752 +static IFX_PMCU_RETURN_t
2753 +ifx_pcie_pmcu_prechange(IFX_PMCU_MODULE_t pmcuModule, IFX_PMCU_STATE_t newState, IFX_PMCU_STATE_t oldState)
2754 +{
2755 + return IFX_PMCU_RETURN_SUCCESS;
2756 +}
2757 +
2758 +/**
2759 + * \fn IFX_PMCU_RETURN_t ifx_pcie_pmcu_postchange(IFX_PMCU_MODULE_t pmcuModule, IFX_PMCU_STATE_t newState, IFX_PMCU_STATE_t oldState)
2760 + * \brief Apply all callbacks registered to be executed before a state change for pmcuModule
2761 + *
2762 + * \param pmcuModule Module
2763 + * \param newState New state
2764 + * \param oldState Old state
2765 + * \return IFX_PMCU_RETURN_SUCCESS Set Power State successfully
2766 + * \return IFX_PMCU_RETURN_ERROR Failed to set power state.
2767 + * \ingroup IFX_PCIE_PM
2768 + */
2769 +static IFX_PMCU_RETURN_t
2770 +ifx_pcie_pmcu_postchange(IFX_PMCU_MODULE_t pmcuModule, IFX_PMCU_STATE_t newState, IFX_PMCU_STATE_t oldState)
2771 +{
2772 + return IFX_PMCU_RETURN_SUCCESS;
2773 +}
2774 +
2775 +/**
2776 + * \fn static void ifx_pcie_pmcu_init(void)
2777 + * \brief Register with central PMCU module
2778 + * \return none
2779 + * \ingroup IFX_PCIE_PM
2780 + */
2781 +void
2782 +ifx_pcie_pmcu_init(void)
2783 +{
2784 + IFX_PMCU_REGISTER_t pmcuRegister;
2785 +
2786 + /* XXX, hook driver context */
2787 +
2788 + /* State function register */
2789 + memset(&pmcuRegister, 0, sizeof(IFX_PMCU_REGISTER_t));
2790 + pmcuRegister.pmcuModule = IFX_PMCU_MODULE_PCIE;
2791 + pmcuRegister.pmcuModuleNr = 0;
2792 + pmcuRegister.ifx_pmcu_state_change = ifx_pcie_pmcu_state_change;
2793 + pmcuRegister.ifx_pmcu_state_get = ifx_pcie_pmcu_state_get;
2794 + pmcuRegister.pre = ifx_pcie_pmcu_prechange;
2795 + pmcuRegister.post= ifx_pcie_pmcu_postchange;
2796 + ifx_pmcu_register(&pmcuRegister);
2797 +}
2798 +
2799 +/**
2800 + * \fn static void ifx_pcie_pmcu_exit(void)
2801 + * \brief Unregister with central PMCU module
2802 + *
2803 + * \return none
2804 + * \ingroup IFX_PCIE_PM
2805 + */
2806 +void
2807 +ifx_pcie_pmcu_exit(void)
2808 +{
2809 + IFX_PMCU_REGISTER_t pmcuUnRegister;
2810 +
2811 + /* XXX, hook driver context */
2812 +
2813 + pmcuUnRegister.pmcuModule = IFX_PMCU_MODULE_PCIE;
2814 + pmcuUnRegister.pmcuModuleNr = 0;
2815 + ifx_pmcu_unregister(&pmcuUnRegister);
2816 +}
2817 +
2818 --- /dev/null
2819 +++ b/arch/mips/pci/ifxmips_pcie_pm.h
2820 @@ -0,0 +1,36 @@
2821 +/******************************************************************************
2822 +**
2823 +** FILE NAME : ifxmips_pcie_pm.h
2824 +** PROJECT : IFX UEIP
2825 +** MODULES : PCIe Root Complex Driver
2826 +**
2827 +** DATE : 21 Dec 2009
2828 +** AUTHOR : Lei Chuanhua
2829 +** DESCRIPTION : PCIe Root Complex Driver Power Managment
2830 +** COPYRIGHT : Copyright (c) 2009
2831 +** Lantiq Deutschland GmbH
2832 +** Am Campeon 3, 85579 Neubiberg, Germany
2833 +**
2834 +** This program is free software; you can redistribute it and/or modify
2835 +** it under the terms of the GNU General Public License as published by
2836 +** the Free Software Foundation; either version 2 of the License, or
2837 +** (at your option) any later version.
2838 +**
2839 +** HISTORY
2840 +** $Date $Author $Comment
2841 +** 21 Dec,2009 Lei Chuanhua First UEIP release
2842 +*******************************************************************************/
2843 +/*!
2844 + \file ifxmips_pcie_pm.h
2845 + \ingroup IFX_PCIE
2846 + \brief header file for PCIe Root Complex Driver Power Management
2847 +*/
2848 +
2849 +#ifndef IFXMIPS_PCIE_PM_H
2850 +#define IFXMIPS_PCIE_PM_H
2851 +
2852 +void ifx_pcie_pmcu_init(void);
2853 +void ifx_pcie_pmcu_exit(void);
2854 +
2855 +#endif /* IFXMIPS_PCIE_PM_H */
2856 +
2857 --- /dev/null
2858 +++ b/arch/mips/pci/ifxmips_pcie_reg.h
2859 @@ -0,0 +1,1001 @@
2860 +/******************************************************************************
2861 +**
2862 +** FILE NAME : ifxmips_pcie_reg.h
2863 +** PROJECT : IFX UEIP for VRX200
2864 +** MODULES : PCIe module
2865 +**
2866 +** DATE : 02 Mar 2009
2867 +** AUTHOR : Lei Chuanhua
2868 +** DESCRIPTION : PCIe Root Complex Driver
2869 +** COPYRIGHT : Copyright (c) 2009
2870 +** Infineon Technologies AG
2871 +** Am Campeon 1-12, 85579 Neubiberg, Germany
2872 +**
2873 +** This program is free software; you can redistribute it and/or modify
2874 +** it under the terms of the GNU General Public License as published by
2875 +** the Free Software Foundation; either version 2 of the License, or
2876 +** (at your option) any later version.
2877 +** HISTORY
2878 +** $Version $Date $Author $Comment
2879 +** 0.0.1 17 Mar,2009 Lei Chuanhua Initial version
2880 +*******************************************************************************/
2881 +#ifndef IFXMIPS_PCIE_REG_H
2882 +#define IFXMIPS_PCIE_REG_H
2883 +/*!
2884 + \file ifxmips_pcie_reg.h
2885 + \ingroup IFX_PCIE
2886 + \brief header file for PCIe module register definition
2887 +*/
2888 +/* PCIe Address Mapping Base */
2889 +#define PCIE_CFG_PHY_BASE 0x1D000000UL
2890 +#define PCIE_CFG_BASE (KSEG1 + PCIE_CFG_PHY_BASE)
2891 +#define PCIE_CFG_SIZE (8 * 1024 * 1024)
2892 +
2893 +#define PCIE_MEM_PHY_BASE 0x1C000000UL
2894 +#define PCIE_MEM_BASE (KSEG1 + PCIE_MEM_PHY_BASE)
2895 +#define PCIE_MEM_SIZE (16 * 1024 * 1024)
2896 +#define PCIE_MEM_PHY_END (PCIE_MEM_PHY_BASE + PCIE_MEM_SIZE - 1)
2897 +
2898 +#define PCIE_IO_PHY_BASE 0x1D800000UL
2899 +#define PCIE_IO_BASE (KSEG1 + PCIE_IO_PHY_BASE)
2900 +#define PCIE_IO_SIZE (1 * 1024 * 1024)
2901 +#define PCIE_IO_PHY_END (PCIE_IO_PHY_BASE + PCIE_IO_SIZE - 1)
2902 +
2903 +#define PCIE_RC_CFG_BASE (KSEG1 + 0x1D900000)
2904 +#define PCIE_APP_LOGIC_REG (KSEG1 + 0x1E100900)
2905 +#define PCIE_MSI_PHY_BASE 0x1F600000UL
2906 +
2907 +#define PCIE_PDI_PHY_BASE 0x1F106800UL
2908 +#define PCIE_PDI_BASE (KSEG1 + PCIE_PDI_PHY_BASE)
2909 +#define PCIE_PDI_SIZE 0x400
2910 +
2911 +#define PCIE1_CFG_PHY_BASE 0x19000000UL
2912 +#define PCIE1_CFG_BASE (KSEG1 + PCIE1_CFG_PHY_BASE)
2913 +#define PCIE1_CFG_SIZE (8 * 1024 * 1024)
2914 +
2915 +#define PCIE1_MEM_PHY_BASE 0x18000000UL
2916 +#define PCIE1_MEM_BASE (KSEG1 + PCIE1_MEM_PHY_BASE)
2917 +#define PCIE1_MEM_SIZE (16 * 1024 * 1024)
2918 +#define PCIE1_MEM_PHY_END (PCIE1_MEM_PHY_BASE + PCIE1_MEM_SIZE - 1)
2919 +
2920 +#define PCIE1_IO_PHY_BASE 0x19800000UL
2921 +#define PCIE1_IO_BASE (KSEG1 + PCIE1_IO_PHY_BASE)
2922 +#define PCIE1_IO_SIZE (1 * 1024 * 1024)
2923 +#define PCIE1_IO_PHY_END (PCIE1_IO_PHY_BASE + PCIE1_IO_SIZE - 1)
2924 +
2925 +#define PCIE1_RC_CFG_BASE (KSEG1 + 0x19900000)
2926 +#define PCIE1_APP_LOGIC_REG (KSEG1 + 0x1E100700)
2927 +#define PCIE1_MSI_PHY_BASE 0x1F400000UL
2928 +
2929 +#define PCIE1_PDI_PHY_BASE 0x1F700400UL
2930 +#define PCIE1_PDI_BASE (KSEG1 + PCIE1_PDI_PHY_BASE)
2931 +#define PCIE1_PDI_SIZE 0x400
2932 +
2933 +#define PCIE_CFG_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_CFG_BASE) : (PCIE_CFG_BASE))
2934 +#define PCIE_MEM_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_MEM_BASE) : (PCIE_MEM_BASE))
2935 +#define PCIE_IO_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_IO_BASE) : (PCIE_IO_BASE))
2936 +#define PCIE_MEM_PHY_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_MEM_PHY_BASE) : (PCIE_MEM_PHY_BASE))
2937 +#define PCIE_MEM_PHY_PORT_TO_END(X) ((X) > 0 ? (PCIE1_MEM_PHY_END) : (PCIE_MEM_PHY_END))
2938 +#define PCIE_IO_PHY_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_IO_PHY_BASE) : (PCIE_IO_PHY_BASE))
2939 +#define PCIE_IO_PHY_PORT_TO_END(X) ((X) > 0 ? (PCIE1_IO_PHY_END) : (PCIE_IO_PHY_END))
2940 +#define PCIE_APP_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_APP_LOGIC_REG) : (PCIE_APP_LOGIC_REG))
2941 +#define PCIE_RC_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_RC_CFG_BASE) : (PCIE_RC_CFG_BASE))
2942 +#define PCIE_PHY_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_PDI_BASE) : (PCIE_PDI_BASE))
2943 +
2944 +/* PCIe Application Logic Register */
2945 +/* RC Core Control Register */
2946 +#define PCIE_RC_CCR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x10)
2947 +/* This should be enabled after initializing configuratin registers
2948 + * Also should check link status retraining bit
2949 + */
2950 +#define PCIE_RC_CCR_LTSSM_ENABLE 0x00000001 /* Enable LTSSM to continue link establishment */
2951 +
2952 +/* RC Core Debug Register */
2953 +#define PCIE_RC_DR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x14)
2954 +#define PCIE_RC_DR_DLL_UP 0x00000001 /* Data Link Layer Up */
2955 +#define PCIE_RC_DR_CURRENT_POWER_STATE 0x0000000E /* Current Power State */
2956 +#define PCIE_RC_DR_CURRENT_POWER_STATE_S 1
2957 +#define PCIE_RC_DR_CURRENT_LTSSM_STATE 0x000001F0 /* Current LTSSM State */
2958 +#define PCIE_RC_DR_CURRENT_LTSSM_STATE_S 4
2959 +
2960 +#define PCIE_RC_DR_PM_DEV_STATE 0x00000E00 /* Power Management D-State */
2961 +#define PCIE_RC_DR_PM_DEV_STATE_S 9
2962 +
2963 +#define PCIE_RC_DR_PM_ENABLED 0x00001000 /* Power Management State from PMU */
2964 +#define PCIE_RC_DR_PME_EVENT_ENABLED 0x00002000 /* Power Management Event Enable State */
2965 +#define PCIE_RC_DR_AUX_POWER_ENABLED 0x00004000 /* Auxiliary Power Enable */
2966 +
2967 +/* Current Power State Definition */
2968 +enum {
2969 + PCIE_RC_DR_D0 = 0,
2970 + PCIE_RC_DR_D1, /* Not supported */
2971 + PCIE_RC_DR_D2, /* Not supported */
2972 + PCIE_RC_DR_D3,
2973 + PCIE_RC_DR_UN,
2974 +};
2975 +
2976 +/* PHY Link Status Register */
2977 +#define PCIE_PHY_SR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x18)
2978 +#define PCIE_PHY_SR_PHY_LINK_UP 0x00000001 /* PHY Link Up/Down Indicator */
2979 +
2980 +/* Electromechanical Control Register */
2981 +#define PCIE_EM_CR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x1C)
2982 +#define PCIE_EM_CR_CARD_IS_PRESENT 0x00000001 /* Card Presence Detect State */
2983 +#define PCIE_EM_CR_MRL_OPEN 0x00000002 /* MRL Sensor State */
2984 +#define PCIE_EM_CR_POWER_FAULT_SET 0x00000004 /* Power Fault Detected */
2985 +#define PCIE_EM_CR_MRL_SENSOR_SET 0x00000008 /* MRL Sensor Changed */
2986 +#define PCIE_EM_CR_PRESENT_DETECT_SET 0x00000010 /* Card Presense Detect Changed */
2987 +#define PCIE_EM_CR_CMD_CPL_INT_SET 0x00000020 /* Command Complete Interrupt */
2988 +#define PCIE_EM_CR_SYS_INTERLOCK_SET 0x00000040 /* System Electromechanical IterLock Engaged */
2989 +#define PCIE_EM_CR_ATTENTION_BUTTON_SET 0x00000080 /* Attention Button Pressed */
2990 +
2991 +/* Interrupt Status Register */
2992 +#define PCIE_IR_SR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x20)
2993 +#define PCIE_IR_SR_PME_CAUSE_MSI 0x00000002 /* MSI caused by PME */
2994 +#define PCIE_IR_SR_HP_PME_WAKE_GEN 0x00000004 /* Hotplug PME Wake Generation */
2995 +#define PCIE_IR_SR_HP_MSI 0x00000008 /* Hotplug MSI */
2996 +#define PCIE_IR_SR_AHB_LU_ERR 0x00000030 /* AHB Bridge Lookup Error Signals */
2997 +#define PCIE_IR_SR_AHB_LU_ERR_S 4
2998 +#define PCIE_IR_SR_INT_MSG_NUM 0x00003E00 /* Interrupt Message Number */
2999 +#define PCIE_IR_SR_INT_MSG_NUM_S 9
3000 +#define PCIE_IR_SR_AER_INT_MSG_NUM 0xF8000000 /* Advanced Error Interrupt Message Number */
3001 +#define PCIE_IR_SR_AER_INT_MSG_NUM_S 27
3002 +
3003 +/* Message Control Register */
3004 +#define PCIE_MSG_CR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x30)
3005 +#define PCIE_MSG_CR_GEN_PME_TURN_OFF_MSG 0x00000001 /* Generate PME Turn Off Message */
3006 +#define PCIE_MSG_CR_GEN_UNLOCK_MSG 0x00000002 /* Generate Unlock Message */
3007 +
3008 +#define PCIE_VDM_DR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x34)
3009 +
3010 +/* Vendor-Defined Message Requester ID Register */
3011 +#define PCIE_VDM_RID(X) (PCIE_APP_PORT_TO_BASE (X) + 0x38)
3012 +#define PCIE_VDM_RID_VENROR_MSG_REQ_ID 0x0000FFFF
3013 +#define PCIE_VDM_RID_VDMRID_S 0
3014 +
3015 +/* ASPM Control Register */
3016 +#define PCIE_ASPM_CR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x40)
3017 +#define PCIE_ASPM_CR_HOT_RST 0x00000001 /* Hot Reset Request to the downstream device */
3018 +#define PCIE_ASPM_CR_REQ_EXIT_L1 0x00000002 /* Request to Exit L1 */
3019 +#define PCIE_ASPM_CR_REQ_ENTER_L1 0x00000004 /* Request to Enter L1 */
3020 +
3021 +/* Vendor Message DW0 Register */
3022 +#define PCIE_VM_MSG_DW0(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x50)
3023 +#define PCIE_VM_MSG_DW0_TYPE 0x0000001F /* Message type */
3024 +#define PCIE_VM_MSG_DW0_TYPE_S 0
3025 +#define PCIE_VM_MSG_DW0_FORMAT 0x00000060 /* Format */
3026 +#define PCIE_VM_MSG_DW0_FORMAT_S 5
3027 +#define PCIE_VM_MSG_DW0_TC 0x00007000 /* Traffic Class */
3028 +#define PCIE_VM_MSG_DW0_TC_S 12
3029 +#define PCIE_VM_MSG_DW0_ATTR 0x000C0000 /* Atrributes */
3030 +#define PCIE_VM_MSG_DW0_ATTR_S 18
3031 +#define PCIE_VM_MSG_DW0_EP_TLP 0x00100000 /* Poisoned TLP */
3032 +#define PCIE_VM_MSG_DW0_TD 0x00200000 /* TLP Digest */
3033 +#define PCIE_VM_MSG_DW0_LEN 0xFFC00000 /* Length */
3034 +#define PCIE_VM_MSG_DW0_LEN_S 22
3035 +
3036 +/* Format Definition */
3037 +enum {
3038 + PCIE_VM_MSG_FORMAT_00 = 0, /* 3DW Hdr, no data*/
3039 + PCIE_VM_MSG_FORMAT_01, /* 4DW Hdr, no data */
3040 + PCIE_VM_MSG_FORMAT_10, /* 3DW Hdr, with data */
3041 + PCIE_VM_MSG_FORMAT_11, /* 4DW Hdr, with data */
3042 +};
3043 +
3044 +/* Traffic Class Definition */
3045 +enum {
3046 + PCIE_VM_MSG_TC0 = 0,
3047 + PCIE_VM_MSG_TC1,
3048 + PCIE_VM_MSG_TC2,
3049 + PCIE_VM_MSG_TC3,
3050 + PCIE_VM_MSG_TC4,
3051 + PCIE_VM_MSG_TC5,
3052 + PCIE_VM_MSG_TC6,
3053 + PCIE_VM_MSG_TC7,
3054 +};
3055 +
3056 +/* Attributes Definition */
3057 +enum {
3058 + PCIE_VM_MSG_ATTR_00 = 0, /* RO and No Snoop cleared */
3059 + PCIE_VM_MSG_ATTR_01, /* RO cleared , No Snoop set */
3060 + PCIE_VM_MSG_ATTR_10, /* RO set, No Snoop cleared*/
3061 + PCIE_VM_MSG_ATTR_11, /* RO and No Snoop set */
3062 +};
3063 +
3064 +/* Payload Size Definition */
3065 +#define PCIE_VM_MSG_LEN_MIN 0
3066 +#define PCIE_VM_MSG_LEN_MAX 1024
3067 +
3068 +/* Vendor Message DW1 Register */
3069 +#define PCIE_VM_MSG_DW1(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x54)
3070 +#define PCIE_VM_MSG_DW1_FUNC_NUM 0x00000070 /* Function Number */
3071 +#define PCIE_VM_MSG_DW1_FUNC_NUM_S 8
3072 +#define PCIE_VM_MSG_DW1_CODE 0x00FF0000 /* Message Code */
3073 +#define PCIE_VM_MSG_DW1_CODE_S 16
3074 +#define PCIE_VM_MSG_DW1_TAG 0xFF000000 /* Tag */
3075 +#define PCIE_VM_MSG_DW1_TAG_S 24
3076 +
3077 +#define PCIE_VM_MSG_DW2(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x58)
3078 +#define PCIE_VM_MSG_DW3(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x5C)
3079 +
3080 +/* Vendor Message Request Register */
3081 +#define PCIE_VM_MSG_REQR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x60)
3082 +#define PCIE_VM_MSG_REQR_REQ 0x00000001 /* Vendor Message Request */
3083 +
3084 +
3085 +/* AHB Slave Side Band Control Register */
3086 +#define PCIE_AHB_SSB(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x70)
3087 +#define PCIE_AHB_SSB_REQ_BCM 0x00000001 /* Slave Reques BCM filed */
3088 +#define PCIE_AHB_SSB_REQ_EP 0x00000002 /* Slave Reques EP filed */
3089 +#define PCIE_AHB_SSB_REQ_TD 0x00000004 /* Slave Reques TD filed */
3090 +#define PCIE_AHB_SSB_REQ_ATTR 0x00000018 /* Slave Reques Attribute number */
3091 +#define PCIE_AHB_SSB_REQ_ATTR_S 3
3092 +#define PCIE_AHB_SSB_REQ_TC 0x000000E0 /* Slave Request TC Field */
3093 +#define PCIE_AHB_SSB_REQ_TC_S 5
3094 +
3095 +/* AHB Master SideBand Ctrl Register */
3096 +#define PCIE_AHB_MSB(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x74)
3097 +#define PCIE_AHB_MSB_RESP_ATTR 0x00000003 /* Master Response Attribute number */
3098 +#define PCIE_AHB_MSB_RESP_ATTR_S 0
3099 +#define PCIE_AHB_MSB_RESP_BAD_EOT 0x00000004 /* Master Response Badeot filed */
3100 +#define PCIE_AHB_MSB_RESP_BCM 0x00000008 /* Master Response BCM filed */
3101 +#define PCIE_AHB_MSB_RESP_EP 0x00000010 /* Master Response EP filed */
3102 +#define PCIE_AHB_MSB_RESP_TD 0x00000020 /* Master Response TD filed */
3103 +#define PCIE_AHB_MSB_RESP_FUN_NUM 0x000003C0 /* Master Response Function number */
3104 +#define PCIE_AHB_MSB_RESP_FUN_NUM_S 6
3105 +
3106 +/* AHB Control Register, fixed bus enumeration exception */
3107 +#define PCIE_AHB_CTRL(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x78)
3108 +#define PCIE_AHB_CTRL_BUS_ERROR_SUPPRESS 0x00000001
3109 +
3110 +/* Interrupt Enalbe Register */
3111 +#define PCIE_IRNEN(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0xF4)
3112 +#define PCIE_IRNCR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0xF8)
3113 +#define PCIE_IRNICR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0xFC)
3114 +
3115 +/* PCIe interrupt enable/control/capture register definition */
3116 +#define PCIE_IRN_AER_REPORT 0x00000001 /* AER Interrupt */
3117 +#define PCIE_IRN_AER_MSIX 0x00000002 /* Advanced Error MSI-X Interrupt */
3118 +#define PCIE_IRN_PME 0x00000004 /* PME Interrupt */
3119 +#define PCIE_IRN_HOTPLUG 0x00000008 /* Hotplug Interrupt */
3120 +#define PCIE_IRN_RX_VDM_MSG 0x00000010 /* Vendor-Defined Message Interrupt */
3121 +#define PCIE_IRN_RX_CORRECTABLE_ERR_MSG 0x00000020 /* Correctable Error Message Interrupt */
3122 +#define PCIE_IRN_RX_NON_FATAL_ERR_MSG 0x00000040 /* Non-fatal Error Message */
3123 +#define PCIE_IRN_RX_FATAL_ERR_MSG 0x00000080 /* Fatal Error Message */
3124 +#define PCIE_IRN_RX_PME_MSG 0x00000100 /* PME Message Interrupt */
3125 +#define PCIE_IRN_RX_PME_TURNOFF_ACK 0x00000200 /* PME Turnoff Ack Message Interrupt */
3126 +#define PCIE_IRN_AHB_BR_FATAL_ERR 0x00000400 /* AHB Fatal Error Interrupt */
3127 +#define PCIE_IRN_LINK_AUTO_BW_STATUS 0x00000800 /* Link Auto Bandwidth Status Interrupt */
3128 +#define PCIE_IRN_BW_MGT 0x00001000 /* Bandwidth Managment Interrupt */
3129 +#define PCIE_IRN_INTA 0x00002000 /* INTA */
3130 +#define PCIE_IRN_INTB 0x00004000 /* INTB */
3131 +#define PCIE_IRN_INTC 0x00008000 /* INTC */
3132 +#define PCIE_IRN_INTD 0x00010000 /* INTD */
3133 +#define PCIE_IRN_WAKEUP 0x00020000 /* Wake up Interrupt */
3134 +
3135 +#define PCIE_RC_CORE_COMBINED_INT (PCIE_IRN_AER_REPORT | PCIE_IRN_AER_MSIX | PCIE_IRN_PME | \
3136 + PCIE_IRN_HOTPLUG | PCIE_IRN_RX_VDM_MSG | PCIE_IRN_RX_CORRECTABLE_ERR_MSG |\
3137 + PCIE_IRN_RX_NON_FATAL_ERR_MSG | PCIE_IRN_RX_FATAL_ERR_MSG | \
3138 + PCIE_IRN_RX_PME_MSG | PCIE_IRN_RX_PME_TURNOFF_ACK | PCIE_IRN_AHB_BR_FATAL_ERR | \
3139 + PCIE_IRN_LINK_AUTO_BW_STATUS | PCIE_IRN_BW_MGT)
3140 +/* PCIe RC Configuration Register */
3141 +#define PCIE_VDID(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x00)
3142 +
3143 +/* Bit definition from pci_reg.h */
3144 +#define PCIE_PCICMDSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x04)
3145 +#define PCIE_CCRID(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x08)
3146 +#define PCIE_CLSLTHTBR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x0C) /* EP only */
3147 +/* BAR0, BAR1,Only necessary if the bridges implements a device-specific register set or memory buffer */
3148 +#define PCIE_BAR0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x10) /* Not used*/
3149 +#define PCIE_BAR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x14) /* Not used */
3150 +
3151 +#define PCIE_BNR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x18) /* Mandatory */
3152 +/* Bus Number Register bits */
3153 +#define PCIE_BNR_PRIMARY_BUS_NUM 0x000000FF
3154 +#define PCIE_BNR_PRIMARY_BUS_NUM_S 0
3155 +#define PCIE_PNR_SECONDARY_BUS_NUM 0x0000FF00
3156 +#define PCIE_PNR_SECONDARY_BUS_NUM_S 8
3157 +#define PCIE_PNR_SUB_BUS_NUM 0x00FF0000
3158 +#define PCIE_PNR_SUB_BUS_NUM_S 16
3159 +
3160 +/* IO Base/Limit Register bits */
3161 +#define PCIE_IOBLSECS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x1C) /* RC only */
3162 +#define PCIE_IOBLSECS_32BIT_IO_ADDR 0x00000001
3163 +#define PCIE_IOBLSECS_IO_BASE_ADDR 0x000000F0
3164 +#define PCIE_IOBLSECS_IO_BASE_ADDR_S 4
3165 +#define PCIE_IOBLSECS_32BIT_IOLIMT 0x00000100
3166 +#define PCIE_IOBLSECS_IO_LIMIT_ADDR 0x0000F000
3167 +#define PCIE_IOBLSECS_IO_LIMIT_ADDR_S 12
3168 +
3169 +/* Non-prefetchable Memory Base/Limit Register bit */
3170 +#define PCIE_MBML(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x20) /* RC only */
3171 +#define PCIE_MBML_MEM_BASE_ADDR 0x0000FFF0
3172 +#define PCIE_MBML_MEM_BASE_ADDR_S 4
3173 +#define PCIE_MBML_MEM_LIMIT_ADDR 0xFFF00000
3174 +#define PCIE_MBML_MEM_LIMIT_ADDR_S 20
3175 +
3176 +/* Prefetchable Memory Base/Limit Register bit */
3177 +#define PCIE_PMBL(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x24) /* RC only */
3178 +#define PCIE_PMBL_64BIT_ADDR 0x00000001
3179 +#define PCIE_PMBL_UPPER_12BIT 0x0000FFF0
3180 +#define PCIE_PMBL_UPPER_12BIT_S 4
3181 +#define PCIE_PMBL_E64MA 0x00010000
3182 +#define PCIE_PMBL_END_ADDR 0xFFF00000
3183 +#define PCIE_PMBL_END_ADDR_S 20
3184 +#define PCIE_PMBU32(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x28) /* RC only */
3185 +#define PCIE_PMLU32(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x2C) /* RC only */
3186 +
3187 +/* I/O Base/Limit Upper 16 bits register */
3188 +#define PCIE_IO_BANDL(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x30) /* RC only */
3189 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_BASE 0x0000FFFF
3190 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_BASE_S 0
3191 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_LIMIT 0xFFFF0000
3192 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_LIMIT_S 16
3193 +
3194 +#define PCIE_CPR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x34)
3195 +#define PCIE_EBBAR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x38)
3196 +
3197 +/* Interrupt and Secondary Bridge Control Register */
3198 +#define PCIE_INTRBCTRL(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x3C)
3199 +
3200 +#define PCIE_INTRBCTRL_INT_LINE 0x000000FF
3201 +#define PCIE_INTRBCTRL_INT_LINE_S 0
3202 +#define PCIE_INTRBCTRL_INT_PIN 0x0000FF00
3203 +#define PCIE_INTRBCTRL_INT_PIN_S 8
3204 +#define PCIE_INTRBCTRL_PARITY_ERR_RESP_ENABLE 0x00010000 /* #PERR */
3205 +#define PCIE_INTRBCTRL_SERR_ENABLE 0x00020000 /* #SERR */
3206 +#define PCIE_INTRBCTRL_ISA_ENABLE 0x00040000 /* ISA enable, IO 64KB only */
3207 +#define PCIE_INTRBCTRL_VGA_ENABLE 0x00080000 /* VGA enable */
3208 +#define PCIE_INTRBCTRL_VGA_16BIT_DECODE 0x00100000 /* VGA 16bit decode */
3209 +#define PCIE_INTRBCTRL_RST_SECONDARY_BUS 0x00400000 /* Secondary bus rest, hot rest, 1ms */
3210 +/* Others are read only */
3211 +enum {
3212 + PCIE_INTRBCTRL_INT_NON = 0,
3213 + PCIE_INTRBCTRL_INTA,
3214 + PCIE_INTRBCTRL_INTB,
3215 + PCIE_INTRBCTRL_INTC,
3216 + PCIE_INTRBCTRL_INTD,
3217 +};
3218 +
3219 +#define PCIE_PM_CAPR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x40)
3220 +
3221 +/* Power Management Control and Status Register */
3222 +#define PCIE_PM_CSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x44)
3223 +
3224 +#define PCIE_PM_CSR_POWER_STATE 0x00000003 /* Power State */
3225 +#define PCIE_PM_CSR_POWER_STATE_S 0
3226 +#define PCIE_PM_CSR_SW_RST 0x00000008 /* Soft Reset Enabled */
3227 +#define PCIE_PM_CSR_PME_ENABLE 0x00000100 /* PME Enable */
3228 +#define PCIE_PM_CSR_PME_STATUS 0x00008000 /* PME status */
3229 +
3230 +/* MSI Capability Register for EP */
3231 +#define PCIE_MCAPR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x50)
3232 +
3233 +#define PCIE_MCAPR_MSI_CAP_ID 0x000000FF /* MSI Capability ID */
3234 +#define PCIE_MCAPR_MSI_CAP_ID_S 0
3235 +#define PCIE_MCAPR_MSI_NEXT_CAP_PTR 0x0000FF00 /* Next Capability Pointer */
3236 +#define PCIE_MCAPR_MSI_NEXT_CAP_PTR_S 8
3237 +#define PCIE_MCAPR_MSI_ENABLE 0x00010000 /* MSI Enable */
3238 +#define PCIE_MCAPR_MULTI_MSG_CAP 0x000E0000 /* Multiple Message Capable */
3239 +#define PCIE_MCAPR_MULTI_MSG_CAP_S 17
3240 +#define PCIE_MCAPR_MULTI_MSG_ENABLE 0x00700000 /* Multiple Message Enable */
3241 +#define PCIE_MCAPR_MULTI_MSG_ENABLE_S 20
3242 +#define PCIE_MCAPR_ADDR64_CAP 0X00800000 /* 64-bit Address Capable */
3243 +
3244 +/* MSI Message Address Register */
3245 +#define PCIE_MA(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x54)
3246 +
3247 +#define PCIE_MA_ADDR_MASK 0xFFFFFFFC /* Message Address */
3248 +
3249 +/* MSI Message Upper Address Register */
3250 +#define PCIE_MUA(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x58)
3251 +
3252 +/* MSI Message Data Register */
3253 +#define PCIE_MD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x5C)
3254 +
3255 +#define PCIE_MD_DATA 0x0000FFFF /* Message Data */
3256 +#define PCIE_MD_DATA_S 0
3257 +
3258 +/* PCI Express Capability Register */
3259 +#define PCIE_XCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x70)
3260 +
3261 +#define PCIE_XCAP_ID 0x000000FF /* PCI Express Capability ID */
3262 +#define PCIE_XCAP_ID_S 0
3263 +#define PCIE_XCAP_NEXT_CAP 0x0000FF00 /* Next Capability Pointer */
3264 +#define PCIE_XCAP_NEXT_CAP_S 8
3265 +#define PCIE_XCAP_VER 0x000F0000 /* PCI Express Capability Version */
3266 +#define PCIE_XCAP_VER_S 16
3267 +#define PCIE_XCAP_DEV_PORT_TYPE 0x00F00000 /* Device Port Type */
3268 +#define PCIE_XCAP_DEV_PORT_TYPE_S 20
3269 +#define PCIE_XCAP_SLOT_IMPLEMENTED 0x01000000 /* Slot Implemented */
3270 +#define PCIE_XCAP_MSG_INT_NUM 0x3E000000 /* Interrupt Message Number */
3271 +#define PCIE_XCAP_MSG_INT_NUM_S 25
3272 +
3273 +/* Device Capability Register */
3274 +#define PCIE_DCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x74)
3275 +
3276 +#define PCIE_DCAP_MAX_PAYLOAD_SIZE 0x00000007 /* Max Payload size */
3277 +#define PCIE_DCAP_MAX_PAYLOAD_SIZE_S 0
3278 +#define PCIE_DCAP_PHANTOM_FUNC 0x00000018 /* Phanton Function, not supported */
3279 +#define PCIE_DCAP_PHANTOM_FUNC_S 3
3280 +#define PCIE_DCAP_EXT_TAG 0x00000020 /* Extended Tag Field */
3281 +#define PCIE_DCAP_EP_L0S_LATENCY 0x000001C0 /* EP L0s latency only */
3282 +#define PCIE_DCAP_EP_L0S_LATENCY_S 6
3283 +#define PCIE_DCAP_EP_L1_LATENCY 0x00000E00 /* EP L1 latency only */
3284 +#define PCIE_DCAP_EP_L1_LATENCY_S 9
3285 +#define PCIE_DCAP_ROLE_BASE_ERR_REPORT 0x00008000 /* Role Based ERR */
3286 +
3287 +/* Maximum payload size supported */
3288 +enum {
3289 + PCIE_MAX_PAYLOAD_128 = 0,
3290 + PCIE_MAX_PAYLOAD_256,
3291 + PCIE_MAX_PAYLOAD_512,
3292 + PCIE_MAX_PAYLOAD_1024,
3293 + PCIE_MAX_PAYLOAD_2048,
3294 + PCIE_MAX_PAYLOAD_4096,
3295 +};
3296 +
3297 +/* Device Control and Status Register */
3298 +#define PCIE_DCTLSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x78)
3299 +
3300 +#define PCIE_DCTLSTS_CORRECTABLE_ERR_EN 0x00000001 /* COR-ERR */
3301 +#define PCIE_DCTLSTS_NONFATAL_ERR_EN 0x00000002 /* Non-fatal ERR */
3302 +#define PCIE_DCTLSTS_FATAL_ERR_EN 0x00000004 /* Fatal ERR */
3303 +#define PCIE_DCTLSYS_UR_REQ_EN 0x00000008 /* UR ERR */
3304 +#define PCIE_DCTLSTS_RELAXED_ORDERING_EN 0x00000010 /* Enable relaxing ordering */
3305 +#define PCIE_DCTLSTS_MAX_PAYLOAD_SIZE 0x000000E0 /* Max payload mask */
3306 +#define PCIE_DCTLSTS_MAX_PAYLOAD_SIZE_S 5
3307 +#define PCIE_DCTLSTS_EXT_TAG_EN 0x00000100 /* Extended tag field */
3308 +#define PCIE_DCTLSTS_PHANTOM_FUNC_EN 0x00000200 /* Phantom Function Enable */
3309 +#define PCIE_DCTLSTS_AUX_PM_EN 0x00000400 /* AUX Power PM Enable */
3310 +#define PCIE_DCTLSTS_NO_SNOOP_EN 0x00000800 /* Enable no snoop, except root port*/
3311 +#define PCIE_DCTLSTS_MAX_READ_SIZE 0x00007000 /* Max Read Request size*/
3312 +#define PCIE_DCTLSTS_MAX_READ_SIZE_S 12
3313 +#define PCIE_DCTLSTS_CORRECTABLE_ERR 0x00010000 /* COR-ERR Detected */
3314 +#define PCIE_DCTLSTS_NONFATAL_ERR 0x00020000 /* Non-Fatal ERR Detected */
3315 +#define PCIE_DCTLSTS_FATAL_ER 0x00040000 /* Fatal ERR Detected */
3316 +#define PCIE_DCTLSTS_UNSUPPORTED_REQ 0x00080000 /* UR Detected */
3317 +#define PCIE_DCTLSTS_AUX_POWER 0x00100000 /* Aux Power Detected */
3318 +#define PCIE_DCTLSTS_TRANSACT_PENDING 0x00200000 /* Transaction pending */
3319 +
3320 +#define PCIE_DCTLSTS_ERR_EN (PCIE_DCTLSTS_CORRECTABLE_ERR_EN | \
3321 + PCIE_DCTLSTS_NONFATAL_ERR_EN | PCIE_DCTLSTS_FATAL_ERR_EN | \
3322 + PCIE_DCTLSYS_UR_REQ_EN)
3323 +
3324 +/* Link Capability Register */
3325 +#define PCIE_LCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7C)
3326 +#define PCIE_LCAP_MAX_LINK_SPEED 0x0000000F /* Max link speed, 0x1 by default */
3327 +#define PCIE_LCAP_MAX_LINK_SPEED_S 0
3328 +#define PCIE_LCAP_MAX_LENGTH_WIDTH 0x000003F0 /* Maxium Length Width */
3329 +#define PCIE_LCAP_MAX_LENGTH_WIDTH_S 4
3330 +#define PCIE_LCAP_ASPM_LEVEL 0x00000C00 /* Active State Link PM Support */
3331 +#define PCIE_LCAP_ASPM_LEVEL_S 10
3332 +#define PCIE_LCAP_L0S_EIXT_LATENCY 0x00007000 /* L0s Exit Latency */
3333 +#define PCIE_LCAP_L0S_EIXT_LATENCY_S 12
3334 +#define PCIE_LCAP_L1_EXIT_LATENCY 0x00038000 /* L1 Exit Latency */
3335 +#define PCIE_LCAP_L1_EXIT_LATENCY_S 15
3336 +#define PCIE_LCAP_CLK_PM 0x00040000 /* Clock Power Management */
3337 +#define PCIE_LCAP_SDER 0x00080000 /* Surprise Down Error Reporting */
3338 +#define PCIE_LCAP_DLL_ACTIVE_REPROT 0x00100000 /* Data Link Layer Active Reporting Capable */
3339 +#define PCIE_LCAP_PORT_NUM 0xFF0000000 /* Port number */
3340 +#define PCIE_LCAP_PORT_NUM_S 24
3341 +
3342 +/* Maximum Length width definition */
3343 +#define PCIE_MAX_LENGTH_WIDTH_RES 0x00
3344 +#define PCIE_MAX_LENGTH_WIDTH_X1 0x01 /* Default */
3345 +#define PCIE_MAX_LENGTH_WIDTH_X2 0x02
3346 +#define PCIE_MAX_LENGTH_WIDTH_X4 0x04
3347 +#define PCIE_MAX_LENGTH_WIDTH_X8 0x08
3348 +#define PCIE_MAX_LENGTH_WIDTH_X12 0x0C
3349 +#define PCIE_MAX_LENGTH_WIDTH_X16 0x10
3350 +#define PCIE_MAX_LENGTH_WIDTH_X32 0x20
3351 +
3352 +/* Active State Link PM definition */
3353 +enum {
3354 + PCIE_ASPM_RES0 = 0,
3355 + PCIE_ASPM_L0S_ENTRY_SUPPORT, /* L0s */
3356 + PCIE_ASPM_RES1,
3357 + PCIE_ASPM_L0S_L1_ENTRY_SUPPORT, /* L0s and L1, default */
3358 +};
3359 +
3360 +/* L0s Exit Latency definition */
3361 +enum {
3362 + PCIE_L0S_EIXT_LATENCY_L64NS = 0, /* < 64 ns */
3363 + PCIE_L0S_EIXT_LATENCY_B64A128, /* > 64 ns < 128 ns */
3364 + PCIE_L0S_EIXT_LATENCY_B128A256, /* > 128 ns < 256 ns */
3365 + PCIE_L0S_EIXT_LATENCY_B256A512, /* > 256 ns < 512 ns */
3366 + PCIE_L0S_EIXT_LATENCY_B512TO1U, /* > 512 ns < 1 us */
3367 + PCIE_L0S_EIXT_LATENCY_B1A2U, /* > 1 us < 2 us */
3368 + PCIE_L0S_EIXT_LATENCY_B2A4U, /* > 2 us < 4 us */
3369 + PCIE_L0S_EIXT_LATENCY_M4US, /* > 4 us */
3370 +};
3371 +
3372 +/* L1 Exit Latency definition */
3373 +enum {
3374 + PCIE_L1_EXIT_LATENCY_L1US = 0, /* < 1 us */
3375 + PCIE_L1_EXIT_LATENCY_B1A2, /* > 1 us < 2 us */
3376 + PCIE_L1_EXIT_LATENCY_B2A4, /* > 2 us < 4 us */
3377 + PCIE_L1_EXIT_LATENCY_B4A8, /* > 4 us < 8 us */
3378 + PCIE_L1_EXIT_LATENCY_B8A16, /* > 8 us < 16 us */
3379 + PCIE_L1_EXIT_LATENCY_B16A32, /* > 16 us < 32 us */
3380 + PCIE_L1_EXIT_LATENCY_B32A64, /* > 32 us < 64 us */
3381 + PCIE_L1_EXIT_LATENCY_M64US, /* > 64 us */
3382 +};
3383 +
3384 +/* Link Control and Status Register */
3385 +#define PCIE_LCTLSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x80)
3386 +#define PCIE_LCTLSTS_ASPM_ENABLE 0x00000003 /* Active State Link PM Control */
3387 +#define PCIE_LCTLSTS_ASPM_ENABLE_S 0
3388 +#define PCIE_LCTLSTS_RCB128 0x00000008 /* Read Completion Boundary 128*/
3389 +#define PCIE_LCTLSTS_LINK_DISABLE 0x00000010 /* Link Disable */
3390 +#define PCIE_LCTLSTS_RETRIAN_LINK 0x00000020 /* Retrain Link */
3391 +#define PCIE_LCTLSTS_COM_CLK_CFG 0x00000040 /* Common Clock Configuration */
3392 +#define PCIE_LCTLSTS_EXT_SYNC 0x00000080 /* Extended Synch */
3393 +#define PCIE_LCTLSTS_CLK_PM_EN 0x00000100 /* Enable Clock Powerm Management */
3394 +#define PCIE_LCTLSTS_LINK_SPEED 0x000F0000 /* Link Speed */
3395 +#define PCIE_LCTLSTS_LINK_SPEED_S 16
3396 +#define PCIE_LCTLSTS_NEGOTIATED_LINK_WIDTH 0x03F00000 /* Negotiated Link Width */
3397 +#define PCIE_LCTLSTS_NEGOTIATED_LINK_WIDTH_S 20
3398 +#define PCIE_LCTLSTS_RETRAIN_PENDING 0x08000000 /* Link training is ongoing */
3399 +#define PCIE_LCTLSTS_SLOT_CLK_CFG 0x10000000 /* Slot Clock Configuration */
3400 +#define PCIE_LCTLSTS_DLL_ACTIVE 0x20000000 /* Data Link Layer Active */
3401 +
3402 +/* Slot Capabilities Register */
3403 +#define PCIE_SLCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x84)
3404 +
3405 +/* Slot Capabilities */
3406 +#define PCIE_SLCTLSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x88)
3407 +
3408 +/* Root Control and Capability Register */
3409 +#define PCIE_RCTLCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x8C)
3410 +#define PCIE_RCTLCAP_SERR_ON_CORRECTABLE_ERR 0x00000001 /* #SERR on COR-ERR */
3411 +#define PCIE_RCTLCAP_SERR_ON_NONFATAL_ERR 0x00000002 /* #SERR on Non-Fatal ERR */
3412 +#define PCIE_RCTLCAP_SERR_ON_FATAL_ERR 0x00000004 /* #SERR on Fatal ERR */
3413 +#define PCIE_RCTLCAP_PME_INT_EN 0x00000008 /* PME Interrupt Enable */
3414 +#define PCIE_RCTLCAP_SERR_ENABLE (PCIE_RCTLCAP_SERR_ON_CORRECTABLE_ERR | \
3415 + PCIE_RCTLCAP_SERR_ON_NONFATAL_ERR | PCIE_RCTLCAP_SERR_ON_FATAL_ERR)
3416 +/* Root Status Register */
3417 +#define PCIE_RSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x90)
3418 +#define PCIE_RSTS_PME_REQ_ID 0x0000FFFF /* PME Request ID */
3419 +#define PCIE_RSTS_PME_REQ_ID_S 0
3420 +#define PCIE_RSTS_PME_STATUS 0x00010000 /* PME Status */
3421 +#define PCIE_RSTS_PME_PENDING 0x00020000 /* PME Pending */
3422 +
3423 +/* PCI Express Enhanced Capability Header */
3424 +#define PCIE_ENHANCED_CAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x100)
3425 +#define PCIE_ENHANCED_CAP_ID 0x0000FFFF /* PCI Express Extended Capability ID */
3426 +#define PCIE_ENHANCED_CAP_ID_S 0
3427 +#define PCIE_ENHANCED_CAP_VER 0x000F0000 /* Capability Version */
3428 +#define PCIE_ENHANCED_CAP_VER_S 16
3429 +#define PCIE_ENHANCED_CAP_NEXT_OFFSET 0xFFF00000 /* Next Capability Offset */
3430 +#define PCIE_ENHANCED_CAP_NEXT_OFFSET_S 20
3431 +
3432 +/* Uncorrectable Error Status Register */
3433 +#define PCIE_UES_R(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x104)
3434 +#define PCIE_DATA_LINK_PROTOCOL_ERR 0x00000010 /* Data Link Protocol Error Status */
3435 +#define PCIE_SURPRISE_DOWN_ERROR 0x00000020 /* Surprise Down Error Status */
3436 +#define PCIE_POISONED_TLP 0x00001000 /* Poisoned TLP Status */
3437 +#define PCIE_FC_PROTOCOL_ERR 0x00002000 /* Flow Control Protocol Error Status */
3438 +#define PCIE_COMPLETION_TIMEOUT 0x00004000 /* Completion Timeout Status */
3439 +#define PCIE_COMPLETOR_ABORT 0x00008000 /* Completer Abort Error */
3440 +#define PCIE_UNEXPECTED_COMPLETION 0x00010000 /* Unexpected Completion Status */
3441 +#define PCIE_RECEIVER_OVERFLOW 0x00020000 /* Receive Overflow Status */
3442 +#define PCIE_MALFORNED_TLP 0x00040000 /* Malformed TLP Stauts */
3443 +#define PCIE_ECRC_ERR 0x00080000 /* ECRC Error Stauts */
3444 +#define PCIE_UR_REQ 0x00100000 /* Unsupported Request Error Status */
3445 +#define PCIE_ALL_UNCORRECTABLE_ERR (PCIE_DATA_LINK_PROTOCOL_ERR | PCIE_SURPRISE_DOWN_ERROR | \
3446 + PCIE_POISONED_TLP | PCIE_FC_PROTOCOL_ERR | PCIE_COMPLETION_TIMEOUT | \
3447 + PCIE_COMPLETOR_ABORT | PCIE_UNEXPECTED_COMPLETION | PCIE_RECEIVER_OVERFLOW |\
3448 + PCIE_MALFORNED_TLP | PCIE_ECRC_ERR | PCIE_UR_REQ)
3449 +
3450 +/* Uncorrectable Error Mask Register, Mask means no report */
3451 +#define PCIE_UEMR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x108)
3452 +
3453 +/* Uncorrectable Error Severity Register */
3454 +#define PCIE_UESR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x10C)
3455 +
3456 +/* Correctable Error Status Register */
3457 +#define PCIE_CESR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x110)
3458 +#define PCIE_RX_ERR 0x00000001 /* Receive Error Status */
3459 +#define PCIE_BAD_TLP 0x00000040 /* Bad TLP Status */
3460 +#define PCIE_BAD_DLLP 0x00000080 /* Bad DLLP Status */
3461 +#define PCIE_REPLAY_NUM_ROLLOVER 0x00000100 /* Replay Number Rollover Status */
3462 +#define PCIE_REPLAY_TIMER_TIMEOUT_ERR 0x00001000 /* Reply Timer Timeout Status */
3463 +#define PCIE_ADVISORY_NONFTAL_ERR 0x00002000 /* Advisory Non-Fatal Error Status */
3464 +#define PCIE_CORRECTABLE_ERR (PCIE_RX_ERR | PCIE_BAD_TLP | PCIE_BAD_DLLP | PCIE_REPLAY_NUM_ROLLOVER |\
3465 + PCIE_REPLAY_TIMER_TIMEOUT_ERR | PCIE_ADVISORY_NONFTAL_ERR)
3466 +
3467 +/* Correctable Error Mask Register */
3468 +#define PCIE_CEMR(X) (volatile u32*)(PCIE_RC_CFG_BASE + 0x114)
3469 +
3470 +/* Advanced Error Capabilities and Control Register */
3471 +#define PCIE_AECCR(X) (volatile u32*)(PCIE_RC_CFG_BASE + 0x118)
3472 +#define PCIE_AECCR_FIRST_ERR_PTR 0x0000001F /* First Error Pointer */
3473 +#define PCIE_AECCR_FIRST_ERR_PTR_S 0
3474 +#define PCIE_AECCR_ECRC_GEN_CAP 0x00000020 /* ECRC Generation Capable */
3475 +#define PCIE_AECCR_ECRC_GEN_EN 0x00000040 /* ECRC Generation Enable */
3476 +#define PCIE_AECCR_ECRC_CHECK_CAP 0x00000080 /* ECRC Check Capable */
3477 +#define PCIE_AECCR_ECRC_CHECK_EN 0x00000100 /* ECRC Check Enable */
3478 +
3479 +/* Header Log Register 1 */
3480 +#define PCIE_HLR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x11C)
3481 +
3482 +/* Header Log Register 2 */
3483 +#define PCIE_HLR2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x120)
3484 +
3485 +/* Header Log Register 3 */
3486 +#define PCIE_HLR3(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x124)
3487 +
3488 +/* Header Log Register 4 */
3489 +#define PCIE_HLR4(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x128)
3490 +
3491 +/* Root Error Command Register */
3492 +#define PCIE_RECR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x12C)
3493 +#define PCIE_RECR_CORRECTABLE_ERR_REPORT_EN 0x00000001 /* COR-ERR */
3494 +#define PCIE_RECR_NONFATAL_ERR_REPORT_EN 0x00000002 /* Non-Fatal ERR */
3495 +#define PCIE_RECR_FATAL_ERR_REPORT_EN 0x00000004 /* Fatal ERR */
3496 +#define PCIE_RECR_ERR_REPORT_EN (PCIE_RECR_CORRECTABLE_ERR_REPORT_EN | \
3497 + PCIE_RECR_NONFATAL_ERR_REPORT_EN | PCIE_RECR_FATAL_ERR_REPORT_EN)
3498 +
3499 +/* Root Error Status Register */
3500 +#define PCIE_RESR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x130)
3501 +#define PCIE_RESR_CORRECTABLE_ERR 0x00000001 /* COR-ERR Receveid */
3502 +#define PCIE_RESR_MULTI_CORRECTABLE_ERR 0x00000002 /* Multiple COR-ERR Received */
3503 +#define PCIE_RESR_FATAL_NOFATAL_ERR 0x00000004 /* ERR Fatal/Non-Fatal Received */
3504 +#define PCIE_RESR_MULTI_FATAL_NOFATAL_ERR 0x00000008 /* Multiple ERR Fatal/Non-Fatal Received */
3505 +#define PCIE_RESR_FIRST_UNCORRECTABLE_FATAL_ERR 0x00000010 /* First UN-COR Fatal */
3506 +#define PCIR_RESR_NON_FATAL_ERR 0x00000020 /* Non-Fatal Error Message Received */
3507 +#define PCIE_RESR_FATAL_ERR 0x00000040 /* Fatal Message Received */
3508 +#define PCIE_RESR_AER_INT_MSG_NUM 0xF8000000 /* Advanced Error Interrupt Message Number */
3509 +#define PCIE_RESR_AER_INT_MSG_NUM_S 27
3510 +
3511 +/* Error Source Indentification Register */
3512 +#define PCIE_ESIR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x134)
3513 +#define PCIE_ESIR_CORRECTABLE_ERR_SRC_ID 0x0000FFFF
3514 +#define PCIE_ESIR_CORRECTABLE_ERR_SRC_ID_S 0
3515 +#define PCIE_ESIR_FATAL_NON_FATAL_SRC_ID 0xFFFF0000
3516 +#define PCIE_ESIR_FATAL_NON_FATAL_SRC_ID_S 16
3517 +
3518 +/* VC Enhanced Capability Header */
3519 +#define PCIE_VC_ECH(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x140)
3520 +
3521 +/* Port VC Capability Register */
3522 +#define PCIE_PVC1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x144)
3523 +#define PCIE_PVC1_EXT_VC_CNT 0x00000007 /* Extended VC Count */
3524 +#define PCIE_PVC1_EXT_VC_CNT_S 0
3525 +#define PCIE_PVC1_LOW_PRI_EXT_VC_CNT 0x00000070 /* Low Priority Extended VC Count */
3526 +#define PCIE_PVC1_LOW_PRI_EXT_VC_CNT_S 4
3527 +#define PCIE_PVC1_REF_CLK 0x00000300 /* Reference Clock */
3528 +#define PCIE_PVC1_REF_CLK_S 8
3529 +#define PCIE_PVC1_PORT_ARB_TAB_ENTRY_SIZE 0x00000C00 /* Port Arbitration Table Entry Size */
3530 +#define PCIE_PVC1_PORT_ARB_TAB_ENTRY_SIZE_S 10
3531 +
3532 +/* Extended Virtual Channel Count Defintion */
3533 +#define PCIE_EXT_VC_CNT_MIN 0
3534 +#define PCIE_EXT_VC_CNT_MAX 7
3535 +
3536 +/* Port Arbitration Table Entry Size Definition */
3537 +enum {
3538 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S1BIT = 0,
3539 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S2BIT,
3540 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S4BIT,
3541 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S8BIT,
3542 +};
3543 +
3544 +/* Port VC Capability Register 2 */
3545 +#define PCIE_PVC2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x148)
3546 +#define PCIE_PVC2_VC_ARB_16P_FIXED_WRR 0x00000001 /* HW Fixed arbitration, 16 phase WRR */
3547 +#define PCIE_PVC2_VC_ARB_32P_WRR 0x00000002 /* 32 phase WRR */
3548 +#define PCIE_PVC2_VC_ARB_64P_WRR 0x00000004 /* 64 phase WRR */
3549 +#define PCIE_PVC2_VC_ARB_128P_WRR 0x00000008 /* 128 phase WRR */
3550 +#define PCIE_PVC2_VC_ARB_WRR 0x0000000F
3551 +#define PCIE_PVC2_VC_ARB_TAB_OFFSET 0xFF000000 /* VC arbitration table offset, not support */
3552 +#define PCIE_PVC2_VC_ARB_TAB_OFFSET_S 24
3553 +
3554 +/* Port VC Control and Status Register */
3555 +#define PCIE_PVCCRSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x14C)
3556 +#define PCIE_PVCCRSR_LOAD_VC_ARB_TAB 0x00000001 /* Load VC Arbitration Table */
3557 +#define PCIE_PVCCRSR_VC_ARB_SEL 0x0000000E /* VC Arbitration Select */
3558 +#define PCIE_PVCCRSR_VC_ARB_SEL_S 1
3559 +#define PCIE_PVCCRSR_VC_ARB_TAB_STATUS 0x00010000 /* Arbitration Status */
3560 +
3561 +/* VC0 Resource Capability Register */
3562 +#define PCIE_VC0_RC(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x150)
3563 +#define PCIE_VC0_RC_PORT_ARB_HW_FIXED 0x00000001 /* HW Fixed arbitration */
3564 +#define PCIE_VC0_RC_PORT_ARB_32P_WRR 0x00000002 /* 32 phase WRR */
3565 +#define PCIE_VC0_RC_PORT_ARB_64P_WRR 0x00000004 /* 64 phase WRR */
3566 +#define PCIE_VC0_RC_PORT_ARB_128P_WRR 0x00000008 /* 128 phase WRR */
3567 +#define PCIE_VC0_RC_PORT_ARB_TM_128P_WRR 0x00000010 /* Time-based 128 phase WRR */
3568 +#define PCIE_VC0_RC_PORT_ARB_TM_256P_WRR 0x00000020 /* Time-based 256 phase WRR */
3569 +#define PCIE_VC0_RC_PORT_ARB (PCIE_VC0_RC_PORT_ARB_HW_FIXED | PCIE_VC0_RC_PORT_ARB_32P_WRR |\
3570 + PCIE_VC0_RC_PORT_ARB_64P_WRR | PCIE_VC0_RC_PORT_ARB_128P_WRR | \
3571 + PCIE_VC0_RC_PORT_ARB_TM_128P_WRR | PCIE_VC0_RC_PORT_ARB_TM_256P_WRR)
3572 +
3573 +#define PCIE_VC0_RC_REJECT_SNOOP 0x00008000 /* Reject Snoop Transactioin */
3574 +#define PCIE_VC0_RC_MAX_TIMESLOTS 0x007F0000 /* Maximum time Slots */
3575 +#define PCIE_VC0_RC_MAX_TIMESLOTS_S 16
3576 +#define PCIE_VC0_RC_PORT_ARB_TAB_OFFSET 0xFF000000 /* Port Arbitration Table Offset */
3577 +#define PCIE_VC0_RC_PORT_ARB_TAB_OFFSET_S 24
3578 +
3579 +/* VC0 Resource Control Register */
3580 +#define PCIE_VC0_RC0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x154)
3581 +#define PCIE_VC0_RC0_TVM0 0x00000001 /* TC0 and VC0 */
3582 +#define PCIE_VC0_RC0_TVM1 0x00000002 /* TC1 and VC1 */
3583 +#define PCIE_VC0_RC0_TVM2 0x00000004 /* TC2 and VC2 */
3584 +#define PCIE_VC0_RC0_TVM3 0x00000008 /* TC3 and VC3 */
3585 +#define PCIE_VC0_RC0_TVM4 0x00000010 /* TC4 and VC4 */
3586 +#define PCIE_VC0_RC0_TVM5 0x00000020 /* TC5 and VC5 */
3587 +#define PCIE_VC0_RC0_TVM6 0x00000040 /* TC6 and VC6 */
3588 +#define PCIE_VC0_RC0_TVM7 0x00000080 /* TC7 and VC7 */
3589 +#define PCIE_VC0_RC0_TC_VC 0x000000FF /* TC/VC mask */
3590 +
3591 +#define PCIE_VC0_RC0_LOAD_PORT_ARB_TAB 0x00010000 /* Load Port Arbitration Table */
3592 +#define PCIE_VC0_RC0_PORT_ARB_SEL 0x000E0000 /* Port Arbitration Select */
3593 +#define PCIE_VC0_RC0_PORT_ARB_SEL_S 17
3594 +#define PCIE_VC0_RC0_VC_ID 0x07000000 /* VC ID */
3595 +#define PCIE_VC0_RC0_VC_ID_S 24
3596 +#define PCIE_VC0_RC0_VC_EN 0x80000000 /* VC Enable */
3597 +
3598 +/* VC0 Resource Status Register */
3599 +#define PCIE_VC0_RSR0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x158)
3600 +#define PCIE_VC0_RSR0_PORT_ARB_TAB_STATUS 0x00010000 /* Port Arbitration Table Status,not used */
3601 +#define PCIE_VC0_RSR0_VC_NEG_PENDING 0x00020000 /* VC Negotiation Pending */
3602 +
3603 +/* Ack Latency Timer and Replay Timer Register */
3604 +#define PCIE_ALTRT(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x700)
3605 +#define PCIE_ALTRT_ROUND_TRIP_LATENCY_LIMIT 0x0000FFFF /* Round Trip Latency Time Limit */
3606 +#define PCIE_ALTRT_ROUND_TRIP_LATENCY_LIMIT_S 0
3607 +#define PCIE_ALTRT_REPLAY_TIME_LIMIT 0xFFFF0000 /* Replay Time Limit */
3608 +#define PCIE_ALTRT_REPLAY_TIME_LIMIT_S 16
3609 +
3610 +/* Other Message Register */
3611 +#define PCIE_OMR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x704)
3612 +
3613 +/* Port Force Link Register */
3614 +#define PCIE_PFLR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x708)
3615 +#define PCIE_PFLR_LINK_NUM 0x000000FF /* Link Number */
3616 +#define PCIE_PFLR_LINK_NUM_S 0
3617 +#define PCIE_PFLR_FORCE_LINK 0x00008000 /* Force link */
3618 +#define PCIE_PFLR_LINK_STATE 0x003F0000 /* Link State */
3619 +#define PCIE_PFLR_LINK_STATE_S 16
3620 +#define PCIE_PFLR_LOW_POWER_ENTRY_CNT 0xFF000000 /* Low Power Entrance Count, only for EP */
3621 +#define PCIE_PFLR_LOW_POWER_ENTRY_CNT_S 24
3622 +
3623 +/* Ack Frequency Register */
3624 +#define PCIE_AFR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x70C)
3625 +#define PCIE_AFR_AF 0x000000FF /* Ack Frequency */
3626 +#define PCIE_AFR_AF_S 0
3627 +#define PCIE_AFR_FTS_NUM 0x0000FF00 /* The number of Fast Training Sequence from L0S to L0 */
3628 +#define PCIE_AFR_FTS_NUM_S 8
3629 +#define PCIE_AFR_COM_FTS_NUM 0x00FF0000 /* N_FTS; when common clock is used*/
3630 +#define PCIE_AFR_COM_FTS_NUM_S 16
3631 +#define PCIE_AFR_L0S_ENTRY_LATENCY 0x07000000 /* L0s Entrance Latency */
3632 +#define PCIE_AFR_L0S_ENTRY_LATENCY_S 24
3633 +#define PCIE_AFR_L1_ENTRY_LATENCY 0x38000000 /* L1 Entrance Latency */
3634 +#define PCIE_AFR_L1_ENTRY_LATENCY_S 27
3635 +#define PCIE_AFR_FTS_NUM_DEFAULT 32
3636 +#define PCIE_AFR_L0S_ENTRY_LATENCY_DEFAULT 7
3637 +#define PCIE_AFR_L1_ENTRY_LATENCY_DEFAULT 5
3638 +
3639 +/* Port Link Control Register */
3640 +#define PCIE_PLCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x710)
3641 +#define PCIE_PLCR_OTHER_MSG_REQ 0x00000001 /* Other Message Request */
3642 +#define PCIE_PLCR_SCRAMBLE_DISABLE 0x00000002 /* Scramble Disable */
3643 +#define PCIE_PLCR_LOOPBACK_EN 0x00000004 /* Loopback Enable */
3644 +#define PCIE_PLCR_LTSSM_HOT_RST 0x00000008 /* Force LTSSM to the hot reset */
3645 +#define PCIE_PLCR_DLL_LINK_EN 0x00000020 /* Enable Link initialization */
3646 +#define PCIE_PLCR_FAST_LINK_SIM_EN 0x00000080 /* Sets all internal timers to fast mode for simulation purposes */
3647 +#define PCIE_PLCR_LINK_MODE 0x003F0000 /* Link Mode Enable Mask */
3648 +#define PCIE_PLCR_LINK_MODE_S 16
3649 +#define PCIE_PLCR_CORRUPTED_CRC_EN 0x02000000 /* Enabled Corrupt CRC */
3650 +
3651 +/* Lane Skew Register */
3652 +#define PCIE_LSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x714)
3653 +#define PCIE_LSR_LANE_SKEW_NUM 0x00FFFFFF /* Insert Lane Skew for Transmit, not applicable */
3654 +#define PCIE_LSR_LANE_SKEW_NUM_S 0
3655 +#define PCIE_LSR_FC_DISABLE 0x01000000 /* Disable of Flow Control */
3656 +#define PCIE_LSR_ACKNAK_DISABLE 0x02000000 /* Disable of Ack/Nak */
3657 +#define PCIE_LSR_LANE_DESKEW_DISABLE 0x80000000 /* Disable of Lane-to-Lane Skew */
3658 +
3659 +/* Symbol Number Register */
3660 +#define PCIE_SNR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x718)
3661 +#define PCIE_SNR_TS 0x0000000F /* Number of TS Symbol */
3662 +#define PCIE_SNR_TS_S 0
3663 +#define PCIE_SNR_SKP 0x00000700 /* Number of SKP Symbol */
3664 +#define PCIE_SNR_SKP_S 8
3665 +#define PCIE_SNR_REPLAY_TIMER 0x0007C000 /* Timer Modifier for Replay Timer */
3666 +#define PCIE_SNR_REPLAY_TIMER_S 14
3667 +#define PCIE_SNR_ACKNAK_LATENCY_TIMER 0x00F80000 /* Timer Modifier for Ack/Nak Latency Timer */
3668 +#define PCIE_SNR_ACKNAK_LATENCY_TIMER_S 19
3669 +#define PCIE_SNR_FC_TIMER 0x1F000000 /* Timer Modifier for Flow Control Watchdog Timer */
3670 +#define PCIE_SNR_FC_TIMER_S 28
3671 +
3672 +/* Symbol Timer Register and Filter Mask Register 1 */
3673 +#define PCIE_STRFMR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x71C)
3674 +#define PCIE_STRFMR_SKP_INTERVAL 0x000007FF /* SKP lnterval Value */
3675 +#define PCIE_STRFMR_SKP_INTERVAL_S 0
3676 +#define PCIE_STRFMR_FC_WDT_DISABLE 0x00008000 /* Disable of FC Watchdog Timer */
3677 +#define PCIE_STRFMR_TLP_FUNC_MISMATCH_OK 0x00010000 /* Mask Function Mismatch Filtering for Incoming Requests */
3678 +#define PCIE_STRFMR_POISONED_TLP_OK 0x00020000 /* Mask Poisoned TLP Filtering */
3679 +#define PCIE_STRFMR_BAR_MATCH_OK 0x00040000 /* Mask BAR Match Filtering */
3680 +#define PCIE_STRFMR_TYPE1_CFG_REQ_OK 0x00080000 /* Mask Type 1 Configuration Request Filtering */
3681 +#define PCIE_STRFMR_LOCKED_REQ_OK 0x00100000 /* Mask Locked Request Filtering */
3682 +#define PCIE_STRFMR_CPL_TAG_ERR_RULES_OK 0x00200000 /* Mask Tag Error Rules for Received Completions */
3683 +#define PCIE_STRFMR_CPL_REQUESTOR_ID_MISMATCH_OK 0x00400000 /* Mask Requester ID Mismatch Error for Received Completions */
3684 +#define PCIE_STRFMR_CPL_FUNC_MISMATCH_OK 0x00800000 /* Mask Function Mismatch Error for Received Completions */
3685 +#define PCIE_STRFMR_CPL_TC_MISMATCH_OK 0x01000000 /* Mask Traffic Class Mismatch Error for Received Completions */
3686 +#define PCIE_STRFMR_CPL_ATTR_MISMATCH_OK 0x02000000 /* Mask Attribute Mismatch Error for Received Completions */
3687 +#define PCIE_STRFMR_CPL_LENGTH_MISMATCH_OK 0x04000000 /* Mask Length Mismatch Error for Received Completions */
3688 +#define PCIE_STRFMR_TLP_ECRC_ERR_OK 0x08000000 /* Mask ECRC Error Filtering */
3689 +#define PCIE_STRFMR_CPL_TLP_ECRC_OK 0x10000000 /* Mask ECRC Error Filtering for Completions */
3690 +#define PCIE_STRFMR_RX_TLP_MSG_NO_DROP 0x20000000 /* Send Message TLPs */
3691 +#define PCIE_STRFMR_RX_IO_TRANS_ENABLE 0x40000000 /* Mask Filtering of received I/O Requests */
3692 +#define PCIE_STRFMR_RX_CFG_TRANS_ENABLE 0x80000000 /* Mask Filtering of Received Configuration Requests */
3693 +
3694 +#define PCIE_DEF_SKP_INTERVAL 700 /* 1180 ~1538 , 125MHz * 2, 250MHz * 1 */
3695 +
3696 +/* Filter Masker Register 2 */
3697 +#define PCIE_FMR2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x720)
3698 +#define PCIE_FMR2_VENDOR_MSG0_PASSED_TO_TRGT1 0x00000001 /* Mask RADM Filtering and Error Handling Rules */
3699 +#define PCIE_FMR2_VENDOR_MSG1_PASSED_TO_TRGT1 0x00000002 /* Mask RADM Filtering and Error Handling Rules */
3700 +
3701 +/* Debug Register 0 */
3702 +#define PCIE_DBR0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x728)
3703 +
3704 +/* Debug Register 1 */
3705 +#define PCIE_DBR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x72C)
3706 +
3707 +/* Transmit Posted FC Credit Status Register */
3708 +#define PCIE_TPFCS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x730)
3709 +#define PCIE_TPFCS_TX_P_DATA_FC_CREDITS 0x00000FFF /* Transmit Posted Data FC Credits */
3710 +#define PCIE_TPFCS_TX_P_DATA_FC_CREDITS_S 0
3711 +#define PCIE_TPFCS_TX_P_HDR_FC_CREDITS 0x000FF000 /* Transmit Posted Header FC Credits */
3712 +#define PCIE_TPFCS_TX_P_HDR_FC_CREDITS_S 12
3713 +
3714 +/* Transmit Non-Posted FC Credit Status */
3715 +#define PCIE_TNPFCS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x734)
3716 +#define PCIE_TNPFCS_TX_NP_DATA_FC_CREDITS 0x00000FFF /* Transmit Non-Posted Data FC Credits */
3717 +#define PCIE_TNPFCS_TX_NP_DATA_FC_CREDITS_S 0
3718 +#define PCIE_TNPFCS_TX_NP_HDR_FC_CREDITS 0x000FF000 /* Transmit Non-Posted Header FC Credits */
3719 +#define PCIE_TNPFCS_TX_NP_HDR_FC_CREDITS_S 12
3720 +
3721 +/* Transmit Complete FC Credit Status Register */
3722 +#define PCIE_TCFCS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x738)
3723 +#define PCIE_TCFCS_TX_CPL_DATA_FC_CREDITS 0x00000FFF /* Transmit Completion Data FC Credits */
3724 +#define PCIE_TCFCS_TX_CPL_DATA_FC_CREDITS_S 0
3725 +#define PCIE_TCFCS_TX_CPL_HDR_FC_CREDITS 0x000FF000 /* Transmit Completion Header FC Credits */
3726 +#define PCIE_TCFCS_TX_CPL_HDR_FC_CREDITS_S 12
3727 +
3728 +/* Queue Status Register */
3729 +#define PCIE_QSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x73C)
3730 +#define PCIE_QSR_WAIT_UPDATE_FC_DLL 0x00000001 /* Received TLP FC Credits Not Returned */
3731 +#define PCIE_QSR_TX_RETRY_BUF_NOT_EMPTY 0x00000002 /* Transmit Retry Buffer Not Empty */
3732 +#define PCIE_QSR_RX_QUEUE_NOT_EMPTY 0x00000004 /* Received Queue Not Empty */
3733 +
3734 +/* VC Transmit Arbitration Register 1 */
3735 +#define PCIE_VCTAR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x740)
3736 +#define PCIE_VCTAR1_WRR_WEIGHT_VC0 0x000000FF /* WRR Weight for VC0 */
3737 +#define PCIE_VCTAR1_WRR_WEIGHT_VC1 0x0000FF00 /* WRR Weight for VC1 */
3738 +#define PCIE_VCTAR1_WRR_WEIGHT_VC2 0x00FF0000 /* WRR Weight for VC2 */
3739 +#define PCIE_VCTAR1_WRR_WEIGHT_VC3 0xFF000000 /* WRR Weight for VC3 */
3740 +
3741 +/* VC Transmit Arbitration Register 2 */
3742 +#define PCIE_VCTAR2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x744)
3743 +#define PCIE_VCTAR2_WRR_WEIGHT_VC4 0x000000FF /* WRR Weight for VC4 */
3744 +#define PCIE_VCTAR2_WRR_WEIGHT_VC5 0x0000FF00 /* WRR Weight for VC5 */
3745 +#define PCIE_VCTAR2_WRR_WEIGHT_VC6 0x00FF0000 /* WRR Weight for VC6 */
3746 +#define PCIE_VCTAR2_WRR_WEIGHT_VC7 0xFF000000 /* WRR Weight for VC7 */
3747 +
3748 +/* VC0 Posted Receive Queue Control Register */
3749 +#define PCIE_VC0_PRQCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x748)
3750 +#define PCIE_VC0_PRQCR_P_DATA_CREDITS 0x00000FFF /* VC0 Posted Data Credits */
3751 +#define PCIE_VC0_PRQCR_P_DATA_CREDITS_S 0
3752 +#define PCIE_VC0_PRQCR_P_HDR_CREDITS 0x000FF000 /* VC0 Posted Header Credits */
3753 +#define PCIE_VC0_PRQCR_P_HDR_CREDITS_S 12
3754 +#define PCIE_VC0_PRQCR_P_TLP_QUEUE_MODE 0x00E00000 /* VC0 Posted TLP Queue Mode */
3755 +#define PCIE_VC0_PRQCR_P_TLP_QUEUE_MODE_S 20
3756 +#define PCIE_VC0_PRQCR_TLP_RELAX_ORDER 0x40000000 /* TLP Type Ordering for VC0 */
3757 +#define PCIE_VC0_PRQCR_VC_STRICT_ORDER 0x80000000 /* VC0 Ordering for Receive Queues */
3758 +
3759 +/* VC0 Non-Posted Receive Queue Control */
3760 +#define PCIE_VC0_NPRQCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x74C)
3761 +#define PCIE_VC0_NPRQCR_NP_DATA_CREDITS 0x00000FFF /* VC0 Non-Posted Data Credits */
3762 +#define PCIE_VC0_NPRQCR_NP_DATA_CREDITS_S 0
3763 +#define PCIE_VC0_NPRQCR_NP_HDR_CREDITS 0x000FF000 /* VC0 Non-Posted Header Credits */
3764 +#define PCIE_VC0_NPRQCR_NP_HDR_CREDITS_S 12
3765 +#define PCIE_VC0_NPRQCR_NP_TLP_QUEUE_MODE 0x00E00000 /* VC0 Non-Posted TLP Queue Mode */
3766 +#define PCIE_VC0_NPRQCR_NP_TLP_QUEUE_MODE_S 20
3767 +
3768 +/* VC0 Completion Receive Queue Control */
3769 +#define PCIE_VC0_CRQCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x750)
3770 +#define PCIE_VC0_CRQCR_CPL_DATA_CREDITS 0x00000FFF /* VC0 Completion TLP Queue Mode */
3771 +#define PCIE_VC0_CRQCR_CPL_DATA_CREDITS_S 0
3772 +#define PCIE_VC0_CRQCR_CPL_HDR_CREDITS 0x000FF000 /* VC0 Completion Header Credits */
3773 +#define PCIE_VC0_CRQCR_CPL_HDR_CREDITS_S 12
3774 +#define PCIE_VC0_CRQCR_CPL_TLP_QUEUE_MODE 0x00E00000 /* VC0 Completion Data Credits */
3775 +#define PCIE_VC0_CRQCR_CPL_TLP_QUEUE_MODE_S 21
3776 +
3777 +/* Applicable to the above three registers */
3778 +enum {
3779 + PCIE_VC0_TLP_QUEUE_MODE_STORE_FORWARD = 1,
3780 + PCIE_VC0_TLP_QUEUE_MODE_CUT_THROUGH = 2,
3781 + PCIE_VC0_TLP_QUEUE_MODE_BYPASS = 4,
3782 +};
3783 +
3784 +/* VC0 Posted Buffer Depth Register */
3785 +#define PCIE_VC0_PBD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7A8)
3786 +#define PCIE_VC0_PBD_P_DATA_QUEUE_ENTRIES 0x00003FFF /* VC0 Posted Data Queue Depth */
3787 +#define PCIE_VC0_PBD_P_DATA_QUEUE_ENTRIES_S 0
3788 +#define PCIE_VC0_PBD_P_HDR_QUEUE_ENTRIES 0x03FF0000 /* VC0 Posted Header Queue Depth */
3789 +#define PCIE_VC0_PBD_P_HDR_QUEUE_ENTRIES_S 16
3790 +
3791 +/* VC0 Non-Posted Buffer Depth Register */
3792 +#define PCIE_VC0_NPBD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7AC)
3793 +#define PCIE_VC0_NPBD_NP_DATA_QUEUE_ENTRIES 0x00003FFF /* VC0 Non-Posted Data Queue Depth */
3794 +#define PCIE_VC0_NPBD_NP_DATA_QUEUE_ENTRIES_S 0
3795 +#define PCIE_VC0_NPBD_NP_HDR_QUEUE_ENTRIES 0x03FF0000 /* VC0 Non-Posted Header Queue Depth */
3796 +#define PCIE_VC0_NPBD_NP_HDR_QUEUE_ENTRIES_S 16
3797 +
3798 +/* VC0 Completion Buffer Depth Register */
3799 +#define PCIE_VC0_CBD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7B0)
3800 +#define PCIE_VC0_CBD_CPL_DATA_QUEUE_ENTRIES 0x00003FFF /* C0 Completion Data Queue Depth */
3801 +#define PCIE_VC0_CBD_CPL_DATA_QUEUE_ENTRIES_S 0
3802 +#define PCIE_VC0_CBD_CPL_HDR_QUEUE_ENTRIES 0x03FF0000 /* VC0 Completion Header Queue Depth */
3803 +#define PCIE_VC0_CBD_CPL_HDR_QUEUE_ENTRIES_S 16
3804 +
3805 +/* PHY Status Register, all zeros in VR9 */
3806 +#define PCIE_PHYSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x810)
3807 +
3808 +/* PHY Control Register, all zeros in VR9 */
3809 +#define PCIE_PHYCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x814)
3810 +
3811 +/*
3812 + * PCIe PDI PHY register definition, suppose all the following
3813 + * stuff is confidential.
3814 + * XXX, detailed bit definition
3815 + */
3816 +#define PCIE_PHY_PLL_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x22 << 1))
3817 +#define PCIE_PHY_PLL_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x23 << 1))
3818 +#define PCIE_PHY_PLL_CTRL3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x24 << 1))
3819 +#define PCIE_PHY_PLL_CTRL4(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x25 << 1))
3820 +#define PCIE_PHY_PLL_CTRL5(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x26 << 1))
3821 +#define PCIE_PHY_PLL_CTRL6(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x27 << 1))
3822 +#define PCIE_PHY_PLL_CTRL7(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x28 << 1))
3823 +#define PCIE_PHY_PLL_A_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x29 << 1))
3824 +#define PCIE_PHY_PLL_A_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x2A << 1))
3825 +#define PCIE_PHY_PLL_A_CTRL3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x2B << 1))
3826 +#define PCIE_PHY_PLL_STATUS(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x2C << 1))
3827 +
3828 +#define PCIE_PHY_TX1_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x30 << 1))
3829 +#define PCIE_PHY_TX1_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x31 << 1))
3830 +#define PCIE_PHY_TX1_CTRL3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x32 << 1))
3831 +#define PCIE_PHY_TX1_A_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x33 << 1))
3832 +#define PCIE_PHY_TX1_A_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x34 << 1))
3833 +#define PCIE_PHY_TX1_MOD1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x35 << 1))
3834 +#define PCIE_PHY_TX1_MOD2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x36 << 1))
3835 +#define PCIE_PHY_TX1_MOD3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x37 << 1))
3836 +
3837 +#define PCIE_PHY_TX2_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x38 << 1))
3838 +#define PCIE_PHY_TX2_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x39 << 1))
3839 +#define PCIE_PHY_TX2_A_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3B << 1))
3840 +#define PCIE_PHY_TX2_A_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3C << 1))
3841 +#define PCIE_PHY_TX2_MOD1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3D << 1))
3842 +#define PCIE_PHY_TX2_MOD2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3E << 1))
3843 +#define PCIE_PHY_TX2_MOD3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3F << 1))
3844 +
3845 +#define PCIE_PHY_RX1_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x50 << 1))
3846 +#define PCIE_PHY_RX1_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x51 << 1))
3847 +#define PCIE_PHY_RX1_CDR(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x52 << 1))
3848 +#define PCIE_PHY_RX1_EI(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x53 << 1))
3849 +#define PCIE_PHY_RX1_A_CTRL(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x55 << 1))
3850 +
3851 +/* Interrupt related stuff */
3852 +#define PCIE_LEGACY_DISABLE 0
3853 +#define PCIE_LEGACY_INTA 1
3854 +#define PCIE_LEGACY_INTB 2
3855 +#define PCIE_LEGACY_INTC 3
3856 +#define PCIE_LEGACY_INTD 4
3857 +#define PCIE_LEGACY_INT_MAX PCIE_LEGACY_INTD
3858 +
3859 +#endif /* IFXMIPS_PCIE_REG_H */
3860 +
3861 --- /dev/null
3862 +++ b/arch/mips/pci/ifxmips_pcie_vr9.h
3863 @@ -0,0 +1,269 @@
3864 +/****************************************************************************
3865 + Copyright (c) 2010
3866 + Lantiq Deutschland GmbH
3867 + Am Campeon 3; 85579 Neubiberg, Germany
3868 +
3869 + For licensing information, see the file 'LICENSE' in the root folder of
3870 + this software module.
3871 +
3872 + *****************************************************************************/
3873 +/*!
3874 + \file ifxmips_pcie_vr9.h
3875 + \ingroup IFX_PCIE
3876 + \brief PCIe RC driver vr9 specific file
3877 +*/
3878 +
3879 +#ifndef IFXMIPS_PCIE_VR9_H
3880 +#define IFXMIPS_PCIE_VR9_H
3881 +
3882 +#include <linux/types.h>
3883 +#include <linux/delay.h>
3884 +
3885 +#include <linux/gpio.h>
3886 +#include <lantiq_soc.h>
3887 +
3888 +#define IFX_PCIE_GPIO_RESET 494
3889 +
3890 +#define IFX_REG_R32 ltq_r32
3891 +#define IFX_REG_W32 ltq_w32
3892 +#define CONFIG_IFX_PCIE_HW_SWAP
3893 +#define IFX_RCU_AHB_ENDIAN ((volatile u32*)(IFX_RCU + 0x004C))
3894 +#define IFX_RCU_RST_REQ ((volatile u32*)(IFX_RCU + 0x0010))
3895 +#define IFX_RCU_AHB_BE_PCIE_PDI 0x00000080 /* Configure PCIE PDI module in big endian*/
3896 +
3897 +#define IFX_RCU (KSEG1 | 0x1F203000)
3898 +#define IFX_RCU_AHB_BE_PCIE_M 0x00000001 /* Configure AHB master port that connects to PCIe RC in big endian */
3899 +#define IFX_RCU_AHB_BE_PCIE_S 0x00000010 /* Configure AHB slave port that connects to PCIe RC in little endian */
3900 +#define IFX_RCU_AHB_BE_XBAR_M 0x00000002 /* Configure AHB master port that connects to XBAR in big endian */
3901 +#define CONFIG_IFX_PCIE_PHY_36MHZ_MODE
3902 +
3903 +#define IFX_PMU1_MODULE_PCIE_PHY (0)
3904 +#define IFX_PMU1_MODULE_PCIE_CTRL (1)
3905 +#define IFX_PMU1_MODULE_PDI (4)
3906 +#define IFX_PMU1_MODULE_MSI (5)
3907 +
3908 +#define IFX_PMU_MODULE_PCIE_L0_CLK (31)
3909 +
3910 +
3911 +#define IFX_GPIO (KSEG1 | 0x1E100B00)
3912 +#define ALT0 ((volatile u32*)(IFX_GPIO + 0x007c))
3913 +#define ALT1 ((volatile u32*)(IFX_GPIO + 0x0080))
3914 +#define OD ((volatile u32*)(IFX_GPIO + 0x0084))
3915 +#define DIR ((volatile u32*)(IFX_GPIO + 0x0078))
3916 +#define OUT ((volatile u32*)(IFX_GPIO + 0x0070))
3917 +
3918 +
3919 +static inline void pcie_ep_gpio_rst_init(int pcie_port)
3920 +{
3921 +
3922 + gpio_request(IFX_PCIE_GPIO_RESET, "pcie-reset");
3923 + gpio_direction_output(IFX_PCIE_GPIO_RESET, 1);
3924 + gpio_set_value(IFX_PCIE_GPIO_RESET, 1);
3925 +
3926 +/* ifx_gpio_pin_reserve(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
3927 + ifx_gpio_output_set(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
3928 + ifx_gpio_dir_out_set(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
3929 + ifx_gpio_altsel0_clear(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
3930 + ifx_gpio_altsel1_clear(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
3931 + ifx_gpio_open_drain_set(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);*/
3932 +}
3933 +
3934 +static inline void pcie_ahb_pmu_setup(void)
3935 +{
3936 + /* Enable AHB bus master/slave */
3937 + struct clk *clk;
3938 + clk = clk_get_sys("1d900000.pcie", "ahb");
3939 + clk_enable(clk);
3940 +
3941 + //AHBM_PMU_SETUP(IFX_PMU_ENABLE);
3942 + //AHBS_PMU_SETUP(IFX_PMU_ENABLE);
3943 +}
3944 +
3945 +static inline void pcie_rcu_endian_setup(int pcie_port)
3946 +{
3947 + u32 reg;
3948 +
3949 + reg = IFX_REG_R32(IFX_RCU_AHB_ENDIAN);
3950 +#ifdef CONFIG_IFX_PCIE_HW_SWAP
3951 + reg |= IFX_RCU_AHB_BE_PCIE_M;
3952 + reg |= IFX_RCU_AHB_BE_PCIE_S;
3953 + reg &= ~IFX_RCU_AHB_BE_XBAR_M;
3954 +#else
3955 + reg |= IFX_RCU_AHB_BE_PCIE_M;
3956 + reg &= ~IFX_RCU_AHB_BE_PCIE_S;
3957 + reg &= ~IFX_RCU_AHB_BE_XBAR_M;
3958 +#endif /* CONFIG_IFX_PCIE_HW_SWAP */
3959 + IFX_REG_W32(reg, IFX_RCU_AHB_ENDIAN);
3960 + IFX_PCIE_PRINT(PCIE_MSG_REG, "%s IFX_RCU_AHB_ENDIAN: 0x%08x\n", __func__, IFX_REG_R32(IFX_RCU_AHB_ENDIAN));
3961 +}
3962 +
3963 +static inline void pcie_phy_pmu_enable(int pcie_port)
3964 +{
3965 + struct clk *clk;
3966 + clk = clk_get_sys("1d900000.pcie", "phy");
3967 + clk_enable(clk);
3968 +
3969 + //PCIE_PHY_PMU_SETUP(IFX_PMU_ENABLE);
3970 +}
3971 +
3972 +static inline void pcie_phy_pmu_disable(int pcie_port)
3973 +{
3974 + struct clk *clk;
3975 + clk = clk_get_sys("1d900000.pcie", "phy");
3976 + clk_disable(clk);
3977 +
3978 +// PCIE_PHY_PMU_SETUP(IFX_PMU_DISABLE);
3979 +}
3980 +
3981 +static inline void pcie_pdi_big_endian(int pcie_port)
3982 +{
3983 + u32 reg;
3984 +
3985 + /* SRAM2PDI endianness control. */
3986 + reg = IFX_REG_R32(IFX_RCU_AHB_ENDIAN);
3987 + /* Config AHB->PCIe and PDI endianness */
3988 + reg |= IFX_RCU_AHB_BE_PCIE_PDI;
3989 + IFX_REG_W32(reg, IFX_RCU_AHB_ENDIAN);
3990 +}
3991 +
3992 +static inline void pcie_pdi_pmu_enable(int pcie_port)
3993 +{
3994 + /* Enable PDI to access PCIe PHY register */
3995 + struct clk *clk;
3996 + clk = clk_get_sys("1d900000.pcie", "pdi");
3997 + clk_enable(clk);
3998 + //PDI_PMU_SETUP(IFX_PMU_ENABLE);
3999 +}
4000 +
4001 +static inline void pcie_core_rst_assert(int pcie_port)
4002 +{
4003 + u32 reg;
4004 +
4005 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
4006 +
4007 + /* Reset PCIe PHY & Core, bit 22, bit 26 may be affected if write it directly */
4008 + reg |= 0x00400000;
4009 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
4010 +}
4011 +
4012 +static inline void pcie_core_rst_deassert(int pcie_port)
4013 +{
4014 + u32 reg;
4015 +
4016 + /* Make sure one micro-second delay */
4017 + udelay(1);
4018 +
4019 + /* Reset PCIe PHY & Core, bit 22 */
4020 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
4021 + reg &= ~0x00400000;
4022 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
4023 +}
4024 +
4025 +static inline void pcie_phy_rst_assert(int pcie_port)
4026 +{
4027 + u32 reg;
4028 +
4029 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
4030 + reg |= 0x00001000; /* Bit 12 */
4031 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
4032 +}
4033 +
4034 +static inline void pcie_phy_rst_deassert(int pcie_port)
4035 +{
4036 + u32 reg;
4037 +
4038 + /* Make sure one micro-second delay */
4039 + udelay(1);
4040 +
4041 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
4042 + reg &= ~0x00001000; /* Bit 12 */
4043 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
4044 +}
4045 +
4046 +static inline void pcie_device_rst_assert(int pcie_port)
4047 +{
4048 + gpio_set_value(IFX_PCIE_GPIO_RESET, 0);
4049 +// ifx_gpio_output_clear(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
4050 +}
4051 +
4052 +static inline void pcie_device_rst_deassert(int pcie_port)
4053 +{
4054 + mdelay(100);
4055 + gpio_direction_output(IFX_PCIE_GPIO_RESET, 1);
4056 +// gpio_set_value(IFX_PCIE_GPIO_RESET, 1);
4057 + //ifx_gpio_output_set(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
4058 +}
4059 +
4060 +static inline void pcie_core_pmu_setup(int pcie_port)
4061 +{
4062 + struct clk *clk;
4063 + clk = clk_get_sys("1d900000.pcie", "ctl");
4064 + clk_enable(clk);
4065 + clk = clk_get_sys("1d900000.pcie", "bus");
4066 + clk_enable(clk);
4067 +
4068 + /* PCIe Core controller enabled */
4069 +// PCIE_CTRL_PMU_SETUP(IFX_PMU_ENABLE);
4070 +
4071 + /* Enable PCIe L0 Clock */
4072 +// PCIE_L0_CLK_PMU_SETUP(IFX_PMU_ENABLE);
4073 +}
4074 +
4075 +static inline void pcie_msi_init(int pcie_port)
4076 +{
4077 + struct clk *clk;
4078 + pcie_msi_pic_init(pcie_port);
4079 + clk = clk_get_sys("ltq_pcie", "msi");
4080 + clk_enable(clk);
4081 +// MSI_PMU_SETUP(IFX_PMU_ENABLE);
4082 +}
4083 +
4084 +static inline u32
4085 +ifx_pcie_bus_nr_deduct(u32 bus_number, int pcie_port)
4086 +{
4087 + u32 tbus_number = bus_number;
4088 +
4089 +#ifdef CONFIG_PCI_LANTIQ
4090 + if (pcibios_host_nr() > 1) {
4091 + tbus_number -= pcibios_1st_host_bus_nr();
4092 + }
4093 +#endif /* CONFIG_PCI_LANTIQ */
4094 + return tbus_number;
4095 +}
4096 +
4097 +static inline u32
4098 +ifx_pcie_bus_enum_hack(struct pci_bus *bus, u32 devfn, int where, u32 value, int pcie_port, int read)
4099 +{
4100 + struct pci_dev *pdev;
4101 + u32 tvalue = value;
4102 +
4103 + /* Sanity check */
4104 + pdev = pci_get_slot(bus, devfn);
4105 + if (pdev == NULL) {
4106 + return tvalue;
4107 + }
4108 +
4109 + /* Only care about PCI bridge */
4110 + if (pdev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
4111 + return tvalue;
4112 + }
4113 +
4114 + if (read) { /* Read hack */
4115 + #ifdef CONFIG_PCI_LANTIQ
4116 + if (pcibios_host_nr() > 1) {
4117 + tvalue = ifx_pcie_bus_enum_read_hack(where, tvalue);
4118 + }
4119 + #endif /* CONFIG_PCI_LANTIQ */
4120 + }
4121 + else { /* Write hack */
4122 + #ifdef CONFIG_PCI_LANTIQ
4123 + if (pcibios_host_nr() > 1) {
4124 + tvalue = ifx_pcie_bus_enum_write_hack(where, tvalue);
4125 + }
4126 + #endif
4127 + }
4128 + return tvalue;
4129 +}
4130 +
4131 +#endif /* IFXMIPS_PCIE_VR9_H */
4132 +
4133 --- a/arch/mips/pci/pci-legacy.c
4134 +++ b/arch/mips/pci/pci-legacy.c
4135 @@ -305,3 +305,30 @@ char *__init pcibios_setup(char *str)
4136 return pcibios_plat_setup(str);
4137 return str;
4138 }
4139 +
4140 +int pcibios_host_nr(void)
4141 +{
4142 + int count = 0;
4143 + struct pci_controller *hose;
4144 + list_for_each_entry(hose, &controllers, list) {
4145 + count++;
4146 + }
4147 + return count;
4148 +}
4149 +EXPORT_SYMBOL(pcibios_host_nr);
4150 +
4151 +int pcibios_1st_host_bus_nr(void)
4152 +{
4153 + int bus_nr = 0;
4154 + struct pci_controller *hose;
4155 +
4156 + hose = list_first_entry_or_null(&controllers, struct pci_controller, list);
4157 +
4158 + if (hose != NULL) {
4159 + if (hose->bus != NULL) {
4160 + bus_nr = hose->bus->number + 1;
4161 + }
4162 + }
4163 + return bus_nr;
4164 +}
4165 +EXPORT_SYMBOL(pcibios_1st_host_bus_nr);
4166 --- /dev/null
4167 +++ b/arch/mips/pci/pcie-lantiq.h
4168 @@ -0,0 +1,1301 @@
4169 +/******************************************************************************
4170 +**
4171 +** FILE NAME : ifxmips_pcie_reg.h
4172 +** PROJECT : IFX UEIP for VRX200
4173 +** MODULES : PCIe module
4174 +**
4175 +** DATE : 02 Mar 2009
4176 +** AUTHOR : Lei Chuanhua
4177 +** DESCRIPTION : PCIe Root Complex Driver
4178 +** COPYRIGHT : Copyright (c) 2009
4179 +** Infineon Technologies AG
4180 +** Am Campeon 1-12, 85579 Neubiberg, Germany
4181 +**
4182 +** This program is free software; you can redistribute it and/or modify
4183 +** it under the terms of the GNU General Public License as published by
4184 +** the Free Software Foundation; either version 2 of the License, or
4185 +** (at your option) any later version.
4186 +** HISTORY
4187 +** $Version $Date $Author $Comment
4188 +** 0.0.1 17 Mar,2009 Lei Chuanhua Initial version
4189 +*******************************************************************************/
4190 +#ifndef IFXMIPS_PCIE_REG_H
4191 +#define IFXMIPS_PCIE_REG_H
4192 +#include <linux/version.h>
4193 +#include <linux/types.h>
4194 +#include <linux/pci.h>
4195 +#include <linux/interrupt.h>
4196 +/*!
4197 + \file ifxmips_pcie_reg.h
4198 + \ingroup IFX_PCIE
4199 + \brief header file for PCIe module register definition
4200 +*/
4201 +/* PCIe Address Mapping Base */
4202 +#define PCIE_CFG_PHY_BASE 0x1D000000UL
4203 +#define PCIE_CFG_BASE (KSEG1 + PCIE_CFG_PHY_BASE)
4204 +#define PCIE_CFG_SIZE (8 * 1024 * 1024)
4205 +
4206 +#define PCIE_MEM_PHY_BASE 0x1C000000UL
4207 +#define PCIE_MEM_BASE (KSEG1 + PCIE_MEM_PHY_BASE)
4208 +#define PCIE_MEM_SIZE (16 * 1024 * 1024)
4209 +#define PCIE_MEM_PHY_END (PCIE_MEM_PHY_BASE + PCIE_MEM_SIZE - 1)
4210 +
4211 +#define PCIE_IO_PHY_BASE 0x1D800000UL
4212 +#define PCIE_IO_BASE (KSEG1 + PCIE_IO_PHY_BASE)
4213 +#define PCIE_IO_SIZE (1 * 1024 * 1024)
4214 +#define PCIE_IO_PHY_END (PCIE_IO_PHY_BASE + PCIE_IO_SIZE - 1)
4215 +
4216 +#define PCIE_RC_CFG_BASE (KSEG1 + 0x1D900000)
4217 +#define PCIE_APP_LOGIC_REG (KSEG1 + 0x1E100900)
4218 +#define PCIE_MSI_PHY_BASE 0x1F600000UL
4219 +
4220 +#define PCIE_PDI_PHY_BASE 0x1F106800UL
4221 +#define PCIE_PDI_BASE (KSEG1 + PCIE_PDI_PHY_BASE)
4222 +#define PCIE_PDI_SIZE 0x400
4223 +
4224 +#define PCIE1_CFG_PHY_BASE 0x19000000UL
4225 +#define PCIE1_CFG_BASE (KSEG1 + PCIE1_CFG_PHY_BASE)
4226 +#define PCIE1_CFG_SIZE (8 * 1024 * 1024)
4227 +
4228 +#define PCIE1_MEM_PHY_BASE 0x18000000UL
4229 +#define PCIE1_MEM_BASE (KSEG1 + PCIE1_MEM_PHY_BASE)
4230 +#define PCIE1_MEM_SIZE (16 * 1024 * 1024)
4231 +#define PCIE1_MEM_PHY_END (PCIE1_MEM_PHY_BASE + PCIE1_MEM_SIZE - 1)
4232 +
4233 +#define PCIE1_IO_PHY_BASE 0x19800000UL
4234 +#define PCIE1_IO_BASE (KSEG1 + PCIE1_IO_PHY_BASE)
4235 +#define PCIE1_IO_SIZE (1 * 1024 * 1024)
4236 +#define PCIE1_IO_PHY_END (PCIE1_IO_PHY_BASE + PCIE1_IO_SIZE - 1)
4237 +
4238 +#define PCIE1_RC_CFG_BASE (KSEG1 + 0x19900000)
4239 +#define PCIE1_APP_LOGIC_REG (KSEG1 + 0x1E100700)
4240 +#define PCIE1_MSI_PHY_BASE 0x1F400000UL
4241 +
4242 +#define PCIE1_PDI_PHY_BASE 0x1F700400UL
4243 +#define PCIE1_PDI_BASE (KSEG1 + PCIE1_PDI_PHY_BASE)
4244 +#define PCIE1_PDI_SIZE 0x400
4245 +
4246 +#define PCIE_CFG_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_CFG_BASE) : (PCIE_CFG_BASE))
4247 +#define PCIE_MEM_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_MEM_BASE) : (PCIE_MEM_BASE))
4248 +#define PCIE_IO_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_IO_BASE) : (PCIE_IO_BASE))
4249 +#define PCIE_MEM_PHY_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_MEM_PHY_BASE) : (PCIE_MEM_PHY_BASE))
4250 +#define PCIE_MEM_PHY_PORT_TO_END(X) ((X) > 0 ? (PCIE1_MEM_PHY_END) : (PCIE_MEM_PHY_END))
4251 +#define PCIE_IO_PHY_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_IO_PHY_BASE) : (PCIE_IO_PHY_BASE))
4252 +#define PCIE_IO_PHY_PORT_TO_END(X) ((X) > 0 ? (PCIE1_IO_PHY_END) : (PCIE_IO_PHY_END))
4253 +#define PCIE_APP_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_APP_LOGIC_REG) : (PCIE_APP_LOGIC_REG))
4254 +#define PCIE_RC_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_RC_CFG_BASE) : (PCIE_RC_CFG_BASE))
4255 +#define PCIE_PHY_PORT_TO_BASE(X) ((X) > 0 ? (PCIE1_PDI_BASE) : (PCIE_PDI_BASE))
4256 +
4257 +/* PCIe Application Logic Register */
4258 +/* RC Core Control Register */
4259 +#define PCIE_RC_CCR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x10)
4260 +/* This should be enabled after initializing configuratin registers
4261 + * Also should check link status retraining bit
4262 + */
4263 +#define PCIE_RC_CCR_LTSSM_ENABLE 0x00000001 /* Enable LTSSM to continue link establishment */
4264 +
4265 +/* RC Core Debug Register */
4266 +#define PCIE_RC_DR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x14)
4267 +#define PCIE_RC_DR_DLL_UP 0x00000001 /* Data Link Layer Up */
4268 +#define PCIE_RC_DR_CURRENT_POWER_STATE 0x0000000E /* Current Power State */
4269 +#define PCIE_RC_DR_CURRENT_POWER_STATE_S 1
4270 +#define PCIE_RC_DR_CURRENT_LTSSM_STATE 0x000001F0 /* Current LTSSM State */
4271 +#define PCIE_RC_DR_CURRENT_LTSSM_STATE_S 4
4272 +
4273 +#define PCIE_RC_DR_PM_DEV_STATE 0x00000E00 /* Power Management D-State */
4274 +#define PCIE_RC_DR_PM_DEV_STATE_S 9
4275 +
4276 +#define PCIE_RC_DR_PM_ENABLED 0x00001000 /* Power Management State from PMU */
4277 +#define PCIE_RC_DR_PME_EVENT_ENABLED 0x00002000 /* Power Management Event Enable State */
4278 +#define PCIE_RC_DR_AUX_POWER_ENABLED 0x00004000 /* Auxiliary Power Enable */
4279 +
4280 +/* Current Power State Definition */
4281 +enum {
4282 + PCIE_RC_DR_D0 = 0,
4283 + PCIE_RC_DR_D1, /* Not supported */
4284 + PCIE_RC_DR_D2, /* Not supported */
4285 + PCIE_RC_DR_D3,
4286 + PCIE_RC_DR_UN,
4287 +};
4288 +
4289 +/* PHY Link Status Register */
4290 +#define PCIE_PHY_SR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x18)
4291 +#define PCIE_PHY_SR_PHY_LINK_UP 0x00000001 /* PHY Link Up/Down Indicator */
4292 +
4293 +/* Electromechanical Control Register */
4294 +#define PCIE_EM_CR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x1C)
4295 +#define PCIE_EM_CR_CARD_IS_PRESENT 0x00000001 /* Card Presence Detect State */
4296 +#define PCIE_EM_CR_MRL_OPEN 0x00000002 /* MRL Sensor State */
4297 +#define PCIE_EM_CR_POWER_FAULT_SET 0x00000004 /* Power Fault Detected */
4298 +#define PCIE_EM_CR_MRL_SENSOR_SET 0x00000008 /* MRL Sensor Changed */
4299 +#define PCIE_EM_CR_PRESENT_DETECT_SET 0x00000010 /* Card Presense Detect Changed */
4300 +#define PCIE_EM_CR_CMD_CPL_INT_SET 0x00000020 /* Command Complete Interrupt */
4301 +#define PCIE_EM_CR_SYS_INTERLOCK_SET 0x00000040 /* System Electromechanical IterLock Engaged */
4302 +#define PCIE_EM_CR_ATTENTION_BUTTON_SET 0x00000080 /* Attention Button Pressed */
4303 +
4304 +/* Interrupt Status Register */
4305 +#define PCIE_IR_SR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x20)
4306 +#define PCIE_IR_SR_PME_CAUSE_MSI 0x00000002 /* MSI caused by PME */
4307 +#define PCIE_IR_SR_HP_PME_WAKE_GEN 0x00000004 /* Hotplug PME Wake Generation */
4308 +#define PCIE_IR_SR_HP_MSI 0x00000008 /* Hotplug MSI */
4309 +#define PCIE_IR_SR_AHB_LU_ERR 0x00000030 /* AHB Bridge Lookup Error Signals */
4310 +#define PCIE_IR_SR_AHB_LU_ERR_S 4
4311 +#define PCIE_IR_SR_INT_MSG_NUM 0x00003E00 /* Interrupt Message Number */
4312 +#define PCIE_IR_SR_INT_MSG_NUM_S 9
4313 +#define PCIE_IR_SR_AER_INT_MSG_NUM 0xF8000000 /* Advanced Error Interrupt Message Number */
4314 +#define PCIE_IR_SR_AER_INT_MSG_NUM_S 27
4315 +
4316 +/* Message Control Register */
4317 +#define PCIE_MSG_CR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x30)
4318 +#define PCIE_MSG_CR_GEN_PME_TURN_OFF_MSG 0x00000001 /* Generate PME Turn Off Message */
4319 +#define PCIE_MSG_CR_GEN_UNLOCK_MSG 0x00000002 /* Generate Unlock Message */
4320 +
4321 +#define PCIE_VDM_DR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x34)
4322 +
4323 +/* Vendor-Defined Message Requester ID Register */
4324 +#define PCIE_VDM_RID(X) (PCIE_APP_PORT_TO_BASE (X) + 0x38)
4325 +#define PCIE_VDM_RID_VENROR_MSG_REQ_ID 0x0000FFFF
4326 +#define PCIE_VDM_RID_VDMRID_S 0
4327 +
4328 +/* ASPM Control Register */
4329 +#define PCIE_ASPM_CR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x40)
4330 +#define PCIE_ASPM_CR_HOT_RST 0x00000001 /* Hot Reset Request to the downstream device */
4331 +#define PCIE_ASPM_CR_REQ_EXIT_L1 0x00000002 /* Request to Exit L1 */
4332 +#define PCIE_ASPM_CR_REQ_ENTER_L1 0x00000004 /* Request to Enter L1 */
4333 +
4334 +/* Vendor Message DW0 Register */
4335 +#define PCIE_VM_MSG_DW0(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x50)
4336 +#define PCIE_VM_MSG_DW0_TYPE 0x0000001F /* Message type */
4337 +#define PCIE_VM_MSG_DW0_TYPE_S 0
4338 +#define PCIE_VM_MSG_DW0_FORMAT 0x00000060 /* Format */
4339 +#define PCIE_VM_MSG_DW0_FORMAT_S 5
4340 +#define PCIE_VM_MSG_DW0_TC 0x00007000 /* Traffic Class */
4341 +#define PCIE_VM_MSG_DW0_TC_S 12
4342 +#define PCIE_VM_MSG_DW0_ATTR 0x000C0000 /* Atrributes */
4343 +#define PCIE_VM_MSG_DW0_ATTR_S 18
4344 +#define PCIE_VM_MSG_DW0_EP_TLP 0x00100000 /* Poisoned TLP */
4345 +#define PCIE_VM_MSG_DW0_TD 0x00200000 /* TLP Digest */
4346 +#define PCIE_VM_MSG_DW0_LEN 0xFFC00000 /* Length */
4347 +#define PCIE_VM_MSG_DW0_LEN_S 22
4348 +
4349 +/* Format Definition */
4350 +enum {
4351 + PCIE_VM_MSG_FORMAT_00 = 0, /* 3DW Hdr, no data*/
4352 + PCIE_VM_MSG_FORMAT_01, /* 4DW Hdr, no data */
4353 + PCIE_VM_MSG_FORMAT_10, /* 3DW Hdr, with data */
4354 + PCIE_VM_MSG_FORMAT_11, /* 4DW Hdr, with data */
4355 +};
4356 +
4357 +/* Traffic Class Definition */
4358 +enum {
4359 + PCIE_VM_MSG_TC0 = 0,
4360 + PCIE_VM_MSG_TC1,
4361 + PCIE_VM_MSG_TC2,
4362 + PCIE_VM_MSG_TC3,
4363 + PCIE_VM_MSG_TC4,
4364 + PCIE_VM_MSG_TC5,
4365 + PCIE_VM_MSG_TC6,
4366 + PCIE_VM_MSG_TC7,
4367 +};
4368 +
4369 +/* Attributes Definition */
4370 +enum {
4371 + PCIE_VM_MSG_ATTR_00 = 0, /* RO and No Snoop cleared */
4372 + PCIE_VM_MSG_ATTR_01, /* RO cleared , No Snoop set */
4373 + PCIE_VM_MSG_ATTR_10, /* RO set, No Snoop cleared*/
4374 + PCIE_VM_MSG_ATTR_11, /* RO and No Snoop set */
4375 +};
4376 +
4377 +/* Payload Size Definition */
4378 +#define PCIE_VM_MSG_LEN_MIN 0
4379 +#define PCIE_VM_MSG_LEN_MAX 1024
4380 +
4381 +/* Vendor Message DW1 Register */
4382 +#define PCIE_VM_MSG_DW1(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x54)
4383 +#define PCIE_VM_MSG_DW1_FUNC_NUM 0x00000070 /* Function Number */
4384 +#define PCIE_VM_MSG_DW1_FUNC_NUM_S 8
4385 +#define PCIE_VM_MSG_DW1_CODE 0x00FF0000 /* Message Code */
4386 +#define PCIE_VM_MSG_DW1_CODE_S 16
4387 +#define PCIE_VM_MSG_DW1_TAG 0xFF000000 /* Tag */
4388 +#define PCIE_VM_MSG_DW1_TAG_S 24
4389 +
4390 +#define PCIE_VM_MSG_DW2(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x58)
4391 +#define PCIE_VM_MSG_DW3(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x5C)
4392 +
4393 +/* Vendor Message Request Register */
4394 +#define PCIE_VM_MSG_REQR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x60)
4395 +#define PCIE_VM_MSG_REQR_REQ 0x00000001 /* Vendor Message Request */
4396 +
4397 +
4398 +/* AHB Slave Side Band Control Register */
4399 +#define PCIE_AHB_SSB(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x70)
4400 +#define PCIE_AHB_SSB_REQ_BCM 0x00000001 /* Slave Reques BCM filed */
4401 +#define PCIE_AHB_SSB_REQ_EP 0x00000002 /* Slave Reques EP filed */
4402 +#define PCIE_AHB_SSB_REQ_TD 0x00000004 /* Slave Reques TD filed */
4403 +#define PCIE_AHB_SSB_REQ_ATTR 0x00000018 /* Slave Reques Attribute number */
4404 +#define PCIE_AHB_SSB_REQ_ATTR_S 3
4405 +#define PCIE_AHB_SSB_REQ_TC 0x000000E0 /* Slave Request TC Field */
4406 +#define PCIE_AHB_SSB_REQ_TC_S 5
4407 +
4408 +/* AHB Master SideBand Ctrl Register */
4409 +#define PCIE_AHB_MSB(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x74)
4410 +#define PCIE_AHB_MSB_RESP_ATTR 0x00000003 /* Master Response Attribute number */
4411 +#define PCIE_AHB_MSB_RESP_ATTR_S 0
4412 +#define PCIE_AHB_MSB_RESP_BAD_EOT 0x00000004 /* Master Response Badeot filed */
4413 +#define PCIE_AHB_MSB_RESP_BCM 0x00000008 /* Master Response BCM filed */
4414 +#define PCIE_AHB_MSB_RESP_EP 0x00000010 /* Master Response EP filed */
4415 +#define PCIE_AHB_MSB_RESP_TD 0x00000020 /* Master Response TD filed */
4416 +#define PCIE_AHB_MSB_RESP_FUN_NUM 0x000003C0 /* Master Response Function number */
4417 +#define PCIE_AHB_MSB_RESP_FUN_NUM_S 6
4418 +
4419 +/* AHB Control Register, fixed bus enumeration exception */
4420 +#define PCIE_AHB_CTRL(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0x78)
4421 +#define PCIE_AHB_CTRL_BUS_ERROR_SUPPRESS 0x00000001
4422 +
4423 +/* Interrupt Enalbe Register */
4424 +#define PCIE_IRNEN(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0xF4)
4425 +#define PCIE_IRNCR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0xF8)
4426 +#define PCIE_IRNICR(X) (volatile u32*)(PCIE_APP_PORT_TO_BASE(X) + 0xFC)
4427 +
4428 +/* PCIe interrupt enable/control/capture register definition */
4429 +#define PCIE_IRN_AER_REPORT 0x00000001 /* AER Interrupt */
4430 +#define PCIE_IRN_AER_MSIX 0x00000002 /* Advanced Error MSI-X Interrupt */
4431 +#define PCIE_IRN_PME 0x00000004 /* PME Interrupt */
4432 +#define PCIE_IRN_HOTPLUG 0x00000008 /* Hotplug Interrupt */
4433 +#define PCIE_IRN_RX_VDM_MSG 0x00000010 /* Vendor-Defined Message Interrupt */
4434 +#define PCIE_IRN_RX_CORRECTABLE_ERR_MSG 0x00000020 /* Correctable Error Message Interrupt */
4435 +#define PCIE_IRN_RX_NON_FATAL_ERR_MSG 0x00000040 /* Non-fatal Error Message */
4436 +#define PCIE_IRN_RX_FATAL_ERR_MSG 0x00000080 /* Fatal Error Message */
4437 +#define PCIE_IRN_RX_PME_MSG 0x00000100 /* PME Message Interrupt */
4438 +#define PCIE_IRN_RX_PME_TURNOFF_ACK 0x00000200 /* PME Turnoff Ack Message Interrupt */
4439 +#define PCIE_IRN_AHB_BR_FATAL_ERR 0x00000400 /* AHB Fatal Error Interrupt */
4440 +#define PCIE_IRN_LINK_AUTO_BW_STATUS 0x00000800 /* Link Auto Bandwidth Status Interrupt */
4441 +#define PCIE_IRN_BW_MGT 0x00001000 /* Bandwidth Managment Interrupt */
4442 +#define PCIE_IRN_INTA 0x00002000 /* INTA */
4443 +#define PCIE_IRN_INTB 0x00004000 /* INTB */
4444 +#define PCIE_IRN_INTC 0x00008000 /* INTC */
4445 +#define PCIE_IRN_INTD 0x00010000 /* INTD */
4446 +#define PCIE_IRN_WAKEUP 0x00020000 /* Wake up Interrupt */
4447 +
4448 +#define PCIE_RC_CORE_COMBINED_INT (PCIE_IRN_AER_REPORT | PCIE_IRN_AER_MSIX | PCIE_IRN_PME | \
4449 + PCIE_IRN_HOTPLUG | PCIE_IRN_RX_VDM_MSG | PCIE_IRN_RX_CORRECTABLE_ERR_MSG |\
4450 + PCIE_IRN_RX_NON_FATAL_ERR_MSG | PCIE_IRN_RX_FATAL_ERR_MSG | \
4451 + PCIE_IRN_RX_PME_MSG | PCIE_IRN_RX_PME_TURNOFF_ACK | PCIE_IRN_AHB_BR_FATAL_ERR | \
4452 + PCIE_IRN_LINK_AUTO_BW_STATUS | PCIE_IRN_BW_MGT)
4453 +/* PCIe RC Configuration Register */
4454 +#define PCIE_VDID(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x00)
4455 +
4456 +/* Bit definition from pci_reg.h */
4457 +#define PCIE_PCICMDSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x04)
4458 +#define PCIE_CCRID(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x08)
4459 +#define PCIE_CLSLTHTBR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x0C) /* EP only */
4460 +/* BAR0, BAR1,Only necessary if the bridges implements a device-specific register set or memory buffer */
4461 +#define PCIE_BAR0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x10) /* Not used*/
4462 +#define PCIE_BAR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x14) /* Not used */
4463 +
4464 +#define PCIE_BNR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x18) /* Mandatory */
4465 +/* Bus Number Register bits */
4466 +#define PCIE_BNR_PRIMARY_BUS_NUM 0x000000FF
4467 +#define PCIE_BNR_PRIMARY_BUS_NUM_S 0
4468 +#define PCIE_PNR_SECONDARY_BUS_NUM 0x0000FF00
4469 +#define PCIE_PNR_SECONDARY_BUS_NUM_S 8
4470 +#define PCIE_PNR_SUB_BUS_NUM 0x00FF0000
4471 +#define PCIE_PNR_SUB_BUS_NUM_S 16
4472 +
4473 +/* IO Base/Limit Register bits */
4474 +#define PCIE_IOBLSECS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x1C) /* RC only */
4475 +#define PCIE_IOBLSECS_32BIT_IO_ADDR 0x00000001
4476 +#define PCIE_IOBLSECS_IO_BASE_ADDR 0x000000F0
4477 +#define PCIE_IOBLSECS_IO_BASE_ADDR_S 4
4478 +#define PCIE_IOBLSECS_32BIT_IOLIMT 0x00000100
4479 +#define PCIE_IOBLSECS_IO_LIMIT_ADDR 0x0000F000
4480 +#define PCIE_IOBLSECS_IO_LIMIT_ADDR_S 12
4481 +
4482 +/* Non-prefetchable Memory Base/Limit Register bit */
4483 +#define PCIE_MBML(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x20) /* RC only */
4484 +#define PCIE_MBML_MEM_BASE_ADDR 0x0000FFF0
4485 +#define PCIE_MBML_MEM_BASE_ADDR_S 4
4486 +#define PCIE_MBML_MEM_LIMIT_ADDR 0xFFF00000
4487 +#define PCIE_MBML_MEM_LIMIT_ADDR_S 20
4488 +
4489 +/* Prefetchable Memory Base/Limit Register bit */
4490 +#define PCIE_PMBL(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x24) /* RC only */
4491 +#define PCIE_PMBL_64BIT_ADDR 0x00000001
4492 +#define PCIE_PMBL_UPPER_12BIT 0x0000FFF0
4493 +#define PCIE_PMBL_UPPER_12BIT_S 4
4494 +#define PCIE_PMBL_E64MA 0x00010000
4495 +#define PCIE_PMBL_END_ADDR 0xFFF00000
4496 +#define PCIE_PMBL_END_ADDR_S 20
4497 +#define PCIE_PMBU32(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x28) /* RC only */
4498 +#define PCIE_PMLU32(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x2C) /* RC only */
4499 +
4500 +/* I/O Base/Limit Upper 16 bits register */
4501 +#define PCIE_IO_BANDL(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x30) /* RC only */
4502 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_BASE 0x0000FFFF
4503 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_BASE_S 0
4504 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_LIMIT 0xFFFF0000
4505 +#define PCIE_IO_BANDL_UPPER_16BIT_IO_LIMIT_S 16
4506 +
4507 +#define PCIE_CPR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x34)
4508 +#define PCIE_EBBAR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x38)
4509 +
4510 +/* Interrupt and Secondary Bridge Control Register */
4511 +#define PCIE_INTRBCTRL(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x3C)
4512 +
4513 +#define PCIE_INTRBCTRL_INT_LINE 0x000000FF
4514 +#define PCIE_INTRBCTRL_INT_LINE_S 0
4515 +#define PCIE_INTRBCTRL_INT_PIN 0x0000FF00
4516 +#define PCIE_INTRBCTRL_INT_PIN_S 8
4517 +#define PCIE_INTRBCTRL_PARITY_ERR_RESP_ENABLE 0x00010000 /* #PERR */
4518 +#define PCIE_INTRBCTRL_SERR_ENABLE 0x00020000 /* #SERR */
4519 +#define PCIE_INTRBCTRL_ISA_ENABLE 0x00040000 /* ISA enable, IO 64KB only */
4520 +#define PCIE_INTRBCTRL_VGA_ENABLE 0x00080000 /* VGA enable */
4521 +#define PCIE_INTRBCTRL_VGA_16BIT_DECODE 0x00100000 /* VGA 16bit decode */
4522 +#define PCIE_INTRBCTRL_RST_SECONDARY_BUS 0x00400000 /* Secondary bus rest, hot rest, 1ms */
4523 +/* Others are read only */
4524 +enum {
4525 + PCIE_INTRBCTRL_INT_NON = 0,
4526 + PCIE_INTRBCTRL_INTA,
4527 + PCIE_INTRBCTRL_INTB,
4528 + PCIE_INTRBCTRL_INTC,
4529 + PCIE_INTRBCTRL_INTD,
4530 +};
4531 +
4532 +#define PCIE_PM_CAPR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x40)
4533 +
4534 +/* Power Management Control and Status Register */
4535 +#define PCIE_PM_CSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x44)
4536 +
4537 +#define PCIE_PM_CSR_POWER_STATE 0x00000003 /* Power State */
4538 +#define PCIE_PM_CSR_POWER_STATE_S 0
4539 +#define PCIE_PM_CSR_SW_RST 0x00000008 /* Soft Reset Enabled */
4540 +#define PCIE_PM_CSR_PME_ENABLE 0x00000100 /* PME Enable */
4541 +#define PCIE_PM_CSR_PME_STATUS 0x00008000 /* PME status */
4542 +
4543 +/* MSI Capability Register for EP */
4544 +#define PCIE_MCAPR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x50)
4545 +
4546 +#define PCIE_MCAPR_MSI_CAP_ID 0x000000FF /* MSI Capability ID */
4547 +#define PCIE_MCAPR_MSI_CAP_ID_S 0
4548 +#define PCIE_MCAPR_MSI_NEXT_CAP_PTR 0x0000FF00 /* Next Capability Pointer */
4549 +#define PCIE_MCAPR_MSI_NEXT_CAP_PTR_S 8
4550 +#define PCIE_MCAPR_MSI_ENABLE 0x00010000 /* MSI Enable */
4551 +#define PCIE_MCAPR_MULTI_MSG_CAP 0x000E0000 /* Multiple Message Capable */
4552 +#define PCIE_MCAPR_MULTI_MSG_CAP_S 17
4553 +#define PCIE_MCAPR_MULTI_MSG_ENABLE 0x00700000 /* Multiple Message Enable */
4554 +#define PCIE_MCAPR_MULTI_MSG_ENABLE_S 20
4555 +#define PCIE_MCAPR_ADDR64_CAP 0X00800000 /* 64-bit Address Capable */
4556 +
4557 +/* MSI Message Address Register */
4558 +#define PCIE_MA(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x54)
4559 +
4560 +#define PCIE_MA_ADDR_MASK 0xFFFFFFFC /* Message Address */
4561 +
4562 +/* MSI Message Upper Address Register */
4563 +#define PCIE_MUA(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x58)
4564 +
4565 +/* MSI Message Data Register */
4566 +#define PCIE_MD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x5C)
4567 +
4568 +#define PCIE_MD_DATA 0x0000FFFF /* Message Data */
4569 +#define PCIE_MD_DATA_S 0
4570 +
4571 +/* PCI Express Capability Register */
4572 +#define PCIE_XCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x70)
4573 +
4574 +#define PCIE_XCAP_ID 0x000000FF /* PCI Express Capability ID */
4575 +#define PCIE_XCAP_ID_S 0
4576 +#define PCIE_XCAP_NEXT_CAP 0x0000FF00 /* Next Capability Pointer */
4577 +#define PCIE_XCAP_NEXT_CAP_S 8
4578 +#define PCIE_XCAP_VER 0x000F0000 /* PCI Express Capability Version */
4579 +#define PCIE_XCAP_VER_S 16
4580 +#define PCIE_XCAP_DEV_PORT_TYPE 0x00F00000 /* Device Port Type */
4581 +#define PCIE_XCAP_DEV_PORT_TYPE_S 20
4582 +#define PCIE_XCAP_SLOT_IMPLEMENTED 0x01000000 /* Slot Implemented */
4583 +#define PCIE_XCAP_MSG_INT_NUM 0x3E000000 /* Interrupt Message Number */
4584 +#define PCIE_XCAP_MSG_INT_NUM_S 25
4585 +
4586 +/* Device Capability Register */
4587 +#define PCIE_DCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x74)
4588 +
4589 +#define PCIE_DCAP_MAX_PAYLOAD_SIZE 0x00000007 /* Max Payload size */
4590 +#define PCIE_DCAP_MAX_PAYLOAD_SIZE_S 0
4591 +#define PCIE_DCAP_PHANTOM_FUNC 0x00000018 /* Phanton Function, not supported */
4592 +#define PCIE_DCAP_PHANTOM_FUNC_S 3
4593 +#define PCIE_DCAP_EXT_TAG 0x00000020 /* Extended Tag Field */
4594 +#define PCIE_DCAP_EP_L0S_LATENCY 0x000001C0 /* EP L0s latency only */
4595 +#define PCIE_DCAP_EP_L0S_LATENCY_S 6
4596 +#define PCIE_DCAP_EP_L1_LATENCY 0x00000E00 /* EP L1 latency only */
4597 +#define PCIE_DCAP_EP_L1_LATENCY_S 9
4598 +#define PCIE_DCAP_ROLE_BASE_ERR_REPORT 0x00008000 /* Role Based ERR */
4599 +
4600 +/* Maximum payload size supported */
4601 +enum {
4602 + PCIE_MAX_PAYLOAD_128 = 0,
4603 + PCIE_MAX_PAYLOAD_256,
4604 + PCIE_MAX_PAYLOAD_512,
4605 + PCIE_MAX_PAYLOAD_1024,
4606 + PCIE_MAX_PAYLOAD_2048,
4607 + PCIE_MAX_PAYLOAD_4096,
4608 +};
4609 +
4610 +/* Device Control and Status Register */
4611 +#define PCIE_DCTLSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x78)
4612 +
4613 +#define PCIE_DCTLSTS_CORRECTABLE_ERR_EN 0x00000001 /* COR-ERR */
4614 +#define PCIE_DCTLSTS_NONFATAL_ERR_EN 0x00000002 /* Non-fatal ERR */
4615 +#define PCIE_DCTLSTS_FATAL_ERR_EN 0x00000004 /* Fatal ERR */
4616 +#define PCIE_DCTLSYS_UR_REQ_EN 0x00000008 /* UR ERR */
4617 +#define PCIE_DCTLSTS_RELAXED_ORDERING_EN 0x00000010 /* Enable relaxing ordering */
4618 +#define PCIE_DCTLSTS_MAX_PAYLOAD_SIZE 0x000000E0 /* Max payload mask */
4619 +#define PCIE_DCTLSTS_MAX_PAYLOAD_SIZE_S 5
4620 +#define PCIE_DCTLSTS_EXT_TAG_EN 0x00000100 /* Extended tag field */
4621 +#define PCIE_DCTLSTS_PHANTOM_FUNC_EN 0x00000200 /* Phantom Function Enable */
4622 +#define PCIE_DCTLSTS_AUX_PM_EN 0x00000400 /* AUX Power PM Enable */
4623 +#define PCIE_DCTLSTS_NO_SNOOP_EN 0x00000800 /* Enable no snoop, except root port*/
4624 +#define PCIE_DCTLSTS_MAX_READ_SIZE 0x00007000 /* Max Read Request size*/
4625 +#define PCIE_DCTLSTS_MAX_READ_SIZE_S 12
4626 +#define PCIE_DCTLSTS_CORRECTABLE_ERR 0x00010000 /* COR-ERR Detected */
4627 +#define PCIE_DCTLSTS_NONFATAL_ERR 0x00020000 /* Non-Fatal ERR Detected */
4628 +#define PCIE_DCTLSTS_FATAL_ER 0x00040000 /* Fatal ERR Detected */
4629 +#define PCIE_DCTLSTS_UNSUPPORTED_REQ 0x00080000 /* UR Detected */
4630 +#define PCIE_DCTLSTS_AUX_POWER 0x00100000 /* Aux Power Detected */
4631 +#define PCIE_DCTLSTS_TRANSACT_PENDING 0x00200000 /* Transaction pending */
4632 +
4633 +#define PCIE_DCTLSTS_ERR_EN (PCIE_DCTLSTS_CORRECTABLE_ERR_EN | \
4634 + PCIE_DCTLSTS_NONFATAL_ERR_EN | PCIE_DCTLSTS_FATAL_ERR_EN | \
4635 + PCIE_DCTLSYS_UR_REQ_EN)
4636 +
4637 +/* Link Capability Register */
4638 +#define PCIE_LCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7C)
4639 +#define PCIE_LCAP_MAX_LINK_SPEED 0x0000000F /* Max link speed, 0x1 by default */
4640 +#define PCIE_LCAP_MAX_LINK_SPEED_S 0
4641 +#define PCIE_LCAP_MAX_LENGTH_WIDTH 0x000003F0 /* Maxium Length Width */
4642 +#define PCIE_LCAP_MAX_LENGTH_WIDTH_S 4
4643 +#define PCIE_LCAP_ASPM_LEVEL 0x00000C00 /* Active State Link PM Support */
4644 +#define PCIE_LCAP_ASPM_LEVEL_S 10
4645 +#define PCIE_LCAP_L0S_EIXT_LATENCY 0x00007000 /* L0s Exit Latency */
4646 +#define PCIE_LCAP_L0S_EIXT_LATENCY_S 12
4647 +#define PCIE_LCAP_L1_EXIT_LATENCY 0x00038000 /* L1 Exit Latency */
4648 +#define PCIE_LCAP_L1_EXIT_LATENCY_S 15
4649 +#define PCIE_LCAP_CLK_PM 0x00040000 /* Clock Power Management */
4650 +#define PCIE_LCAP_SDER 0x00080000 /* Surprise Down Error Reporting */
4651 +#define PCIE_LCAP_DLL_ACTIVE_REPROT 0x00100000 /* Data Link Layer Active Reporting Capable */
4652 +#define PCIE_LCAP_PORT_NUM 0xFF0000000 /* Port number */
4653 +#define PCIE_LCAP_PORT_NUM_S 24
4654 +
4655 +/* Maximum Length width definition */
4656 +#define PCIE_MAX_LENGTH_WIDTH_RES 0x00
4657 +#define PCIE_MAX_LENGTH_WIDTH_X1 0x01 /* Default */
4658 +#define PCIE_MAX_LENGTH_WIDTH_X2 0x02
4659 +#define PCIE_MAX_LENGTH_WIDTH_X4 0x04
4660 +#define PCIE_MAX_LENGTH_WIDTH_X8 0x08
4661 +#define PCIE_MAX_LENGTH_WIDTH_X12 0x0C
4662 +#define PCIE_MAX_LENGTH_WIDTH_X16 0x10
4663 +#define PCIE_MAX_LENGTH_WIDTH_X32 0x20
4664 +
4665 +/* Active State Link PM definition */
4666 +enum {
4667 + PCIE_ASPM_RES0 = 0,
4668 + PCIE_ASPM_L0S_ENTRY_SUPPORT, /* L0s */
4669 + PCIE_ASPM_RES1,
4670 + PCIE_ASPM_L0S_L1_ENTRY_SUPPORT, /* L0s and L1, default */
4671 +};
4672 +
4673 +/* L0s Exit Latency definition */
4674 +enum {
4675 + PCIE_L0S_EIXT_LATENCY_L64NS = 0, /* < 64 ns */
4676 + PCIE_L0S_EIXT_LATENCY_B64A128, /* > 64 ns < 128 ns */
4677 + PCIE_L0S_EIXT_LATENCY_B128A256, /* > 128 ns < 256 ns */
4678 + PCIE_L0S_EIXT_LATENCY_B256A512, /* > 256 ns < 512 ns */
4679 + PCIE_L0S_EIXT_LATENCY_B512TO1U, /* > 512 ns < 1 us */
4680 + PCIE_L0S_EIXT_LATENCY_B1A2U, /* > 1 us < 2 us */
4681 + PCIE_L0S_EIXT_LATENCY_B2A4U, /* > 2 us < 4 us */
4682 + PCIE_L0S_EIXT_LATENCY_M4US, /* > 4 us */
4683 +};
4684 +
4685 +/* L1 Exit Latency definition */
4686 +enum {
4687 + PCIE_L1_EXIT_LATENCY_L1US = 0, /* < 1 us */
4688 + PCIE_L1_EXIT_LATENCY_B1A2, /* > 1 us < 2 us */
4689 + PCIE_L1_EXIT_LATENCY_B2A4, /* > 2 us < 4 us */
4690 + PCIE_L1_EXIT_LATENCY_B4A8, /* > 4 us < 8 us */
4691 + PCIE_L1_EXIT_LATENCY_B8A16, /* > 8 us < 16 us */
4692 + PCIE_L1_EXIT_LATENCY_B16A32, /* > 16 us < 32 us */
4693 + PCIE_L1_EXIT_LATENCY_B32A64, /* > 32 us < 64 us */
4694 + PCIE_L1_EXIT_LATENCY_M64US, /* > 64 us */
4695 +};
4696 +
4697 +/* Link Control and Status Register */
4698 +#define PCIE_LCTLSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x80)
4699 +#define PCIE_LCTLSTS_ASPM_ENABLE 0x00000003 /* Active State Link PM Control */
4700 +#define PCIE_LCTLSTS_ASPM_ENABLE_S 0
4701 +#define PCIE_LCTLSTS_RCB128 0x00000008 /* Read Completion Boundary 128*/
4702 +#define PCIE_LCTLSTS_LINK_DISABLE 0x00000010 /* Link Disable */
4703 +#define PCIE_LCTLSTS_RETRIAN_LINK 0x00000020 /* Retrain Link */
4704 +#define PCIE_LCTLSTS_COM_CLK_CFG 0x00000040 /* Common Clock Configuration */
4705 +#define PCIE_LCTLSTS_EXT_SYNC 0x00000080 /* Extended Synch */
4706 +#define PCIE_LCTLSTS_CLK_PM_EN 0x00000100 /* Enable Clock Powerm Management */
4707 +#define PCIE_LCTLSTS_LINK_SPEED 0x000F0000 /* Link Speed */
4708 +#define PCIE_LCTLSTS_LINK_SPEED_S 16
4709 +#define PCIE_LCTLSTS_NEGOTIATED_LINK_WIDTH 0x03F00000 /* Negotiated Link Width */
4710 +#define PCIE_LCTLSTS_NEGOTIATED_LINK_WIDTH_S 20
4711 +#define PCIE_LCTLSTS_RETRAIN_PENDING 0x08000000 /* Link training is ongoing */
4712 +#define PCIE_LCTLSTS_SLOT_CLK_CFG 0x10000000 /* Slot Clock Configuration */
4713 +#define PCIE_LCTLSTS_DLL_ACTIVE 0x20000000 /* Data Link Layer Active */
4714 +
4715 +/* Slot Capabilities Register */
4716 +#define PCIE_SLCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x84)
4717 +
4718 +/* Slot Capabilities */
4719 +#define PCIE_SLCTLSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x88)
4720 +
4721 +/* Root Control and Capability Register */
4722 +#define PCIE_RCTLCAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x8C)
4723 +#define PCIE_RCTLCAP_SERR_ON_CORRECTABLE_ERR 0x00000001 /* #SERR on COR-ERR */
4724 +#define PCIE_RCTLCAP_SERR_ON_NONFATAL_ERR 0x00000002 /* #SERR on Non-Fatal ERR */
4725 +#define PCIE_RCTLCAP_SERR_ON_FATAL_ERR 0x00000004 /* #SERR on Fatal ERR */
4726 +#define PCIE_RCTLCAP_PME_INT_EN 0x00000008 /* PME Interrupt Enable */
4727 +#define PCIE_RCTLCAP_SERR_ENABLE (PCIE_RCTLCAP_SERR_ON_CORRECTABLE_ERR | \
4728 + PCIE_RCTLCAP_SERR_ON_NONFATAL_ERR | PCIE_RCTLCAP_SERR_ON_FATAL_ERR)
4729 +/* Root Status Register */
4730 +#define PCIE_RSTS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x90)
4731 +#define PCIE_RSTS_PME_REQ_ID 0x0000FFFF /* PME Request ID */
4732 +#define PCIE_RSTS_PME_REQ_ID_S 0
4733 +#define PCIE_RSTS_PME_STATUS 0x00010000 /* PME Status */
4734 +#define PCIE_RSTS_PME_PENDING 0x00020000 /* PME Pending */
4735 +
4736 +/* PCI Express Enhanced Capability Header */
4737 +#define PCIE_ENHANCED_CAP(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x100)
4738 +#define PCIE_ENHANCED_CAP_ID 0x0000FFFF /* PCI Express Extended Capability ID */
4739 +#define PCIE_ENHANCED_CAP_ID_S 0
4740 +#define PCIE_ENHANCED_CAP_VER 0x000F0000 /* Capability Version */
4741 +#define PCIE_ENHANCED_CAP_VER_S 16
4742 +#define PCIE_ENHANCED_CAP_NEXT_OFFSET 0xFFF00000 /* Next Capability Offset */
4743 +#define PCIE_ENHANCED_CAP_NEXT_OFFSET_S 20
4744 +
4745 +/* Uncorrectable Error Status Register */
4746 +#define PCIE_UES_R(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x104)
4747 +#define PCIE_DATA_LINK_PROTOCOL_ERR 0x00000010 /* Data Link Protocol Error Status */
4748 +#define PCIE_SURPRISE_DOWN_ERROR 0x00000020 /* Surprise Down Error Status */
4749 +#define PCIE_POISONED_TLP 0x00001000 /* Poisoned TLP Status */
4750 +#define PCIE_FC_PROTOCOL_ERR 0x00002000 /* Flow Control Protocol Error Status */
4751 +#define PCIE_COMPLETION_TIMEOUT 0x00004000 /* Completion Timeout Status */
4752 +#define PCIE_COMPLETOR_ABORT 0x00008000 /* Completer Abort Error */
4753 +#define PCIE_UNEXPECTED_COMPLETION 0x00010000 /* Unexpected Completion Status */
4754 +#define PCIE_RECEIVER_OVERFLOW 0x00020000 /* Receive Overflow Status */
4755 +#define PCIE_MALFORNED_TLP 0x00040000 /* Malformed TLP Stauts */
4756 +#define PCIE_ECRC_ERR 0x00080000 /* ECRC Error Stauts */
4757 +#define PCIE_UR_REQ 0x00100000 /* Unsupported Request Error Status */
4758 +#define PCIE_ALL_UNCORRECTABLE_ERR (PCIE_DATA_LINK_PROTOCOL_ERR | PCIE_SURPRISE_DOWN_ERROR | \
4759 + PCIE_POISONED_TLP | PCIE_FC_PROTOCOL_ERR | PCIE_COMPLETION_TIMEOUT | \
4760 + PCIE_COMPLETOR_ABORT | PCIE_UNEXPECTED_COMPLETION | PCIE_RECEIVER_OVERFLOW |\
4761 + PCIE_MALFORNED_TLP | PCIE_ECRC_ERR | PCIE_UR_REQ)
4762 +
4763 +/* Uncorrectable Error Mask Register, Mask means no report */
4764 +#define PCIE_UEMR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x108)
4765 +
4766 +/* Uncorrectable Error Severity Register */
4767 +#define PCIE_UESR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x10C)
4768 +
4769 +/* Correctable Error Status Register */
4770 +#define PCIE_CESR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x110)
4771 +#define PCIE_RX_ERR 0x00000001 /* Receive Error Status */
4772 +#define PCIE_BAD_TLP 0x00000040 /* Bad TLP Status */
4773 +#define PCIE_BAD_DLLP 0x00000080 /* Bad DLLP Status */
4774 +#define PCIE_REPLAY_NUM_ROLLOVER 0x00000100 /* Replay Number Rollover Status */
4775 +#define PCIE_REPLAY_TIMER_TIMEOUT_ERR 0x00001000 /* Reply Timer Timeout Status */
4776 +#define PCIE_ADVISORY_NONFTAL_ERR 0x00002000 /* Advisory Non-Fatal Error Status */
4777 +#define PCIE_CORRECTABLE_ERR (PCIE_RX_ERR | PCIE_BAD_TLP | PCIE_BAD_DLLP | PCIE_REPLAY_NUM_ROLLOVER |\
4778 + PCIE_REPLAY_TIMER_TIMEOUT_ERR | PCIE_ADVISORY_NONFTAL_ERR)
4779 +
4780 +/* Correctable Error Mask Register */
4781 +#define PCIE_CEMR(X) (volatile u32*)(PCIE_RC_CFG_BASE + 0x114)
4782 +
4783 +/* Advanced Error Capabilities and Control Register */
4784 +#define PCIE_AECCR(X) (volatile u32*)(PCIE_RC_CFG_BASE + 0x118)
4785 +#define PCIE_AECCR_FIRST_ERR_PTR 0x0000001F /* First Error Pointer */
4786 +#define PCIE_AECCR_FIRST_ERR_PTR_S 0
4787 +#define PCIE_AECCR_ECRC_GEN_CAP 0x00000020 /* ECRC Generation Capable */
4788 +#define PCIE_AECCR_ECRC_GEN_EN 0x00000040 /* ECRC Generation Enable */
4789 +#define PCIE_AECCR_ECRC_CHECK_CAP 0x00000080 /* ECRC Check Capable */
4790 +#define PCIE_AECCR_ECRC_CHECK_EN 0x00000100 /* ECRC Check Enable */
4791 +
4792 +/* Header Log Register 1 */
4793 +#define PCIE_HLR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x11C)
4794 +
4795 +/* Header Log Register 2 */
4796 +#define PCIE_HLR2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x120)
4797 +
4798 +/* Header Log Register 3 */
4799 +#define PCIE_HLR3(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x124)
4800 +
4801 +/* Header Log Register 4 */
4802 +#define PCIE_HLR4(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x128)
4803 +
4804 +/* Root Error Command Register */
4805 +#define PCIE_RECR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x12C)
4806 +#define PCIE_RECR_CORRECTABLE_ERR_REPORT_EN 0x00000001 /* COR-ERR */
4807 +#define PCIE_RECR_NONFATAL_ERR_REPORT_EN 0x00000002 /* Non-Fatal ERR */
4808 +#define PCIE_RECR_FATAL_ERR_REPORT_EN 0x00000004 /* Fatal ERR */
4809 +#define PCIE_RECR_ERR_REPORT_EN (PCIE_RECR_CORRECTABLE_ERR_REPORT_EN | \
4810 + PCIE_RECR_NONFATAL_ERR_REPORT_EN | PCIE_RECR_FATAL_ERR_REPORT_EN)
4811 +
4812 +/* Root Error Status Register */
4813 +#define PCIE_RESR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x130)
4814 +#define PCIE_RESR_CORRECTABLE_ERR 0x00000001 /* COR-ERR Receveid */
4815 +#define PCIE_RESR_MULTI_CORRECTABLE_ERR 0x00000002 /* Multiple COR-ERR Received */
4816 +#define PCIE_RESR_FATAL_NOFATAL_ERR 0x00000004 /* ERR Fatal/Non-Fatal Received */
4817 +#define PCIE_RESR_MULTI_FATAL_NOFATAL_ERR 0x00000008 /* Multiple ERR Fatal/Non-Fatal Received */
4818 +#define PCIE_RESR_FIRST_UNCORRECTABLE_FATAL_ERR 0x00000010 /* First UN-COR Fatal */
4819 +#define PCIR_RESR_NON_FATAL_ERR 0x00000020 /* Non-Fatal Error Message Received */
4820 +#define PCIE_RESR_FATAL_ERR 0x00000040 /* Fatal Message Received */
4821 +#define PCIE_RESR_AER_INT_MSG_NUM 0xF8000000 /* Advanced Error Interrupt Message Number */
4822 +#define PCIE_RESR_AER_INT_MSG_NUM_S 27
4823 +
4824 +/* Error Source Indentification Register */
4825 +#define PCIE_ESIR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x134)
4826 +#define PCIE_ESIR_CORRECTABLE_ERR_SRC_ID 0x0000FFFF
4827 +#define PCIE_ESIR_CORRECTABLE_ERR_SRC_ID_S 0
4828 +#define PCIE_ESIR_FATAL_NON_FATAL_SRC_ID 0xFFFF0000
4829 +#define PCIE_ESIR_FATAL_NON_FATAL_SRC_ID_S 16
4830 +
4831 +/* VC Enhanced Capability Header */
4832 +#define PCIE_VC_ECH(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x140)
4833 +
4834 +/* Port VC Capability Register */
4835 +#define PCIE_PVC1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x144)
4836 +#define PCIE_PVC1_EXT_VC_CNT 0x00000007 /* Extended VC Count */
4837 +#define PCIE_PVC1_EXT_VC_CNT_S 0
4838 +#define PCIE_PVC1_LOW_PRI_EXT_VC_CNT 0x00000070 /* Low Priority Extended VC Count */
4839 +#define PCIE_PVC1_LOW_PRI_EXT_VC_CNT_S 4
4840 +#define PCIE_PVC1_REF_CLK 0x00000300 /* Reference Clock */
4841 +#define PCIE_PVC1_REF_CLK_S 8
4842 +#define PCIE_PVC1_PORT_ARB_TAB_ENTRY_SIZE 0x00000C00 /* Port Arbitration Table Entry Size */
4843 +#define PCIE_PVC1_PORT_ARB_TAB_ENTRY_SIZE_S 10
4844 +
4845 +/* Extended Virtual Channel Count Defintion */
4846 +#define PCIE_EXT_VC_CNT_MIN 0
4847 +#define PCIE_EXT_VC_CNT_MAX 7
4848 +
4849 +/* Port Arbitration Table Entry Size Definition */
4850 +enum {
4851 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S1BIT = 0,
4852 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S2BIT,
4853 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S4BIT,
4854 + PCIE_PORT_ARB_TAB_ENTRY_SIZE_S8BIT,
4855 +};
4856 +
4857 +/* Port VC Capability Register 2 */
4858 +#define PCIE_PVC2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x148)
4859 +#define PCIE_PVC2_VC_ARB_16P_FIXED_WRR 0x00000001 /* HW Fixed arbitration, 16 phase WRR */
4860 +#define PCIE_PVC2_VC_ARB_32P_WRR 0x00000002 /* 32 phase WRR */
4861 +#define PCIE_PVC2_VC_ARB_64P_WRR 0x00000004 /* 64 phase WRR */
4862 +#define PCIE_PVC2_VC_ARB_128P_WRR 0x00000008 /* 128 phase WRR */
4863 +#define PCIE_PVC2_VC_ARB_WRR 0x0000000F
4864 +#define PCIE_PVC2_VC_ARB_TAB_OFFSET 0xFF000000 /* VC arbitration table offset, not support */
4865 +#define PCIE_PVC2_VC_ARB_TAB_OFFSET_S 24
4866 +
4867 +/* Port VC Control and Status Register */
4868 +#define PCIE_PVCCRSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x14C)
4869 +#define PCIE_PVCCRSR_LOAD_VC_ARB_TAB 0x00000001 /* Load VC Arbitration Table */
4870 +#define PCIE_PVCCRSR_VC_ARB_SEL 0x0000000E /* VC Arbitration Select */
4871 +#define PCIE_PVCCRSR_VC_ARB_SEL_S 1
4872 +#define PCIE_PVCCRSR_VC_ARB_TAB_STATUS 0x00010000 /* Arbitration Status */
4873 +
4874 +/* VC0 Resource Capability Register */
4875 +#define PCIE_VC0_RC(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x150)
4876 +#define PCIE_VC0_RC_PORT_ARB_HW_FIXED 0x00000001 /* HW Fixed arbitration */
4877 +#define PCIE_VC0_RC_PORT_ARB_32P_WRR 0x00000002 /* 32 phase WRR */
4878 +#define PCIE_VC0_RC_PORT_ARB_64P_WRR 0x00000004 /* 64 phase WRR */
4879 +#define PCIE_VC0_RC_PORT_ARB_128P_WRR 0x00000008 /* 128 phase WRR */
4880 +#define PCIE_VC0_RC_PORT_ARB_TM_128P_WRR 0x00000010 /* Time-based 128 phase WRR */
4881 +#define PCIE_VC0_RC_PORT_ARB_TM_256P_WRR 0x00000020 /* Time-based 256 phase WRR */
4882 +#define PCIE_VC0_RC_PORT_ARB (PCIE_VC0_RC_PORT_ARB_HW_FIXED | PCIE_VC0_RC_PORT_ARB_32P_WRR |\
4883 + PCIE_VC0_RC_PORT_ARB_64P_WRR | PCIE_VC0_RC_PORT_ARB_128P_WRR | \
4884 + PCIE_VC0_RC_PORT_ARB_TM_128P_WRR | PCIE_VC0_RC_PORT_ARB_TM_256P_WRR)
4885 +
4886 +#define PCIE_VC0_RC_REJECT_SNOOP 0x00008000 /* Reject Snoop Transactioin */
4887 +#define PCIE_VC0_RC_MAX_TIMESLOTS 0x007F0000 /* Maximum time Slots */
4888 +#define PCIE_VC0_RC_MAX_TIMESLOTS_S 16
4889 +#define PCIE_VC0_RC_PORT_ARB_TAB_OFFSET 0xFF000000 /* Port Arbitration Table Offset */
4890 +#define PCIE_VC0_RC_PORT_ARB_TAB_OFFSET_S 24
4891 +
4892 +/* VC0 Resource Control Register */
4893 +#define PCIE_VC0_RC0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x154)
4894 +#define PCIE_VC0_RC0_TVM0 0x00000001 /* TC0 and VC0 */
4895 +#define PCIE_VC0_RC0_TVM1 0x00000002 /* TC1 and VC1 */
4896 +#define PCIE_VC0_RC0_TVM2 0x00000004 /* TC2 and VC2 */
4897 +#define PCIE_VC0_RC0_TVM3 0x00000008 /* TC3 and VC3 */
4898 +#define PCIE_VC0_RC0_TVM4 0x00000010 /* TC4 and VC4 */
4899 +#define PCIE_VC0_RC0_TVM5 0x00000020 /* TC5 and VC5 */
4900 +#define PCIE_VC0_RC0_TVM6 0x00000040 /* TC6 and VC6 */
4901 +#define PCIE_VC0_RC0_TVM7 0x00000080 /* TC7 and VC7 */
4902 +#define PCIE_VC0_RC0_TC_VC 0x000000FF /* TC/VC mask */
4903 +
4904 +#define PCIE_VC0_RC0_LOAD_PORT_ARB_TAB 0x00010000 /* Load Port Arbitration Table */
4905 +#define PCIE_VC0_RC0_PORT_ARB_SEL 0x000E0000 /* Port Arbitration Select */
4906 +#define PCIE_VC0_RC0_PORT_ARB_SEL_S 17
4907 +#define PCIE_VC0_RC0_VC_ID 0x07000000 /* VC ID */
4908 +#define PCIE_VC0_RC0_VC_ID_S 24
4909 +#define PCIE_VC0_RC0_VC_EN 0x80000000 /* VC Enable */
4910 +
4911 +/* VC0 Resource Status Register */
4912 +#define PCIE_VC0_RSR0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x158)
4913 +#define PCIE_VC0_RSR0_PORT_ARB_TAB_STATUS 0x00010000 /* Port Arbitration Table Status,not used */
4914 +#define PCIE_VC0_RSR0_VC_NEG_PENDING 0x00020000 /* VC Negotiation Pending */
4915 +
4916 +/* Ack Latency Timer and Replay Timer Register */
4917 +#define PCIE_ALTRT(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x700)
4918 +#define PCIE_ALTRT_ROUND_TRIP_LATENCY_LIMIT 0x0000FFFF /* Round Trip Latency Time Limit */
4919 +#define PCIE_ALTRT_ROUND_TRIP_LATENCY_LIMIT_S 0
4920 +#define PCIE_ALTRT_REPLAY_TIME_LIMIT 0xFFFF0000 /* Replay Time Limit */
4921 +#define PCIE_ALTRT_REPLAY_TIME_LIMIT_S 16
4922 +
4923 +/* Other Message Register */
4924 +#define PCIE_OMR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x704)
4925 +
4926 +/* Port Force Link Register */
4927 +#define PCIE_PFLR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x708)
4928 +#define PCIE_PFLR_LINK_NUM 0x000000FF /* Link Number */
4929 +#define PCIE_PFLR_LINK_NUM_S 0
4930 +#define PCIE_PFLR_FORCE_LINK 0x00008000 /* Force link */
4931 +#define PCIE_PFLR_LINK_STATE 0x003F0000 /* Link State */
4932 +#define PCIE_PFLR_LINK_STATE_S 16
4933 +#define PCIE_PFLR_LOW_POWER_ENTRY_CNT 0xFF000000 /* Low Power Entrance Count, only for EP */
4934 +#define PCIE_PFLR_LOW_POWER_ENTRY_CNT_S 24
4935 +
4936 +/* Ack Frequency Register */
4937 +#define PCIE_AFR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x70C)
4938 +#define PCIE_AFR_AF 0x000000FF /* Ack Frequency */
4939 +#define PCIE_AFR_AF_S 0
4940 +#define PCIE_AFR_FTS_NUM 0x0000FF00 /* The number of Fast Training Sequence from L0S to L0 */
4941 +#define PCIE_AFR_FTS_NUM_S 8
4942 +#define PCIE_AFR_COM_FTS_NUM 0x00FF0000 /* N_FTS; when common clock is used*/
4943 +#define PCIE_AFR_COM_FTS_NUM_S 16
4944 +#define PCIE_AFR_L0S_ENTRY_LATENCY 0x07000000 /* L0s Entrance Latency */
4945 +#define PCIE_AFR_L0S_ENTRY_LATENCY_S 24
4946 +#define PCIE_AFR_L1_ENTRY_LATENCY 0x38000000 /* L1 Entrance Latency */
4947 +#define PCIE_AFR_L1_ENTRY_LATENCY_S 27
4948 +#define PCIE_AFR_FTS_NUM_DEFAULT 32
4949 +#define PCIE_AFR_L0S_ENTRY_LATENCY_DEFAULT 7
4950 +#define PCIE_AFR_L1_ENTRY_LATENCY_DEFAULT 5
4951 +
4952 +/* Port Link Control Register */
4953 +#define PCIE_PLCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x710)
4954 +#define PCIE_PLCR_OTHER_MSG_REQ 0x00000001 /* Other Message Request */
4955 +#define PCIE_PLCR_SCRAMBLE_DISABLE 0x00000002 /* Scramble Disable */
4956 +#define PCIE_PLCR_LOOPBACK_EN 0x00000004 /* Loopback Enable */
4957 +#define PCIE_PLCR_LTSSM_HOT_RST 0x00000008 /* Force LTSSM to the hot reset */
4958 +#define PCIE_PLCR_DLL_LINK_EN 0x00000020 /* Enable Link initialization */
4959 +#define PCIE_PLCR_FAST_LINK_SIM_EN 0x00000080 /* Sets all internal timers to fast mode for simulation purposes */
4960 +#define PCIE_PLCR_LINK_MODE 0x003F0000 /* Link Mode Enable Mask */
4961 +#define PCIE_PLCR_LINK_MODE_S 16
4962 +#define PCIE_PLCR_CORRUPTED_CRC_EN 0x02000000 /* Enabled Corrupt CRC */
4963 +
4964 +/* Lane Skew Register */
4965 +#define PCIE_LSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x714)
4966 +#define PCIE_LSR_LANE_SKEW_NUM 0x00FFFFFF /* Insert Lane Skew for Transmit, not applicable */
4967 +#define PCIE_LSR_LANE_SKEW_NUM_S 0
4968 +#define PCIE_LSR_FC_DISABLE 0x01000000 /* Disable of Flow Control */
4969 +#define PCIE_LSR_ACKNAK_DISABLE 0x02000000 /* Disable of Ack/Nak */
4970 +#define PCIE_LSR_LANE_DESKEW_DISABLE 0x80000000 /* Disable of Lane-to-Lane Skew */
4971 +
4972 +/* Symbol Number Register */
4973 +#define PCIE_SNR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x718)
4974 +#define PCIE_SNR_TS 0x0000000F /* Number of TS Symbol */
4975 +#define PCIE_SNR_TS_S 0
4976 +#define PCIE_SNR_SKP 0x00000700 /* Number of SKP Symbol */
4977 +#define PCIE_SNR_SKP_S 8
4978 +#define PCIE_SNR_REPLAY_TIMER 0x0007C000 /* Timer Modifier for Replay Timer */
4979 +#define PCIE_SNR_REPLAY_TIMER_S 14
4980 +#define PCIE_SNR_ACKNAK_LATENCY_TIMER 0x00F80000 /* Timer Modifier for Ack/Nak Latency Timer */
4981 +#define PCIE_SNR_ACKNAK_LATENCY_TIMER_S 19
4982 +#define PCIE_SNR_FC_TIMER 0x1F000000 /* Timer Modifier for Flow Control Watchdog Timer */
4983 +#define PCIE_SNR_FC_TIMER_S 28
4984 +
4985 +/* Symbol Timer Register and Filter Mask Register 1 */
4986 +#define PCIE_STRFMR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x71C)
4987 +#define PCIE_STRFMR_SKP_INTERVAL 0x000007FF /* SKP lnterval Value */
4988 +#define PCIE_STRFMR_SKP_INTERVAL_S 0
4989 +#define PCIE_STRFMR_FC_WDT_DISABLE 0x00008000 /* Disable of FC Watchdog Timer */
4990 +#define PCIE_STRFMR_TLP_FUNC_MISMATCH_OK 0x00010000 /* Mask Function Mismatch Filtering for Incoming Requests */
4991 +#define PCIE_STRFMR_POISONED_TLP_OK 0x00020000 /* Mask Poisoned TLP Filtering */
4992 +#define PCIE_STRFMR_BAR_MATCH_OK 0x00040000 /* Mask BAR Match Filtering */
4993 +#define PCIE_STRFMR_TYPE1_CFG_REQ_OK 0x00080000 /* Mask Type 1 Configuration Request Filtering */
4994 +#define PCIE_STRFMR_LOCKED_REQ_OK 0x00100000 /* Mask Locked Request Filtering */
4995 +#define PCIE_STRFMR_CPL_TAG_ERR_RULES_OK 0x00200000 /* Mask Tag Error Rules for Received Completions */
4996 +#define PCIE_STRFMR_CPL_REQUESTOR_ID_MISMATCH_OK 0x00400000 /* Mask Requester ID Mismatch Error for Received Completions */
4997 +#define PCIE_STRFMR_CPL_FUNC_MISMATCH_OK 0x00800000 /* Mask Function Mismatch Error for Received Completions */
4998 +#define PCIE_STRFMR_CPL_TC_MISMATCH_OK 0x01000000 /* Mask Traffic Class Mismatch Error for Received Completions */
4999 +#define PCIE_STRFMR_CPL_ATTR_MISMATCH_OK 0x02000000 /* Mask Attribute Mismatch Error for Received Completions */
5000 +#define PCIE_STRFMR_CPL_LENGTH_MISMATCH_OK 0x04000000 /* Mask Length Mismatch Error for Received Completions */
5001 +#define PCIE_STRFMR_TLP_ECRC_ERR_OK 0x08000000 /* Mask ECRC Error Filtering */
5002 +#define PCIE_STRFMR_CPL_TLP_ECRC_OK 0x10000000 /* Mask ECRC Error Filtering for Completions */
5003 +#define PCIE_STRFMR_RX_TLP_MSG_NO_DROP 0x20000000 /* Send Message TLPs */
5004 +#define PCIE_STRFMR_RX_IO_TRANS_ENABLE 0x40000000 /* Mask Filtering of received I/O Requests */
5005 +#define PCIE_STRFMR_RX_CFG_TRANS_ENABLE 0x80000000 /* Mask Filtering of Received Configuration Requests */
5006 +
5007 +#define PCIE_DEF_SKP_INTERVAL 700 /* 1180 ~1538 , 125MHz * 2, 250MHz * 1 */
5008 +
5009 +/* Filter Masker Register 2 */
5010 +#define PCIE_FMR2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x720)
5011 +#define PCIE_FMR2_VENDOR_MSG0_PASSED_TO_TRGT1 0x00000001 /* Mask RADM Filtering and Error Handling Rules */
5012 +#define PCIE_FMR2_VENDOR_MSG1_PASSED_TO_TRGT1 0x00000002 /* Mask RADM Filtering and Error Handling Rules */
5013 +
5014 +/* Debug Register 0 */
5015 +#define PCIE_DBR0(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x728)
5016 +
5017 +/* Debug Register 1 */
5018 +#define PCIE_DBR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x72C)
5019 +
5020 +/* Transmit Posted FC Credit Status Register */
5021 +#define PCIE_TPFCS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x730)
5022 +#define PCIE_TPFCS_TX_P_DATA_FC_CREDITS 0x00000FFF /* Transmit Posted Data FC Credits */
5023 +#define PCIE_TPFCS_TX_P_DATA_FC_CREDITS_S 0
5024 +#define PCIE_TPFCS_TX_P_HDR_FC_CREDITS 0x000FF000 /* Transmit Posted Header FC Credits */
5025 +#define PCIE_TPFCS_TX_P_HDR_FC_CREDITS_S 12
5026 +
5027 +/* Transmit Non-Posted FC Credit Status */
5028 +#define PCIE_TNPFCS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x734)
5029 +#define PCIE_TNPFCS_TX_NP_DATA_FC_CREDITS 0x00000FFF /* Transmit Non-Posted Data FC Credits */
5030 +#define PCIE_TNPFCS_TX_NP_DATA_FC_CREDITS_S 0
5031 +#define PCIE_TNPFCS_TX_NP_HDR_FC_CREDITS 0x000FF000 /* Transmit Non-Posted Header FC Credits */
5032 +#define PCIE_TNPFCS_TX_NP_HDR_FC_CREDITS_S 12
5033 +
5034 +/* Transmit Complete FC Credit Status Register */
5035 +#define PCIE_TCFCS(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x738)
5036 +#define PCIE_TCFCS_TX_CPL_DATA_FC_CREDITS 0x00000FFF /* Transmit Completion Data FC Credits */
5037 +#define PCIE_TCFCS_TX_CPL_DATA_FC_CREDITS_S 0
5038 +#define PCIE_TCFCS_TX_CPL_HDR_FC_CREDITS 0x000FF000 /* Transmit Completion Header FC Credits */
5039 +#define PCIE_TCFCS_TX_CPL_HDR_FC_CREDITS_S 12
5040 +
5041 +/* Queue Status Register */
5042 +#define PCIE_QSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x73C)
5043 +#define PCIE_QSR_WAIT_UPDATE_FC_DLL 0x00000001 /* Received TLP FC Credits Not Returned */
5044 +#define PCIE_QSR_TX_RETRY_BUF_NOT_EMPTY 0x00000002 /* Transmit Retry Buffer Not Empty */
5045 +#define PCIE_QSR_RX_QUEUE_NOT_EMPTY 0x00000004 /* Received Queue Not Empty */
5046 +
5047 +/* VC Transmit Arbitration Register 1 */
5048 +#define PCIE_VCTAR1(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x740)
5049 +#define PCIE_VCTAR1_WRR_WEIGHT_VC0 0x000000FF /* WRR Weight for VC0 */
5050 +#define PCIE_VCTAR1_WRR_WEIGHT_VC1 0x0000FF00 /* WRR Weight for VC1 */
5051 +#define PCIE_VCTAR1_WRR_WEIGHT_VC2 0x00FF0000 /* WRR Weight for VC2 */
5052 +#define PCIE_VCTAR1_WRR_WEIGHT_VC3 0xFF000000 /* WRR Weight for VC3 */
5053 +
5054 +/* VC Transmit Arbitration Register 2 */
5055 +#define PCIE_VCTAR2(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x744)
5056 +#define PCIE_VCTAR2_WRR_WEIGHT_VC4 0x000000FF /* WRR Weight for VC4 */
5057 +#define PCIE_VCTAR2_WRR_WEIGHT_VC5 0x0000FF00 /* WRR Weight for VC5 */
5058 +#define PCIE_VCTAR2_WRR_WEIGHT_VC6 0x00FF0000 /* WRR Weight for VC6 */
5059 +#define PCIE_VCTAR2_WRR_WEIGHT_VC7 0xFF000000 /* WRR Weight for VC7 */
5060 +
5061 +/* VC0 Posted Receive Queue Control Register */
5062 +#define PCIE_VC0_PRQCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x748)
5063 +#define PCIE_VC0_PRQCR_P_DATA_CREDITS 0x00000FFF /* VC0 Posted Data Credits */
5064 +#define PCIE_VC0_PRQCR_P_DATA_CREDITS_S 0
5065 +#define PCIE_VC0_PRQCR_P_HDR_CREDITS 0x000FF000 /* VC0 Posted Header Credits */
5066 +#define PCIE_VC0_PRQCR_P_HDR_CREDITS_S 12
5067 +#define PCIE_VC0_PRQCR_P_TLP_QUEUE_MODE 0x00E00000 /* VC0 Posted TLP Queue Mode */
5068 +#define PCIE_VC0_PRQCR_P_TLP_QUEUE_MODE_S 20
5069 +#define PCIE_VC0_PRQCR_TLP_RELAX_ORDER 0x40000000 /* TLP Type Ordering for VC0 */
5070 +#define PCIE_VC0_PRQCR_VC_STRICT_ORDER 0x80000000 /* VC0 Ordering for Receive Queues */
5071 +
5072 +/* VC0 Non-Posted Receive Queue Control */
5073 +#define PCIE_VC0_NPRQCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x74C)
5074 +#define PCIE_VC0_NPRQCR_NP_DATA_CREDITS 0x00000FFF /* VC0 Non-Posted Data Credits */
5075 +#define PCIE_VC0_NPRQCR_NP_DATA_CREDITS_S 0
5076 +#define PCIE_VC0_NPRQCR_NP_HDR_CREDITS 0x000FF000 /* VC0 Non-Posted Header Credits */
5077 +#define PCIE_VC0_NPRQCR_NP_HDR_CREDITS_S 12
5078 +#define PCIE_VC0_NPRQCR_NP_TLP_QUEUE_MODE 0x00E00000 /* VC0 Non-Posted TLP Queue Mode */
5079 +#define PCIE_VC0_NPRQCR_NP_TLP_QUEUE_MODE_S 20
5080 +
5081 +/* VC0 Completion Receive Queue Control */
5082 +#define PCIE_VC0_CRQCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x750)
5083 +#define PCIE_VC0_CRQCR_CPL_DATA_CREDITS 0x00000FFF /* VC0 Completion TLP Queue Mode */
5084 +#define PCIE_VC0_CRQCR_CPL_DATA_CREDITS_S 0
5085 +#define PCIE_VC0_CRQCR_CPL_HDR_CREDITS 0x000FF000 /* VC0 Completion Header Credits */
5086 +#define PCIE_VC0_CRQCR_CPL_HDR_CREDITS_S 12
5087 +#define PCIE_VC0_CRQCR_CPL_TLP_QUEUE_MODE 0x00E00000 /* VC0 Completion Data Credits */
5088 +#define PCIE_VC0_CRQCR_CPL_TLP_QUEUE_MODE_S 21
5089 +
5090 +/* Applicable to the above three registers */
5091 +enum {
5092 + PCIE_VC0_TLP_QUEUE_MODE_STORE_FORWARD = 1,
5093 + PCIE_VC0_TLP_QUEUE_MODE_CUT_THROUGH = 2,
5094 + PCIE_VC0_TLP_QUEUE_MODE_BYPASS = 4,
5095 +};
5096 +
5097 +/* VC0 Posted Buffer Depth Register */
5098 +#define PCIE_VC0_PBD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7A8)
5099 +#define PCIE_VC0_PBD_P_DATA_QUEUE_ENTRIES 0x00003FFF /* VC0 Posted Data Queue Depth */
5100 +#define PCIE_VC0_PBD_P_DATA_QUEUE_ENTRIES_S 0
5101 +#define PCIE_VC0_PBD_P_HDR_QUEUE_ENTRIES 0x03FF0000 /* VC0 Posted Header Queue Depth */
5102 +#define PCIE_VC0_PBD_P_HDR_QUEUE_ENTRIES_S 16
5103 +
5104 +/* VC0 Non-Posted Buffer Depth Register */
5105 +#define PCIE_VC0_NPBD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7AC)
5106 +#define PCIE_VC0_NPBD_NP_DATA_QUEUE_ENTRIES 0x00003FFF /* VC0 Non-Posted Data Queue Depth */
5107 +#define PCIE_VC0_NPBD_NP_DATA_QUEUE_ENTRIES_S 0
5108 +#define PCIE_VC0_NPBD_NP_HDR_QUEUE_ENTRIES 0x03FF0000 /* VC0 Non-Posted Header Queue Depth */
5109 +#define PCIE_VC0_NPBD_NP_HDR_QUEUE_ENTRIES_S 16
5110 +
5111 +/* VC0 Completion Buffer Depth Register */
5112 +#define PCIE_VC0_CBD(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x7B0)
5113 +#define PCIE_VC0_CBD_CPL_DATA_QUEUE_ENTRIES 0x00003FFF /* C0 Completion Data Queue Depth */
5114 +#define PCIE_VC0_CBD_CPL_DATA_QUEUE_ENTRIES_S 0
5115 +#define PCIE_VC0_CBD_CPL_HDR_QUEUE_ENTRIES 0x03FF0000 /* VC0 Completion Header Queue Depth */
5116 +#define PCIE_VC0_CBD_CPL_HDR_QUEUE_ENTRIES_S 16
5117 +
5118 +/* PHY Status Register, all zeros in VR9 */
5119 +#define PCIE_PHYSR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x810)
5120 +
5121 +/* PHY Control Register, all zeros in VR9 */
5122 +#define PCIE_PHYCR(X) (volatile u32*)(PCIE_RC_PORT_TO_BASE(X) + 0x814)
5123 +
5124 +/*
5125 + * PCIe PDI PHY register definition, suppose all the following
5126 + * stuff is confidential.
5127 + * XXX, detailed bit definition
5128 + */
5129 +#define PCIE_PHY_PLL_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x22 << 1))
5130 +#define PCIE_PHY_PLL_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x23 << 1))
5131 +#define PCIE_PHY_PLL_CTRL3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x24 << 1))
5132 +#define PCIE_PHY_PLL_CTRL4(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x25 << 1))
5133 +#define PCIE_PHY_PLL_CTRL5(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x26 << 1))
5134 +#define PCIE_PHY_PLL_CTRL6(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x27 << 1))
5135 +#define PCIE_PHY_PLL_CTRL7(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x28 << 1))
5136 +#define PCIE_PHY_PLL_A_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x29 << 1))
5137 +#define PCIE_PHY_PLL_A_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x2A << 1))
5138 +#define PCIE_PHY_PLL_A_CTRL3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x2B << 1))
5139 +#define PCIE_PHY_PLL_STATUS(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x2C << 1))
5140 +
5141 +#define PCIE_PHY_TX1_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x30 << 1))
5142 +#define PCIE_PHY_TX1_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x31 << 1))
5143 +#define PCIE_PHY_TX1_CTRL3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x32 << 1))
5144 +#define PCIE_PHY_TX1_A_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x33 << 1))
5145 +#define PCIE_PHY_TX1_A_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x34 << 1))
5146 +#define PCIE_PHY_TX1_MOD1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x35 << 1))
5147 +#define PCIE_PHY_TX1_MOD2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x36 << 1))
5148 +#define PCIE_PHY_TX1_MOD3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x37 << 1))
5149 +
5150 +#define PCIE_PHY_TX2_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x38 << 1))
5151 +#define PCIE_PHY_TX2_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x39 << 1))
5152 +#define PCIE_PHY_TX2_A_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3B << 1))
5153 +#define PCIE_PHY_TX2_A_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3C << 1))
5154 +#define PCIE_PHY_TX2_MOD1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3D << 1))
5155 +#define PCIE_PHY_TX2_MOD2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3E << 1))
5156 +#define PCIE_PHY_TX2_MOD3(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x3F << 1))
5157 +
5158 +#define PCIE_PHY_RX1_CTRL1(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x50 << 1))
5159 +#define PCIE_PHY_RX1_CTRL2(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x51 << 1))
5160 +#define PCIE_PHY_RX1_CDR(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x52 << 1))
5161 +#define PCIE_PHY_RX1_EI(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x53 << 1))
5162 +#define PCIE_PHY_RX1_A_CTRL(X) (PCIE_PHY_PORT_TO_BASE(X) + (0x55 << 1))
5163 +
5164 +/* Interrupt related stuff */
5165 +#define PCIE_LEGACY_DISABLE 0
5166 +#define PCIE_LEGACY_INTA 1
5167 +#define PCIE_LEGACY_INTB 2
5168 +#define PCIE_LEGACY_INTC 3
5169 +#define PCIE_LEGACY_INTD 4
5170 +#define PCIE_LEGACY_INT_MAX PCIE_LEGACY_INTD
5171 +
5172 +#define PCIE_IRQ_LOCK(lock) do { \
5173 + unsigned long flags; \
5174 + spin_lock_irqsave(&(lock), flags);
5175 +#define PCIE_IRQ_UNLOCK(lock) \
5176 + spin_unlock_irqrestore(&(lock), flags); \
5177 +} while (0)
5178 +
5179 +#define PCIE_MSG_MSI 0x00000001
5180 +#define PCIE_MSG_ISR 0x00000002
5181 +#define PCIE_MSG_FIXUP 0x00000004
5182 +#define PCIE_MSG_READ_CFG 0x00000008
5183 +#define PCIE_MSG_WRITE_CFG 0x00000010
5184 +#define PCIE_MSG_CFG (PCIE_MSG_READ_CFG | PCIE_MSG_WRITE_CFG)
5185 +#define PCIE_MSG_REG 0x00000020
5186 +#define PCIE_MSG_INIT 0x00000040
5187 +#define PCIE_MSG_ERR 0x00000080
5188 +#define PCIE_MSG_PHY 0x00000100
5189 +#define PCIE_MSG_ANY 0x000001ff
5190 +
5191 +#define IFX_PCIE_PORT0 0
5192 +#define IFX_PCIE_PORT1 1
5193 +
5194 +#ifdef CONFIG_IFX_PCIE_2ND_CORE
5195 +#define IFX_PCIE_CORE_NR 2
5196 +#else
5197 +#define IFX_PCIE_CORE_NR 1
5198 +#endif
5199 +
5200 +//#define IFX_PCIE_ERROR_INT
5201 +
5202 +//#define IFX_PCIE_DBG
5203 +
5204 +#if defined(IFX_PCIE_DBG)
5205 +#define IFX_PCIE_PRINT(_m, _fmt, args...) do { \
5206 + if (g_pcie_debug_flag & (_m)) { \
5207 + ifx_pcie_debug((_fmt), ##args); \
5208 + } \
5209 +} while (0)
5210 +
5211 +#define INLINE
5212 +#else
5213 +#define IFX_PCIE_PRINT(_m, _fmt, args...) \
5214 + do {} while(0)
5215 +#define INLINE inline
5216 +#endif
5217 +
5218 +struct ifx_pci_controller {
5219 + struct pci_controller pcic;
5220 +
5221 + /* RC specific, per host bus information */
5222 + u32 port; /* Port index, 0 -- 1st core, 1 -- 2nd core */
5223 +};
5224 +
5225 +typedef struct ifx_pcie_ir_irq {
5226 + const unsigned int irq;
5227 + const char name[16];
5228 +}ifx_pcie_ir_irq_t;
5229 +
5230 +typedef struct ifx_pcie_legacy_irq{
5231 + const u32 irq_bit;
5232 + const int irq;
5233 +}ifx_pcie_legacy_irq_t;
5234 +
5235 +typedef struct ifx_pcie_irq {
5236 + ifx_pcie_ir_irq_t ir_irq;
5237 + ifx_pcie_legacy_irq_t legacy_irq[PCIE_LEGACY_INT_MAX];
5238 +}ifx_pcie_irq_t;
5239 +
5240 +extern u32 g_pcie_debug_flag;
5241 +extern void ifx_pcie_debug(const char *fmt, ...);
5242 +extern void pcie_phy_clock_mode_setup(int pcie_port);
5243 +extern void pcie_msi_pic_init(int pcie_port);
5244 +extern u32 ifx_pcie_bus_enum_read_hack(int where, u32 value);
5245 +extern u32 ifx_pcie_bus_enum_write_hack(int where, u32 value);
5246 +
5247 +
5248 +#include <linux/types.h>
5249 +#include <linux/delay.h>
5250 +#include <linux/gpio.h>
5251 +#include <linux/clk.h>
5252 +
5253 +#include <lantiq_soc.h>
5254 +
5255 +#define IFX_PCIE_GPIO_RESET 38
5256 +#define IFX_REG_R32 ltq_r32
5257 +#define IFX_REG_W32 ltq_w32
5258 +#define CONFIG_IFX_PCIE_HW_SWAP
5259 +#define IFX_RCU_AHB_ENDIAN ((volatile u32*)(IFX_RCU + 0x004C))
5260 +#define IFX_RCU_RST_REQ ((volatile u32*)(IFX_RCU + 0x0010))
5261 +#define IFX_RCU_AHB_BE_PCIE_PDI 0x00000080 /* Configure PCIE PDI module in big endian*/
5262 +
5263 +#define IFX_RCU (KSEG1 | 0x1F203000)
5264 +#define IFX_RCU_AHB_BE_PCIE_M 0x00000001 /* Configure AHB master port that connects to PCIe RC in big endian */
5265 +#define IFX_RCU_AHB_BE_PCIE_S 0x00000010 /* Configure AHB slave port that connects to PCIe RC in little endian */
5266 +#define IFX_RCU_AHB_BE_XBAR_M 0x00000002 /* Configure AHB master port that connects to XBAR in big endian */
5267 +#define CONFIG_IFX_PCIE_PHY_36MHZ_MODE
5268 +
5269 +#define IFX_PMU1_MODULE_PCIE_PHY (0)
5270 +#define IFX_PMU1_MODULE_PCIE_CTRL (1)
5271 +#define IFX_PMU1_MODULE_PDI (4)
5272 +#define IFX_PMU1_MODULE_MSI (5)
5273 +
5274 +#define IFX_PMU_MODULE_PCIE_L0_CLK (31)
5275 +
5276 +
5277 +static inline void pcie_ep_gpio_rst_init(int pcie_port)
5278 +{
5279 +}
5280 +
5281 +static inline void pcie_ahb_pmu_setup(void)
5282 +{
5283 + struct clk *clk;
5284 + clk = clk_get_sys("ltq_pcie", "ahb");
5285 + clk_enable(clk);
5286 + //ltq_pmu_enable(PMU_AHBM | PMU_AHBS);
5287 +}
5288 +
5289 +static inline void pcie_rcu_endian_setup(int pcie_port)
5290 +{
5291 + u32 reg;
5292 +
5293 + reg = IFX_REG_R32(IFX_RCU_AHB_ENDIAN);
5294 +#ifdef CONFIG_IFX_PCIE_HW_SWAP
5295 + reg |= IFX_RCU_AHB_BE_PCIE_M;
5296 + reg |= IFX_RCU_AHB_BE_PCIE_S;
5297 + reg &= ~IFX_RCU_AHB_BE_XBAR_M;
5298 +#else
5299 + reg |= IFX_RCU_AHB_BE_PCIE_M;
5300 + reg &= ~IFX_RCU_AHB_BE_PCIE_S;
5301 + reg &= ~IFX_RCU_AHB_BE_XBAR_M;
5302 +#endif /* CONFIG_IFX_PCIE_HW_SWAP */
5303 + IFX_REG_W32(reg, IFX_RCU_AHB_ENDIAN);
5304 + IFX_PCIE_PRINT(PCIE_MSG_REG, "%s IFX_RCU_AHB_ENDIAN: 0x%08x\n", __func__, IFX_REG_R32(IFX_RCU_AHB_ENDIAN));
5305 +}
5306 +
5307 +static inline void pcie_phy_pmu_enable(int pcie_port)
5308 +{
5309 + struct clk *clk;
5310 + clk = clk_get_sys("ltq_pcie", "phy");
5311 + clk_enable(clk);
5312 + //ltq_pmu1_enable(1<<IFX_PMU1_MODULE_PCIE_PHY);
5313 +}
5314 +
5315 +static inline void pcie_phy_pmu_disable(int pcie_port)
5316 +{
5317 + struct clk *clk;
5318 + clk = clk_get_sys("ltq_pcie", "phy");
5319 + clk_disable(clk);
5320 + //ltq_pmu1_disable(1<<IFX_PMU1_MODULE_PCIE_PHY);
5321 +}
5322 +
5323 +static inline void pcie_pdi_big_endian(int pcie_port)
5324 +{
5325 + u32 reg;
5326 +
5327 + /* SRAM2PDI endianness control. */
5328 + reg = IFX_REG_R32(IFX_RCU_AHB_ENDIAN);
5329 + /* Config AHB->PCIe and PDI endianness */
5330 + reg |= IFX_RCU_AHB_BE_PCIE_PDI;
5331 + IFX_REG_W32(reg, IFX_RCU_AHB_ENDIAN);
5332 +}
5333 +
5334 +static inline void pcie_pdi_pmu_enable(int pcie_port)
5335 +{
5336 + struct clk *clk;
5337 + clk = clk_get_sys("ltq_pcie", "pdi");
5338 + clk_enable(clk);
5339 + //ltq_pmu1_enable(1<<IFX_PMU1_MODULE_PDI);
5340 +}
5341 +
5342 +static inline void pcie_core_rst_assert(int pcie_port)
5343 +{
5344 + u32 reg;
5345 +
5346 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
5347 +
5348 + /* Reset PCIe PHY & Core, bit 22, bit 26 may be affected if write it directly */
5349 + reg |= 0x00400000;
5350 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
5351 +}
5352 +
5353 +static inline void pcie_core_rst_deassert(int pcie_port)
5354 +{
5355 + u32 reg;
5356 +
5357 + /* Make sure one micro-second delay */
5358 + udelay(1);
5359 +
5360 + /* Reset PCIe PHY & Core, bit 22 */
5361 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
5362 + reg &= ~0x00400000;
5363 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
5364 +}
5365 +
5366 +static inline void pcie_phy_rst_assert(int pcie_port)
5367 +{
5368 + u32 reg;
5369 +
5370 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
5371 + reg |= 0x00001000; /* Bit 12 */
5372 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
5373 +}
5374 +
5375 +static inline void pcie_phy_rst_deassert(int pcie_port)
5376 +{
5377 + u32 reg;
5378 +
5379 + /* Make sure one micro-second delay */
5380 + udelay(1);
5381 +
5382 + reg = IFX_REG_R32(IFX_RCU_RST_REQ);
5383 + reg &= ~0x00001000; /* Bit 12 */
5384 + IFX_REG_W32(reg, IFX_RCU_RST_REQ);
5385 +}
5386 +
5387 +static inline void pcie_device_rst_assert(int pcie_port)
5388 +{
5389 + gpio_set_value(IFX_PCIE_GPIO_RESET, 0);
5390 + // ifx_gpio_output_clear(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
5391 +}
5392 +
5393 +static inline void pcie_device_rst_deassert(int pcie_port)
5394 +{
5395 + mdelay(100);
5396 + gpio_set_value(IFX_PCIE_GPIO_RESET, 1);
5397 +// ifx_gpio_output_set(IFX_PCIE_GPIO_RESET, ifx_pcie_gpio_module_id);
5398 +}
5399 +
5400 +static inline void pcie_core_pmu_setup(int pcie_port)
5401 +{
5402 + struct clk *clk;
5403 + clk = clk_get_sys("ltq_pcie", "ctl");
5404 + clk_enable(clk);
5405 + clk = clk_get_sys("ltq_pcie", "bus");
5406 + clk_enable(clk);
5407 +
5408 + //ltq_pmu1_enable(1 << IFX_PMU1_MODULE_PCIE_CTRL);
5409 + //ltq_pmu_enable(1 << IFX_PMU_MODULE_PCIE_L0_CLK);
5410 +}
5411 +
5412 +static inline void pcie_msi_init(int pcie_port)
5413 +{
5414 + struct clk *clk;
5415 + pcie_msi_pic_init(pcie_port);
5416 + clk = clk_get_sys("ltq_pcie", "msi");
5417 + clk_enable(clk);
5418 + //ltq_pmu1_enable(1 << IFX_PMU1_MODULE_MSI);
5419 +}
5420 +
5421 +static inline u32
5422 +ifx_pcie_bus_nr_deduct(u32 bus_number, int pcie_port)
5423 +{
5424 + u32 tbus_number = bus_number;
5425 +
5426 +#ifdef CONFIG_PCI_LANTIQ
5427 + if (pcibios_host_nr() > 1) {
5428 + tbus_number -= pcibios_1st_host_bus_nr();
5429 + }
5430 +#endif /* CONFIG_PCI_LANTIQ */
5431 + return tbus_number;
5432 +}
5433 +
5434 +static inline u32
5435 +ifx_pcie_bus_enum_hack(struct pci_bus *bus, u32 devfn, int where, u32 value, int pcie_port, int read)
5436 +{
5437 + struct pci_dev *pdev;
5438 + u32 tvalue = value;
5439 +
5440 + /* Sanity check */
5441 + pdev = pci_get_slot(bus, devfn);
5442 + if (pdev == NULL) {
5443 + return tvalue;
5444 + }
5445 +
5446 + /* Only care about PCI bridge */
5447 + if (pdev->hdr_type != PCI_HEADER_TYPE_BRIDGE) {
5448 + return tvalue;
5449 + }
5450 +
5451 + if (read) { /* Read hack */
5452 + #ifdef CONFIG_PCI_LANTIQ
5453 + if (pcibios_host_nr() > 1) {
5454 + tvalue = ifx_pcie_bus_enum_read_hack(where, tvalue);
5455 + }
5456 + #endif /* CONFIG_PCI_LANTIQ */
5457 + }
5458 + else { /* Write hack */
5459 + #ifdef CONFIG_PCI_LANTIQ
5460 + if (pcibios_host_nr() > 1) {
5461 + tvalue = ifx_pcie_bus_enum_write_hack(where, tvalue);
5462 + }
5463 + #endif
5464 + }
5465 + return tvalue;
5466 +}
5467 +
5468 +#endif /* IFXMIPS_PCIE_VR9_H */
5469 +
5470 --- a/drivers/pci/pcie/Kconfig
5471 +++ b/drivers/pci/pcie/Kconfig
5472 @@ -51,6 +51,7 @@ config PCIEAER_INJECT
5473 config PCIE_ECRC
5474 bool "PCI Express ECRC settings control"
5475 depends on PCIEAER
5476 + default n
5477 help
5478 Used to override firmware/bios settings for PCI Express ECRC
5479 (transaction layer end-to-end CRC checking).
5480 --- a/include/linux/pci.h
5481 +++ b/include/linux/pci.h
5482 @@ -1481,6 +1481,8 @@ void pci_walk_bus(struct pci_bus *top, i
5483 void *userdata);
5484 int pci_cfg_space_size(struct pci_dev *dev);
5485 unsigned char pci_bus_max_busnr(struct pci_bus *bus);
5486 +int pcibios_host_nr(void);
5487 +int pcibios_1st_host_bus_nr(void);
5488 void pci_setup_bridge(struct pci_bus *bus);
5489 resource_size_t pcibios_window_alignment(struct pci_bus *bus,
5490 unsigned long type);
5491 --- a/include/linux/pci_ids.h
5492 +++ b/include/linux/pci_ids.h
5493 @@ -1085,6 +1085,12 @@
5494 #define PCI_DEVICE_ID_SGI_IOC3 0x0003
5495 #define PCI_DEVICE_ID_SGI_LITHIUM 0x1002
5496
5497 +#define PCI_VENDOR_ID_INFINEON 0x15D1
5498 +#define PCI_DEVICE_ID_INFINEON_DANUBE 0x000F
5499 +#define PCI_DEVICE_ID_INFINEON_PCIE 0x0011
5500 +#define PCI_VENDOR_ID_LANTIQ 0x1BEF
5501 +#define PCI_DEVICE_ID_LANTIQ_PCIE 0x0011
5502 +
5503 #define PCI_VENDOR_ID_WINBOND 0x10ad
5504 #define PCI_DEVICE_ID_WINBOND_82C105 0x0105
5505 #define PCI_DEVICE_ID_WINBOND_83C553 0x0565