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> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 20 | #include <linux/pci.h> |
| 21 | #include <linux/pci_regs.h> |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 22 | #include <linux/types.h> |
| 23 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 24 | #include "pcie-designware.h" |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 25 | |
| 26 | /* Synopsis specific PCIE configuration registers */ |
| 27 | #define PCIE_PORT_LINK_CONTROL 0x710 |
| 28 | #define PORT_LINK_MODE_MASK (0x3f << 16) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 29 | #define PORT_LINK_MODE_1_LANES (0x1 << 16) |
| 30 | #define PORT_LINK_MODE_2_LANES (0x3 << 16) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 31 | #define PORT_LINK_MODE_4_LANES (0x7 << 16) |
| 32 | |
| 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) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 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) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 39 | |
| 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 |
| 45 | |
| 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 |
| 67 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 68 | static struct hw_pci dw_pci; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 69 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 70 | static unsigned long global_io_offset; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 71 | |
| 72 | static inline struct pcie_port *sys_to_pcie(struct pci_sys_data *sys) |
| 73 | { |
| 74 | return sys->private_data; |
| 75 | } |
| 76 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 77 | int cfg_read(void __iomem *addr, int where, int size, u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 78 | { |
| 79 | *val = readl(addr); |
| 80 | |
| 81 | if (size == 1) |
| 82 | *val = (*val >> (8 * (where & 3))) & 0xff; |
| 83 | else if (size == 2) |
| 84 | *val = (*val >> (8 * (where & 3))) & 0xffff; |
| 85 | else if (size != 4) |
| 86 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 87 | |
| 88 | return PCIBIOS_SUCCESSFUL; |
| 89 | } |
| 90 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 91 | int cfg_write(void __iomem *addr, int where, int size, u32 val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 92 | { |
| 93 | if (size == 4) |
| 94 | writel(val, addr); |
| 95 | else if (size == 2) |
| 96 | writew(val, addr + (where & 2)); |
| 97 | else if (size == 1) |
| 98 | writeb(val, addr + (where & 3)); |
| 99 | else |
| 100 | return PCIBIOS_BAD_REGISTER_NUMBER; |
| 101 | |
| 102 | return PCIBIOS_SUCCESSFUL; |
| 103 | } |
| 104 | |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 105 | static inline void dw_pcie_readl_rc(struct pcie_port *pp, u32 reg, u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 106 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 107 | if (pp->ops->readl_rc) |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 108 | pp->ops->readl_rc(pp, pp->dbi_base + reg, val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 109 | else |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 110 | *val = readl(pp->dbi_base + reg); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 111 | } |
| 112 | |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 113 | 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] | 114 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 115 | if (pp->ops->writel_rc) |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 116 | pp->ops->writel_rc(pp, val, pp->dbi_base + reg); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 117 | else |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 118 | writel(val, pp->dbi_base + reg); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 119 | } |
| 120 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 121 | static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size, |
| 122 | u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 123 | { |
| 124 | int ret; |
| 125 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 126 | if (pp->ops->rd_own_conf) |
| 127 | ret = pp->ops->rd_own_conf(pp, where, size, val); |
| 128 | else |
| 129 | ret = cfg_read(pp->dbi_base + (where & ~0x3), where, size, val); |
| 130 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 131 | return ret; |
| 132 | } |
| 133 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 134 | static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size, |
| 135 | u32 val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 136 | { |
| 137 | int ret; |
| 138 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 139 | if (pp->ops->wr_own_conf) |
| 140 | ret = pp->ops->wr_own_conf(pp, where, size, val); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 141 | else |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 142 | ret = cfg_write(pp->dbi_base + (where & ~0x3), where, size, |
| 143 | val); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 144 | |
| 145 | return ret; |
| 146 | } |
| 147 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 148 | static struct irq_chip dw_msi_irq_chip = { |
| 149 | .name = "PCI-MSI", |
| 150 | .irq_enable = unmask_msi_irq, |
| 151 | .irq_disable = mask_msi_irq, |
| 152 | .irq_mask = mask_msi_irq, |
| 153 | .irq_unmask = unmask_msi_irq, |
| 154 | }; |
| 155 | |
| 156 | /* MSI int handler */ |
| 157 | void dw_handle_msi_irq(struct pcie_port *pp) |
| 158 | { |
| 159 | unsigned long val; |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 160 | int i, pos, irq; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 161 | |
| 162 | for (i = 0; i < MAX_MSI_CTRLS; i++) { |
| 163 | dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4, |
| 164 | (u32 *)&val); |
| 165 | if (val) { |
| 166 | pos = 0; |
| 167 | while ((pos = find_next_bit(&val, 32, pos)) != 32) { |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 168 | irq = irq_find_mapping(pp->irq_domain, |
| 169 | i * 32 + pos); |
| 170 | generic_handle_irq(irq); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 171 | pos++; |
| 172 | } |
| 173 | } |
| 174 | dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_STATUS + i * 12, 4, val); |
| 175 | } |
| 176 | } |
| 177 | |
| 178 | void dw_pcie_msi_init(struct pcie_port *pp) |
| 179 | { |
| 180 | pp->msi_data = __get_free_pages(GFP_KERNEL, 0); |
| 181 | |
| 182 | /* program the msi_data */ |
| 183 | dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4, |
| 184 | virt_to_phys((void *)pp->msi_data)); |
| 185 | dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4, 0); |
| 186 | } |
| 187 | |
| 188 | static int find_valid_pos0(struct pcie_port *pp, int msgvec, int pos, int *pos0) |
| 189 | { |
| 190 | int flag = 1; |
| 191 | |
| 192 | do { |
| 193 | pos = find_next_zero_bit(pp->msi_irq_in_use, |
| 194 | MAX_MSI_IRQS, pos); |
| 195 | /*if you have reached to the end then get out from here.*/ |
| 196 | if (pos == MAX_MSI_IRQS) |
| 197 | return -ENOSPC; |
| 198 | /* |
| 199 | * Check if this position is at correct offset.nvec is always a |
Bjorn Helgaas | f762598 | 2013-11-14 11:28:18 -0700 | [diff] [blame] | 200 | * power of two. pos0 must be nvec bit aligned. |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 201 | */ |
| 202 | if (pos % msgvec) |
| 203 | pos += msgvec - (pos % msgvec); |
| 204 | else |
| 205 | flag = 0; |
| 206 | } while (flag); |
| 207 | |
| 208 | *pos0 = pos; |
| 209 | return 0; |
| 210 | } |
| 211 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 212 | static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base, |
| 213 | unsigned int nvec, unsigned int pos) |
| 214 | { |
| 215 | unsigned int i, res, bit, val; |
| 216 | |
Bjorn Helgaas | 0b8cfb6 | 2013-12-09 15:11:25 -0700 | [diff] [blame^] | 217 | for (i = 0; i < nvec; i++) { |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 218 | irq_set_msi_desc_off(irq_base, i, NULL); |
| 219 | clear_bit(pos + i, pp->msi_irq_in_use); |
| 220 | /* Disable corresponding interrupt on MSI interrupt controller */ |
| 221 | res = ((pos + i) / 32) * 12; |
| 222 | bit = (pos + i) % 32; |
| 223 | dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val); |
| 224 | val &= ~(1 << bit); |
| 225 | dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val); |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 226 | } |
| 227 | } |
| 228 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 229 | static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos) |
| 230 | { |
| 231 | int res, bit, irq, pos0, pos1, i; |
| 232 | u32 val; |
| 233 | struct pcie_port *pp = sys_to_pcie(desc->dev->bus->sysdata); |
| 234 | |
| 235 | if (!pp) { |
| 236 | BUG(); |
| 237 | return -EINVAL; |
| 238 | } |
| 239 | |
| 240 | pos0 = find_first_zero_bit(pp->msi_irq_in_use, |
| 241 | MAX_MSI_IRQS); |
| 242 | if (pos0 % no_irqs) { |
| 243 | if (find_valid_pos0(pp, no_irqs, pos0, &pos0)) |
| 244 | goto no_valid_irq; |
| 245 | } |
| 246 | if (no_irqs > 1) { |
| 247 | pos1 = find_next_bit(pp->msi_irq_in_use, |
| 248 | MAX_MSI_IRQS, pos0); |
| 249 | /* there must be nvec number of consecutive free bits */ |
| 250 | while ((pos1 - pos0) < no_irqs) { |
| 251 | if (find_valid_pos0(pp, no_irqs, pos1, &pos0)) |
| 252 | goto no_valid_irq; |
| 253 | pos1 = find_next_bit(pp->msi_irq_in_use, |
| 254 | MAX_MSI_IRQS, pos0); |
| 255 | } |
| 256 | } |
| 257 | |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 258 | irq = irq_find_mapping(pp->irq_domain, pos0); |
| 259 | if (!irq) |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 260 | goto no_valid_irq; |
| 261 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 262 | /* |
| 263 | * irq_create_mapping (called from dw_pcie_host_init) pre-allocates |
| 264 | * descs so there is no need to allocate descs here. We can therefore |
| 265 | * assume that if irq_find_mapping above returns non-zero, then the |
| 266 | * descs are also successfully allocated. |
| 267 | */ |
| 268 | |
Bjorn Helgaas | 0b8cfb6 | 2013-12-09 15:11:25 -0700 | [diff] [blame^] | 269 | for (i = 0; i < no_irqs; i++) { |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 270 | if (irq_set_msi_desc_off(irq, i, desc) != 0) { |
| 271 | clear_irq_range(pp, irq, i, pos0); |
| 272 | goto no_valid_irq; |
| 273 | } |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 274 | set_bit(pos0 + i, pp->msi_irq_in_use); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 275 | /*Enable corresponding interrupt in MSI interrupt controller */ |
| 276 | res = ((pos0 + i) / 32) * 12; |
| 277 | bit = (pos0 + i) % 32; |
| 278 | dw_pcie_rd_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, &val); |
| 279 | val |= 1 << bit; |
| 280 | dw_pcie_wr_own_conf(pp, PCIE_MSI_INTR0_ENABLE + res, 4, val); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 281 | } |
| 282 | |
| 283 | *pos = pos0; |
| 284 | return irq; |
| 285 | |
| 286 | no_valid_irq: |
| 287 | *pos = pos0; |
| 288 | return -ENOSPC; |
| 289 | } |
| 290 | |
| 291 | static void clear_irq(unsigned int irq) |
| 292 | { |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 293 | unsigned int pos, nvec; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 294 | struct irq_desc *desc; |
| 295 | struct msi_desc *msi; |
| 296 | struct pcie_port *pp; |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 297 | struct irq_data *data = irq_get_irq_data(irq); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 298 | |
| 299 | /* get the port structure */ |
| 300 | desc = irq_to_desc(irq); |
| 301 | msi = irq_desc_get_msi_desc(desc); |
| 302 | pp = sys_to_pcie(msi->dev->bus->sysdata); |
| 303 | if (!pp) { |
| 304 | BUG(); |
| 305 | return; |
| 306 | } |
| 307 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 308 | /* undo what was done in assign_irq */ |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 309 | pos = data->hwirq; |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 310 | nvec = 1 << msi->msi_attrib.multiple; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 311 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 312 | clear_irq_range(pp, irq, nvec, pos); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 313 | |
Bjørn Erik Nilsen | be3f48c | 2013-11-29 14:35:24 +0100 | [diff] [blame] | 314 | /* all irqs cleared; reset attributes */ |
| 315 | msi->irq = 0; |
| 316 | msi->msi_attrib.multiple = 0; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 317 | } |
| 318 | |
| 319 | static int dw_msi_setup_irq(struct msi_chip *chip, struct pci_dev *pdev, |
| 320 | struct msi_desc *desc) |
| 321 | { |
| 322 | int irq, pos, msgvec; |
| 323 | u16 msg_ctr; |
| 324 | struct msi_msg msg; |
| 325 | struct pcie_port *pp = sys_to_pcie(pdev->bus->sysdata); |
| 326 | |
| 327 | if (!pp) { |
| 328 | BUG(); |
| 329 | return -EINVAL; |
| 330 | } |
| 331 | |
| 332 | pci_read_config_word(pdev, desc->msi_attrib.pos+PCI_MSI_FLAGS, |
| 333 | &msg_ctr); |
| 334 | msgvec = (msg_ctr&PCI_MSI_FLAGS_QSIZE) >> 4; |
| 335 | if (msgvec == 0) |
| 336 | msgvec = (msg_ctr & PCI_MSI_FLAGS_QMASK) >> 1; |
| 337 | if (msgvec > 5) |
| 338 | msgvec = 0; |
| 339 | |
| 340 | irq = assign_irq((1 << msgvec), desc, &pos); |
| 341 | if (irq < 0) |
| 342 | return irq; |
| 343 | |
Bjørn Erik Nilsen | 64989e7 | 2013-11-29 14:35:25 +0100 | [diff] [blame] | 344 | /* |
| 345 | * write_msi_msg() will update PCI_MSI_FLAGS so there is |
| 346 | * no need to explicitly call pci_write_config_word(). |
| 347 | */ |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 348 | desc->msi_attrib.multiple = msgvec; |
| 349 | |
| 350 | msg.address_lo = virt_to_phys((void *)pp->msi_data); |
| 351 | msg.address_hi = 0x0; |
| 352 | msg.data = pos; |
| 353 | write_msi_msg(irq, &msg); |
| 354 | |
| 355 | return 0; |
| 356 | } |
| 357 | |
| 358 | static void dw_msi_teardown_irq(struct msi_chip *chip, unsigned int irq) |
| 359 | { |
| 360 | clear_irq(irq); |
| 361 | } |
| 362 | |
| 363 | static struct msi_chip dw_pcie_msi_chip = { |
| 364 | .setup_irq = dw_msi_setup_irq, |
| 365 | .teardown_irq = dw_msi_teardown_irq, |
| 366 | }; |
| 367 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 368 | int dw_pcie_link_up(struct pcie_port *pp) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 369 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 370 | if (pp->ops->link_up) |
| 371 | return pp->ops->link_up(pp); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 372 | else |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 373 | return 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 374 | } |
| 375 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 376 | static int dw_pcie_msi_map(struct irq_domain *domain, unsigned int irq, |
| 377 | irq_hw_number_t hwirq) |
| 378 | { |
| 379 | irq_set_chip_and_handler(irq, &dw_msi_irq_chip, handle_simple_irq); |
| 380 | irq_set_chip_data(irq, domain->host_data); |
| 381 | set_irq_flags(irq, IRQF_VALID); |
| 382 | |
| 383 | return 0; |
| 384 | } |
| 385 | |
| 386 | static const struct irq_domain_ops msi_domain_ops = { |
| 387 | .map = dw_pcie_msi_map, |
| 388 | }; |
| 389 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 390 | int __init dw_pcie_host_init(struct pcie_port *pp) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 391 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 392 | struct device_node *np = pp->dev->of_node; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 393 | struct of_pci_range range; |
| 394 | struct of_pci_range_parser parser; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 395 | u32 val; |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 396 | int i; |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 397 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 398 | if (of_pci_range_parser_init(&parser, np)) { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 399 | dev_err(pp->dev, "missing ranges property\n"); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 400 | return -EINVAL; |
| 401 | } |
| 402 | |
| 403 | /* Get the I/O and memory ranges from DT */ |
| 404 | for_each_of_pci_range(&parser, &range) { |
| 405 | unsigned long restype = range.flags & IORESOURCE_TYPE_BITS; |
| 406 | if (restype == IORESOURCE_IO) { |
| 407 | of_pci_range_to_resource(&range, np, &pp->io); |
| 408 | pp->io.name = "I/O"; |
| 409 | pp->io.start = max_t(resource_size_t, |
| 410 | PCIBIOS_MIN_IO, |
| 411 | range.pci_addr + global_io_offset); |
| 412 | pp->io.end = min_t(resource_size_t, |
| 413 | IO_SPACE_LIMIT, |
| 414 | range.pci_addr + range.size |
| 415 | + global_io_offset); |
| 416 | pp->config.io_size = resource_size(&pp->io); |
| 417 | pp->config.io_bus_addr = range.pci_addr; |
| 418 | } |
| 419 | if (restype == IORESOURCE_MEM) { |
| 420 | of_pci_range_to_resource(&range, np, &pp->mem); |
| 421 | pp->mem.name = "MEM"; |
| 422 | pp->config.mem_size = resource_size(&pp->mem); |
| 423 | pp->config.mem_bus_addr = range.pci_addr; |
| 424 | } |
| 425 | if (restype == 0) { |
| 426 | of_pci_range_to_resource(&range, np, &pp->cfg); |
| 427 | pp->config.cfg0_size = resource_size(&pp->cfg)/2; |
| 428 | pp->config.cfg1_size = resource_size(&pp->cfg)/2; |
| 429 | } |
| 430 | } |
| 431 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 432 | if (!pp->dbi_base) { |
| 433 | pp->dbi_base = devm_ioremap(pp->dev, pp->cfg.start, |
| 434 | resource_size(&pp->cfg)); |
| 435 | if (!pp->dbi_base) { |
| 436 | dev_err(pp->dev, "error with ioremap\n"); |
| 437 | return -ENOMEM; |
| 438 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 439 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 440 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 441 | pp->cfg0_base = pp->cfg.start; |
| 442 | pp->cfg1_base = pp->cfg.start + pp->config.cfg0_size; |
| 443 | pp->io_base = pp->io.start; |
| 444 | pp->mem_base = pp->mem.start; |
| 445 | |
| 446 | pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base, |
| 447 | pp->config.cfg0_size); |
| 448 | if (!pp->va_cfg0_base) { |
| 449 | dev_err(pp->dev, "error with ioremap in function\n"); |
| 450 | return -ENOMEM; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 451 | } |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 452 | pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base, |
| 453 | pp->config.cfg1_size); |
| 454 | if (!pp->va_cfg1_base) { |
| 455 | dev_err(pp->dev, "error with ioremap\n"); |
| 456 | return -ENOMEM; |
| 457 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 458 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 459 | if (of_property_read_u32(np, "num-lanes", &pp->lanes)) { |
| 460 | dev_err(pp->dev, "Failed to parse the number of lanes\n"); |
| 461 | return -EINVAL; |
| 462 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 463 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 464 | if (IS_ENABLED(CONFIG_PCI_MSI)) { |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 465 | pp->irq_domain = irq_domain_add_linear(pp->dev->of_node, |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 466 | MAX_MSI_IRQS, &msi_domain_ops, |
| 467 | &dw_pcie_msi_chip); |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 468 | if (!pp->irq_domain) { |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 469 | dev_err(pp->dev, "irq domain init failed\n"); |
| 470 | return -ENXIO; |
| 471 | } |
| 472 | |
Pratyush Anand | 904d0e7 | 2013-10-09 21:32:12 +0900 | [diff] [blame] | 473 | for (i = 0; i < MAX_MSI_IRQS; i++) |
| 474 | irq_create_mapping(pp->irq_domain, i); |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 475 | } |
| 476 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 477 | if (pp->ops->host_init) |
| 478 | pp->ops->host_init(pp); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 479 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 480 | dw_pcie_wr_own_conf(pp, PCI_BASE_ADDRESS_0, 4, 0); |
| 481 | |
| 482 | /* program correct class for RC */ |
| 483 | dw_pcie_wr_own_conf(pp, PCI_CLASS_DEVICE, 2, PCI_CLASS_BRIDGE_PCI); |
| 484 | |
| 485 | dw_pcie_rd_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, &val); |
| 486 | val |= PORT_LOGIC_SPEED_CHANGE; |
| 487 | dw_pcie_wr_own_conf(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, 4, val); |
| 488 | |
| 489 | dw_pci.nr_controllers = 1; |
| 490 | dw_pci.private_data = (void **)&pp; |
| 491 | |
| 492 | pci_common_init(&dw_pci); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 493 | pci_assign_unassigned_resources(); |
| 494 | #ifdef CONFIG_PCI_DOMAINS |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 495 | dw_pci.domain++; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 496 | #endif |
| 497 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 498 | return 0; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 499 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 500 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 501 | static void dw_pcie_prog_viewport_cfg0(struct pcie_port *pp, u32 busdev) |
| 502 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 503 | /* Program viewport 0 : OUTBOUND : CFG0 */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 504 | dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0, |
| 505 | PCIE_ATU_VIEWPORT); |
| 506 | dw_pcie_writel_rc(pp, pp->cfg0_base, PCIE_ATU_LOWER_BASE); |
| 507 | dw_pcie_writel_rc(pp, (pp->cfg0_base >> 32), PCIE_ATU_UPPER_BASE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 508 | dw_pcie_writel_rc(pp, pp->cfg0_base + pp->config.cfg0_size - 1, |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 509 | PCIE_ATU_LIMIT); |
| 510 | dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET); |
| 511 | dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET); |
| 512 | dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG0, PCIE_ATU_CR1); |
| 513 | dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 514 | } |
| 515 | |
| 516 | static void dw_pcie_prog_viewport_cfg1(struct pcie_port *pp, u32 busdev) |
| 517 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 518 | /* Program viewport 1 : OUTBOUND : CFG1 */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 519 | dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1, |
| 520 | PCIE_ATU_VIEWPORT); |
| 521 | dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_CFG1, PCIE_ATU_CR1); |
| 522 | dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2); |
| 523 | dw_pcie_writel_rc(pp, pp->cfg1_base, PCIE_ATU_LOWER_BASE); |
| 524 | dw_pcie_writel_rc(pp, (pp->cfg1_base >> 32), PCIE_ATU_UPPER_BASE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 525 | dw_pcie_writel_rc(pp, pp->cfg1_base + pp->config.cfg1_size - 1, |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 526 | PCIE_ATU_LIMIT); |
| 527 | dw_pcie_writel_rc(pp, busdev, PCIE_ATU_LOWER_TARGET); |
| 528 | dw_pcie_writel_rc(pp, 0, PCIE_ATU_UPPER_TARGET); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 529 | } |
| 530 | |
| 531 | static void dw_pcie_prog_viewport_mem_outbound(struct pcie_port *pp) |
| 532 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 533 | /* Program viewport 0 : OUTBOUND : MEM */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 534 | dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX0, |
| 535 | PCIE_ATU_VIEWPORT); |
| 536 | dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_MEM, PCIE_ATU_CR1); |
| 537 | dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2); |
| 538 | dw_pcie_writel_rc(pp, pp->mem_base, PCIE_ATU_LOWER_BASE); |
| 539 | dw_pcie_writel_rc(pp, (pp->mem_base >> 32), PCIE_ATU_UPPER_BASE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 540 | dw_pcie_writel_rc(pp, pp->mem_base + pp->config.mem_size - 1, |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 541 | PCIE_ATU_LIMIT); |
| 542 | dw_pcie_writel_rc(pp, pp->config.mem_bus_addr, PCIE_ATU_LOWER_TARGET); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 543 | dw_pcie_writel_rc(pp, upper_32_bits(pp->config.mem_bus_addr), |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 544 | PCIE_ATU_UPPER_TARGET); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 545 | } |
| 546 | |
| 547 | static void dw_pcie_prog_viewport_io_outbound(struct pcie_port *pp) |
| 548 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 549 | /* Program viewport 1 : OUTBOUND : IO */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 550 | dw_pcie_writel_rc(pp, PCIE_ATU_REGION_OUTBOUND | PCIE_ATU_REGION_INDEX1, |
| 551 | PCIE_ATU_VIEWPORT); |
| 552 | dw_pcie_writel_rc(pp, PCIE_ATU_TYPE_IO, PCIE_ATU_CR1); |
| 553 | dw_pcie_writel_rc(pp, PCIE_ATU_ENABLE, PCIE_ATU_CR2); |
| 554 | dw_pcie_writel_rc(pp, pp->io_base, PCIE_ATU_LOWER_BASE); |
| 555 | dw_pcie_writel_rc(pp, (pp->io_base >> 32), PCIE_ATU_UPPER_BASE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 556 | dw_pcie_writel_rc(pp, pp->io_base + pp->config.io_size - 1, |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 557 | PCIE_ATU_LIMIT); |
| 558 | dw_pcie_writel_rc(pp, pp->config.io_bus_addr, PCIE_ATU_LOWER_TARGET); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 559 | dw_pcie_writel_rc(pp, upper_32_bits(pp->config.io_bus_addr), |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 560 | PCIE_ATU_UPPER_TARGET); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 561 | } |
| 562 | |
| 563 | static int dw_pcie_rd_other_conf(struct pcie_port *pp, struct pci_bus *bus, |
| 564 | u32 devfn, int where, int size, u32 *val) |
| 565 | { |
| 566 | int ret = PCIBIOS_SUCCESSFUL; |
| 567 | u32 address, busdev; |
| 568 | |
| 569 | busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) | |
| 570 | PCIE_ATU_FUNC(PCI_FUNC(devfn)); |
| 571 | address = where & ~0x3; |
| 572 | |
| 573 | if (bus->parent->number == pp->root_bus_nr) { |
| 574 | dw_pcie_prog_viewport_cfg0(pp, busdev); |
| 575 | ret = cfg_read(pp->va_cfg0_base + address, where, size, val); |
| 576 | dw_pcie_prog_viewport_mem_outbound(pp); |
| 577 | } else { |
| 578 | dw_pcie_prog_viewport_cfg1(pp, busdev); |
| 579 | ret = cfg_read(pp->va_cfg1_base + address, where, size, val); |
| 580 | dw_pcie_prog_viewport_io_outbound(pp); |
| 581 | } |
| 582 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 583 | return ret; |
| 584 | } |
| 585 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 586 | static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus, |
| 587 | u32 devfn, int where, int size, u32 val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 588 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 589 | int ret = PCIBIOS_SUCCESSFUL; |
| 590 | u32 address, busdev; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 591 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 592 | busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) | |
| 593 | PCIE_ATU_FUNC(PCI_FUNC(devfn)); |
| 594 | address = where & ~0x3; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 595 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 596 | if (bus->parent->number == pp->root_bus_nr) { |
| 597 | dw_pcie_prog_viewport_cfg0(pp, busdev); |
| 598 | ret = cfg_write(pp->va_cfg0_base + address, where, size, val); |
| 599 | dw_pcie_prog_viewport_mem_outbound(pp); |
| 600 | } else { |
| 601 | dw_pcie_prog_viewport_cfg1(pp, busdev); |
| 602 | ret = cfg_write(pp->va_cfg1_base + address, where, size, val); |
| 603 | dw_pcie_prog_viewport_io_outbound(pp); |
| 604 | } |
| 605 | |
| 606 | return ret; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 607 | } |
| 608 | |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 609 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 610 | static int dw_pcie_valid_config(struct pcie_port *pp, |
| 611 | struct pci_bus *bus, int dev) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 612 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 613 | /* If there is no link, then there is no device */ |
| 614 | if (bus->number != pp->root_bus_nr) { |
| 615 | if (!dw_pcie_link_up(pp)) |
| 616 | return 0; |
| 617 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 618 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 619 | /* access only one slot on each root port */ |
| 620 | if (bus->number == pp->root_bus_nr && dev > 0) |
| 621 | return 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 622 | |
| 623 | /* |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 624 | * do not read more than one device on the bus directly attached |
| 625 | * to RC's (Virtual Bridge's) DS side. |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 626 | */ |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 627 | if (bus->primary == pp->root_bus_nr && dev > 0) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 628 | return 0; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 629 | |
| 630 | return 1; |
| 631 | } |
| 632 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 633 | static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where, |
| 634 | int size, u32 *val) |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 635 | { |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 636 | struct pcie_port *pp = sys_to_pcie(bus->sysdata); |
| 637 | unsigned long flags; |
| 638 | int ret; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 639 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 640 | if (!pp) { |
| 641 | BUG(); |
| 642 | return -EINVAL; |
| 643 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 644 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 645 | if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) { |
| 646 | *val = 0xffffffff; |
| 647 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 648 | } |
| 649 | |
| 650 | spin_lock_irqsave(&pp->conf_lock, flags); |
| 651 | if (bus->number != pp->root_bus_nr) |
| 652 | ret = dw_pcie_rd_other_conf(pp, bus, devfn, |
| 653 | where, size, val); |
| 654 | else |
| 655 | ret = dw_pcie_rd_own_conf(pp, where, size, val); |
| 656 | spin_unlock_irqrestore(&pp->conf_lock, flags); |
| 657 | |
| 658 | return ret; |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 659 | } |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 660 | |
| 661 | static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn, |
| 662 | int where, int size, u32 val) |
| 663 | { |
| 664 | struct pcie_port *pp = sys_to_pcie(bus->sysdata); |
| 665 | unsigned long flags; |
| 666 | int ret; |
| 667 | |
| 668 | if (!pp) { |
| 669 | BUG(); |
| 670 | return -EINVAL; |
| 671 | } |
| 672 | |
| 673 | if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) |
| 674 | return PCIBIOS_DEVICE_NOT_FOUND; |
| 675 | |
| 676 | spin_lock_irqsave(&pp->conf_lock, flags); |
| 677 | if (bus->number != pp->root_bus_nr) |
| 678 | ret = dw_pcie_wr_other_conf(pp, bus, devfn, |
| 679 | where, size, val); |
| 680 | else |
| 681 | ret = dw_pcie_wr_own_conf(pp, where, size, val); |
| 682 | spin_unlock_irqrestore(&pp->conf_lock, flags); |
| 683 | |
| 684 | return ret; |
| 685 | } |
| 686 | |
| 687 | static struct pci_ops dw_pcie_ops = { |
| 688 | .read = dw_pcie_rd_conf, |
| 689 | .write = dw_pcie_wr_conf, |
| 690 | }; |
| 691 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 692 | static int dw_pcie_setup(int nr, struct pci_sys_data *sys) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 693 | { |
| 694 | struct pcie_port *pp; |
| 695 | |
| 696 | pp = sys_to_pcie(sys); |
| 697 | |
| 698 | if (!pp) |
| 699 | return 0; |
| 700 | |
| 701 | if (global_io_offset < SZ_1M && pp->config.io_size > 0) { |
| 702 | sys->io_offset = global_io_offset - pp->config.io_bus_addr; |
| 703 | pci_ioremap_io(sys->io_offset, pp->io.start); |
| 704 | global_io_offset += SZ_64K; |
| 705 | pci_add_resource_offset(&sys->resources, &pp->io, |
| 706 | sys->io_offset); |
| 707 | } |
| 708 | |
| 709 | sys->mem_offset = pp->mem.start - pp->config.mem_bus_addr; |
| 710 | pci_add_resource_offset(&sys->resources, &pp->mem, sys->mem_offset); |
| 711 | |
| 712 | return 1; |
| 713 | } |
| 714 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 715 | static struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 716 | { |
| 717 | struct pci_bus *bus; |
| 718 | struct pcie_port *pp = sys_to_pcie(sys); |
| 719 | |
| 720 | if (pp) { |
| 721 | pp->root_bus_nr = sys->busnr; |
| 722 | bus = pci_scan_root_bus(NULL, sys->busnr, &dw_pcie_ops, |
| 723 | sys, &sys->resources); |
| 724 | } else { |
| 725 | bus = NULL; |
| 726 | BUG(); |
| 727 | } |
| 728 | |
| 729 | return bus; |
| 730 | } |
| 731 | |
Bjorn Helgaas | 73e4085 | 2013-10-09 09:12:37 -0600 | [diff] [blame] | 732 | static int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin) |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 733 | { |
| 734 | struct pcie_port *pp = sys_to_pcie(dev->bus->sysdata); |
| 735 | |
| 736 | return pp->irq; |
| 737 | } |
| 738 | |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 739 | static void dw_pcie_add_bus(struct pci_bus *bus) |
| 740 | { |
| 741 | if (IS_ENABLED(CONFIG_PCI_MSI)) { |
| 742 | struct pcie_port *pp = sys_to_pcie(bus->sysdata); |
| 743 | |
| 744 | dw_pcie_msi_chip.dev = pp->dev; |
| 745 | bus->msi = &dw_pcie_msi_chip; |
| 746 | } |
| 747 | } |
| 748 | |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 749 | static struct hw_pci dw_pci = { |
| 750 | .setup = dw_pcie_setup, |
| 751 | .scan = dw_pcie_scan_bus, |
| 752 | .map_irq = dw_pcie_map_irq, |
Jingoo Han | f342d94 | 2013-09-06 15:54:59 +0900 | [diff] [blame] | 753 | .add_bus = dw_pcie_add_bus, |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 754 | }; |
| 755 | |
| 756 | void dw_pcie_setup_rc(struct pcie_port *pp) |
| 757 | { |
| 758 | struct pcie_port_info *config = &pp->config; |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 759 | u32 val; |
| 760 | u32 membase; |
| 761 | u32 memlimit; |
| 762 | |
| 763 | /* set the number of lines as 4 */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 764 | dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL, &val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 765 | val &= ~PORT_LINK_MODE_MASK; |
| 766 | switch (pp->lanes) { |
| 767 | case 1: |
| 768 | val |= PORT_LINK_MODE_1_LANES; |
| 769 | break; |
| 770 | case 2: |
| 771 | val |= PORT_LINK_MODE_2_LANES; |
| 772 | break; |
| 773 | case 4: |
| 774 | val |= PORT_LINK_MODE_4_LANES; |
| 775 | break; |
| 776 | } |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 777 | dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 778 | |
| 779 | /* set link width speed control register */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 780 | dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL, &val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 781 | val &= ~PORT_LOGIC_LINK_WIDTH_MASK; |
| 782 | switch (pp->lanes) { |
| 783 | case 1: |
| 784 | val |= PORT_LOGIC_LINK_WIDTH_1_LANES; |
| 785 | break; |
| 786 | case 2: |
| 787 | val |= PORT_LOGIC_LINK_WIDTH_2_LANES; |
| 788 | break; |
| 789 | case 4: |
| 790 | val |= PORT_LOGIC_LINK_WIDTH_4_LANES; |
| 791 | break; |
| 792 | } |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 793 | dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 794 | |
| 795 | /* setup RC BARs */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 796 | dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0); |
| 797 | dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_1); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 798 | |
| 799 | /* setup interrupt pins */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 800 | dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE, &val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 801 | val &= 0xffff00ff; |
| 802 | val |= 0x00000100; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 803 | dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 804 | |
| 805 | /* setup bus numbers */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 806 | dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS, &val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 807 | val &= 0xff000000; |
| 808 | val |= 0x00010100; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 809 | dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 810 | |
| 811 | /* setup memory base, memory limit */ |
| 812 | membase = ((u32)pp->mem_base & 0xfff00000) >> 16; |
| 813 | memlimit = (config->mem_size + (u32)pp->mem_base) & 0xfff00000; |
| 814 | val = memlimit | membase; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 815 | dw_pcie_writel_rc(pp, val, PCI_MEMORY_BASE); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 816 | |
| 817 | /* setup command register */ |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 818 | dw_pcie_readl_rc(pp, PCI_COMMAND, &val); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 819 | val &= 0xffff0000; |
| 820 | val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY | |
| 821 | PCI_COMMAND_MASTER | PCI_COMMAND_SERR; |
Seungwon Jeon | f7b7868 | 2013-08-28 20:53:30 +0900 | [diff] [blame] | 822 | dw_pcie_writel_rc(pp, val, PCI_COMMAND); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 823 | } |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 824 | |
| 825 | MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>"); |
Jingoo Han | 4b1ced8 | 2013-07-31 17:14:10 +0900 | [diff] [blame] | 826 | MODULE_DESCRIPTION("Designware PCIe host controller driver"); |
Jingoo Han | 340cba6 | 2013-06-21 16:24:54 +0900 | [diff] [blame] | 827 | MODULE_LICENSE("GPL v2"); |