blob: 9397c46671062b011e6a6f9f523f9d2d0b95c1c4 [file] [log] [blame]
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06001/*
2 * Designware application register space functions for Keystone PCI controller
3 *
4 * Copyright (C) 2013-2014 Texas Instruments., Ltd.
5 * http://www.ti.com
6 *
7 * Author: Murali Karicheri <m-karicheri2@ti.com>
8 *
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/irq.h>
16#include <linux/irqdomain.h>
Murali Karicheri025dd3d2016-04-11 10:50:30 -040017#include <linux/irqreturn.h>
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060018#include <linux/module.h>
19#include <linux/of.h>
20#include <linux/of_pci.h>
21#include <linux/pci.h>
22#include <linux/platform_device.h>
23
24#include "pcie-designware.h"
25#include "pci-keystone.h"
26
27/* Application register defines */
28#define LTSSM_EN_VAL 1
29#define LTSSM_STATE_MASK 0x1f
30#define LTSSM_STATE_L0 0x11
31#define DBI_CS2_EN_VAL 0x20
32#define OB_XLAT_EN_VAL 2
33
34/* Application registers */
35#define CMD_STATUS 0x004
36#define CFG_SETUP 0x008
37#define OB_SIZE 0x030
38#define CFG_PCIM_WIN_SZ_IDX 3
39#define CFG_PCIM_WIN_CNT 32
40#define SPACE0_REMOTE_CFG_OFFSET 0x1000
41#define OB_OFFSET_INDEX(n) (0x200 + (8 * n))
42#define OB_OFFSET_HI(n) (0x204 + (8 * n))
43
44/* IRQ register defines */
45#define IRQ_EOI 0x050
46#define IRQ_STATUS 0x184
47#define IRQ_ENABLE_SET 0x188
48#define IRQ_ENABLE_CLR 0x18c
49
50#define MSI_IRQ 0x054
51#define MSI0_IRQ_STATUS 0x104
52#define MSI0_IRQ_ENABLE_SET 0x108
53#define MSI0_IRQ_ENABLE_CLR 0x10c
54#define IRQ_STATUS 0x184
55#define MSI_IRQ_OFFSET 4
56
Murali Karicheri025dd3d2016-04-11 10:50:30 -040057/* Error IRQ bits */
58#define ERR_AER BIT(5) /* ECRC error */
59#define ERR_AXI BIT(4) /* AXI tag lookup fatal error */
60#define ERR_CORR BIT(3) /* Correctable error */
61#define ERR_NONFATAL BIT(2) /* Non-fatal error */
62#define ERR_FATAL BIT(1) /* Fatal error */
63#define ERR_SYS BIT(0) /* System (fatal, non-fatal, or correctable) */
64#define ERR_IRQ_ALL (ERR_AER | ERR_AXI | ERR_CORR | \
65 ERR_NONFATAL | ERR_FATAL | ERR_SYS)
66#define ERR_FATAL_IRQ (ERR_FATAL | ERR_AXI)
67#define ERR_IRQ_STATUS_RAW 0x1c0
68#define ERR_IRQ_STATUS 0x1c4
69#define ERR_IRQ_ENABLE_SET 0x1c8
70#define ERR_IRQ_ENABLE_CLR 0x1cc
71
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060072/* Config space registers */
73#define DEBUG0 0x728
74
75#define to_keystone_pcie(x) container_of(x, struct keystone_pcie, pp)
76
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060077static inline void update_reg_offset_bit_pos(u32 offset, u32 *reg_offset,
78 u32 *bit_pos)
79{
80 *reg_offset = offset % 8;
81 *bit_pos = offset >> 3;
82}
83
Lucas Stach98a97e62015-09-18 13:58:35 -050084phys_addr_t ks_dw_pcie_get_msi_addr(struct pcie_port *pp)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060085{
86 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
87
88 return ks_pcie->app.start + MSI_IRQ;
89}
90
Bjorn Helgaas5c725352016-10-06 13:36:57 -050091static u32 ks_dw_app_readl(struct keystone_pcie *ks_pcie, u32 offset)
92{
93 return readl(ks_pcie->va_app_base + offset);
94}
95
96static void ks_dw_app_writel(struct keystone_pcie *ks_pcie, u32 offset, u32 val)
97{
98 writel(val, ks_pcie->va_app_base + offset);
99}
100
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600101void ks_dw_pcie_handle_msi_irq(struct keystone_pcie *ks_pcie, int offset)
102{
103 struct pcie_port *pp = &ks_pcie->pp;
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500104 struct device *dev = pp->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600105 u32 pending, vector;
106 int src, virq;
107
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500108 pending = ks_dw_app_readl(ks_pcie, MSI0_IRQ_STATUS + (offset << 4));
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600109
110 /*
111 * MSI0 status bit 0-3 shows vectors 0, 8, 16, 24, MSI1 status bit
112 * shows 1, 9, 17, 25 and so forth
113 */
114 for (src = 0; src < 4; src++) {
115 if (BIT(src) & pending) {
116 vector = offset + (src << 3);
117 virq = irq_linear_revmap(pp->irq_domain, vector);
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500118 dev_dbg(dev, "irq: bit %d, vector %d, virq %d\n",
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600119 src, vector, virq);
120 generic_handle_irq(virq);
121 }
122 }
123}
124
125static void ks_dw_pcie_msi_irq_ack(struct irq_data *d)
126{
127 u32 offset, reg_offset, bit_pos;
128 struct keystone_pcie *ks_pcie;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600129 struct msi_desc *msi;
130 struct pcie_port *pp;
131
Jiang Liu40b6d3f2015-06-04 12:13:23 +0800132 msi = irq_data_get_msi_desc(d);
Murali Karicheri79e3f4a2016-02-29 17:18:22 -0600133 pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600134 ks_pcie = to_keystone_pcie(pp);
Jiang Liu40b6d3f2015-06-04 12:13:23 +0800135 offset = d->irq - irq_linear_revmap(pp->irq_domain, 0);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600136 update_reg_offset_bit_pos(offset, &reg_offset, &bit_pos);
137
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500138 ks_dw_app_writel(ks_pcie, MSI0_IRQ_STATUS + (reg_offset << 4),
139 BIT(bit_pos));
140 ks_dw_app_writel(ks_pcie, IRQ_EOI, reg_offset + MSI_IRQ_OFFSET);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600141}
142
143void ks_dw_pcie_msi_set_irq(struct pcie_port *pp, int irq)
144{
145 u32 reg_offset, bit_pos;
146 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
147
148 update_reg_offset_bit_pos(irq, &reg_offset, &bit_pos);
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500149 ks_dw_app_writel(ks_pcie, MSI0_IRQ_ENABLE_SET + (reg_offset << 4),
150 BIT(bit_pos));
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600151}
152
153void ks_dw_pcie_msi_clear_irq(struct pcie_port *pp, int irq)
154{
155 u32 reg_offset, bit_pos;
156 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
157
158 update_reg_offset_bit_pos(irq, &reg_offset, &bit_pos);
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500159 ks_dw_app_writel(ks_pcie, MSI0_IRQ_ENABLE_CLR + (reg_offset << 4),
160 BIT(bit_pos));
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600161}
162
163static void ks_dw_pcie_msi_irq_mask(struct irq_data *d)
164{
165 struct keystone_pcie *ks_pcie;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600166 struct msi_desc *msi;
167 struct pcie_port *pp;
168 u32 offset;
169
Jiang Liu40b6d3f2015-06-04 12:13:23 +0800170 msi = irq_data_get_msi_desc(d);
Murali Karicheri79e3f4a2016-02-29 17:18:22 -0600171 pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600172 ks_pcie = to_keystone_pcie(pp);
Jiang Liu40b6d3f2015-06-04 12:13:23 +0800173 offset = d->irq - irq_linear_revmap(pp->irq_domain, 0);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600174
175 /* Mask the end point if PVM implemented */
176 if (IS_ENABLED(CONFIG_PCI_MSI)) {
177 if (msi->msi_attrib.maskbit)
Thomas Gleixner280510f2014-11-23 12:23:20 +0100178 pci_msi_mask_irq(d);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600179 }
180
181 ks_dw_pcie_msi_clear_irq(pp, offset);
182}
183
184static void ks_dw_pcie_msi_irq_unmask(struct irq_data *d)
185{
186 struct keystone_pcie *ks_pcie;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600187 struct msi_desc *msi;
188 struct pcie_port *pp;
189 u32 offset;
190
Jiang Liu40b6d3f2015-06-04 12:13:23 +0800191 msi = irq_data_get_msi_desc(d);
Murali Karicheri79e3f4a2016-02-29 17:18:22 -0600192 pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600193 ks_pcie = to_keystone_pcie(pp);
Jiang Liu40b6d3f2015-06-04 12:13:23 +0800194 offset = d->irq - irq_linear_revmap(pp->irq_domain, 0);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600195
196 /* Mask the end point if PVM implemented */
197 if (IS_ENABLED(CONFIG_PCI_MSI)) {
198 if (msi->msi_attrib.maskbit)
Thomas Gleixner280510f2014-11-23 12:23:20 +0100199 pci_msi_unmask_irq(d);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600200 }
201
202 ks_dw_pcie_msi_set_irq(pp, offset);
203}
204
205static struct irq_chip ks_dw_pcie_msi_irq_chip = {
206 .name = "Keystone-PCIe-MSI-IRQ",
207 .irq_ack = ks_dw_pcie_msi_irq_ack,
208 .irq_mask = ks_dw_pcie_msi_irq_mask,
209 .irq_unmask = ks_dw_pcie_msi_irq_unmask,
210};
211
212static int ks_dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
213 irq_hw_number_t hwirq)
214{
215 irq_set_chip_and_handler(irq, &ks_dw_pcie_msi_irq_chip,
216 handle_level_irq);
217 irq_set_chip_data(irq, domain->host_data);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600218
219 return 0;
220}
221
Jingoo Han5ba83682014-10-23 11:10:16 +0900222static const struct irq_domain_ops ks_dw_pcie_msi_domain_ops = {
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600223 .map = ks_dw_pcie_msi_map,
224};
225
Yijing Wangc2791b82014-11-11 17:45:45 -0700226int ks_dw_pcie_msi_host_init(struct pcie_port *pp, struct msi_controller *chip)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600227{
228 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500229 struct device *dev = pp->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600230 int i;
231
232 pp->irq_domain = irq_domain_add_linear(ks_pcie->msi_intc_np,
233 MAX_MSI_IRQS,
234 &ks_dw_pcie_msi_domain_ops,
235 chip);
236 if (!pp->irq_domain) {
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500237 dev_err(dev, "irq domain init failed\n");
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600238 return -ENXIO;
239 }
240
241 for (i = 0; i < MAX_MSI_IRQS; i++)
242 irq_create_mapping(pp->irq_domain, i);
243
244 return 0;
245}
246
247void ks_dw_pcie_enable_legacy_irqs(struct keystone_pcie *ks_pcie)
248{
249 int i;
250
251 for (i = 0; i < MAX_LEGACY_IRQS; i++)
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500252 ks_dw_app_writel(ks_pcie, IRQ_ENABLE_SET + (i << 4), 0x1);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600253}
254
255void ks_dw_pcie_handle_legacy_irq(struct keystone_pcie *ks_pcie, int offset)
256{
257 struct pcie_port *pp = &ks_pcie->pp;
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500258 struct device *dev = pp->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600259 u32 pending;
260 int virq;
261
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500262 pending = ks_dw_app_readl(ks_pcie, IRQ_STATUS + (offset << 4));
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600263
264 if (BIT(0) & pending) {
265 virq = irq_linear_revmap(ks_pcie->legacy_irq_domain, offset);
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500266 dev_dbg(dev, ": irq: irq_offset %d, virq %d\n", offset, virq);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600267 generic_handle_irq(virq);
268 }
269
270 /* EOI the INTx interrupt */
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500271 ks_dw_app_writel(ks_pcie, IRQ_EOI, offset);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600272}
273
Bjorn Helgaas5649e4c2016-10-06 13:36:56 -0500274void ks_dw_pcie_enable_error_irq(struct keystone_pcie *ks_pcie)
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400275{
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500276 ks_dw_app_writel(ks_pcie, ERR_IRQ_ENABLE_SET, ERR_IRQ_ALL);
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400277}
278
Bjorn Helgaas5649e4c2016-10-06 13:36:56 -0500279irqreturn_t ks_dw_pcie_handle_error_irq(struct keystone_pcie *ks_pcie)
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400280{
281 u32 status;
282
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500283 status = ks_dw_app_readl(ks_pcie, ERR_IRQ_STATUS_RAW) & ERR_IRQ_ALL;
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400284 if (!status)
285 return IRQ_NONE;
286
287 if (status & ERR_FATAL_IRQ)
Bjorn Helgaas5649e4c2016-10-06 13:36:56 -0500288 dev_err(ks_pcie->pp.dev, "fatal error (status %#010x)\n",
289 status);
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400290
291 /* Ack the IRQ; status bits are RW1C */
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500292 ks_dw_app_writel(ks_pcie, ERR_IRQ_STATUS, status);
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400293 return IRQ_HANDLED;
294}
295
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600296static void ks_dw_pcie_ack_legacy_irq(struct irq_data *d)
297{
298}
299
300static void ks_dw_pcie_mask_legacy_irq(struct irq_data *d)
301{
302}
303
304static void ks_dw_pcie_unmask_legacy_irq(struct irq_data *d)
305{
306}
307
308static struct irq_chip ks_dw_pcie_legacy_irq_chip = {
309 .name = "Keystone-PCI-Legacy-IRQ",
310 .irq_ack = ks_dw_pcie_ack_legacy_irq,
311 .irq_mask = ks_dw_pcie_mask_legacy_irq,
312 .irq_unmask = ks_dw_pcie_unmask_legacy_irq,
313};
314
315static int ks_dw_pcie_init_legacy_irq_map(struct irq_domain *d,
316 unsigned int irq, irq_hw_number_t hw_irq)
317{
318 irq_set_chip_and_handler(irq, &ks_dw_pcie_legacy_irq_chip,
319 handle_level_irq);
320 irq_set_chip_data(irq, d->host_data);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600321
322 return 0;
323}
324
325static const struct irq_domain_ops ks_dw_pcie_legacy_irq_domain_ops = {
326 .map = ks_dw_pcie_init_legacy_irq_map,
327 .xlate = irq_domain_xlate_onetwocell,
328};
329
330/**
331 * ks_dw_pcie_set_dbi_mode() - Set DBI mode to access overlaid BAR mask
332 * registers
333 *
334 * Since modification of dbi_cs2 involves different clock domain, read the
335 * status back to ensure the transition is complete.
336 */
Bjorn Helgaase481e0d2016-10-06 13:36:57 -0500337static void ks_dw_pcie_set_dbi_mode(struct keystone_pcie *ks_pcie)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600338{
339 u32 val;
340
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500341 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
342 ks_dw_app_writel(ks_pcie, CMD_STATUS, DBI_CS2_EN_VAL | val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600343
344 do {
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500345 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600346 } while (!(val & DBI_CS2_EN_VAL));
347}
348
349/**
350 * ks_dw_pcie_clear_dbi_mode() - Disable DBI mode
351 *
352 * Since modification of dbi_cs2 involves different clock domain, read the
353 * status back to ensure the transition is complete.
354 */
Bjorn Helgaase481e0d2016-10-06 13:36:57 -0500355static void ks_dw_pcie_clear_dbi_mode(struct keystone_pcie *ks_pcie)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600356{
357 u32 val;
358
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500359 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
360 ks_dw_app_writel(ks_pcie, CMD_STATUS, ~DBI_CS2_EN_VAL & val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600361
362 do {
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500363 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600364 } while (val & DBI_CS2_EN_VAL);
365}
366
367void ks_dw_pcie_setup_rc_app_regs(struct keystone_pcie *ks_pcie)
368{
369 struct pcie_port *pp = &ks_pcie->pp;
Zhou Wang0021d222015-10-29 19:57:06 -0500370 u32 start = pp->mem->start, end = pp->mem->end;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600371 int i, tr_size;
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500372 u32 val;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600373
374 /* Disable BARs for inbound access */
Bjorn Helgaase481e0d2016-10-06 13:36:57 -0500375 ks_dw_pcie_set_dbi_mode(ks_pcie);
Bjorn Helgaasf3eca6c2016-10-06 13:36:57 -0500376 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_0, 0);
377 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_1, 0);
Bjorn Helgaase481e0d2016-10-06 13:36:57 -0500378 ks_dw_pcie_clear_dbi_mode(ks_pcie);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600379
380 /* Set outbound translation size per window division */
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500381 ks_dw_app_writel(ks_pcie, OB_SIZE, CFG_PCIM_WIN_SZ_IDX & 0x7);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600382
383 tr_size = (1 << (CFG_PCIM_WIN_SZ_IDX & 0x7)) * SZ_1M;
384
385 /* Using Direct 1:1 mapping of RC <-> PCI memory space */
386 for (i = 0; (i < CFG_PCIM_WIN_CNT) && (start < end); i++) {
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500387 ks_dw_app_writel(ks_pcie, OB_OFFSET_INDEX(i), start | 1);
388 ks_dw_app_writel(ks_pcie, OB_OFFSET_HI(i), 0);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600389 start += tr_size;
390 }
391
392 /* Enable OB translation */
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500393 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
394 ks_dw_app_writel(ks_pcie, CMD_STATUS, OB_XLAT_EN_VAL | val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600395}
396
397/**
398 * ks_pcie_cfg_setup() - Set up configuration space address for a device
399 *
400 * @ks_pcie: ptr to keystone_pcie structure
401 * @bus: Bus number the device is residing on
402 * @devfn: device, function number info
403 *
404 * Forms and returns the address of configuration space mapped in PCIESS
405 * address space 0. Also configures CFG_SETUP for remote configuration space
406 * access.
407 *
408 * The address space has two regions to access configuration - local and remote.
409 * We access local region for bus 0 (as RC is attached on bus 0) and remote
410 * region for others with TYPE 1 access when bus > 1. As for device on bus = 1,
411 * we will do TYPE 0 access as it will be on our secondary bus (logical).
412 * CFG_SETUP is needed only for remote configuration access.
413 */
414static void __iomem *ks_pcie_cfg_setup(struct keystone_pcie *ks_pcie, u8 bus,
415 unsigned int devfn)
416{
417 u8 device = PCI_SLOT(devfn), function = PCI_FUNC(devfn);
418 struct pcie_port *pp = &ks_pcie->pp;
419 u32 regval;
420
421 if (bus == 0)
422 return pp->dbi_base;
423
424 regval = (bus << 16) | (device << 8) | function;
425
426 /*
427 * Since Bus#1 will be a virtual bus, we need to have TYPE0
428 * access only.
429 * TYPE 1
430 */
431 if (bus != 1)
432 regval |= BIT(24);
433
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500434 ks_dw_app_writel(ks_pcie, CFG_SETUP, regval);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600435 return pp->va_cfg0_base;
436}
437
438int ks_dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
439 unsigned int devfn, int where, int size, u32 *val)
440{
441 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
442 u8 bus_num = bus->number;
443 void __iomem *addr;
444
445 addr = ks_pcie_cfg_setup(ks_pcie, bus_num, devfn);
446
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500447 return dw_pcie_cfg_read(addr + where, size, val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600448}
449
450int ks_dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
451 unsigned int devfn, int where, int size, u32 val)
452{
453 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
454 u8 bus_num = bus->number;
455 void __iomem *addr;
456
457 addr = ks_pcie_cfg_setup(ks_pcie, bus_num, devfn);
458
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500459 return dw_pcie_cfg_write(addr + where, size, val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600460}
461
462/**
463 * ks_dw_pcie_v3_65_scan_bus() - keystone scan_bus post initialization
464 *
465 * This sets BAR0 to enable inbound access for MSI_IRQ register
466 */
467void ks_dw_pcie_v3_65_scan_bus(struct pcie_port *pp)
468{
469 struct keystone_pcie *ks_pcie = to_keystone_pcie(pp);
470
471 /* Configure and set up BAR0 */
Bjorn Helgaase481e0d2016-10-06 13:36:57 -0500472 ks_dw_pcie_set_dbi_mode(ks_pcie);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600473
474 /* Enable BAR0 */
Bjorn Helgaasf3eca6c2016-10-06 13:36:57 -0500475 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_0, 1);
476 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_0, SZ_4K - 1);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600477
Bjorn Helgaase481e0d2016-10-06 13:36:57 -0500478 ks_dw_pcie_clear_dbi_mode(ks_pcie);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600479
480 /*
481 * For BAR0, just setting bus address for inbound writes (MSI) should
482 * be sufficient. Use physical address to avoid any conflicts.
483 */
Bjorn Helgaasf3eca6c2016-10-06 13:36:57 -0500484 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_0, ks_pcie->app.start);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600485}
486
487/**
488 * ks_dw_pcie_link_up() - Check if link up
489 */
490int ks_dw_pcie_link_up(struct pcie_port *pp)
491{
Bjorn Helgaasf3eca6c2016-10-06 13:36:57 -0500492 u32 val;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600493
Bjorn Helgaasf3eca6c2016-10-06 13:36:57 -0500494 val = dw_pcie_readl_rc(pp, DEBUG0);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600495 return (val & LTSSM_STATE_MASK) == LTSSM_STATE_L0;
496}
497
498void ks_dw_pcie_initiate_link_train(struct keystone_pcie *ks_pcie)
499{
500 u32 val;
501
502 /* Disable Link training */
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500503 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600504 val &= ~LTSSM_EN_VAL;
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500505 ks_dw_app_writel(ks_pcie, CMD_STATUS, LTSSM_EN_VAL | val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600506
507 /* Initiate Link Training */
Bjorn Helgaas5c725352016-10-06 13:36:57 -0500508 val = ks_dw_app_readl(ks_pcie, CMD_STATUS);
509 ks_dw_app_writel(ks_pcie, CMD_STATUS, LTSSM_EN_VAL | val);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600510}
511
512/**
513 * ks_dw_pcie_host_init() - initialize host for v3_65 dw hardware
514 *
515 * Ioremap the register resources, initialize legacy irq domain
516 * and call dw_pcie_v3_65_host_init() API to initialize the Keystone
517 * PCI host controller.
518 */
519int __init ks_dw_pcie_host_init(struct keystone_pcie *ks_pcie,
520 struct device_node *msi_intc_np)
521{
522 struct pcie_port *pp = &ks_pcie->pp;
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500523 struct device *dev = pp->dev;
524 struct platform_device *pdev = to_platform_device(dev);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600525 struct resource *res;
526
527 /* Index 0 is the config reg. space address */
528 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500529 pp->dbi_base = devm_ioremap_resource(dev, res);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600530 if (IS_ERR(pp->dbi_base))
531 return PTR_ERR(pp->dbi_base);
532
533 /*
534 * We set these same and is used in pcie rd/wr_other_conf
535 * functions
536 */
537 pp->va_cfg0_base = pp->dbi_base + SPACE0_REMOTE_CFG_OFFSET;
538 pp->va_cfg1_base = pp->va_cfg0_base;
539
540 /* Index 1 is the application reg. space address */
541 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500542 ks_pcie->va_app_base = devm_ioremap_resource(dev, res);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600543 if (IS_ERR(ks_pcie->va_app_base))
544 return PTR_ERR(ks_pcie->va_app_base);
545
Bjorn Helgaasf76ea572015-04-09 14:34:10 -0500546 ks_pcie->app = *res;
547
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600548 /* Create legacy IRQ domain */
549 ks_pcie->legacy_irq_domain =
550 irq_domain_add_linear(ks_pcie->legacy_intc_np,
551 MAX_LEGACY_IRQS,
552 &ks_dw_pcie_legacy_irq_domain_ops,
553 NULL);
554 if (!ks_pcie->legacy_irq_domain) {
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500555 dev_err(dev, "Failed to add irq domain for legacy irqs\n");
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600556 return -EINVAL;
557 }
558
559 return dw_pcie_host_init(pp);
560}