sh_eth: fix EESIPR values for SH77{34|63}
[linux/fpc-iii.git] / drivers / pci / host / pcie-designware.c
blobbed19994c1e94d4e32c134e58133c4acd8b8bd88
1 /*
2 * Synopsys Designware PCIe host controller driver
4 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
5 * http://www.samsung.com
7 * Author: Jingoo Han <jg1.han@samsung.com>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/irq.h>
15 #include <linux/irqdomain.h>
16 #include <linux/kernel.h>
17 #include <linux/msi.h>
18 #include <linux/of_address.h>
19 #include <linux/of_pci.h>
20 #include <linux/pci.h>
21 #include <linux/pci_regs.h>
22 #include <linux/platform_device.h>
23 #include <linux/types.h>
24 #include <linux/delay.h>
26 #include "pcie-designware.h"
28 /* Parameters for the waiting for link up routine */
29 #define LINK_WAIT_MAX_RETRIES 10
30 #define LINK_WAIT_USLEEP_MIN 90000
31 #define LINK_WAIT_USLEEP_MAX 100000
33 /* Parameters for the waiting for iATU enabled routine */
34 #define LINK_WAIT_MAX_IATU_RETRIES 5
35 #define LINK_WAIT_IATU_MIN 9000
36 #define LINK_WAIT_IATU_MAX 10000
38 /* Synopsys-specific PCIe configuration registers */
39 #define PCIE_PORT_LINK_CONTROL 0x710
40 #define PORT_LINK_MODE_MASK (0x3f << 16)
41 #define PORT_LINK_MODE_1_LANES (0x1 << 16)
42 #define PORT_LINK_MODE_2_LANES (0x3 << 16)
43 #define PORT_LINK_MODE_4_LANES (0x7 << 16)
44 #define PORT_LINK_MODE_8_LANES (0xf << 16)
46 #define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C
47 #define PORT_LOGIC_SPEED_CHANGE (0x1 << 17)
48 #define PORT_LOGIC_LINK_WIDTH_MASK (0x1f << 8)
49 #define PORT_LOGIC_LINK_WIDTH_1_LANES (0x1 << 8)
50 #define PORT_LOGIC_LINK_WIDTH_2_LANES (0x2 << 8)
51 #define PORT_LOGIC_LINK_WIDTH_4_LANES (0x4 << 8)
52 #define PORT_LOGIC_LINK_WIDTH_8_LANES (0x8 << 8)
54 #define PCIE_MSI_ADDR_LO 0x820
55 #define PCIE_MSI_ADDR_HI 0x824
56 #define PCIE_MSI_INTR0_ENABLE 0x828
57 #define PCIE_MSI_INTR0_MASK 0x82C
58 #define PCIE_MSI_INTR0_STATUS 0x830
60 #define PCIE_ATU_VIEWPORT 0x900
61 #define PCIE_ATU_REGION_INBOUND (0x1 << 31)
62 #define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
63 #define PCIE_ATU_REGION_INDEX2 (0x2 << 0)
64 #define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
65 #define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
66 #define PCIE_ATU_CR1 0x904
67 #define PCIE_ATU_TYPE_MEM (0x0 << 0)
68 #define PCIE_ATU_TYPE_IO (0x2 << 0)
69 #define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
70 #define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
71 #define PCIE_ATU_CR2 0x908
72 #define PCIE_ATU_ENABLE (0x1 << 31)
73 #define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
74 #define PCIE_ATU_LOWER_BASE 0x90C
75 #define PCIE_ATU_UPPER_BASE 0x910
76 #define PCIE_ATU_LIMIT 0x914
77 #define PCIE_ATU_LOWER_TARGET 0x918
78 #define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
79 #define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
80 #define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
81 #define PCIE_ATU_UPPER_TARGET 0x91C
84 * iATU Unroll-specific register definitions
85 * From 4.80 core version the address translation will be made by unroll
87 #define PCIE_ATU_UNR_REGION_CTRL1 0x00
88 #define PCIE_ATU_UNR_REGION_CTRL2 0x04
89 #define PCIE_ATU_UNR_LOWER_BASE 0x08
90 #define PCIE_ATU_UNR_UPPER_BASE 0x0C
91 #define PCIE_ATU_UNR_LIMIT 0x10
92 #define PCIE_ATU_UNR_LOWER_TARGET 0x14
93 #define PCIE_ATU_UNR_UPPER_TARGET 0x18
95 /* Register address builder */
96 #define PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(region) ((0x3 << 20) | (region << 9))
98 /* PCIe Port Logic registers */
99 #define PLR_OFFSET 0x700
100 #define PCIE_PHY_DEBUG_R1 (PLR_OFFSET + 0x2c)
101 #define PCIE_PHY_DEBUG_R1_LINK_UP (0x1 << 4)
102 #define PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING (0x1 << 29)
104 static struct pci_ops dw_pcie_ops;
106 int dw_pcie_cfg_read(void __iomem *addr, int size, u32 *val)
108 if ((uintptr_t)addr & (size - 1)) {
109 *val = 0;
110 return PCIBIOS_BAD_REGISTER_NUMBER;
113 if (size == 4)
114 *val = readl(addr);
115 else if (size == 2)
116 *val = readw(addr);
117 else if (size == 1)
118 *val = readb(addr);
119 else {
120 *val = 0;
121 return PCIBIOS_BAD_REGISTER_NUMBER;
124 return PCIBIOS_SUCCESSFUL;
127 int dw_pcie_cfg_write(void __iomem *addr, int size, u32 val)
129 if ((uintptr_t)addr & (size - 1))
130 return PCIBIOS_BAD_REGISTER_NUMBER;
132 if (size == 4)
133 writel(val, addr);
134 else if (size == 2)
135 writew(val, addr);
136 else if (size == 1)
137 writeb(val, addr);
138 else
139 return PCIBIOS_BAD_REGISTER_NUMBER;
141 return PCIBIOS_SUCCESSFUL;
144 u32 dw_pcie_readl_rc(struct pcie_port *pp, u32 reg)
146 if (pp->ops->readl_rc)
147 return pp->ops->readl_rc(pp, reg);
149 return readl(pp->dbi_base + reg);
152 void dw_pcie_writel_rc(struct pcie_port *pp, u32 reg, u32 val)
154 if (pp->ops->writel_rc)
155 pp->ops->writel_rc(pp, reg, val);
156 else
157 writel(val, pp->dbi_base + reg);
160 static u32 dw_pcie_readl_unroll(struct pcie_port *pp, u32 index, u32 reg)
162 u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index);
164 return dw_pcie_readl_rc(pp, offset + reg);
167 static void dw_pcie_writel_unroll(struct pcie_port *pp, u32 index, u32 reg,
168 u32 val)
170 u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index);
172 dw_pcie_writel_rc(pp, offset + reg, val);
175 static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
176 u32 *val)
178 if (pp->ops->rd_own_conf)
179 return pp->ops->rd_own_conf(pp, where, size, val);
181 return dw_pcie_cfg_read(pp->dbi_base + where, size, val);
184 static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
185 u32 val)
187 if (pp->ops->wr_own_conf)
188 return pp->ops->wr_own_conf(pp, where, size, val);
190 return dw_pcie_cfg_write(pp->dbi_base + where, size, val);
193 static void dw_pcie_prog_outbound_atu(struct pcie_port *pp, int index,
194 int type, u64 cpu_addr, u64 pci_addr, u32 size)
196 u32 retries, val;
198 if (pp->iatu_unroll_enabled) {
199 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_LOWER_BASE,
200 lower_32_bits(cpu_addr));
201 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_UPPER_BASE,
202 upper_32_bits(cpu_addr));
203 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_LIMIT,
204 lower_32_bits(cpu_addr + size - 1));
205 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_LOWER_TARGET,
206 lower_32_bits(pci_addr));
207 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_UPPER_TARGET,
208 upper_32_bits(pci_addr));
209 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_REGION_CTRL1,
210 type);
211 dw_pcie_writel_unroll(pp, index, PCIE_ATU_UNR_REGION_CTRL2,
212 PCIE_ATU_ENABLE);
213 } else {
214 dw_pcie_writel_rc(pp, PCIE_ATU_VIEWPORT,
215 PCIE_ATU_REGION_OUTBOUND | index);
216 dw_pcie_writel_rc(pp, PCIE_ATU_LOWER_BASE,
217 lower_32_bits(cpu_addr));
218 dw_pcie_writel_rc(pp, PCIE_ATU_UPPER_BASE,
219 upper_32_bits(cpu_addr));
220 dw_pcie_writel_rc(pp, PCIE_ATU_LIMIT,
221 lower_32_bits(cpu_addr + size - 1));
222 dw_pcie_writel_rc(pp, PCIE_ATU_LOWER_TARGET,
223 lower_32_bits(pci_addr));
224 dw_pcie_writel_rc(pp, PCIE_ATU_UPPER_TARGET,
225 upper_32_bits(pci_addr));
226 dw_pcie_writel_rc(pp, PCIE_ATU_CR1, type);
227 dw_pcie_writel_rc(pp, PCIE_ATU_CR2, PCIE_ATU_ENABLE);
231 * Make sure ATU enable takes effect before any subsequent config
232 * and I/O accesses.
234 for (retries = 0; retries < LINK_WAIT_MAX_IATU_RETRIES; retries++) {
235 if (pp->iatu_unroll_enabled)
236 val = dw_pcie_readl_unroll(pp, index,
237 PCIE_ATU_UNR_REGION_CTRL2);
238 else
239 val = dw_pcie_readl_rc(pp, PCIE_ATU_CR2);
241 if (val == PCIE_ATU_ENABLE)
242 return;
244 usleep_range(LINK_WAIT_IATU_MIN, LINK_WAIT_IATU_MAX);
246 dev_err(pp->dev, "iATU is not being enabled\n");
249 static struct irq_chip dw_msi_irq_chip = {
250 .name = "PCI-MSI",
251 .irq_enable = pci_msi_unmask_irq,
252 .irq_disable = pci_msi_mask_irq,
253 .irq_mask = pci_msi_mask_irq,
254 .irq_unmask = pci_msi_unmask_irq,
257 /* MSI int handler */
258 irqreturn_t dw_handle_msi_irq(struct pcie_port *pp)
260 unsigned long val;
261 int i, pos, irq;
262 irqreturn_t ret = IRQ_NONE;
264 for (i = 0; i < MAX_MSI_CTRLS; i++) {
265 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4,
266 (u32 *)&val);
267 if (val) {
268 ret = IRQ_HANDLED;
269 pos = 0;
270 while ((pos = find_next_bit(&val, 32, pos)) != 32) {
271 irq = irq_find_mapping(pp->irq_domain,
272 i * 32 + pos);
273 dw_pcie_wr_own_conf(pp,
274 PCIE_MSI_INTR0_STATUS + i * 12,
275 4, 1 << pos);
276 generic_handle_irq(irq);
277 pos++;
282 return ret;
285 void dw_pcie_msi_init(struct pcie_port *pp)
287 u64 msi_target;
289 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
290 msi_target = virt_to_phys((void *)pp->msi_data);
292 /* program the msi_data */
293 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
294 (u32)(msi_target & 0xffffffff));
295 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4,
296 (u32)(msi_target >> 32 & 0xffffffff));
299 static void dw_pcie_msi_clear_irq(struct pcie_port *pp, int irq)
301 unsigned int res, bit, val;
303 res = (irq / 32) * 12;
304 bit = irq % 32;
305 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
306 val &= ~(1 << bit);
307 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
310 static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
311 unsigned int nvec, unsigned int pos)
313 unsigned int i;
315 for (i = 0; i < nvec; i++) {
316 irq_set_msi_desc_off(irq_base, i, NULL);
317 /* Disable corresponding interrupt on MSI controller */
318 if (pp->ops->msi_clear_irq)
319 pp->ops->msi_clear_irq(pp, pos + i);
320 else
321 dw_pcie_msi_clear_irq(pp, pos + i);
324 bitmap_release_region(pp->msi_irq_in_use, pos, order_base_2(nvec));
327 static void dw_pcie_msi_set_irq(struct pcie_port *pp, int irq)
329 unsigned int res, bit, val;
331 res = (irq / 32) * 12;
332 bit = irq % 32;
333 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
334 val |= 1 << bit;
335 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
338 static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
340 int irq, pos0, i;
341 struct pcie_port *pp = (struct pcie_port *) msi_desc_to_pci_sysdata(desc);
343 pos0 = bitmap_find_free_region(pp->msi_irq_in_use, MAX_MSI_IRQS,
344 order_base_2(no_irqs));
345 if (pos0 < 0)
346 goto no_valid_irq;
348 irq = irq_find_mapping(pp->irq_domain, pos0);
349 if (!irq)
350 goto no_valid_irq;
353 * irq_create_mapping (called from dw_pcie_host_init) pre-allocates
354 * descs so there is no need to allocate descs here. We can therefore
355 * assume that if irq_find_mapping above returns non-zero, then the
356 * descs are also successfully allocated.
359 for (i = 0; i < no_irqs; i++) {
360 if (irq_set_msi_desc_off(irq, i, desc) != 0) {
361 clear_irq_range(pp, irq, i, pos0);
362 goto no_valid_irq;
364 /*Enable corresponding interrupt in MSI interrupt controller */
365 if (pp->ops->msi_set_irq)
366 pp->ops->msi_set_irq(pp, pos0 + i);
367 else
368 dw_pcie_msi_set_irq(pp, pos0 + i);
371 *pos = pos0;
372 desc->nvec_used = no_irqs;
373 desc->msi_attrib.multiple = order_base_2(no_irqs);
375 return irq;
377 no_valid_irq:
378 *pos = pos0;
379 return -ENOSPC;
382 static void dw_msi_setup_msg(struct pcie_port *pp, unsigned int irq, u32 pos)
384 struct msi_msg msg;
385 u64 msi_target;
387 if (pp->ops->get_msi_addr)
388 msi_target = pp->ops->get_msi_addr(pp);
389 else
390 msi_target = virt_to_phys((void *)pp->msi_data);
392 msg.address_lo = (u32)(msi_target & 0xffffffff);
393 msg.address_hi = (u32)(msi_target >> 32 & 0xffffffff);
395 if (pp->ops->get_msi_data)
396 msg.data = pp->ops->get_msi_data(pp, pos);
397 else
398 msg.data = pos;
400 pci_write_msi_msg(irq, &msg);
403 static int dw_msi_setup_irq(struct msi_controller *chip, struct pci_dev *pdev,
404 struct msi_desc *desc)
406 int irq, pos;
407 struct pcie_port *pp = pdev->bus->sysdata;
409 if (desc->msi_attrib.is_msix)
410 return -EINVAL;
412 irq = assign_irq(1, desc, &pos);
413 if (irq < 0)
414 return irq;
416 dw_msi_setup_msg(pp, irq, pos);
418 return 0;
421 static int dw_msi_setup_irqs(struct msi_controller *chip, struct pci_dev *pdev,
422 int nvec, int type)
424 #ifdef CONFIG_PCI_MSI
425 int irq, pos;
426 struct msi_desc *desc;
427 struct pcie_port *pp = pdev->bus->sysdata;
429 /* MSI-X interrupts are not supported */
430 if (type == PCI_CAP_ID_MSIX)
431 return -EINVAL;
433 WARN_ON(!list_is_singular(&pdev->dev.msi_list));
434 desc = list_entry(pdev->dev.msi_list.next, struct msi_desc, list);
436 irq = assign_irq(nvec, desc, &pos);
437 if (irq < 0)
438 return irq;
440 dw_msi_setup_msg(pp, irq, pos);
442 return 0;
443 #else
444 return -EINVAL;
445 #endif
448 static void dw_msi_teardown_irq(struct msi_controller *chip, unsigned int irq)
450 struct irq_data *data = irq_get_irq_data(irq);
451 struct msi_desc *msi = irq_data_get_msi_desc(data);
452 struct pcie_port *pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi);
454 clear_irq_range(pp, irq, 1, data->hwirq);
457 static struct msi_controller dw_pcie_msi_chip = {
458 .setup_irq = dw_msi_setup_irq,
459 .setup_irqs = dw_msi_setup_irqs,
460 .teardown_irq = dw_msi_teardown_irq,
463 int dw_pcie_wait_for_link(struct pcie_port *pp)
465 int retries;
467 /* check if the link is up or not */
468 for (retries = 0; retries < LINK_WAIT_MAX_RETRIES; retries++) {
469 if (dw_pcie_link_up(pp)) {
470 dev_info(pp->dev, "link up\n");
471 return 0;
473 usleep_range(LINK_WAIT_USLEEP_MIN, LINK_WAIT_USLEEP_MAX);
476 dev_err(pp->dev, "phy link never came up\n");
478 return -ETIMEDOUT;
481 int dw_pcie_link_up(struct pcie_port *pp)
483 u32 val;
485 if (pp->ops->link_up)
486 return pp->ops->link_up(pp);
488 val = readl(pp->dbi_base + PCIE_PHY_DEBUG_R1);
489 return ((val & PCIE_PHY_DEBUG_R1_LINK_UP) &&
490 (!(val & PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING)));
493 static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
494 irq_hw_number_t hwirq)
496 irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
497 irq_set_chip_data(irq, domain->host_data);
499 return 0;
502 static const struct irq_domain_ops msi_domain_ops = {
503 .map = dw_pcie_msi_map,
506 static u8 dw_pcie_iatu_unroll_enabled(struct pcie_port *pp)
508 u32 val;
510 val = dw_pcie_readl_rc(pp, PCIE_ATU_VIEWPORT);
511 if (val == 0xffffffff)
512 return 1;
514 return 0;
517 int dw_pcie_host_init(struct pcie_port *pp)
519 struct device_node *np = pp->dev->of_node;
520 struct platform_device *pdev = to_platform_device(pp->dev);
521 struct pci_bus *bus, *child;
522 struct resource *cfg_res;
523 int i, ret;
524 LIST_HEAD(res);
525 struct resource_entry *win, *tmp;
527 cfg_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config");
528 if (cfg_res) {
529 pp->cfg0_size = resource_size(cfg_res)/2;
530 pp->cfg1_size = resource_size(cfg_res)/2;
531 pp->cfg0_base = cfg_res->start;
532 pp->cfg1_base = cfg_res->start + pp->cfg0_size;
533 } else if (!pp->va_cfg0_base) {
534 dev_err(pp->dev, "missing *config* reg space\n");
537 ret = of_pci_get_host_bridge_resources(np, 0, 0xff, &res, &pp->io_base);
538 if (ret)
539 return ret;
541 ret = devm_request_pci_bus_resources(&pdev->dev, &res);
542 if (ret)
543 goto error;
545 /* Get the I/O and memory ranges from DT */
546 resource_list_for_each_entry_safe(win, tmp, &res) {
547 switch (resource_type(win->res)) {
548 case IORESOURCE_IO:
549 ret = pci_remap_iospace(win->res, pp->io_base);
550 if (ret) {
551 dev_warn(pp->dev, "error %d: failed to map resource %pR\n",
552 ret, win->res);
553 resource_list_destroy_entry(win);
554 } else {
555 pp->io = win->res;
556 pp->io->name = "I/O";
557 pp->io_size = resource_size(pp->io);
558 pp->io_bus_addr = pp->io->start - win->offset;
560 break;
561 case IORESOURCE_MEM:
562 pp->mem = win->res;
563 pp->mem->name = "MEM";
564 pp->mem_size = resource_size(pp->mem);
565 pp->mem_bus_addr = pp->mem->start - win->offset;
566 break;
567 case 0:
568 pp->cfg = win->res;
569 pp->cfg0_size = resource_size(pp->cfg)/2;
570 pp->cfg1_size = resource_size(pp->cfg)/2;
571 pp->cfg0_base = pp->cfg->start;
572 pp->cfg1_base = pp->cfg->start + pp->cfg0_size;
573 break;
574 case IORESOURCE_BUS:
575 pp->busn = win->res;
576 break;
580 if (!pp->dbi_base) {
581 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg->start,
582 resource_size(pp->cfg));
583 if (!pp->dbi_base) {
584 dev_err(pp->dev, "error with ioremap\n");
585 ret = -ENOMEM;
586 goto error;
590 pp->mem_base = pp->mem->start;
592 if (!pp->va_cfg0_base) {
593 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
594 pp->cfg0_size);
595 if (!pp->va_cfg0_base) {
596 dev_err(pp->dev, "error with ioremap in function\n");
597 ret = -ENOMEM;
598 goto error;
602 if (!pp->va_cfg1_base) {
603 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
604 pp->cfg1_size);
605 if (!pp->va_cfg1_base) {
606 dev_err(pp->dev, "error with ioremap\n");
607 ret = -ENOMEM;
608 goto error;
612 ret = of_property_read_u32(np, "num-lanes", &pp->lanes);
613 if (ret)
614 pp->lanes = 0;
616 ret = of_property_read_u32(np, "num-viewport", &pp->num_viewport);
617 if (ret)
618 pp->num_viewport = 2;
620 if (IS_ENABLED(CONFIG_PCI_MSI)) {
621 if (!pp->ops->msi_host_init) {
622 pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
623 MAX_MSI_IRQS, &msi_domain_ops,
624 &dw_pcie_msi_chip);
625 if (!pp->irq_domain) {
626 dev_err(pp->dev, "irq domain init failed\n");
627 ret = -ENXIO;
628 goto error;
631 for (i = 0; i < MAX_MSI_IRQS; i++)
632 irq_create_mapping(pp->irq_domain, i);
633 } else {
634 ret = pp->ops->msi_host_init(pp, &dw_pcie_msi_chip);
635 if (ret < 0)
636 goto error;
640 if (pp->ops->host_init)
641 pp->ops->host_init(pp);
643 pp->root_bus_nr = pp->busn->start;
644 if (IS_ENABLED(CONFIG_PCI_MSI)) {
645 bus = pci_scan_root_bus_msi(pp->dev, pp->root_bus_nr,
646 &dw_pcie_ops, pp, &res,
647 &dw_pcie_msi_chip);
648 dw_pcie_msi_chip.dev = pp->dev;
649 } else
650 bus = pci_scan_root_bus(pp->dev, pp->root_bus_nr, &dw_pcie_ops,
651 pp, &res);
652 if (!bus) {
653 ret = -ENOMEM;
654 goto error;
657 if (pp->ops->scan_bus)
658 pp->ops->scan_bus(pp);
660 #ifdef CONFIG_ARM
661 /* support old dtbs that incorrectly describe IRQs */
662 pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);
663 #endif
665 pci_bus_size_bridges(bus);
666 pci_bus_assign_resources(bus);
668 list_for_each_entry(child, &bus->children, node)
669 pcie_bus_configure_settings(child);
671 pci_bus_add_devices(bus);
672 return 0;
674 error:
675 pci_free_resource_list(&res);
676 return ret;
679 static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
680 u32 devfn, int where, int size, u32 *val)
682 int ret, type;
683 u32 busdev, cfg_size;
684 u64 cpu_addr;
685 void __iomem *va_cfg_base;
687 if (pp->ops->rd_other_conf)
688 return pp->ops->rd_other_conf(pp, bus, devfn, where, size, val);
690 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
691 PCIE_ATU_FUNC(PCI_FUNC(devfn));
693 if (bus->parent->number == pp->root_bus_nr) {
694 type = PCIE_ATU_TYPE_CFG0;
695 cpu_addr = pp->cfg0_base;
696 cfg_size = pp->cfg0_size;
697 va_cfg_base = pp->va_cfg0_base;
698 } else {
699 type = PCIE_ATU_TYPE_CFG1;
700 cpu_addr = pp->cfg1_base;
701 cfg_size = pp->cfg1_size;
702 va_cfg_base = pp->va_cfg1_base;
705 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX1,
706 type, cpu_addr,
707 busdev, cfg_size);
708 ret = dw_pcie_cfg_read(va_cfg_base + where, size, val);
709 if (pp->num_viewport <= 2)
710 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX1,
711 PCIE_ATU_TYPE_IO, pp->io_base,
712 pp->io_bus_addr, pp->io_size);
714 return ret;
717 static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
718 u32 devfn, int where, int size, u32 val)
720 int ret, type;
721 u32 busdev, cfg_size;
722 u64 cpu_addr;
723 void __iomem *va_cfg_base;
725 if (pp->ops->wr_other_conf)
726 return pp->ops->wr_other_conf(pp, bus, devfn, where, size, val);
728 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
729 PCIE_ATU_FUNC(PCI_FUNC(devfn));
731 if (bus->parent->number == pp->root_bus_nr) {
732 type = PCIE_ATU_TYPE_CFG0;
733 cpu_addr = pp->cfg0_base;
734 cfg_size = pp->cfg0_size;
735 va_cfg_base = pp->va_cfg0_base;
736 } else {
737 type = PCIE_ATU_TYPE_CFG1;
738 cpu_addr = pp->cfg1_base;
739 cfg_size = pp->cfg1_size;
740 va_cfg_base = pp->va_cfg1_base;
743 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX1,
744 type, cpu_addr,
745 busdev, cfg_size);
746 ret = dw_pcie_cfg_write(va_cfg_base + where, size, val);
747 if (pp->num_viewport <= 2)
748 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX1,
749 PCIE_ATU_TYPE_IO, pp->io_base,
750 pp->io_bus_addr, pp->io_size);
752 return ret;
755 static int dw_pcie_valid_device(struct pcie_port *pp, struct pci_bus *bus,
756 int dev)
758 /* If there is no link, then there is no device */
759 if (bus->number != pp->root_bus_nr) {
760 if (!dw_pcie_link_up(pp))
761 return 0;
764 /* access only one slot on each root port */
765 if (bus->number == pp->root_bus_nr && dev > 0)
766 return 0;
768 return 1;
771 static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
772 int size, u32 *val)
774 struct pcie_port *pp = bus->sysdata;
776 if (!dw_pcie_valid_device(pp, bus, PCI_SLOT(devfn))) {
777 *val = 0xffffffff;
778 return PCIBIOS_DEVICE_NOT_FOUND;
781 if (bus->number == pp->root_bus_nr)
782 return dw_pcie_rd_own_conf(pp, where, size, val);
784 return dw_pcie_rd_other_conf(pp, bus, devfn, where, size, val);
787 static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
788 int where, int size, u32 val)
790 struct pcie_port *pp = bus->sysdata;
792 if (!dw_pcie_valid_device(pp, bus, PCI_SLOT(devfn)))
793 return PCIBIOS_DEVICE_NOT_FOUND;
795 if (bus->number == pp->root_bus_nr)
796 return dw_pcie_wr_own_conf(pp, where, size, val);
798 return dw_pcie_wr_other_conf(pp, bus, devfn, where, size, val);
801 static struct pci_ops dw_pcie_ops = {
802 .read = dw_pcie_rd_conf,
803 .write = dw_pcie_wr_conf,
806 void dw_pcie_setup_rc(struct pcie_port *pp)
808 u32 val;
810 /* get iATU unroll support */
811 pp->iatu_unroll_enabled = dw_pcie_iatu_unroll_enabled(pp);
812 dev_dbg(pp->dev, "iATU unroll: %s\n",
813 pp->iatu_unroll_enabled ? "enabled" : "disabled");
815 /* set the number of lanes */
816 val = dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL);
817 val &= ~PORT_LINK_MODE_MASK;
818 switch (pp->lanes) {
819 case 1:
820 val |= PORT_LINK_MODE_1_LANES;
821 break;
822 case 2:
823 val |= PORT_LINK_MODE_2_LANES;
824 break;
825 case 4:
826 val |= PORT_LINK_MODE_4_LANES;
827 break;
828 case 8:
829 val |= PORT_LINK_MODE_8_LANES;
830 break;
831 default:
832 dev_err(pp->dev, "num-lanes %u: invalid value\n", pp->lanes);
833 return;
835 dw_pcie_writel_rc(pp, PCIE_PORT_LINK_CONTROL, val);
837 /* set link width speed control register */
838 val = dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL);
839 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
840 switch (pp->lanes) {
841 case 1:
842 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
843 break;
844 case 2:
845 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
846 break;
847 case 4:
848 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
849 break;
850 case 8:
851 val |= PORT_LOGIC_LINK_WIDTH_8_LANES;
852 break;
854 dw_pcie_writel_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, val);
856 /* setup RC BARs */
857 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_0, 0x00000004);
858 dw_pcie_writel_rc(pp, PCI_BASE_ADDRESS_1, 0x00000000);
860 /* setup interrupt pins */
861 val = dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE);
862 val &= 0xffff00ff;
863 val |= 0x00000100;
864 dw_pcie_writel_rc(pp, PCI_INTERRUPT_LINE, val);
866 /* setup bus numbers */
867 val = dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS);
868 val &= 0xff000000;
869 val |= 0x00010100;
870 dw_pcie_writel_rc(pp, PCI_PRIMARY_BUS, val);
872 /* setup command register */
873 val = dw_pcie_readl_rc(pp, PCI_COMMAND);
874 val &= 0xffff0000;
875 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
876 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
877 dw_pcie_writel_rc(pp, PCI_COMMAND, val);
880 * If the platform provides ->rd_other_conf, it means the platform
881 * uses its own address translation component rather than ATU, so
882 * we should not program the ATU here.
884 if (!pp->ops->rd_other_conf) {
885 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
886 PCIE_ATU_TYPE_MEM, pp->mem_base,
887 pp->mem_bus_addr, pp->mem_size);
888 if (pp->num_viewport > 2)
889 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX2,
890 PCIE_ATU_TYPE_IO, pp->io_base,
891 pp->io_bus_addr, pp->io_size);
894 dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
896 /* program correct class for RC */
897 dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
899 dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
900 val |= PORT_LOGIC_SPEED_CHANGE;
901 dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);