Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 Hauke Mehrtens <hauke@hauke-m.de> |
Florian Fainelli | be908d2 | 2015-10-16 12:04:04 -0700 | [diff] [blame] | 3 | * Copyright (C) 2015 Broadcom Corporation |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 4 | * |
| 5 | * This program is free software; you can redistribute it and/or |
| 6 | * modify it under the terms of the GNU General Public License as |
| 7 | * published by the Free Software Foundation version 2. |
| 8 | * |
| 9 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any |
| 10 | * kind, whether express or implied; without even the implied warranty |
| 11 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | * GNU General Public License for more details. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/pci.h> |
| 17 | #include <linux/msi.h> |
| 18 | #include <linux/clk.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/mbus.h> |
| 21 | #include <linux/slab.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/interrupt.h> |
| 24 | #include <linux/platform_device.h> |
| 25 | #include <linux/of_address.h> |
| 26 | #include <linux/of_pci.h> |
| 27 | #include <linux/of_irq.h> |
| 28 | #include <linux/of_platform.h> |
| 29 | #include <linux/phy/phy.h> |
| 30 | |
| 31 | #include "pcie-iproc.h" |
| 32 | |
Ray Jui | 199ff14 | 2015-09-15 17:39:18 -0700 | [diff] [blame] | 33 | #define EP_PERST_SOURCE_SELECT_SHIFT 2 |
| 34 | #define EP_PERST_SOURCE_SELECT BIT(EP_PERST_SOURCE_SELECT_SHIFT) |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 35 | #define EP_MODE_SURVIVE_PERST_SHIFT 1 |
| 36 | #define EP_MODE_SURVIVE_PERST BIT(EP_MODE_SURVIVE_PERST_SHIFT) |
| 37 | #define RC_PCIE_RST_OUTPUT_SHIFT 0 |
| 38 | #define RC_PCIE_RST_OUTPUT BIT(RC_PCIE_RST_OUTPUT_SHIFT) |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 39 | #define PAXC_RESET_MASK 0x7f |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 40 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 41 | #define CFG_IND_ADDR_MASK 0x00001ffc |
| 42 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 43 | #define CFG_ADDR_BUS_NUM_SHIFT 20 |
| 44 | #define CFG_ADDR_BUS_NUM_MASK 0x0ff00000 |
| 45 | #define CFG_ADDR_DEV_NUM_SHIFT 15 |
| 46 | #define CFG_ADDR_DEV_NUM_MASK 0x000f8000 |
| 47 | #define CFG_ADDR_FUNC_NUM_SHIFT 12 |
| 48 | #define CFG_ADDR_FUNC_NUM_MASK 0x00007000 |
| 49 | #define CFG_ADDR_REG_NUM_SHIFT 2 |
| 50 | #define CFG_ADDR_REG_NUM_MASK 0x00000ffc |
| 51 | #define CFG_ADDR_CFG_TYPE_SHIFT 0 |
| 52 | #define CFG_ADDR_CFG_TYPE_MASK 0x00000003 |
| 53 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 54 | #define SYS_RC_INTX_MASK 0xf |
| 55 | |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 56 | #define PCIE_PHYLINKUP_SHIFT 3 |
| 57 | #define PCIE_PHYLINKUP BIT(PCIE_PHYLINKUP_SHIFT) |
| 58 | #define PCIE_DL_ACTIVE_SHIFT 2 |
| 59 | #define PCIE_DL_ACTIVE BIT(PCIE_DL_ACTIVE_SHIFT) |
| 60 | |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 61 | #define OARR_VALID_SHIFT 0 |
| 62 | #define OARR_VALID BIT(OARR_VALID_SHIFT) |
| 63 | #define OARR_SIZE_CFG_SHIFT 1 |
| 64 | #define OARR_SIZE_CFG BIT(OARR_SIZE_CFG_SHIFT) |
| 65 | |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 66 | #define MAX_NUM_OB_WINDOWS 2 |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 67 | #define MAX_NUM_PAXC_PF 4 |
| 68 | |
| 69 | #define IPROC_PCIE_REG_INVALID 0xffff |
| 70 | |
| 71 | enum iproc_pcie_reg { |
| 72 | IPROC_PCIE_CLK_CTRL = 0, |
| 73 | IPROC_PCIE_CFG_IND_ADDR, |
| 74 | IPROC_PCIE_CFG_IND_DATA, |
| 75 | IPROC_PCIE_CFG_ADDR, |
| 76 | IPROC_PCIE_CFG_DATA, |
| 77 | IPROC_PCIE_INTX_EN, |
| 78 | IPROC_PCIE_OARR_LO, |
| 79 | IPROC_PCIE_OARR_HI, |
| 80 | IPROC_PCIE_OMAP_LO, |
| 81 | IPROC_PCIE_OMAP_HI, |
| 82 | IPROC_PCIE_LINK_STATUS, |
| 83 | }; |
| 84 | |
| 85 | /* iProc PCIe PAXB registers */ |
| 86 | static const u16 iproc_pcie_reg_paxb[] = { |
| 87 | [IPROC_PCIE_CLK_CTRL] = 0x000, |
| 88 | [IPROC_PCIE_CFG_IND_ADDR] = 0x120, |
| 89 | [IPROC_PCIE_CFG_IND_DATA] = 0x124, |
| 90 | [IPROC_PCIE_CFG_ADDR] = 0x1f8, |
| 91 | [IPROC_PCIE_CFG_DATA] = 0x1fc, |
| 92 | [IPROC_PCIE_INTX_EN] = 0x330, |
| 93 | [IPROC_PCIE_OARR_LO] = 0xd20, |
| 94 | [IPROC_PCIE_OARR_HI] = 0xd24, |
| 95 | [IPROC_PCIE_OMAP_LO] = 0xd40, |
| 96 | [IPROC_PCIE_OMAP_HI] = 0xd44, |
| 97 | [IPROC_PCIE_LINK_STATUS] = 0xf0c, |
| 98 | }; |
| 99 | |
| 100 | /* iProc PCIe PAXC v1 registers */ |
| 101 | static const u16 iproc_pcie_reg_paxc[] = { |
| 102 | [IPROC_PCIE_CLK_CTRL] = 0x000, |
| 103 | [IPROC_PCIE_CFG_IND_ADDR] = 0x1f0, |
| 104 | [IPROC_PCIE_CFG_IND_DATA] = 0x1f4, |
| 105 | [IPROC_PCIE_CFG_ADDR] = 0x1f8, |
| 106 | [IPROC_PCIE_CFG_DATA] = 0x1fc, |
| 107 | [IPROC_PCIE_INTX_EN] = IPROC_PCIE_REG_INVALID, |
| 108 | [IPROC_PCIE_OARR_LO] = IPROC_PCIE_REG_INVALID, |
| 109 | [IPROC_PCIE_OARR_HI] = IPROC_PCIE_REG_INVALID, |
| 110 | [IPROC_PCIE_OMAP_LO] = IPROC_PCIE_REG_INVALID, |
| 111 | [IPROC_PCIE_OMAP_HI] = IPROC_PCIE_REG_INVALID, |
| 112 | [IPROC_PCIE_LINK_STATUS] = IPROC_PCIE_REG_INVALID, |
| 113 | }; |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 114 | |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 115 | static inline struct iproc_pcie *iproc_data(struct pci_bus *bus) |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 116 | { |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 117 | struct iproc_pcie *pcie; |
| 118 | #ifdef CONFIG_ARM |
| 119 | struct pci_sys_data *sys = bus->sysdata; |
| 120 | |
| 121 | pcie = sys->private_data; |
| 122 | #else |
| 123 | pcie = bus->sysdata; |
| 124 | #endif |
| 125 | return pcie; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 126 | } |
| 127 | |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 128 | static inline bool iproc_pcie_reg_is_invalid(u16 reg_offset) |
| 129 | { |
| 130 | return !!(reg_offset == IPROC_PCIE_REG_INVALID); |
| 131 | } |
| 132 | |
| 133 | static inline u16 iproc_pcie_reg_offset(struct iproc_pcie *pcie, |
| 134 | enum iproc_pcie_reg reg) |
| 135 | { |
| 136 | return pcie->reg_offsets[reg]; |
| 137 | } |
| 138 | |
| 139 | static inline u32 iproc_pcie_read_reg(struct iproc_pcie *pcie, |
| 140 | enum iproc_pcie_reg reg) |
| 141 | { |
| 142 | u16 offset = iproc_pcie_reg_offset(pcie, reg); |
| 143 | |
| 144 | if (iproc_pcie_reg_is_invalid(offset)) |
| 145 | return 0; |
| 146 | |
| 147 | return readl(pcie->base + offset); |
| 148 | } |
| 149 | |
| 150 | static inline void iproc_pcie_write_reg(struct iproc_pcie *pcie, |
| 151 | enum iproc_pcie_reg reg, u32 val) |
| 152 | { |
| 153 | u16 offset = iproc_pcie_reg_offset(pcie, reg); |
| 154 | |
| 155 | if (iproc_pcie_reg_is_invalid(offset)) |
| 156 | return; |
| 157 | |
| 158 | writel(val, pcie->base + offset); |
| 159 | } |
| 160 | |
| 161 | static inline void iproc_pcie_ob_write(struct iproc_pcie *pcie, |
| 162 | enum iproc_pcie_reg reg, |
| 163 | unsigned window, u32 val) |
| 164 | { |
| 165 | u16 offset = iproc_pcie_reg_offset(pcie, reg); |
| 166 | |
| 167 | if (iproc_pcie_reg_is_invalid(offset)) |
| 168 | return; |
| 169 | |
| 170 | writel(val, pcie->base + offset + (window * 8)); |
| 171 | } |
| 172 | |
| 173 | static inline bool iproc_pcie_device_is_valid(struct iproc_pcie *pcie, |
| 174 | unsigned int slot, |
| 175 | unsigned int fn) |
| 176 | { |
| 177 | if (slot > 0) |
| 178 | return false; |
| 179 | |
| 180 | /* PAXC can only support limited number of functions */ |
| 181 | if (pcie->type == IPROC_PCIE_PAXC && fn >= MAX_NUM_PAXC_PF) |
| 182 | return false; |
| 183 | |
| 184 | return true; |
| 185 | } |
| 186 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 187 | /** |
| 188 | * Note access to the configuration registers are protected at the higher layer |
| 189 | * by 'pci_lock' in drivers/pci/access.c |
| 190 | */ |
| 191 | static void __iomem *iproc_pcie_map_cfg_bus(struct pci_bus *bus, |
| 192 | unsigned int devfn, |
| 193 | int where) |
| 194 | { |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 195 | struct iproc_pcie *pcie = iproc_data(bus); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 196 | unsigned slot = PCI_SLOT(devfn); |
| 197 | unsigned fn = PCI_FUNC(devfn); |
| 198 | unsigned busno = bus->number; |
| 199 | u32 val; |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 200 | u16 offset; |
| 201 | |
| 202 | if (!iproc_pcie_device_is_valid(pcie, slot, fn)) |
| 203 | return NULL; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 204 | |
| 205 | /* root complex access */ |
| 206 | if (busno == 0) { |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 207 | iproc_pcie_write_reg(pcie, IPROC_PCIE_CFG_IND_ADDR, |
| 208 | where & CFG_IND_ADDR_MASK); |
| 209 | offset = iproc_pcie_reg_offset(pcie, IPROC_PCIE_CFG_IND_DATA); |
| 210 | if (iproc_pcie_reg_is_invalid(offset)) |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 211 | return NULL; |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 212 | else |
| 213 | return (pcie->base + offset); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 214 | } |
| 215 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 216 | /* EP device access */ |
| 217 | val = (busno << CFG_ADDR_BUS_NUM_SHIFT) | |
| 218 | (slot << CFG_ADDR_DEV_NUM_SHIFT) | |
| 219 | (fn << CFG_ADDR_FUNC_NUM_SHIFT) | |
| 220 | (where & CFG_ADDR_REG_NUM_MASK) | |
| 221 | (1 & CFG_ADDR_CFG_TYPE_MASK); |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 222 | iproc_pcie_write_reg(pcie, IPROC_PCIE_CFG_ADDR, val); |
| 223 | offset = iproc_pcie_reg_offset(pcie, IPROC_PCIE_CFG_DATA); |
| 224 | if (iproc_pcie_reg_is_invalid(offset)) |
| 225 | return NULL; |
| 226 | else |
| 227 | return (pcie->base + offset); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 228 | } |
| 229 | |
| 230 | static struct pci_ops iproc_pcie_ops = { |
| 231 | .map_bus = iproc_pcie_map_cfg_bus, |
| 232 | .read = pci_generic_config_read32, |
| 233 | .write = pci_generic_config_write32, |
| 234 | }; |
| 235 | |
| 236 | static void iproc_pcie_reset(struct iproc_pcie *pcie) |
| 237 | { |
| 238 | u32 val; |
| 239 | |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 240 | if (pcie->type == IPROC_PCIE_PAXC) { |
| 241 | val = iproc_pcie_read_reg(pcie, IPROC_PCIE_CLK_CTRL); |
| 242 | val &= ~PAXC_RESET_MASK; |
| 243 | iproc_pcie_write_reg(pcie, IPROC_PCIE_CLK_CTRL, val); |
| 244 | udelay(100); |
| 245 | val |= PAXC_RESET_MASK; |
| 246 | iproc_pcie_write_reg(pcie, IPROC_PCIE_CLK_CTRL, val); |
| 247 | udelay(100); |
| 248 | return; |
| 249 | } |
| 250 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 251 | /* |
Ray Jui | 199ff14 | 2015-09-15 17:39:18 -0700 | [diff] [blame] | 252 | * Select perst_b signal as reset source. Put the device into reset, |
| 253 | * and then bring it out of reset |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 254 | */ |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 255 | val = iproc_pcie_read_reg(pcie, IPROC_PCIE_CLK_CTRL); |
Ray Jui | 199ff14 | 2015-09-15 17:39:18 -0700 | [diff] [blame] | 256 | val &= ~EP_PERST_SOURCE_SELECT & ~EP_MODE_SURVIVE_PERST & |
| 257 | ~RC_PCIE_RST_OUTPUT; |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 258 | iproc_pcie_write_reg(pcie, IPROC_PCIE_CLK_CTRL, val); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 259 | udelay(250); |
Ray Jui | 199ff14 | 2015-09-15 17:39:18 -0700 | [diff] [blame] | 260 | |
| 261 | val |= RC_PCIE_RST_OUTPUT; |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 262 | iproc_pcie_write_reg(pcie, IPROC_PCIE_CLK_CTRL, val); |
Ray Jui | 199ff14 | 2015-09-15 17:39:18 -0700 | [diff] [blame] | 263 | msleep(100); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | static int iproc_pcie_check_link(struct iproc_pcie *pcie, struct pci_bus *bus) |
| 267 | { |
| 268 | u8 hdr_type; |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 269 | u32 link_ctrl, class, val; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 270 | u16 pos, link_status; |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 271 | bool link_is_active = false; |
| 272 | |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 273 | /* |
| 274 | * PAXC connects to emulated endpoint devices directly and does not |
| 275 | * have a Serdes. Therefore skip the link detection logic here. |
| 276 | */ |
| 277 | if (pcie->type == IPROC_PCIE_PAXC) |
| 278 | return 0; |
| 279 | |
| 280 | val = iproc_pcie_read_reg(pcie, IPROC_PCIE_LINK_STATUS); |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 281 | if (!(val & PCIE_PHYLINKUP) || !(val & PCIE_DL_ACTIVE)) { |
| 282 | dev_err(pcie->dev, "PHY or data link is INACTIVE!\n"); |
| 283 | return -ENODEV; |
| 284 | } |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 285 | |
| 286 | /* make sure we are not in EP mode */ |
| 287 | pci_bus_read_config_byte(bus, 0, PCI_HEADER_TYPE, &hdr_type); |
| 288 | if ((hdr_type & 0x7f) != PCI_HEADER_TYPE_BRIDGE) { |
| 289 | dev_err(pcie->dev, "in EP mode, hdr=%#02x\n", hdr_type); |
| 290 | return -EFAULT; |
| 291 | } |
| 292 | |
| 293 | /* force class to PCI_CLASS_BRIDGE_PCI (0x0604) */ |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 294 | #define PCI_BRIDGE_CTRL_REG_OFFSET 0x43c |
| 295 | #define PCI_CLASS_BRIDGE_MASK 0xffff00 |
| 296 | #define PCI_CLASS_BRIDGE_SHIFT 8 |
| 297 | pci_bus_read_config_dword(bus, 0, PCI_BRIDGE_CTRL_REG_OFFSET, &class); |
| 298 | class &= ~PCI_CLASS_BRIDGE_MASK; |
| 299 | class |= (PCI_CLASS_BRIDGE_PCI << PCI_CLASS_BRIDGE_SHIFT); |
| 300 | pci_bus_write_config_dword(bus, 0, PCI_BRIDGE_CTRL_REG_OFFSET, class); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 301 | |
| 302 | /* check link status to see if link is active */ |
| 303 | pos = pci_bus_find_capability(bus, 0, PCI_CAP_ID_EXP); |
| 304 | pci_bus_read_config_word(bus, 0, pos + PCI_EXP_LNKSTA, &link_status); |
| 305 | if (link_status & PCI_EXP_LNKSTA_NLW) |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 306 | link_is_active = true; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 307 | |
| 308 | if (!link_is_active) { |
| 309 | /* try GEN 1 link speed */ |
| 310 | #define PCI_LINK_STATUS_CTRL_2_OFFSET 0x0dc |
| 311 | #define PCI_TARGET_LINK_SPEED_MASK 0xf |
| 312 | #define PCI_TARGET_LINK_SPEED_GEN2 0x2 |
| 313 | #define PCI_TARGET_LINK_SPEED_GEN1 0x1 |
| 314 | pci_bus_read_config_dword(bus, 0, |
| 315 | PCI_LINK_STATUS_CTRL_2_OFFSET, |
| 316 | &link_ctrl); |
| 317 | if ((link_ctrl & PCI_TARGET_LINK_SPEED_MASK) == |
| 318 | PCI_TARGET_LINK_SPEED_GEN2) { |
| 319 | link_ctrl &= ~PCI_TARGET_LINK_SPEED_MASK; |
| 320 | link_ctrl |= PCI_TARGET_LINK_SPEED_GEN1; |
| 321 | pci_bus_write_config_dword(bus, 0, |
| 322 | PCI_LINK_STATUS_CTRL_2_OFFSET, |
| 323 | link_ctrl); |
| 324 | msleep(100); |
| 325 | |
| 326 | pos = pci_bus_find_capability(bus, 0, PCI_CAP_ID_EXP); |
| 327 | pci_bus_read_config_word(bus, 0, pos + PCI_EXP_LNKSTA, |
| 328 | &link_status); |
| 329 | if (link_status & PCI_EXP_LNKSTA_NLW) |
Ray Jui | aaf22ab | 2015-09-15 17:39:19 -0700 | [diff] [blame] | 330 | link_is_active = true; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 331 | } |
| 332 | } |
| 333 | |
| 334 | dev_info(pcie->dev, "link: %s\n", link_is_active ? "UP" : "DOWN"); |
| 335 | |
| 336 | return link_is_active ? 0 : -ENODEV; |
| 337 | } |
| 338 | |
| 339 | static void iproc_pcie_enable(struct iproc_pcie *pcie) |
| 340 | { |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 341 | iproc_pcie_write_reg(pcie, IPROC_PCIE_INTX_EN, SYS_RC_INTX_MASK); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 344 | /** |
| 345 | * Some iProc SoCs require the SW to configure the outbound address mapping |
| 346 | * |
| 347 | * Outbound address translation: |
| 348 | * |
| 349 | * iproc_pcie_address = axi_address - axi_offset |
| 350 | * OARR = iproc_pcie_address |
| 351 | * OMAP = pci_addr |
| 352 | * |
| 353 | * axi_addr -> iproc_pcie_address -> OARR -> OMAP -> pci_address |
| 354 | */ |
| 355 | static int iproc_pcie_setup_ob(struct iproc_pcie *pcie, u64 axi_addr, |
| 356 | u64 pci_addr, resource_size_t size) |
| 357 | { |
| 358 | struct iproc_pcie_ob *ob = &pcie->ob; |
| 359 | unsigned i; |
| 360 | u64 max_size = (u64)ob->window_size * MAX_NUM_OB_WINDOWS; |
| 361 | u64 remainder; |
| 362 | |
| 363 | if (size > max_size) { |
| 364 | dev_err(pcie->dev, |
Dmitry V. Krivenok | 57303e9 | 2015-11-30 23:45:49 +0300 | [diff] [blame] | 365 | "res size %pap exceeds max supported size 0x%llx\n", |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 366 | &size, max_size); |
| 367 | return -EINVAL; |
| 368 | } |
| 369 | |
| 370 | div64_u64_rem(size, ob->window_size, &remainder); |
| 371 | if (remainder) { |
| 372 | dev_err(pcie->dev, |
| 373 | "res size %pap needs to be multiple of window size %pap\n", |
| 374 | &size, &ob->window_size); |
| 375 | return -EINVAL; |
| 376 | } |
| 377 | |
| 378 | if (axi_addr < ob->axi_offset) { |
| 379 | dev_err(pcie->dev, |
| 380 | "axi address %pap less than offset %pap\n", |
| 381 | &axi_addr, &ob->axi_offset); |
| 382 | return -EINVAL; |
| 383 | } |
| 384 | |
| 385 | /* |
| 386 | * Translate the AXI address to the internal address used by the iProc |
| 387 | * PCIe core before programming the OARR |
| 388 | */ |
| 389 | axi_addr -= ob->axi_offset; |
| 390 | |
| 391 | for (i = 0; i < MAX_NUM_OB_WINDOWS; i++) { |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 392 | iproc_pcie_ob_write(pcie, IPROC_PCIE_OARR_LO, i, |
| 393 | lower_32_bits(axi_addr) | OARR_VALID | |
| 394 | (ob->set_oarr_size ? 1 : 0)); |
| 395 | iproc_pcie_ob_write(pcie, IPROC_PCIE_OARR_HI, i, |
| 396 | upper_32_bits(axi_addr)); |
| 397 | iproc_pcie_ob_write(pcie, IPROC_PCIE_OMAP_LO, i, |
| 398 | lower_32_bits(pci_addr)); |
| 399 | iproc_pcie_ob_write(pcie, IPROC_PCIE_OMAP_HI, i, |
| 400 | upper_32_bits(pci_addr)); |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 401 | |
| 402 | size -= ob->window_size; |
| 403 | if (size == 0) |
| 404 | break; |
| 405 | |
| 406 | axi_addr += ob->window_size; |
| 407 | pci_addr += ob->window_size; |
| 408 | } |
| 409 | |
| 410 | return 0; |
| 411 | } |
| 412 | |
| 413 | static int iproc_pcie_map_ranges(struct iproc_pcie *pcie, |
| 414 | struct list_head *resources) |
| 415 | { |
| 416 | struct resource_entry *window; |
| 417 | int ret; |
| 418 | |
| 419 | resource_list_for_each_entry(window, resources) { |
| 420 | struct resource *res = window->res; |
| 421 | u64 res_type = resource_type(res); |
| 422 | |
| 423 | switch (res_type) { |
| 424 | case IORESOURCE_IO: |
| 425 | case IORESOURCE_BUS: |
| 426 | break; |
| 427 | case IORESOURCE_MEM: |
| 428 | ret = iproc_pcie_setup_ob(pcie, res->start, |
| 429 | res->start - window->offset, |
| 430 | resource_size(res)); |
| 431 | if (ret) |
| 432 | return ret; |
| 433 | break; |
| 434 | default: |
| 435 | dev_err(pcie->dev, "invalid resource %pR\n", res); |
| 436 | return -EINVAL; |
| 437 | } |
| 438 | } |
| 439 | |
| 440 | return 0; |
| 441 | } |
| 442 | |
Hauke Mehrtens | 18c4342 | 2015-05-24 22:37:02 +0200 | [diff] [blame] | 443 | int iproc_pcie_setup(struct iproc_pcie *pcie, struct list_head *res) |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 444 | { |
| 445 | int ret; |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 446 | void *sysdata; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 447 | struct pci_bus *bus; |
| 448 | |
| 449 | if (!pcie || !pcie->dev || !pcie->base) |
| 450 | return -EINVAL; |
| 451 | |
Markus Elfring | 93972d1 | 2015-06-28 16:42:04 +0200 | [diff] [blame] | 452 | ret = phy_init(pcie->phy); |
| 453 | if (ret) { |
| 454 | dev_err(pcie->dev, "unable to initialize PCIe PHY\n"); |
| 455 | return ret; |
| 456 | } |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 457 | |
Markus Elfring | 93972d1 | 2015-06-28 16:42:04 +0200 | [diff] [blame] | 458 | ret = phy_power_on(pcie->phy); |
| 459 | if (ret) { |
| 460 | dev_err(pcie->dev, "unable to power on PCIe PHY\n"); |
| 461 | goto err_exit_phy; |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 462 | } |
| 463 | |
Ray Jui | 943ebae | 2015-12-04 09:34:59 -0800 | [diff] [blame^] | 464 | switch (pcie->type) { |
| 465 | case IPROC_PCIE_PAXB: |
| 466 | pcie->reg_offsets = iproc_pcie_reg_paxb; |
| 467 | break; |
| 468 | case IPROC_PCIE_PAXC: |
| 469 | pcie->reg_offsets = iproc_pcie_reg_paxc; |
| 470 | break; |
| 471 | default: |
| 472 | dev_err(pcie->dev, "incompatible iProc PCIe interface\n"); |
| 473 | ret = -EINVAL; |
| 474 | goto err_power_off_phy; |
| 475 | } |
| 476 | |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 477 | iproc_pcie_reset(pcie); |
| 478 | |
Ray Jui | e99a187 | 2015-10-16 08:18:24 -0500 | [diff] [blame] | 479 | if (pcie->need_ob_cfg) { |
| 480 | ret = iproc_pcie_map_ranges(pcie, res); |
| 481 | if (ret) { |
| 482 | dev_err(pcie->dev, "map failed\n"); |
| 483 | goto err_power_off_phy; |
| 484 | } |
| 485 | } |
| 486 | |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 487 | #ifdef CONFIG_ARM |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 488 | pcie->sysdata.private_data = pcie; |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 489 | sysdata = &pcie->sysdata; |
| 490 | #else |
| 491 | sysdata = pcie; |
| 492 | #endif |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 493 | |
Ray Jui | 8d9bfe3 | 2015-07-21 18:29:40 -0700 | [diff] [blame] | 494 | bus = pci_create_root_bus(pcie->dev, 0, &iproc_pcie_ops, sysdata, res); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 495 | if (!bus) { |
| 496 | dev_err(pcie->dev, "unable to create PCI root bus\n"); |
| 497 | ret = -ENOMEM; |
| 498 | goto err_power_off_phy; |
| 499 | } |
| 500 | pcie->root_bus = bus; |
| 501 | |
| 502 | ret = iproc_pcie_check_link(pcie, bus); |
| 503 | if (ret) { |
| 504 | dev_err(pcie->dev, "no PCIe EP device detected\n"); |
| 505 | goto err_rm_root_bus; |
| 506 | } |
| 507 | |
| 508 | iproc_pcie_enable(pcie); |
| 509 | |
| 510 | pci_scan_child_bus(bus); |
| 511 | pci_assign_unassigned_bus_resources(bus); |
Hauke Mehrtens | c1e02ce | 2015-05-12 23:23:00 +0200 | [diff] [blame] | 512 | pci_fixup_irqs(pci_common_swizzle, pcie->map_irq); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 513 | pci_bus_add_devices(bus); |
| 514 | |
| 515 | return 0; |
| 516 | |
| 517 | err_rm_root_bus: |
| 518 | pci_stop_root_bus(bus); |
| 519 | pci_remove_root_bus(bus); |
| 520 | |
| 521 | err_power_off_phy: |
Markus Elfring | 93972d1 | 2015-06-28 16:42:04 +0200 | [diff] [blame] | 522 | phy_power_off(pcie->phy); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 523 | err_exit_phy: |
Markus Elfring | 93972d1 | 2015-06-28 16:42:04 +0200 | [diff] [blame] | 524 | phy_exit(pcie->phy); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 525 | return ret; |
| 526 | } |
| 527 | EXPORT_SYMBOL(iproc_pcie_setup); |
| 528 | |
| 529 | int iproc_pcie_remove(struct iproc_pcie *pcie) |
| 530 | { |
| 531 | pci_stop_root_bus(pcie->root_bus); |
| 532 | pci_remove_root_bus(pcie->root_bus); |
| 533 | |
Markus Elfring | 93972d1 | 2015-06-28 16:42:04 +0200 | [diff] [blame] | 534 | phy_power_off(pcie->phy); |
| 535 | phy_exit(pcie->phy); |
Ray Jui | 1fb37a8 | 2015-04-08 11:21:35 -0700 | [diff] [blame] | 536 | |
| 537 | return 0; |
| 538 | } |
| 539 | EXPORT_SYMBOL(iproc_pcie_remove); |
| 540 | |
| 541 | MODULE_AUTHOR("Ray Jui <rjui@broadcom.com>"); |
| 542 | MODULE_DESCRIPTION("Broadcom iPROC PCIe common driver"); |
| 543 | MODULE_LICENSE("GPL v2"); |