Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 1 | /* |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 2 | * Synopsys Designware PCIe host controller driver |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 3 | * |
| 4 | * Copyright (C) 2013 Samsung Electronics Co., Ltd. |
| 5 | * http://www.samsung.com |
| 6 | * |
| 7 | * Author: Jingoo Han <jg1.han@samsung.com> |
| 8 | * |
| 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. |
| 12 | */ |
| 13 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 14 | #include <linux/irq.h> |
| 15 | #include <linux/irqdomain.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 16 | #include <linux/kernel.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 17 | #include <linux/module.h> |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 18 | #include <linux/msi.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 19 | #include <linux/of_address.h> |
Lucas Stach | 804f57b | 2014-03-05 14:25:51 +0100 | [diff] [blame] | 20 | #include <linux/of_pci.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 21 | #include <linux/pci.h> |
| 22 | #include <linux/pci_regs.h> |
Kishon Vijay Abraham I | 4dd964d | 2014-07-17 14:30:40 +0530 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 24 | #include <linux/types.h> |
Joao Pinto | 886bc5c | 2016-03-10 14:44:35 -0600 | [diff] [blame] | 25 | #include <linux/delay.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 26 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 27 | #include "pcie-designware.h" |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 28 | |
Joao Pinto | c388de1 | 2016-08-10 11:02:38 +0100 | [diff] [blame] | 29 | /* Parameters for the waiting for link up routine */ |
| 30 | #define LINK_WAIT_MAX_RETRIES 10 |
| 31 | #define LINK_WAIT_USLEEP_MIN 90000 |
| 32 | #define LINK_WAIT_USLEEP_MAX 100000 |
| 33 | |
Joao Pinto | d8bbeb3 | 2016-08-17 13:26:07 -0500 | [diff] [blame] | 34 | /* Parameters for the waiting for iATU enabled routine */ |
| 35 | #define LINK_WAIT_MAX_IATU_RETRIES 5 |
| 36 | #define LINK_WAIT_IATU_MIN 9000 |
| 37 | #define LINK_WAIT_IATU_MAX 10000 |
| 38 | |
| 39 | /* Synopsys-specific PCIe configuration registers */ |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 40 | #define PCIE_PORT_LINK_CONTROL 0x710 |
| 41 | #define PORT_LINK_MODE_MASK (0x3f << 16) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 42 | #define PORT_LINK_MODE_1_LANES (0x1 << 16) |
| 43 | #define PORT_LINK_MODE_2_LANES (0x3 << 16) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 44 | #define PORT_LINK_MODE_4_LANES (0x7 << 16) |
Zhou Wang | 5b0f073 | 2015-05-13 14:44:34 +0800 | [diff] [blame] | 45 | #define PORT_LINK_MODE_8_LANES (0xf << 16) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 46 | |
| 47 | #define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C |
| 48 | #define PORT_LOGIC_SPEED_CHANGE (0x1 << 17) |
Zhou Wang | ed8b472 | 2015-08-26 11:17:34 +0800 | [diff] [blame] | 49 | #define PORT_LOGIC_LINK_WIDTH_MASK (0x1f << 8) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 50 | #define PORT_LOGIC_LINK_WIDTH_1_LANES (0x1 << 8) |
| 51 | #define PORT_LOGIC_LINK_WIDTH_2_LANES (0x2 << 8) |
| 52 | #define PORT_LOGIC_LINK_WIDTH_4_LANES (0x4 << 8) |
Zhou Wang | 5b0f073 | 2015-05-13 14:44:34 +0800 | [diff] [blame] | 53 | #define PORT_LOGIC_LINK_WIDTH_8_LANES (0x8 << 8) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 54 | |
| 55 | #define PCIE_MSI_ADDR_LO 0x820 |
| 56 | #define PCIE_MSI_ADDR_HI 0x824 |
| 57 | #define PCIE_MSI_INTR0_ENABLE 0x828 |
| 58 | #define PCIE_MSI_INTR0_MASK 0x82C |
| 59 | #define PCIE_MSI_INTR0_STATUS 0x830 |
| 60 | |
| 61 | #define PCIE_ATU_VIEWPORT 0x900 |
| 62 | #define PCIE_ATU_REGION_INBOUND (0x1 << 31) |
| 63 | #define PCIE_ATU_REGION_OUTBOUND (0x0 << 31) |
| 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 |
| 82 | |
Joao Pinto | a0601a4 | 2016-08-10 11:02:39 +0100 | [diff] [blame] | 83 | /* |
| 84 | * iATU Unroll-specific register definitions |
| 85 | * From 4.80 core version the address translation will be made by unroll |
| 86 | */ |
| 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 |
| 94 | |
| 95 | /* Register address builder */ |
| 96 | #define PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(region) ((0x3 << 20) | (region << 9)) |
| 97 | |
Joao Pinto | dac29e6 | 2016-03-10 14:44:44 -0600 | [diff] [blame] | 98 | /* PCIe Port Logic registers */ |
| 99 | #define PLR_OFFSET 0x700 |
| 100 | #define PCIE_PHY_DEBUG_R1 (PLR_OFFSET + 0x2c) |
Jisheng Zhang | 01c0767 | 2016-08-17 15:57:37 -0500 | [diff] [blame^] | 101 | #define PCIE_PHY_DEBUG_R1_LINK_UP (0x1 << 4) |
| 102 | #define PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING (0x1 << 29) |
Joao Pinto | dac29e6 | 2016-03-10 14:44:44 -0600 | [diff] [blame] | 103 | |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 104 | static struct pci_ops dw_pcie_ops; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 105 | |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 106 | int dw_pcie_cfg_read(void __iomem *addr, int size, u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 107 | { |
Gabriele Paoloni | b6b18f5 | 2015-10-08 14:27:53 -0500 | [diff] [blame] | 108 | if ((uintptr_t)addr & (size - 1)) { |
| 109 | *val = 0; |
| 110 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 111 | } |
| 112 | |
Gabriele Paoloni | c003ca9 | 2015-10-08 14:27:43 -0500 | [diff] [blame] | 113 | if (size == 4) |
| 114 | *val = readl(addr); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 115 | else if (size == 2) |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 116 | *val = readw(addr); |
Gabriele Paoloni | c003ca9 | 2015-10-08 14:27:43 -0500 | [diff] [blame] | 117 | else if (size == 1) |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 118 | *val = readb(addr); |
Gabriele Paoloni | c003ca9 | 2015-10-08 14:27:43 -0500 | [diff] [blame] | 119 | else { |
| 120 | *val = 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 121 | return PCIBIOS_BAD_REGISTER_NUMBER; |
Gabriele Paoloni | c003ca9 | 2015-10-08 14:27:43 -0500 | [diff] [blame] | 122 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 123 | |
| 124 | return PCIBIOS_SUCCESSFUL; |
| 125 | } |
| 126 | |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 127 | int dw_pcie_cfg_write(void __iomem *addr, int size, u32 val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 128 | { |
Gabriele Paoloni | b6b18f5 | 2015-10-08 14:27:53 -0500 | [diff] [blame] | 129 | if ((uintptr_t)addr & (size - 1)) |
| 130 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 131 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 132 | if (size == 4) |
| 133 | writel(val, addr); |
| 134 | else if (size == 2) |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 135 | writew(val, addr); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 136 | else if (size == 1) |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 137 | writeb(val, addr); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 138 | else |
| 139 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 140 | |
| 141 | return PCIBIOS_SUCCESSFUL; |
| 142 | } |
| 143 | |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 144 | static inline u32 dw_pcie_readl_rc(struct pcie_port *pp, u32 reg) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 145 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 146 | if (pp->ops->readl_rc) |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 147 | return pp->ops->readl_rc(pp, pp->dbi_base + reg); |
| 148 | |
| 149 | return readl(pp->dbi_base + reg); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 150 | } |
| 151 | |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 152 | static inline void dw_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 153 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 154 | if (pp->ops->writel_rc) |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 155 | pp->ops->writel_rc(pp, val, pp->dbi_base + reg); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 156 | else |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 157 | writel(val, pp->dbi_base + reg); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 158 | } |
| 159 | |
Joao Pinto | a0601a4 | 2016-08-10 11:02:39 +0100 | [diff] [blame] | 160 | static inline u32 dw_pcie_readl_unroll(struct pcie_port *pp, u32 index, u32 reg) |
| 161 | { |
| 162 | u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index); |
| 163 | |
| 164 | if (pp->ops->readl_rc) |
| 165 | return pp->ops->readl_rc(pp, pp->dbi_base + offset + reg); |
| 166 | |
| 167 | return readl(pp->dbi_base + offset + reg); |
| 168 | } |
| 169 | |
| 170 | static inline void dw_pcie_writel_unroll(struct pcie_port *pp, u32 index, |
| 171 | u32 val, u32 reg) |
| 172 | { |
| 173 | u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index); |
| 174 | |
| 175 | if (pp->ops->writel_rc) |
| 176 | pp->ops->writel_rc(pp, val, pp->dbi_base + offset + reg); |
| 177 | else |
| 178 | writel(val, pp->dbi_base + offset + reg); |
| 179 | } |
| 180 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 181 | static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size, |
| 182 | u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 183 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 184 | if (pp->ops->rd_own_conf) |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 185 | return pp->ops->rd_own_conf(pp, where, size, val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 186 | |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 187 | return dw_pcie_cfg_read(pp->dbi_base + where, size, val); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 188 | } |
| 189 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 190 | static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size, |
| 191 | u32 val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 192 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 193 | if (pp->ops->wr_own_conf) |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 194 | return pp->ops->wr_own_conf(pp, where, size, val); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 195 | |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 196 | return dw_pcie_cfg_write(pp->dbi_base + where, size, val); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 197 | } |
| 198 | |
Jisheng Zhang | 63503c8 | 2015-04-30 16:22:28 +0800 | [diff] [blame] | 199 | static void dw_pcie_prog_outbound_atu(struct pcie_port *pp, int index, |
| 200 | int type, u64 cpu_addr, u64 pci_addr, u32 size) |
| 201 | { |
Joao Pinto | d8bbeb3 | 2016-08-17 13:26:07 -0500 | [diff] [blame] | 202 | u32 retries, val; |
Stanimir Varbanov | 17209df | 2015-12-18 14:38:55 +0200 | [diff] [blame] | 203 | |
Joao Pinto | a0601a4 | 2016-08-10 11:02:39 +0100 | [diff] [blame] | 204 | if (pp->iatu_unroll_enabled) { |
| 205 | dw_pcie_writel_unroll(pp, index, |
| 206 | lower_32_bits(cpu_addr), PCIE_ATU_UNR_LOWER_BASE); |
| 207 | dw_pcie_writel_unroll(pp, index, |
| 208 | upper_32_bits(cpu_addr), PCIE_ATU_UNR_UPPER_BASE); |
| 209 | dw_pcie_writel_unroll(pp, index, |
| 210 | lower_32_bits(cpu_addr + size - 1), PCIE_ATU_UNR_LIMIT); |
| 211 | dw_pcie_writel_unroll(pp, index, |
| 212 | lower_32_bits(pci_addr), PCIE_ATU_UNR_LOWER_TARGET); |
| 213 | dw_pcie_writel_unroll(pp, index, |
| 214 | upper_32_bits(pci_addr), PCIE_ATU_UNR_UPPER_TARGET); |
| 215 | dw_pcie_writel_unroll(pp, index, |
| 216 | type, PCIE_ATU_UNR_REGION_CTRL1); |
| 217 | dw_pcie_writel_unroll(pp, index, |
| 218 | PCIE_ATU_ENABLE, PCIE_ATU_UNR_REGION_CTRL2); |
| 219 | } else { |
| 220 | dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | index, |
| 221 | PCIE_ATU_VIEWPORT); |
| 222 | dw_pcie_writel_rc(pp, lower_32_bits(cpu_addr), |
| 223 | PCIE_ATU_LOWER_BASE); |
| 224 | dw_pcie_writel_rc(pp, upper_32_bits(cpu_addr), |
| 225 | PCIE_ATU_UPPER_BASE); |
| 226 | dw_pcie_writel_rc(pp, lower_32_bits(cpu_addr + size - 1), |
| 227 | PCIE_ATU_LIMIT); |
| 228 | dw_pcie_writel_rc(pp, lower_32_bits(pci_addr), |
| 229 | PCIE_ATU_LOWER_TARGET); |
| 230 | dw_pcie_writel_rc(pp, upper_32_bits(pci_addr), |
| 231 | PCIE_ATU_UPPER_TARGET); |
| 232 | dw_pcie_writel_rc(pp, type, PCIE_ATU_CR1); |
| 233 | dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2); |
| 234 | } |
Stanimir Varbanov | 17209df | 2015-12-18 14:38:55 +0200 | [diff] [blame] | 235 | |
| 236 | /* |
| 237 | * Make sure ATU enable takes effect before any subsequent config |
| 238 | * and I/O accesses. |
| 239 | */ |
Joao Pinto | d8bbeb3 | 2016-08-17 13:26:07 -0500 | [diff] [blame] | 240 | for (retries = 0; retries < LINK_WAIT_MAX_IATU_RETRIES; retries++) { |
Joao Pinto | a0601a4 | 2016-08-10 11:02:39 +0100 | [diff] [blame] | 241 | if (pp->iatu_unroll_enabled) |
| 242 | val = dw_pcie_readl_unroll(pp, index, |
| 243 | PCIE_ATU_UNR_REGION_CTRL2); |
| 244 | else |
| 245 | val = dw_pcie_readl_rc(pp, PCIE_ATU_CR2); |
| 246 | |
Joao Pinto | d8bbeb3 | 2016-08-17 13:26:07 -0500 | [diff] [blame] | 247 | if (val == PCIE_ATU_ENABLE) |
| 248 | return; |
| 249 | |
| 250 | usleep_range(LINK_WAIT_IATU_MIN, LINK_WAIT_IATU_MAX); |
| 251 | } |
| 252 | dev_err(pp->dev, "iATU is not being enabled\n"); |
Jisheng Zhang | 63503c8 | 2015-04-30 16:22:28 +0800 | [diff] [blame] | 253 | } |
| 254 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 255 | static struct irq_chip dw_msi_irq_chip = { |
| 256 | .name = "PCI-MSI", |
Thomas Gleixner | 280510f | 2014-11-23 12:23:20 +0100 | [diff] [blame] | 257 | .irq_enable = pci_msi_unmask_irq, |
| 258 | .irq_disable = pci_msi_mask_irq, |
| 259 | .irq_mask = pci_msi_mask_irq, |
| 260 | .irq_unmask = pci_msi_unmask_irq, |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 261 | }; |
| 262 | |
| 263 | /* MSI int handler */ |
Lucas Stach | 7f4f16e | 2014-03-28 17:52:58 +0100 | [diff] [blame] | 264 | irqreturn_t dw_handle_msi_irq(struct pcie_port *pp) |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 265 | { |
| 266 | unsigned long val; |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 267 | int i, pos, irq; |
Lucas Stach | 7f4f16e | 2014-03-28 17:52:58 +0100 | [diff] [blame] | 268 | irqreturn_t ret = IRQ_NONE; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 269 | |
| 270 | for (i = 0; i < MAX_MSI_CTRLS; i++) { |
| 271 | dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4, |
| 272 | (u32 *)&val); |
| 273 | if (val) { |
Lucas Stach | 7f4f16e | 2014-03-28 17:52:58 +0100 | [diff] [blame] | 274 | ret = IRQ_HANDLED; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 275 | pos = 0; |
| 276 | while ((pos = find_next_bit(&val, 32, pos)) != 32) { |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 277 | irq = irq_find_mapping(pp->irq_domain, |
| 278 | i * 32 + pos); |
Harro Haan | ca16589 | 2013-12-12 19:29:03 +0100 | [diff] [blame] | 279 | dw_pcie_wr_own_conf(pp, |
| 280 | PCIE_MSI_INTR0_STATUS + i * 12, |
| 281 | 4, 1 << pos); |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 282 | generic_handle_irq(irq); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 283 | pos++; |
| 284 | } |
| 285 | } |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 286 | } |
Lucas Stach | 7f4f16e | 2014-03-28 17:52:58 +0100 | [diff] [blame] | 287 | |
| 288 | return ret; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 289 | } |
| 290 | |
| 291 | void dw_pcie_msi_init(struct pcie_port *pp) |
| 292 | { |
Lucas Stach | c8947fb | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 293 | u64 msi_target; |
| 294 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 295 | pp->msi_data = __get_free_pages(GFP_KERNEL, 0); |
Lucas Stach | c8947fb | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 296 | msi_target = virt_to_phys((void *)pp->msi_data); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 297 | |
| 298 | /* program the msi_data */ |
| 299 | dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4, |
Lucas Stach | c8947fb | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 300 | (u32)(msi_target & 0xffffffff)); |
| 301 | dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, |
| 302 | (u32)(msi_target >> 32 & 0xffffffff)); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 303 | } |
| 304 | |
Murali Karicheri | 2f37c5a | 2014-07-21 12:58:42 -0400 | [diff] [blame] | 305 | static void dw_pcie_msi_clear_irq(struct pcie_port *pp, int irq) |
| 306 | { |
| 307 | unsigned int res, bit, val; |
| 308 | |
| 309 | res = (irq / 32) * 12; |
| 310 | bit = irq % 32; |
| 311 | dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val); |
| 312 | val &= ~(1 << bit); |
| 313 | dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val); |
| 314 | } |
| 315 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 316 | static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base, |
Jingoo Han | 58275f2f | 2013-12-27 09:30:25 +0900 | [diff] [blame] | 317 | unsigned int nvec, unsigned int pos) |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 318 | { |
Murali Karicheri | 2f37c5a | 2014-07-21 12:58:42 -0400 | [diff] [blame] | 319 | unsigned int i; |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 320 | |
Bjorn Helgaas | 0b8cfb6 | 2013-12-09 15:11:25 -0700 | [diff] [blame] | 321 | for (i = 0; i < nvec; i++) { |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 322 | irq_set_msi_desc_off(irq_base, i, NULL); |
Jingoo Han | 58275f2f | 2013-12-27 09:30:25 +0900 | [diff] [blame] | 323 | /* Disable corresponding interrupt on MSI controller */ |
Murali Karicheri | 2f37c5a | 2014-07-21 12:58:42 -0400 | [diff] [blame] | 324 | if (pp->ops->msi_clear_irq) |
| 325 | pp->ops->msi_clear_irq(pp, pos + i); |
| 326 | else |
| 327 | dw_pcie_msi_clear_irq(pp, pos + i); |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 328 | } |
Lucas Stach | c8df6ac | 2014-09-30 18:36:27 +0200 | [diff] [blame] | 329 | |
| 330 | bitmap_release_region(pp->msi_irq_in_use, pos, order_base_2(nvec)); |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 331 | } |
| 332 | |
Murali Karicheri | 2f37c5a | 2014-07-21 12:58:42 -0400 | [diff] [blame] | 333 | static void dw_pcie_msi_set_irq(struct pcie_port *pp, int irq) |
| 334 | { |
| 335 | unsigned int res, bit, val; |
| 336 | |
| 337 | res = (irq / 32) * 12; |
| 338 | bit = irq % 32; |
| 339 | dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val); |
| 340 | val |= 1 << bit; |
| 341 | dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val); |
| 342 | } |
| 343 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 344 | static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos) |
| 345 | { |
Lucas Stach | c8df6ac | 2014-09-30 18:36:27 +0200 | [diff] [blame] | 346 | int irq, pos0, i; |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 347 | struct pcie_port *pp = (struct pcie_port *) msi_desc_to_pci_sysdata(desc); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 348 | |
Lucas Stach | c8df6ac | 2014-09-30 18:36:27 +0200 | [diff] [blame] | 349 | pos0 = bitmap_find_free_region(pp->msi_irq_in_use, MAX_MSI_IRQS, |
| 350 | order_base_2(no_irqs)); |
| 351 | if (pos0 < 0) |
| 352 | goto no_valid_irq; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 353 | |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 354 | irq = irq_find_mapping(pp->irq_domain, pos0); |
| 355 | if (!irq) |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 356 | goto no_valid_irq; |
| 357 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 358 | /* |
| 359 | * irq_create_mapping (called from dw_pcie_host_init) pre-allocates |
| 360 | * descs so there is no need to allocate descs here. We can therefore |
| 361 | * assume that if irq_find_mapping above returns non-zero, then the |
| 362 | * descs are also successfully allocated. |
| 363 | */ |
| 364 | |
Bjorn Helgaas | 0b8cfb6 | 2013-12-09 15:11:25 -0700 | [diff] [blame] | 365 | for (i = 0; i < no_irqs; i++) { |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 366 | if (irq_set_msi_desc_off(irq, i, desc) != 0) { |
| 367 | clear_irq_range(pp, irq, i, pos0); |
| 368 | goto no_valid_irq; |
| 369 | } |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 370 | /*Enable corresponding interrupt in MSI interrupt controller */ |
Murali Karicheri | 2f37c5a | 2014-07-21 12:58:42 -0400 | [diff] [blame] | 371 | if (pp->ops->msi_set_irq) |
| 372 | pp->ops->msi_set_irq(pp, pos0 + i); |
| 373 | else |
| 374 | dw_pcie_msi_set_irq(pp, pos0 + i); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 375 | } |
| 376 | |
| 377 | *pos = pos0; |
Lucas Stach | 7970737 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 378 | desc->nvec_used = no_irqs; |
| 379 | desc->msi_attrib.multiple = order_base_2(no_irqs); |
| 380 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 381 | return irq; |
| 382 | |
| 383 | no_valid_irq: |
| 384 | *pos = pos0; |
| 385 | return -ENOSPC; |
| 386 | } |
| 387 | |
Lucas Stach | ea643e1 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 388 | static void dw_msi_setup_msg(struct pcie_port *pp, unsigned int irq, u32 pos) |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 389 | { |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 390 | struct msi_msg msg; |
Lucas Stach | c8947fb | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 391 | u64 msi_target; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 392 | |
Minghuan Lian | 450e344 | 2014-09-23 22:28:58 +0800 | [diff] [blame] | 393 | if (pp->ops->get_msi_addr) |
Lucas Stach | c8947fb | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 394 | msi_target = pp->ops->get_msi_addr(pp); |
Murali Karicheri | 2f37c5a | 2014-07-21 12:58:42 -0400 | [diff] [blame] | 395 | else |
Lucas Stach | c8947fb | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 396 | msi_target = virt_to_phys((void *)pp->msi_data); |
| 397 | |
| 398 | msg.address_lo = (u32)(msi_target & 0xffffffff); |
| 399 | msg.address_hi = (u32)(msi_target >> 32 & 0xffffffff); |
Minghuan Lian | 24832b4 | 2014-09-23 22:28:59 +0800 | [diff] [blame] | 400 | |
| 401 | if (pp->ops->get_msi_data) |
| 402 | msg.data = pp->ops->get_msi_data(pp, pos); |
| 403 | else |
| 404 | msg.data = pos; |
| 405 | |
Jiang Liu | 83a1891 | 2014-11-09 23:10:34 +0800 | [diff] [blame] | 406 | pci_write_msi_msg(irq, &msg); |
Lucas Stach | ea643e1 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 407 | } |
| 408 | |
| 409 | static int dw_msi_setup_irq(struct msi_controller *chip, struct pci_dev *pdev, |
| 410 | struct msi_desc *desc) |
| 411 | { |
| 412 | int irq, pos; |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 413 | struct pcie_port *pp = pdev->bus->sysdata; |
Lucas Stach | ea643e1 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 414 | |
| 415 | if (desc->msi_attrib.is_msix) |
| 416 | return -EINVAL; |
| 417 | |
| 418 | irq = assign_irq(1, desc, &pos); |
| 419 | if (irq < 0) |
| 420 | return irq; |
| 421 | |
| 422 | dw_msi_setup_msg(pp, irq, pos); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 423 | |
| 424 | return 0; |
| 425 | } |
| 426 | |
Lucas Stach | 7970737 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 427 | static int dw_msi_setup_irqs(struct msi_controller *chip, struct pci_dev *pdev, |
| 428 | int nvec, int type) |
| 429 | { |
| 430 | #ifdef CONFIG_PCI_MSI |
| 431 | int irq, pos; |
| 432 | struct msi_desc *desc; |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 433 | struct pcie_port *pp = pdev->bus->sysdata; |
Lucas Stach | 7970737 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 434 | |
| 435 | /* MSI-X interrupts are not supported */ |
| 436 | if (type == PCI_CAP_ID_MSIX) |
| 437 | return -EINVAL; |
| 438 | |
| 439 | WARN_ON(!list_is_singular(&pdev->dev.msi_list)); |
| 440 | desc = list_entry(pdev->dev.msi_list.next, struct msi_desc, list); |
| 441 | |
| 442 | irq = assign_irq(nvec, desc, &pos); |
| 443 | if (irq < 0) |
| 444 | return irq; |
| 445 | |
| 446 | dw_msi_setup_msg(pp, irq, pos); |
| 447 | |
| 448 | return 0; |
| 449 | #else |
| 450 | return -EINVAL; |
| 451 | #endif |
| 452 | } |
| 453 | |
Yijing Wang | c2791b8 | 2014-11-11 17:45:45 -0700 | [diff] [blame] | 454 | static void dw_msi_teardown_irq(struct msi_controller *chip, unsigned int irq) |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 455 | { |
Lucas Stach | 91f8ae8 | 2014-09-30 18:36:26 +0200 | [diff] [blame] | 456 | struct irq_data *data = irq_get_irq_data(irq); |
Jiang Liu | c391f26 | 2015-06-01 16:05:41 +0800 | [diff] [blame] | 457 | struct msi_desc *msi = irq_data_get_msi_desc(data); |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 458 | struct pcie_port *pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi); |
Lucas Stach | 91f8ae8 | 2014-09-30 18:36:26 +0200 | [diff] [blame] | 459 | |
| 460 | clear_irq_range(pp, irq, 1, data->hwirq); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 461 | } |
| 462 | |
Yijing Wang | c2791b8 | 2014-11-11 17:45:45 -0700 | [diff] [blame] | 463 | static struct msi_controller dw_pcie_msi_chip = { |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 464 | .setup_irq = dw_msi_setup_irq, |
Lucas Stach | 7970737 | 2015-09-18 13:58:35 -0500 | [diff] [blame] | 465 | .setup_irqs = dw_msi_setup_irqs, |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 466 | .teardown_irq = dw_msi_teardown_irq, |
| 467 | }; |
| 468 | |
Joao Pinto | 886bc5c | 2016-03-10 14:44:35 -0600 | [diff] [blame] | 469 | int dw_pcie_wait_for_link(struct pcie_port *pp) |
| 470 | { |
| 471 | int retries; |
| 472 | |
| 473 | /* check if the link is up or not */ |
| 474 | for (retries = 0; retries < LINK_WAIT_MAX_RETRIES; retries++) { |
| 475 | if (dw_pcie_link_up(pp)) { |
| 476 | dev_info(pp->dev, "link up\n"); |
| 477 | return 0; |
| 478 | } |
| 479 | usleep_range(LINK_WAIT_USLEEP_MIN, LINK_WAIT_USLEEP_MAX); |
| 480 | } |
| 481 | |
| 482 | dev_err(pp->dev, "phy link never came up\n"); |
| 483 | |
| 484 | return -ETIMEDOUT; |
| 485 | } |
| 486 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 487 | int dw_pcie_link_up(struct pcie_port *pp) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 488 | { |
Joao Pinto | dac29e6 | 2016-03-10 14:44:44 -0600 | [diff] [blame] | 489 | u32 val; |
| 490 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 491 | if (pp->ops->link_up) |
| 492 | return pp->ops->link_up(pp); |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 493 | |
Joao Pinto | dac29e6 | 2016-03-10 14:44:44 -0600 | [diff] [blame] | 494 | val = readl(pp->dbi_base + PCIE_PHY_DEBUG_R1); |
Jisheng Zhang | 01c0767 | 2016-08-17 15:57:37 -0500 | [diff] [blame^] | 495 | return ((val & PCIE_PHY_DEBUG_R1_LINK_UP) && |
| 496 | (!(val & PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING))); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 497 | } |
| 498 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 499 | static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq, |
| 500 | irq_hw_number_t hwirq) |
| 501 | { |
| 502 | irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq); |
| 503 | irq_set_chip_data(irq, domain->host_data); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 504 | |
| 505 | return 0; |
| 506 | } |
| 507 | |
| 508 | static const struct irq_domain_ops msi_domain_ops = { |
| 509 | .map = dw_pcie_msi_map, |
| 510 | }; |
| 511 | |
Joao Pinto | a0601a4 | 2016-08-10 11:02:39 +0100 | [diff] [blame] | 512 | static u8 dw_pcie_iatu_unroll_enabled(struct pcie_port *pp) |
| 513 | { |
| 514 | u32 val; |
| 515 | |
| 516 | val = dw_pcie_readl_rc(pp, PCIE_ATU_VIEWPORT); |
| 517 | if (val == 0xffffffff) |
| 518 | return 1; |
| 519 | |
| 520 | return 0; |
| 521 | } |
| 522 | |
Matwey V. Kornilov | a43f32d | 2015-02-19 20:41:48 +0300 | [diff] [blame] | 523 | int dw_pcie_host_init(struct pcie_port *pp) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 524 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 525 | struct device_node *np = pp->dev->of_node; |
Kishon Vijay Abraham I | 4dd964d | 2014-07-17 14:30:40 +0530 | [diff] [blame] | 526 | struct platform_device *pdev = to_platform_device(pp->dev); |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 527 | struct pci_bus *bus, *child; |
Kishon Vijay Abraham I | 4dd964d | 2014-07-17 14:30:40 +0530 | [diff] [blame] | 528 | struct resource *cfg_res; |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 529 | int i, ret; |
Zhou Wang | 0021d22 | 2015-10-29 19:57:06 -0500 | [diff] [blame] | 530 | LIST_HEAD(res); |
| 531 | struct resource_entry *win; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 532 | |
Kishon Vijay Abraham I | 4dd964d | 2014-07-17 14:30:40 +0530 | [diff] [blame] | 533 | cfg_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config"); |
| 534 | if (cfg_res) { |
Pratyush Anand | adf70fc | 2014-09-05 17:48:54 -0600 | [diff] [blame] | 535 | pp->cfg0_size = resource_size(cfg_res)/2; |
| 536 | pp->cfg1_size = resource_size(cfg_res)/2; |
Kishon Vijay Abraham I | 4dd964d | 2014-07-17 14:30:40 +0530 | [diff] [blame] | 537 | pp->cfg0_base = cfg_res->start; |
Pratyush Anand | adf70fc | 2014-09-05 17:48:54 -0600 | [diff] [blame] | 538 | pp->cfg1_base = cfg_res->start + pp->cfg0_size; |
Murali Karicheri | 0f41421 | 2015-07-21 17:54:11 -0400 | [diff] [blame] | 539 | } else if (!pp->va_cfg0_base) { |
Kishon Vijay Abraham I | 4dd964d | 2014-07-17 14:30:40 +0530 | [diff] [blame] | 540 | dev_err(pp->dev, "missing *config* reg space\n"); |
| 541 | } |
| 542 | |
Zhou Wang | 0021d22 | 2015-10-29 19:57:06 -0500 | [diff] [blame] | 543 | ret = of_pci_get_host_bridge_resources(np, 0, 0xff, &res, &pp->io_base); |
| 544 | if (ret) |
| 545 | return ret; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 546 | |
Bjorn Helgaas | 12722db | 2016-05-28 18:18:54 -0500 | [diff] [blame] | 547 | ret = devm_request_pci_bus_resources(&pdev->dev, &res); |
| 548 | if (ret) |
| 549 | goto error; |
| 550 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 551 | /* Get the I/O and memory ranges from DT */ |
Zhou Wang | 0021d22 | 2015-10-29 19:57:06 -0500 | [diff] [blame] | 552 | resource_list_for_each_entry(win, &res) { |
| 553 | switch (resource_type(win->res)) { |
| 554 | case IORESOURCE_IO: |
| 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; |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 559 | ret = pci_remap_iospace(pp->io, pp->io_base); |
Bjorn Helgaas | 7baf69c | 2016-05-28 18:48:11 -0500 | [diff] [blame] | 560 | if (ret) |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 561 | dev_warn(pp->dev, "error %d: failed to map resource %pR\n", |
| 562 | ret, pp->io); |
Zhou Wang | 0021d22 | 2015-10-29 19:57:06 -0500 | [diff] [blame] | 563 | break; |
| 564 | case IORESOURCE_MEM: |
| 565 | pp->mem = win->res; |
| 566 | pp->mem->name = "MEM"; |
| 567 | pp->mem_size = resource_size(pp->mem); |
| 568 | pp->mem_bus_addr = pp->mem->start - win->offset; |
| 569 | break; |
| 570 | case 0: |
| 571 | pp->cfg = win->res; |
| 572 | pp->cfg0_size = resource_size(pp->cfg)/2; |
| 573 | pp->cfg1_size = resource_size(pp->cfg)/2; |
| 574 | pp->cfg0_base = pp->cfg->start; |
| 575 | pp->cfg1_base = pp->cfg->start + pp->cfg0_size; |
| 576 | break; |
| 577 | case IORESOURCE_BUS: |
| 578 | pp->busn = win->res; |
| 579 | break; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 580 | } |
Lucas Stach | 4f2ebe0 | 2014-07-23 19:52:38 +0200 | [diff] [blame] | 581 | } |
| 582 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 583 | if (!pp->dbi_base) { |
Zhou Wang | 0021d22 | 2015-10-29 19:57:06 -0500 | [diff] [blame] | 584 | pp->dbi_base = devm_ioremap(pp->dev, pp->cfg->start, |
| 585 | resource_size(pp->cfg)); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 586 | if (!pp->dbi_base) { |
| 587 | dev_err(pp->dev, "error with ioremap\n"); |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 588 | ret = -ENOMEM; |
| 589 | goto error; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 590 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 591 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 592 | |
Zhou Wang | 0021d22 | 2015-10-29 19:57:06 -0500 | [diff] [blame] | 593 | pp->mem_base = pp->mem->start; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 594 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 595 | if (!pp->va_cfg0_base) { |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 596 | pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base, |
Pratyush Anand | adf70fc | 2014-09-05 17:48:54 -0600 | [diff] [blame] | 597 | pp->cfg0_size); |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 598 | if (!pp->va_cfg0_base) { |
| 599 | dev_err(pp->dev, "error with ioremap in function\n"); |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 600 | ret = -ENOMEM; |
| 601 | goto error; |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 602 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 603 | } |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 604 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 605 | if (!pp->va_cfg1_base) { |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 606 | pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base, |
Pratyush Anand | adf70fc | 2014-09-05 17:48:54 -0600 | [diff] [blame] | 607 | pp->cfg1_size); |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 608 | if (!pp->va_cfg1_base) { |
| 609 | dev_err(pp->dev, "error with ioremap\n"); |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 610 | ret = -ENOMEM; |
| 611 | goto error; |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 612 | } |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 613 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 614 | |
Gabriele Paoloni | 907fce0 | 2015-09-29 00:03:10 +0800 | [diff] [blame] | 615 | ret = of_property_read_u32(np, "num-lanes", &pp->lanes); |
| 616 | if (ret) |
| 617 | pp->lanes = 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 618 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 619 | if (IS_ENABLED(CONFIG_PCI_MSI)) { |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 620 | if (!pp->ops->msi_host_init) { |
| 621 | pp->irq_domain = irq_domain_add_linear(pp->dev->of_node, |
| 622 | MAX_MSI_IRQS, &msi_domain_ops, |
| 623 | &dw_pcie_msi_chip); |
| 624 | if (!pp->irq_domain) { |
| 625 | dev_err(pp->dev, "irq domain init failed\n"); |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 626 | ret = -ENXIO; |
| 627 | goto error; |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 628 | } |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 629 | |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 630 | for (i = 0; i < MAX_MSI_IRQS; i++) |
| 631 | irq_create_mapping(pp->irq_domain, i); |
| 632 | } else { |
| 633 | ret = pp->ops->msi_host_init(pp, &dw_pcie_msi_chip); |
| 634 | if (ret < 0) |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 635 | goto error; |
Murali Karicheri | b14a3d1 | 2014-07-23 14:54:51 -0400 | [diff] [blame] | 636 | } |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 637 | } |
| 638 | |
Joao Pinto | a0601a4 | 2016-08-10 11:02:39 +0100 | [diff] [blame] | 639 | pp->iatu_unroll_enabled = dw_pcie_iatu_unroll_enabled(pp); |
| 640 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 641 | if (pp->ops->host_init) |
| 642 | pp->ops->host_init(pp); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 643 | |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 644 | pp->root_bus_nr = pp->busn->start; |
| 645 | if (IS_ENABLED(CONFIG_PCI_MSI)) { |
| 646 | bus = pci_scan_root_bus_msi(pp->dev, pp->root_bus_nr, |
| 647 | &dw_pcie_ops, pp, &res, |
| 648 | &dw_pcie_msi_chip); |
| 649 | dw_pcie_msi_chip.dev = pp->dev; |
| 650 | } else |
| 651 | bus = pci_scan_root_bus(pp->dev, pp->root_bus_nr, &dw_pcie_ops, |
| 652 | pp, &res); |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 653 | if (!bus) { |
| 654 | ret = -ENOMEM; |
| 655 | goto error; |
| 656 | } |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 657 | |
| 658 | if (pp->ops->scan_bus) |
| 659 | pp->ops->scan_bus(pp); |
| 660 | |
| 661 | #ifdef CONFIG_ARM |
| 662 | /* support old dtbs that incorrectly describe IRQs */ |
| 663 | pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci); |
Yijing Wang | 0815f95 | 2014-11-11 15:38:07 -0700 | [diff] [blame] | 664 | #endif |
| 665 | |
Lorenzo Pieralisi | ed00c83 | 2016-01-29 11:29:32 +0000 | [diff] [blame] | 666 | pci_bus_size_bridges(bus); |
| 667 | pci_bus_assign_resources(bus); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 668 | |
Lorenzo Pieralisi | ed00c83 | 2016-01-29 11:29:32 +0000 | [diff] [blame] | 669 | list_for_each_entry(child, &bus->children, node) |
| 670 | pcie_bus_configure_settings(child); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 671 | |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 672 | pci_bus_add_devices(bus); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 673 | return 0; |
Bjorn Helgaas | 27d9cb7 | 2016-05-31 11:14:08 -0500 | [diff] [blame] | 674 | |
| 675 | error: |
| 676 | pci_free_resource_list(&res); |
| 677 | return ret; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 678 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 679 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 680 | static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus, |
| 681 | u32 devfn, int where, int size, u32 *val) |
| 682 | { |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 683 | int ret, type; |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 684 | u32 busdev, cfg_size; |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 685 | u64 cpu_addr; |
| 686 | void __iomem *va_cfg_base; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 687 | |
Bjorn Helgaas | 67de2dc | 2016-01-05 15:56:30 -0600 | [diff] [blame] | 688 | if (pp->ops->rd_other_conf) |
| 689 | return pp->ops->rd_other_conf(pp, bus, devfn, where, size, val); |
| 690 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 691 | busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) | |
| 692 | PCIE_ATU_FUNC(PCI_FUNC(devfn)); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 693 | |
| 694 | if (bus->parent->number == pp->root_bus_nr) { |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 695 | type = PCIE_ATU_TYPE_CFG0; |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 696 | cpu_addr = pp->cfg0_base; |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 697 | cfg_size = pp->cfg0_size; |
| 698 | va_cfg_base = pp->va_cfg0_base; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 699 | } else { |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 700 | type = PCIE_ATU_TYPE_CFG1; |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 701 | cpu_addr = pp->cfg1_base; |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 702 | cfg_size = pp->cfg1_size; |
| 703 | va_cfg_base = pp->va_cfg1_base; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 704 | } |
| 705 | |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 706 | dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0, |
| 707 | type, cpu_addr, |
| 708 | busdev, cfg_size); |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 709 | ret = dw_pcie_cfg_read(va_cfg_base + where, size, val); |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 710 | dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0, |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 711 | PCIE_ATU_TYPE_IO, pp->io_base, |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 712 | pp->io_bus_addr, pp->io_size); |
| 713 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 714 | return ret; |
| 715 | } |
| 716 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 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) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 719 | { |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 720 | int ret, type; |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 721 | u32 busdev, cfg_size; |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 722 | u64 cpu_addr; |
| 723 | void __iomem *va_cfg_base; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 724 | |
Bjorn Helgaas | 67de2dc | 2016-01-05 15:56:30 -0600 | [diff] [blame] | 725 | if (pp->ops->wr_other_conf) |
| 726 | return pp->ops->wr_other_conf(pp, bus, devfn, where, size, val); |
| 727 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 728 | busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) | |
| 729 | PCIE_ATU_FUNC(PCI_FUNC(devfn)); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 730 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 731 | if (bus->parent->number == pp->root_bus_nr) { |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 732 | type = PCIE_ATU_TYPE_CFG0; |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 733 | cpu_addr = pp->cfg0_base; |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 734 | cfg_size = pp->cfg0_size; |
| 735 | va_cfg_base = pp->va_cfg0_base; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 736 | } else { |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 737 | type = PCIE_ATU_TYPE_CFG1; |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 738 | cpu_addr = pp->cfg1_base; |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 739 | cfg_size = pp->cfg1_size; |
| 740 | va_cfg_base = pp->va_cfg1_base; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 741 | } |
| 742 | |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 743 | dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0, |
| 744 | type, cpu_addr, |
| 745 | busdev, cfg_size); |
Gabriele Paoloni | 4c45852 | 2015-10-08 14:27:48 -0500 | [diff] [blame] | 746 | ret = dw_pcie_cfg_write(va_cfg_base + where, size, val); |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 747 | dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0, |
Zhou Wang | 9cdce1c | 2015-10-29 19:56:58 -0500 | [diff] [blame] | 748 | PCIE_ATU_TYPE_IO, pp->io_base, |
Jisheng Zhang | 2d91b49 | 2015-04-30 16:22:29 +0800 | [diff] [blame] | 749 | pp->io_bus_addr, pp->io_size); |
| 750 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 751 | return ret; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 752 | } |
| 753 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 754 | static int dw_pcie_valid_config(struct pcie_port *pp, |
| 755 | struct pci_bus *bus, int dev) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 756 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 757 | /* If there is no link, then there is no device */ |
| 758 | if (bus->number != pp->root_bus_nr) { |
| 759 | if (!dw_pcie_link_up(pp)) |
| 760 | return 0; |
| 761 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 762 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 763 | /* access only one slot on each root port */ |
| 764 | if (bus->number == pp->root_bus_nr && dev > 0) |
| 765 | return 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 766 | |
| 767 | /* |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 768 | * do not read more than one device on the bus directly attached |
| 769 | * to RC's (Virtual Bridge's) DS side. |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 770 | */ |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 771 | if (bus->primary == pp->root_bus_nr && dev > 0) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 772 | return 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 773 | |
| 774 | return 1; |
| 775 | } |
| 776 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 777 | static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, |
| 778 | int size, u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 779 | { |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 780 | struct pcie_port *pp = bus->sysdata; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 781 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 782 | if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) { |
| 783 | *val = 0xffffffff; |
| 784 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 785 | } |
| 786 | |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 787 | if (bus->number == pp->root_bus_nr) |
| 788 | return dw_pcie_rd_own_conf(pp, where, size, val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 789 | |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 790 | return dw_pcie_rd_other_conf(pp, bus, devfn, where, size, val); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 791 | } |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 792 | |
| 793 | static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn, |
| 794 | int where, int size, u32 val) |
| 795 | { |
Zhou Wang | cbce790 | 2015-10-29 19:57:21 -0500 | [diff] [blame] | 796 | struct pcie_port *pp = bus->sysdata; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 797 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 798 | if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) |
| 799 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 800 | |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 801 | if (bus->number == pp->root_bus_nr) |
| 802 | return dw_pcie_wr_own_conf(pp, where, size, val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 803 | |
Bjorn Helgaas | 116a489 | 2016-01-05 15:48:11 -0600 | [diff] [blame] | 804 | return dw_pcie_wr_other_conf(pp, bus, devfn, where, size, val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 805 | } |
| 806 | |
| 807 | static struct pci_ops dw_pcie_ops = { |
| 808 | .read = dw_pcie_rd_conf, |
| 809 | .write = dw_pcie_wr_conf, |
| 810 | }; |
| 811 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 812 | void dw_pcie_setup_rc(struct pcie_port *pp) |
| 813 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 814 | u32 val; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 815 | |
Mohit Kumar | 66c5c34 | 2014-04-14 14:22:54 -0600 | [diff] [blame] | 816 | /* set the number of lanes */ |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 817 | val = dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 818 | val &= ~PORT_LINK_MODE_MASK; |
| 819 | switch (pp->lanes) { |
| 820 | case 1: |
| 821 | val |= PORT_LINK_MODE_1_LANES; |
| 822 | break; |
| 823 | case 2: |
| 824 | val |= PORT_LINK_MODE_2_LANES; |
| 825 | break; |
| 826 | case 4: |
| 827 | val |= PORT_LINK_MODE_4_LANES; |
| 828 | break; |
Zhou Wang | 5b0f073 | 2015-05-13 14:44:34 +0800 | [diff] [blame] | 829 | case 8: |
| 830 | val |= PORT_LINK_MODE_8_LANES; |
| 831 | break; |
Gabriele Paoloni | 907fce0 | 2015-09-29 00:03:10 +0800 | [diff] [blame] | 832 | default: |
| 833 | dev_err(pp->dev, "num-lanes %u: invalid value\n", pp->lanes); |
| 834 | return; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 835 | } |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 836 | dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 837 | |
| 838 | /* set link width speed control register */ |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 839 | val = dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 840 | val &= ~PORT_LOGIC_LINK_WIDTH_MASK; |
| 841 | switch (pp->lanes) { |
| 842 | case 1: |
| 843 | val |= PORT_LOGIC_LINK_WIDTH_1_LANES; |
| 844 | break; |
| 845 | case 2: |
| 846 | val |= PORT_LOGIC_LINK_WIDTH_2_LANES; |
| 847 | break; |
| 848 | case 4: |
| 849 | val |= PORT_LOGIC_LINK_WIDTH_4_LANES; |
| 850 | break; |
Zhou Wang | 5b0f073 | 2015-05-13 14:44:34 +0800 | [diff] [blame] | 851 | case 8: |
| 852 | val |= PORT_LOGIC_LINK_WIDTH_8_LANES; |
| 853 | break; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 854 | } |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 855 | dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 856 | |
| 857 | /* setup RC BARs */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 858 | dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0); |
Mohit Kumar | dbffdd6 | 2014-02-19 17:34:35 +0530 | [diff] [blame] | 859 | dw_pcie_writel_rc(pp, 0x00000000, PCI_BASE_ADDRESS_1); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 860 | |
| 861 | /* setup interrupt pins */ |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 862 | val = dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 863 | val &= 0xffff00ff; |
| 864 | val |= 0x00000100; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 865 | dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 866 | |
| 867 | /* setup bus numbers */ |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 868 | val = dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 869 | val &= 0xff000000; |
| 870 | val |= 0x00010100; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 871 | dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 872 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 873 | /* setup command register */ |
Bjorn Helgaas | 446fc23 | 2016-08-17 14:17:58 -0500 | [diff] [blame] | 874 | val = dw_pcie_readl_rc(pp, PCI_COMMAND); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 875 | val &= 0xffff0000; |
| 876 | val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | |
| 877 | PCI_COMMAND_MASTER | PCI_COMMAND_SERR; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 878 | dw_pcie_writel_rc(pp, val, PCI_COMMAND); |
Jisheng Zhang | 7e57fd1 | 2016-03-16 19:40:33 +0800 | [diff] [blame] | 879 | |
| 880 | /* |
| 881 | * If the platform provides ->rd_other_conf, it means the platform |
| 882 | * uses its own address translation component rather than ATU, so |
| 883 | * we should not program the ATU here. |
| 884 | */ |
| 885 | if (!pp->ops->rd_other_conf) |
| 886 | dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX1, |
| 887 | PCIE_ATU_TYPE_MEM, pp->mem_base, |
| 888 | pp->mem_bus_addr, pp->mem_size); |
| 889 | |
| 890 | dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0); |
| 891 | |
| 892 | /* program correct class for RC */ |
| 893 | dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI); |
| 894 | |
| 895 | dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val); |
| 896 | val |= PORT_LOGIC_SPEED_CHANGE; |
| 897 | dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 898 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 899 | |
| 900 | MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>"); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 901 | MODULE_DESCRIPTION("Designware PCIe host controller driver"); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 902 | MODULE_LICENSE("GPL v2"); |