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/module.h>
18 #include <linux/msi.h>
19 #include <linux/of_address.h>
20 #include <linux/pci.h>
21 #include <linux/pci_regs.h>
22 #include <linux/types.h>
24 #include "pcie-designware.h"
26 /* Synopsis specific PCIE configuration registers */
27 #define PCIE_PORT_LINK_CONTROL 0x710
28 #define PORT_LINK_MODE_MASK (0x3f << 16)
29 #define PORT_LINK_MODE_1_LANES (0x1 << 16)
30 #define PORT_LINK_MODE_2_LANES (0x3 << 16)
31 #define PORT_LINK_MODE_4_LANES (0x7 << 16)
33 #define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C
34 #define PORT_LOGIC_SPEED_CHANGE (0x1 << 17)
35 #define PORT_LOGIC_LINK_WIDTH_MASK (0x1ff << 8)
36 #define PORT_LOGIC_LINK_WIDTH_1_LANES (0x1 << 8)
37 #define PORT_LOGIC_LINK_WIDTH_2_LANES (0x2 << 8)
38 #define PORT_LOGIC_LINK_WIDTH_4_LANES (0x4 << 8)
40 #define PCIE_MSI_ADDR_LO 0x820
41 #define PCIE_MSI_ADDR_HI 0x824
42 #define PCIE_MSI_INTR0_ENABLE 0x828
43 #define PCIE_MSI_INTR0_MASK 0x82C
44 #define PCIE_MSI_INTR0_STATUS 0x830
46 #define PCIE_ATU_VIEWPORT 0x900
47 #define PCIE_ATU_REGION_INBOUND (0x1 << 31)
48 #define PCIE_ATU_REGION_OUTBOUND (0x0 << 31)
49 #define PCIE_ATU_REGION_INDEX1 (0x1 << 0)
50 #define PCIE_ATU_REGION_INDEX0 (0x0 << 0)
51 #define PCIE_ATU_CR1 0x904
52 #define PCIE_ATU_TYPE_MEM (0x0 << 0)
53 #define PCIE_ATU_TYPE_IO (0x2 << 0)
54 #define PCIE_ATU_TYPE_CFG0 (0x4 << 0)
55 #define PCIE_ATU_TYPE_CFG1 (0x5 << 0)
56 #define PCIE_ATU_CR2 0x908
57 #define PCIE_ATU_ENABLE (0x1 << 31)
58 #define PCIE_ATU_BAR_MODE_ENABLE (0x1 << 30)
59 #define PCIE_ATU_LOWER_BASE 0x90C
60 #define PCIE_ATU_UPPER_BASE 0x910
61 #define PCIE_ATU_LIMIT 0x914
62 #define PCIE_ATU_LOWER_TARGET 0x918
63 #define PCIE_ATU_BUS(x) (((x) & 0xff) << 24)
64 #define PCIE_ATU_DEV(x) (((x) & 0x1f) << 19)
65 #define PCIE_ATU_FUNC(x) (((x) & 0x7) << 16)
66 #define PCIE_ATU_UPPER_TARGET 0x91C
68 static struct hw_pci dw_pci;
70 static unsigned long global_io_offset;
72 static inline struct pcie_port *sys_to_pcie(struct pci_sys_data *sys)
74 return sys->private_data;
77 int dw_pcie_cfg_read(void __iomem *addr, int where, int size, u32 *val)
82 *val = (*val >> (8 * (where & 3))) & 0xff;
84 *val = (*val >> (8 * (where & 3))) & 0xffff;
86 return PCIBIOS_BAD_REGISTER_NUMBER;
88 return PCIBIOS_SUCCESSFUL;
91 int dw_pcie_cfg_write(void __iomem *addr, int where, int size, u32 val)
96 writew(val, addr + (where & 2));
98 writeb(val, addr + (where & 3));
100 return PCIBIOS_BAD_REGISTER_NUMBER;
102 return PCIBIOS_SUCCESSFUL;
105 static inline void dw_pcie_readl_rc(struct pcie_port *pp, u32 reg, u32 *val)
107 if (pp->ops->readl_rc)
108 pp->ops->readl_rc(pp, pp->dbi_base + reg, val);
110 *val = readl(pp->dbi_base + reg);
113 static inline void dw_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg)
115 if (pp->ops->writel_rc)
116 pp->ops->writel_rc(pp, val, pp->dbi_base + reg);
118 writel(val, pp->dbi_base + reg);
121 static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
126 if (pp->ops->rd_own_conf)
127 ret = pp->ops->rd_own_conf(pp, where, size, val);
129 ret = dw_pcie_cfg_read(pp->dbi_base + (where & ~0x3), where,
135 static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
140 if (pp->ops->wr_own_conf)
141 ret = pp->ops->wr_own_conf(pp, where, size, val);
143 ret = dw_pcie_cfg_write(pp->dbi_base + (where & ~0x3), where,
149 static struct irq_chip dw_msi_irq_chip = {
151 .irq_enable = unmask_msi_irq,
152 .irq_disable = mask_msi_irq,
153 .irq_mask = mask_msi_irq,
154 .irq_unmask = unmask_msi_irq,
157 /* MSI int handler */
158 void dw_handle_msi_irq(struct pcie_port *pp)
163 for (i = 0; i < MAX_MSI_CTRLS; i++) {
164 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4,
168 while ((pos = find_next_bit(&val, 32, pos)) != 32) {
169 irq = irq_find_mapping(pp->irq_domain,
171 dw_pcie_wr_own_conf(pp,
172 PCIE_MSI_INTR0_STATUS + i * 12,
174 generic_handle_irq(irq);
181 void dw_pcie_msi_init(struct pcie_port *pp)
183 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
185 /* program the msi_data */
186 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
187 virt_to_phys((void *)pp->msi_data));
188 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0);
191 static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0)
196 pos = find_next_zero_bit(pp->msi_irq_in_use,
198 /*if you have reached to the end then get out from here.*/
199 if (pos == MAX_MSI_IRQS)
202 * Check if this position is at correct offset.nvec is always a
203 * power of two. pos0 must be nvec bit aligned.
206 pos += msgvec - (pos % msgvec);
215 static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
216 unsigned int nvec, unsigned int pos)
218 unsigned int i, res, bit, val;
220 for (i = 0; i < nvec; i++) {
221 irq_set_msi_desc_off(irq_base, i, NULL);
222 clear_bit(pos + i, pp->msi_irq_in_use);
223 /* Disable corresponding interrupt on MSI controller */
224 res = ((pos + i) / 32) * 12;
225 bit = (pos + i) % 32;
226 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
228 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
232 static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
234 int res, bit, irq, pos0, pos1, i;
236 struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata);
243 pos0 = find_first_zero_bit(pp->msi_irq_in_use,
245 if (pos0 % no_irqs) {
246 if (find_valid_pos0(pp, no_irqs, pos0, &pos0))
250 pos1 = find_next_bit(pp->msi_irq_in_use,
252 /* there must be nvec number of consecutive free bits */
253 while ((pos1 - pos0) < no_irqs) {
254 if (find_valid_pos0(pp, no_irqs, pos1, &pos0))
256 pos1 = find_next_bit(pp->msi_irq_in_use,
261 irq = irq_find_mapping(pp->irq_domain, pos0);
266 * irq_create_mapping (called from dw_pcie_host_init) pre-allocates
267 * descs so there is no need to allocate descs here. We can therefore
268 * assume that if irq_find_mapping above returns non-zero, then the
269 * descs are also successfully allocated.
272 for (i = 0; i < no_irqs; i++) {
273 if (irq_set_msi_desc_off(irq, i, desc) != 0) {
274 clear_irq_range(pp, irq, i, pos0);
277 set_bit(pos0 + i, pp->msi_irq_in_use);
278 /*Enable corresponding interrupt in MSI interrupt controller */
279 res = ((pos0 + i) / 32) * 12;
280 bit = (pos0 + i) % 32;
281 dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val);
283 dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val);
294 static void clear_irq(unsigned int irq)
296 unsigned int pos, nvec;
297 struct irq_desc *desc;
298 struct msi_desc *msi;
299 struct pcie_port *pp;
300 struct irq_data *data = irq_get_irq_data(irq);
302 /* get the port structure */
303 desc = irq_to_desc(irq);
304 msi = irq_desc_get_msi_desc(desc);
305 pp = sys_to_pcie(msi->dev->bus->sysdata);
311 /* undo what was done in assign_irq */
313 nvec = 1 << msi->msi_attrib.multiple;
315 clear_irq_range(pp, irq, nvec, pos);
317 /* all irqs cleared; reset attributes */
319 msi->msi_attrib.multiple = 0;
322 static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev,
323 struct msi_desc *desc)
325 int irq, pos, msgvec;
328 struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata);
335 pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS,
337 msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4;
339 msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1;
343 irq = assign_irq((1 << msgvec), desc, &pos);
348 * write_msi_msg() will update PCI_MSI_FLAGS so there is
349 * no need to explicitly call pci_write_config_word().
351 desc->msi_attrib.multiple = msgvec;
353 msg.address_lo = virt_to_phys((void *)pp->msi_data);
354 msg.address_hi = 0x0;
356 write_msi_msg(irq, &msg);
361 static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq)
366 static struct msi_chip dw_pcie_msi_chip = {
367 .setup_irq = dw_msi_setup_irq,
368 .teardown_irq = dw_msi_teardown_irq,
371 int dw_pcie_link_up(struct pcie_port *pp)
373 if (pp->ops->link_up)
374 return pp->ops->link_up(pp);
379 static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
380 irq_hw_number_t hwirq)
382 irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq);
383 irq_set_chip_data(irq, domain->host_data);
384 set_irq_flags(irq, IRQF_VALID);
389 static const struct irq_domain_ops msi_domain_ops = {
390 .map = dw_pcie_msi_map,
393 int __init dw_pcie_host_init(struct pcie_port *pp)
395 struct device_node *np = pp->dev->of_node;
396 struct of_pci_range range;
397 struct of_pci_range_parser parser;
401 if (of_pci_range_parser_init(&parser, np)) {
402 dev_err(pp->dev, "missing ranges property\n");
406 /* Get the I/O and memory ranges from DT */
407 for_each_of_pci_range(&parser, &range) {
408 unsigned long restype = range.flags & IORESOURCE_TYPE_BITS;
409 if (restype == IORESOURCE_IO) {
410 of_pci_range_to_resource(&range, np, &pp->io);
412 pp->io.start = max_t(resource_size_t,
414 range.pci_addr + global_io_offset);
415 pp->io.end = min_t(resource_size_t,
417 range.pci_addr + range.size
419 pp->config.io_size = resource_size(&pp->io);
420 pp->config.io_bus_addr = range.pci_addr;
421 pp->io_base = range.cpu_addr;
423 if (restype == IORESOURCE_MEM) {
424 of_pci_range_to_resource(&range, np, &pp->mem);
425 pp->mem.name = "MEM";
426 pp->config.mem_size = resource_size(&pp->mem);
427 pp->config.mem_bus_addr = range.pci_addr;
430 of_pci_range_to_resource(&range, np, &pp->cfg);
431 pp->config.cfg0_size = resource_size(&pp->cfg)/2;
432 pp->config.cfg1_size = resource_size(&pp->cfg)/2;
437 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start,
438 resource_size(&pp->cfg));
440 dev_err(pp->dev, "error with ioremap\n");
445 pp->cfg0_base = pp->cfg.start;
446 pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size;
447 pp->mem_base = pp->mem.start;
449 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
450 pp->config.cfg0_size);
451 if (!pp->va_cfg0_base) {
452 dev_err(pp->dev, "error with ioremap in function\n");
455 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
456 pp->config.cfg1_size);
457 if (!pp->va_cfg1_base) {
458 dev_err(pp->dev, "error with ioremap\n");
462 if (of_property_read_u32(np, "num-lanes", &pp->lanes)) {
463 dev_err(pp->dev, "Failed to parse the number of lanes\n");
467 if (IS_ENABLED(CONFIG_PCI_MSI)) {
468 pp->irq_domain = irq_domain_add_linear(pp->dev->of_node,
469 MAX_MSI_IRQS, &msi_domain_ops,
471 if (!pp->irq_domain) {
472 dev_err(pp->dev, "irq domain init failed\n");
476 for (i = 0; i < MAX_MSI_IRQS; i++)
477 irq_create_mapping(pp->irq_domain, i);
480 if (pp->ops->host_init)
481 pp->ops->host_init(pp);
483 dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0);
485 /* program correct class for RC */
486 dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI);
488 dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val);
489 val |= PORT_LOGIC_SPEED_CHANGE;
490 dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val);
492 dw_pci.nr_controllers = 1;
493 dw_pci.private_data = (void **)&pp;
495 pci_common_init(&dw_pci);
496 pci_assign_unassigned_resources();
497 #ifdef CONFIG_PCI_DOMAINS
504 static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev)
506 /* Program viewport 0 : OUTBOUND : CFG0 */
507 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
509 dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE);
510 dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE);
511 dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_size - 1,
513 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
514 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
515 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1);
516 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
519 static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev)
521 /* Program viewport 1 : OUTBOUND : CFG1 */
522 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
524 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1);
525 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
526 dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE);
527 dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE);
528 dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1,
530 dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET);
531 dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET);
534 static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp)
536 /* Program viewport 0 : OUTBOUND : MEM */
537 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0,
539 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1);
540 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
541 dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE);
542 dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE);
543 dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1,
545 dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET);
546 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr),
547 PCIE_ATU_UPPER_TARGET);
550 static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp)
552 /* Program viewport 1 : OUTBOUND : IO */
553 dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1,
555 dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1);
556 dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2);
557 dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE);
558 dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE);
559 dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1,
561 dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET);
562 dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr),
563 PCIE_ATU_UPPER_TARGET);
566 static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus,
567 u32 devfn, int where, int size, u32 *val)
569 int ret = PCIBIOS_SUCCESSFUL;
572 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
573 PCIE_ATU_FUNC(PCI_FUNC(devfn));
574 address = where & ~0x3;
576 if (bus->parent->number == pp->root_bus_nr) {
577 dw_pcie_prog_viewport_cfg0(pp, busdev);
578 ret = dw_pcie_cfg_read(pp->va_cfg0_base + address, where, size,
580 dw_pcie_prog_viewport_mem_outbound(pp);
582 dw_pcie_prog_viewport_cfg1(pp, busdev);
583 ret = dw_pcie_cfg_read(pp->va_cfg1_base + address, where, size,
585 dw_pcie_prog_viewport_io_outbound(pp);
591 static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
592 u32 devfn, int where, int size, u32 val)
594 int ret = PCIBIOS_SUCCESSFUL;
597 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
598 PCIE_ATU_FUNC(PCI_FUNC(devfn));
599 address = where & ~0x3;
601 if (bus->parent->number == pp->root_bus_nr) {
602 dw_pcie_prog_viewport_cfg0(pp, busdev);
603 ret = dw_pcie_cfg_write(pp->va_cfg0_base + address, where, size,
605 dw_pcie_prog_viewport_mem_outbound(pp);
607 dw_pcie_prog_viewport_cfg1(pp, busdev);
608 ret = dw_pcie_cfg_write(pp->va_cfg1_base + address, where, size,
610 dw_pcie_prog_viewport_io_outbound(pp);
616 static int dw_pcie_valid_config(struct pcie_port *pp,
617 struct pci_bus *bus, int dev)
619 /* If there is no link, then there is no device */
620 if (bus->number != pp->root_bus_nr) {
621 if (!dw_pcie_link_up(pp))
625 /* access only one slot on each root port */
626 if (bus->number == pp->root_bus_nr && dev > 0)
630 * do not read more than one device on the bus directly attached
631 * to RC's (Virtual Bridge's) DS side.
633 if (bus->primary == pp->root_bus_nr && dev > 0)
639 static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
642 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
651 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
653 return PCIBIOS_DEVICE_NOT_FOUND;
656 spin_lock_irqsave(&pp->conf_lock, flags);
657 if (bus->number != pp->root_bus_nr)
658 ret = dw_pcie_rd_other_conf(pp, bus, devfn,
661 ret = dw_pcie_rd_own_conf(pp, where, size, val);
662 spin_unlock_irqrestore(&pp->conf_lock, flags);
667 static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
668 int where, int size, u32 val)
670 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
679 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
680 return PCIBIOS_DEVICE_NOT_FOUND;
682 spin_lock_irqsave(&pp->conf_lock, flags);
683 if (bus->number != pp->root_bus_nr)
684 ret = dw_pcie_wr_other_conf(pp, bus, devfn,
687 ret = dw_pcie_wr_own_conf(pp, where, size, val);
688 spin_unlock_irqrestore(&pp->conf_lock, flags);
693 static struct pci_ops dw_pcie_ops = {
694 .read = dw_pcie_rd_conf,
695 .write = dw_pcie_wr_conf,
698 static int dw_pcie_setup(int nr, struct pci_sys_data *sys)
700 struct pcie_port *pp;
702 pp = sys_to_pcie(sys);
707 if (global_io_offset < SZ_1M && pp->config.io_size > 0) {
708 sys->io_offset = global_io_offset - pp->config.io_bus_addr;
709 pci_ioremap_io(global_io_offset, pp->io_base);
710 global_io_offset += SZ_64K;
711 pci_add_resource_offset(&sys->resources, &pp->io,
715 sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr;
716 pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset);
721 static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys)
724 struct pcie_port *pp = sys_to_pcie(sys);
727 pp->root_bus_nr = sys->busnr;
728 bus = pci_scan_root_bus(NULL, sys->busnr, &dw_pcie_ops,
729 sys, &sys->resources);
738 static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin)
740 struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata);
745 static void dw_pcie_add_bus(struct pci_bus *bus)
747 if (IS_ENABLED(CONFIG_PCI_MSI)) {
748 struct pcie_port *pp = sys_to_pcie(bus->sysdata);
750 dw_pcie_msi_chip.dev = pp->dev;
751 bus->msi = &dw_pcie_msi_chip;
755 static struct hw_pci dw_pci = {
756 .setup = dw_pcie_setup,
757 .scan = dw_pcie_scan_bus,
758 .map_irq = dw_pcie_map_irq,
759 .add_bus = dw_pcie_add_bus,
762 void dw_pcie_setup_rc(struct pcie_port *pp)
764 struct pcie_port_info *config = &pp->config;
769 /* set the number of lines as 4 */
770 dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val);
771 val &= ~PORT_LINK_MODE_MASK;
774 val |= PORT_LINK_MODE_1_LANES;
777 val |= PORT_LINK_MODE_2_LANES;
780 val |= PORT_LINK_MODE_4_LANES;
783 dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
785 /* set link width speed control register */
786 dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val);
787 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
790 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
793 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
796 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
799 dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
802 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
803 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_1);
805 /* setup interrupt pins */
806 dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val);
809 dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
811 /* setup bus numbers */
812 dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val);
815 dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
817 /* setup memory base, memory limit */
818 membase = ((u32)pp->mem_base & 0xfff00000) >> 16;
819 memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000;
820 val = memlimit | membase;
821 dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE);
823 /* setup command register */
824 dw_pcie_readl_rc(pp, PCI_COMMAND, &val);
826 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
827 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
828 dw_pcie_writel_rc(pp, val, PCI_COMMAND);
831 MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
832 MODULE_DESCRIPTION("Designware PCIe host controller driver");
833 MODULE_LICENSE("GPL v2");