blob: 085fde272594baada9c0608ab0a70b085f94eb8a [file] [log] [blame]
Jingoo Han340cba62013-06-21 16:24:54 +09001/*
Jingoo Han4b1ced82013-07-31 17:14:10 +09002 * Synopsys Designware PCIe host controller driver
Jingoo Han340cba62013-06-21 16:24:54 +09003 *
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 Hanf342d942013-09-06 15:54:59 +090014#include <linux/irq.h>
15#include <linux/irqdomain.h>
Jingoo Han340cba62013-06-21 16:24:54 +090016#include <linux/kernel.h>
Jingoo Han340cba62013-06-21 16:24:54 +090017#include <linux/module.h>
Jingoo Hanf342d942013-09-06 15:54:59 +090018#include <linux/msi.h>
Jingoo Han340cba62013-06-21 16:24:54 +090019#include <linux/of_address.h>
Lucas Stach804f57b2014-03-05 14:25:51 +010020#include <linux/of_pci.h>
Jingoo Han340cba62013-06-21 16:24:54 +090021#include <linux/pci.h>
22#include <linux/pci_regs.h>
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +053023#include <linux/platform_device.h>
Jingoo Han340cba62013-06-21 16:24:54 +090024#include <linux/types.h>
Joao Pinto886bc5c2016-03-10 14:44:35 -060025#include <linux/delay.h>
Jingoo Han340cba62013-06-21 16:24:54 +090026
Jingoo Han4b1ced82013-07-31 17:14:10 +090027#include "pcie-designware.h"
Jingoo Han340cba62013-06-21 16:24:54 +090028
Joao Pintoc388de12016-08-10 11:02:38 +010029/* 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 Pintod8bbeb32016-08-17 13:26:07 -050034/* 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 Han340cba62013-06-21 16:24:54 +090040#define PCIE_PORT_LINK_CONTROL 0x710
41#define PORT_LINK_MODE_MASK (0x3f << 16)
Jingoo Han4b1ced82013-07-31 17:14:10 +090042#define PORT_LINK_MODE_1_LANES (0x1 << 16)
43#define PORT_LINK_MODE_2_LANES (0x3 << 16)
Jingoo Han340cba62013-06-21 16:24:54 +090044#define PORT_LINK_MODE_4_LANES (0x7 << 16)
Zhou Wang5b0f0732015-05-13 14:44:34 +080045#define PORT_LINK_MODE_8_LANES (0xf << 16)
Jingoo Han340cba62013-06-21 16:24:54 +090046
47#define PCIE_LINK_WIDTH_SPEED_CONTROL 0x80C
48#define PORT_LOGIC_SPEED_CHANGE (0x1 << 17)
Zhou Wanged8b4722015-08-26 11:17:34 +080049#define PORT_LOGIC_LINK_WIDTH_MASK (0x1f << 8)
Jingoo Han4b1ced82013-07-31 17:14:10 +090050#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 Wang5b0f0732015-05-13 14:44:34 +080053#define PORT_LOGIC_LINK_WIDTH_8_LANES (0x8 << 8)
Jingoo Han340cba62013-06-21 16:24:54 +090054
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 Pintoa0601a42016-08-10 11:02:39 +010083/*
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 Pintodac29e62016-03-10 14:44:44 -060098/* PCIe Port Logic registers */
99#define PLR_OFFSET 0x700
100#define PCIE_PHY_DEBUG_R1 (PLR_OFFSET + 0x2c)
Jisheng Zhang01c07672016-08-17 15:57:37 -0500101#define PCIE_PHY_DEBUG_R1_LINK_UP (0x1 << 4)
102#define PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING (0x1 << 29)
Joao Pintodac29e62016-03-10 14:44:44 -0600103
Zhou Wangcbce7902015-10-29 19:57:21 -0500104static struct pci_ops dw_pcie_ops;
Jingoo Han340cba62013-06-21 16:24:54 +0900105
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500106int dw_pcie_cfg_read(void __iomem *addr, int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900107{
Gabriele Paolonib6b18f52015-10-08 14:27:53 -0500108 if ((uintptr_t)addr & (size - 1)) {
109 *val = 0;
110 return PCIBIOS_BAD_REGISTER_NUMBER;
111 }
112
Gabriele Paolonic003ca92015-10-08 14:27:43 -0500113 if (size == 4)
114 *val = readl(addr);
Jingoo Han340cba62013-06-21 16:24:54 +0900115 else if (size == 2)
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500116 *val = readw(addr);
Gabriele Paolonic003ca92015-10-08 14:27:43 -0500117 else if (size == 1)
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500118 *val = readb(addr);
Gabriele Paolonic003ca92015-10-08 14:27:43 -0500119 else {
120 *val = 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900121 return PCIBIOS_BAD_REGISTER_NUMBER;
Gabriele Paolonic003ca92015-10-08 14:27:43 -0500122 }
Jingoo Han340cba62013-06-21 16:24:54 +0900123
124 return PCIBIOS_SUCCESSFUL;
125}
126
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500127int dw_pcie_cfg_write(void __iomem *addr, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900128{
Gabriele Paolonib6b18f52015-10-08 14:27:53 -0500129 if ((uintptr_t)addr & (size - 1))
130 return PCIBIOS_BAD_REGISTER_NUMBER;
131
Jingoo Han340cba62013-06-21 16:24:54 +0900132 if (size == 4)
133 writel(val, addr);
134 else if (size == 2)
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500135 writew(val, addr);
Jingoo Han340cba62013-06-21 16:24:54 +0900136 else if (size == 1)
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500137 writeb(val, addr);
Jingoo Han340cba62013-06-21 16:24:54 +0900138 else
139 return PCIBIOS_BAD_REGISTER_NUMBER;
140
141 return PCIBIOS_SUCCESSFUL;
142}
143
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500144static inline u32 dw_pcie_readl_rc(struct pcie_port *pp, u32 reg)
Jingoo Han340cba62013-06-21 16:24:54 +0900145{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900146 if (pp->ops->readl_rc)
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500147 return pp->ops->readl_rc(pp, pp->dbi_base + reg);
148
149 return readl(pp->dbi_base + reg);
Jingoo Han340cba62013-06-21 16:24:54 +0900150}
151
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900152static inline void dw_pcie_writel_rc(struct pcie_port *pp, u32 val, u32 reg)
Jingoo Han340cba62013-06-21 16:24:54 +0900153{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900154 if (pp->ops->writel_rc)
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900155 pp->ops->writel_rc(pp, val, pp->dbi_base + reg);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900156 else
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900157 writel(val, pp->dbi_base + reg);
Jingoo Han340cba62013-06-21 16:24:54 +0900158}
159
Joao Pintoa0601a42016-08-10 11:02:39 +0100160static 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
170static 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 Helgaas73e40852013-10-09 09:12:37 -0600181static int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size,
182 u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900183{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900184 if (pp->ops->rd_own_conf)
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600185 return pp->ops->rd_own_conf(pp, where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900186
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600187 return dw_pcie_cfg_read(pp->dbi_base + where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900188}
189
Bjorn Helgaas73e40852013-10-09 09:12:37 -0600190static int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size,
191 u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900192{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900193 if (pp->ops->wr_own_conf)
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600194 return pp->ops->wr_own_conf(pp, where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900195
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600196 return dw_pcie_cfg_write(pp->dbi_base + where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900197}
198
Jisheng Zhang63503c82015-04-30 16:22:28 +0800199static 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 Pintod8bbeb32016-08-17 13:26:07 -0500202 u32 retries, val;
Stanimir Varbanov17209df2015-12-18 14:38:55 +0200203
Joao Pintoa0601a42016-08-10 11:02:39 +0100204 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 Varbanov17209df2015-12-18 14:38:55 +0200235
236 /*
237 * Make sure ATU enable takes effect before any subsequent config
238 * and I/O accesses.
239 */
Joao Pintod8bbeb32016-08-17 13:26:07 -0500240 for (retries = 0; retries < LINK_WAIT_MAX_IATU_RETRIES; retries++) {
Joao Pintoa0601a42016-08-10 11:02:39 +0100241 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 Pintod8bbeb32016-08-17 13:26:07 -0500247 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 Zhang63503c82015-04-30 16:22:28 +0800253}
254
Jingoo Hanf342d942013-09-06 15:54:59 +0900255static struct irq_chip dw_msi_irq_chip = {
256 .name = "PCI-MSI",
Thomas Gleixner280510f2014-11-23 12:23:20 +0100257 .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 Hanf342d942013-09-06 15:54:59 +0900261};
262
263/* MSI int handler */
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100264irqreturn_t dw_handle_msi_irq(struct pcie_port *pp)
Jingoo Hanf342d942013-09-06 15:54:59 +0900265{
266 unsigned long val;
Pratyush Anand904d0e72013-10-09 21:32:12 +0900267 int i, pos, irq;
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100268 irqreturn_t ret = IRQ_NONE;
Jingoo Hanf342d942013-09-06 15:54:59 +0900269
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 Stach7f4f16e2014-03-28 17:52:58 +0100274 ret = IRQ_HANDLED;
Jingoo Hanf342d942013-09-06 15:54:59 +0900275 pos = 0;
276 while ((pos = find_next_bit(&val, 32, pos)) != 32) {
Pratyush Anand904d0e72013-10-09 21:32:12 +0900277 irq = irq_find_mapping(pp->irq_domain,
278 i * 32 + pos);
Harro Haanca165892013-12-12 19:29:03 +0100279 dw_pcie_wr_own_conf(pp,
280 PCIE_MSI_INTR0_STATUS + i * 12,
281 4, 1 << pos);
Pratyush Anand904d0e72013-10-09 21:32:12 +0900282 generic_handle_irq(irq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900283 pos++;
284 }
285 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900286 }
Lucas Stach7f4f16e2014-03-28 17:52:58 +0100287
288 return ret;
Jingoo Hanf342d942013-09-06 15:54:59 +0900289}
290
291void dw_pcie_msi_init(struct pcie_port *pp)
292{
Lucas Stachc8947fb2015-09-18 13:58:35 -0500293 u64 msi_target;
294
Jingoo Hanf342d942013-09-06 15:54:59 +0900295 pp->msi_data = __get_free_pages(GFP_KERNEL, 0);
Lucas Stachc8947fb2015-09-18 13:58:35 -0500296 msi_target = virt_to_phys((void *)pp->msi_data);
Jingoo Hanf342d942013-09-06 15:54:59 +0900297
298 /* program the msi_data */
299 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_LO, 4,
Lucas Stachc8947fb2015-09-18 13:58:35 -0500300 (u32)(msi_target & 0xffffffff));
301 dw_pcie_wr_own_conf(pp, PCIE_MSI_ADDR_HI, 4,
302 (u32)(msi_target >> 32 & 0xffffffff));
Jingoo Hanf342d942013-09-06 15:54:59 +0900303}
304
Murali Karicheri2f37c5a2014-07-21 12:58:42 -0400305static 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 Nilsenbe3f48c2013-11-29 14:35:24 +0100316static void clear_irq_range(struct pcie_port *pp, unsigned int irq_base,
Jingoo Han58275f2f2013-12-27 09:30:25 +0900317 unsigned int nvec, unsigned int pos)
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100318{
Murali Karicheri2f37c5a2014-07-21 12:58:42 -0400319 unsigned int i;
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100320
Bjorn Helgaas0b8cfb62013-12-09 15:11:25 -0700321 for (i = 0; i < nvec; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100322 irq_set_msi_desc_off(irq_base, i, NULL);
Jingoo Han58275f2f2013-12-27 09:30:25 +0900323 /* Disable corresponding interrupt on MSI controller */
Murali Karicheri2f37c5a2014-07-21 12:58:42 -0400324 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 Nilsenbe3f48c2013-11-29 14:35:24 +0100328 }
Lucas Stachc8df6ac2014-09-30 18:36:27 +0200329
330 bitmap_release_region(pp->msi_irq_in_use, pos, order_base_2(nvec));
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100331}
332
Murali Karicheri2f37c5a2014-07-21 12:58:42 -0400333static 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 Hanf342d942013-09-06 15:54:59 +0900344static int assign_irq(int no_irqs, struct msi_desc *desc, int *pos)
345{
Lucas Stachc8df6ac2014-09-30 18:36:27 +0200346 int irq, pos0, i;
Zhou Wangcbce7902015-10-29 19:57:21 -0500347 struct pcie_port *pp = (struct pcie_port *) msi_desc_to_pci_sysdata(desc);
Jingoo Hanf342d942013-09-06 15:54:59 +0900348
Lucas Stachc8df6ac2014-09-30 18:36:27 +0200349 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 Hanf342d942013-09-06 15:54:59 +0900353
Pratyush Anand904d0e72013-10-09 21:32:12 +0900354 irq = irq_find_mapping(pp->irq_domain, pos0);
355 if (!irq)
Jingoo Hanf342d942013-09-06 15:54:59 +0900356 goto no_valid_irq;
357
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100358 /*
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 Helgaas0b8cfb62013-12-09 15:11:25 -0700365 for (i = 0; i < no_irqs; i++) {
Bjørn Erik Nilsenbe3f48c2013-11-29 14:35:24 +0100366 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 Hanf342d942013-09-06 15:54:59 +0900370 /*Enable corresponding interrupt in MSI interrupt controller */
Murali Karicheri2f37c5a2014-07-21 12:58:42 -0400371 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 Hanf342d942013-09-06 15:54:59 +0900375 }
376
377 *pos = pos0;
Lucas Stach79707372015-09-18 13:58:35 -0500378 desc->nvec_used = no_irqs;
379 desc->msi_attrib.multiple = order_base_2(no_irqs);
380
Jingoo Hanf342d942013-09-06 15:54:59 +0900381 return irq;
382
383no_valid_irq:
384 *pos = pos0;
385 return -ENOSPC;
386}
387
Lucas Stachea643e12015-09-18 13:58:35 -0500388static void dw_msi_setup_msg(struct pcie_port *pp, unsigned int irq, u32 pos)
Jingoo Hanf342d942013-09-06 15:54:59 +0900389{
Jingoo Hanf342d942013-09-06 15:54:59 +0900390 struct msi_msg msg;
Lucas Stachc8947fb2015-09-18 13:58:35 -0500391 u64 msi_target;
Jingoo Hanf342d942013-09-06 15:54:59 +0900392
Minghuan Lian450e3442014-09-23 22:28:58 +0800393 if (pp->ops->get_msi_addr)
Lucas Stachc8947fb2015-09-18 13:58:35 -0500394 msi_target = pp->ops->get_msi_addr(pp);
Murali Karicheri2f37c5a2014-07-21 12:58:42 -0400395 else
Lucas Stachc8947fb2015-09-18 13:58:35 -0500396 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 Lian24832b42014-09-23 22:28:59 +0800400
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 Liu83a18912014-11-09 23:10:34 +0800406 pci_write_msi_msg(irq, &msg);
Lucas Stachea643e12015-09-18 13:58:35 -0500407}
408
409static int dw_msi_setup_irq(struct msi_controller *chip, struct pci_dev *pdev,
410 struct msi_desc *desc)
411{
412 int irq, pos;
Zhou Wangcbce7902015-10-29 19:57:21 -0500413 struct pcie_port *pp = pdev->bus->sysdata;
Lucas Stachea643e12015-09-18 13:58:35 -0500414
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 Hanf342d942013-09-06 15:54:59 +0900423
424 return 0;
425}
426
Lucas Stach79707372015-09-18 13:58:35 -0500427static 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 Wangcbce7902015-10-29 19:57:21 -0500433 struct pcie_port *pp = pdev->bus->sysdata;
Lucas Stach79707372015-09-18 13:58:35 -0500434
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 Wangc2791b82014-11-11 17:45:45 -0700454static void dw_msi_teardown_irq(struct msi_controller *chip, unsigned int irq)
Jingoo Hanf342d942013-09-06 15:54:59 +0900455{
Lucas Stach91f8ae82014-09-30 18:36:26 +0200456 struct irq_data *data = irq_get_irq_data(irq);
Jiang Liuc391f262015-06-01 16:05:41 +0800457 struct msi_desc *msi = irq_data_get_msi_desc(data);
Zhou Wangcbce7902015-10-29 19:57:21 -0500458 struct pcie_port *pp = (struct pcie_port *) msi_desc_to_pci_sysdata(msi);
Lucas Stach91f8ae82014-09-30 18:36:26 +0200459
460 clear_irq_range(pp, irq, 1, data->hwirq);
Jingoo Hanf342d942013-09-06 15:54:59 +0900461}
462
Yijing Wangc2791b82014-11-11 17:45:45 -0700463static struct msi_controller dw_pcie_msi_chip = {
Jingoo Hanf342d942013-09-06 15:54:59 +0900464 .setup_irq = dw_msi_setup_irq,
Lucas Stach79707372015-09-18 13:58:35 -0500465 .setup_irqs = dw_msi_setup_irqs,
Jingoo Hanf342d942013-09-06 15:54:59 +0900466 .teardown_irq = dw_msi_teardown_irq,
467};
468
Joao Pinto886bc5c2016-03-10 14:44:35 -0600469int 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 Han4b1ced82013-07-31 17:14:10 +0900487int dw_pcie_link_up(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900488{
Joao Pintodac29e62016-03-10 14:44:44 -0600489 u32 val;
490
Jingoo Han4b1ced82013-07-31 17:14:10 +0900491 if (pp->ops->link_up)
492 return pp->ops->link_up(pp);
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600493
Joao Pintodac29e62016-03-10 14:44:44 -0600494 val = readl(pp->dbi_base + PCIE_PHY_DEBUG_R1);
Jisheng Zhang01c07672016-08-17 15:57:37 -0500495 return ((val & PCIE_PHY_DEBUG_R1_LINK_UP) &&
496 (!(val & PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING)));
Jingoo Han340cba62013-06-21 16:24:54 +0900497}
498
Jingoo Hanf342d942013-09-06 15:54:59 +0900499static 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 Hanf342d942013-09-06 15:54:59 +0900504
505 return 0;
506}
507
508static const struct irq_domain_ops msi_domain_ops = {
509 .map = dw_pcie_msi_map,
510};
511
Joao Pintoa0601a42016-08-10 11:02:39 +0100512static 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. Kornilova43f32d2015-02-19 20:41:48 +0300523int dw_pcie_host_init(struct pcie_port *pp)
Jingoo Han340cba62013-06-21 16:24:54 +0900524{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900525 struct device_node *np = pp->dev->of_node;
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530526 struct platform_device *pdev = to_platform_device(pp->dev);
Zhou Wangcbce7902015-10-29 19:57:21 -0500527 struct pci_bus *bus, *child;
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530528 struct resource *cfg_res;
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500529 int i, ret;
Zhou Wang0021d222015-10-29 19:57:06 -0500530 LIST_HEAD(res);
531 struct resource_entry *win;
Jingoo Hanf342d942013-09-06 15:54:59 +0900532
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530533 cfg_res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "config");
534 if (cfg_res) {
Pratyush Anandadf70fc2014-09-05 17:48:54 -0600535 pp->cfg0_size = resource_size(cfg_res)/2;
536 pp->cfg1_size = resource_size(cfg_res)/2;
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530537 pp->cfg0_base = cfg_res->start;
Pratyush Anandadf70fc2014-09-05 17:48:54 -0600538 pp->cfg1_base = cfg_res->start + pp->cfg0_size;
Murali Karicheri0f414212015-07-21 17:54:11 -0400539 } else if (!pp->va_cfg0_base) {
Kishon Vijay Abraham I4dd964d2014-07-17 14:30:40 +0530540 dev_err(pp->dev, "missing *config* reg space\n");
541 }
542
Zhou Wang0021d222015-10-29 19:57:06 -0500543 ret = of_pci_get_host_bridge_resources(np, 0, 0xff, &res, &pp->io_base);
544 if (ret)
545 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900546
Bjorn Helgaas12722db2016-05-28 18:18:54 -0500547 ret = devm_request_pci_bus_resources(&pdev->dev, &res);
548 if (ret)
549 goto error;
550
Jingoo Han340cba62013-06-21 16:24:54 +0900551 /* Get the I/O and memory ranges from DT */
Zhou Wang0021d222015-10-29 19:57:06 -0500552 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 Wangcbce7902015-10-29 19:57:21 -0500559 ret = pci_remap_iospace(pp->io, pp->io_base);
Bjorn Helgaas7baf69c2016-05-28 18:48:11 -0500560 if (ret)
Zhou Wangcbce7902015-10-29 19:57:21 -0500561 dev_warn(pp->dev, "error %d: failed to map resource %pR\n",
562 ret, pp->io);
Zhou Wang0021d222015-10-29 19:57:06 -0500563 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 Han340cba62013-06-21 16:24:54 +0900580 }
Lucas Stach4f2ebe02014-07-23 19:52:38 +0200581 }
582
Jingoo Han4b1ced82013-07-31 17:14:10 +0900583 if (!pp->dbi_base) {
Zhou Wang0021d222015-10-29 19:57:06 -0500584 pp->dbi_base = devm_ioremap(pp->dev, pp->cfg->start,
585 resource_size(pp->cfg));
Jingoo Han4b1ced82013-07-31 17:14:10 +0900586 if (!pp->dbi_base) {
587 dev_err(pp->dev, "error with ioremap\n");
Bjorn Helgaas27d9cb72016-05-31 11:14:08 -0500588 ret = -ENOMEM;
589 goto error;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900590 }
Jingoo Han340cba62013-06-21 16:24:54 +0900591 }
Jingoo Han340cba62013-06-21 16:24:54 +0900592
Zhou Wang0021d222015-10-29 19:57:06 -0500593 pp->mem_base = pp->mem->start;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900594
Jingoo Han4b1ced82013-07-31 17:14:10 +0900595 if (!pp->va_cfg0_base) {
Murali Karicherib14a3d12014-07-23 14:54:51 -0400596 pp->va_cfg0_base = devm_ioremap(pp->dev, pp->cfg0_base,
Pratyush Anandadf70fc2014-09-05 17:48:54 -0600597 pp->cfg0_size);
Murali Karicherib14a3d12014-07-23 14:54:51 -0400598 if (!pp->va_cfg0_base) {
599 dev_err(pp->dev, "error with ioremap in function\n");
Bjorn Helgaas27d9cb72016-05-31 11:14:08 -0500600 ret = -ENOMEM;
601 goto error;
Murali Karicherib14a3d12014-07-23 14:54:51 -0400602 }
Jingoo Han340cba62013-06-21 16:24:54 +0900603 }
Murali Karicherib14a3d12014-07-23 14:54:51 -0400604
Jingoo Han4b1ced82013-07-31 17:14:10 +0900605 if (!pp->va_cfg1_base) {
Murali Karicherib14a3d12014-07-23 14:54:51 -0400606 pp->va_cfg1_base = devm_ioremap(pp->dev, pp->cfg1_base,
Pratyush Anandadf70fc2014-09-05 17:48:54 -0600607 pp->cfg1_size);
Murali Karicherib14a3d12014-07-23 14:54:51 -0400608 if (!pp->va_cfg1_base) {
609 dev_err(pp->dev, "error with ioremap\n");
Bjorn Helgaas27d9cb72016-05-31 11:14:08 -0500610 ret = -ENOMEM;
611 goto error;
Murali Karicherib14a3d12014-07-23 14:54:51 -0400612 }
Jingoo Han4b1ced82013-07-31 17:14:10 +0900613 }
Jingoo Han340cba62013-06-21 16:24:54 +0900614
Gabriele Paoloni907fce02015-09-29 00:03:10 +0800615 ret = of_property_read_u32(np, "num-lanes", &pp->lanes);
616 if (ret)
617 pp->lanes = 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900618
Jingoo Hanf342d942013-09-06 15:54:59 +0900619 if (IS_ENABLED(CONFIG_PCI_MSI)) {
Murali Karicherib14a3d12014-07-23 14:54:51 -0400620 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 Helgaas27d9cb72016-05-31 11:14:08 -0500626 ret = -ENXIO;
627 goto error;
Murali Karicherib14a3d12014-07-23 14:54:51 -0400628 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900629
Murali Karicherib14a3d12014-07-23 14:54:51 -0400630 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 Helgaas27d9cb72016-05-31 11:14:08 -0500635 goto error;
Murali Karicherib14a3d12014-07-23 14:54:51 -0400636 }
Jingoo Hanf342d942013-09-06 15:54:59 +0900637 }
638
Joao Pintoa0601a42016-08-10 11:02:39 +0100639 pp->iatu_unroll_enabled = dw_pcie_iatu_unroll_enabled(pp);
640
Jingoo Han4b1ced82013-07-31 17:14:10 +0900641 if (pp->ops->host_init)
642 pp->ops->host_init(pp);
Jingoo Han340cba62013-06-21 16:24:54 +0900643
Zhou Wangcbce7902015-10-29 19:57:21 -0500644 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 Helgaas27d9cb72016-05-31 11:14:08 -0500653 if (!bus) {
654 ret = -ENOMEM;
655 goto error;
656 }
Zhou Wangcbce7902015-10-29 19:57:21 -0500657
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 Wang0815f952014-11-11 15:38:07 -0700664#endif
665
Lorenzo Pieralisied00c832016-01-29 11:29:32 +0000666 pci_bus_size_bridges(bus);
667 pci_bus_assign_resources(bus);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900668
Lorenzo Pieralisied00c832016-01-29 11:29:32 +0000669 list_for_each_entry(child, &bus->children, node)
670 pcie_bus_configure_settings(child);
Jingoo Han340cba62013-06-21 16:24:54 +0900671
Zhou Wangcbce7902015-10-29 19:57:21 -0500672 pci_bus_add_devices(bus);
Jingoo Han340cba62013-06-21 16:24:54 +0900673 return 0;
Bjorn Helgaas27d9cb72016-05-31 11:14:08 -0500674
675error:
676 pci_free_resource_list(&res);
677 return ret;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900678}
Jingoo Han340cba62013-06-21 16:24:54 +0900679
Jingoo Han4b1ced82013-07-31 17:14:10 +0900680static 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 Zhang2d91b492015-04-30 16:22:29 +0800683 int ret, type;
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500684 u32 busdev, cfg_size;
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800685 u64 cpu_addr;
686 void __iomem *va_cfg_base;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900687
Bjorn Helgaas67de2dc2016-01-05 15:56:30 -0600688 if (pp->ops->rd_other_conf)
689 return pp->ops->rd_other_conf(pp, bus, devfn, where, size, val);
690
Jingoo Han4b1ced82013-07-31 17:14:10 +0900691 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
692 PCIE_ATU_FUNC(PCI_FUNC(devfn));
Jingoo Han4b1ced82013-07-31 17:14:10 +0900693
694 if (bus->parent->number == pp->root_bus_nr) {
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800695 type = PCIE_ATU_TYPE_CFG0;
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500696 cpu_addr = pp->cfg0_base;
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800697 cfg_size = pp->cfg0_size;
698 va_cfg_base = pp->va_cfg0_base;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900699 } else {
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800700 type = PCIE_ATU_TYPE_CFG1;
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500701 cpu_addr = pp->cfg1_base;
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800702 cfg_size = pp->cfg1_size;
703 va_cfg_base = pp->va_cfg1_base;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900704 }
705
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800706 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
707 type, cpu_addr,
708 busdev, cfg_size);
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500709 ret = dw_pcie_cfg_read(va_cfg_base + where, size, val);
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800710 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500711 PCIE_ATU_TYPE_IO, pp->io_base,
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800712 pp->io_bus_addr, pp->io_size);
713
Jingoo Han340cba62013-06-21 16:24:54 +0900714 return ret;
715}
716
Jingoo Han4b1ced82013-07-31 17:14:10 +0900717static int dw_pcie_wr_other_conf(struct pcie_port *pp, struct pci_bus *bus,
718 u32 devfn, int where, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +0900719{
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800720 int ret, type;
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500721 u32 busdev, cfg_size;
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800722 u64 cpu_addr;
723 void __iomem *va_cfg_base;
Jingoo Han340cba62013-06-21 16:24:54 +0900724
Bjorn Helgaas67de2dc2016-01-05 15:56:30 -0600725 if (pp->ops->wr_other_conf)
726 return pp->ops->wr_other_conf(pp, bus, devfn, where, size, val);
727
Jingoo Han4b1ced82013-07-31 17:14:10 +0900728 busdev = PCIE_ATU_BUS(bus->number) | PCIE_ATU_DEV(PCI_SLOT(devfn)) |
729 PCIE_ATU_FUNC(PCI_FUNC(devfn));
Jingoo Han340cba62013-06-21 16:24:54 +0900730
Jingoo Han4b1ced82013-07-31 17:14:10 +0900731 if (bus->parent->number == pp->root_bus_nr) {
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800732 type = PCIE_ATU_TYPE_CFG0;
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500733 cpu_addr = pp->cfg0_base;
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800734 cfg_size = pp->cfg0_size;
735 va_cfg_base = pp->va_cfg0_base;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900736 } else {
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800737 type = PCIE_ATU_TYPE_CFG1;
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500738 cpu_addr = pp->cfg1_base;
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800739 cfg_size = pp->cfg1_size;
740 va_cfg_base = pp->va_cfg1_base;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900741 }
742
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800743 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
744 type, cpu_addr,
745 busdev, cfg_size);
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500746 ret = dw_pcie_cfg_write(va_cfg_base + where, size, val);
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800747 dw_pcie_prog_outbound_atu(pp, PCIE_ATU_REGION_INDEX0,
Zhou Wang9cdce1c2015-10-29 19:56:58 -0500748 PCIE_ATU_TYPE_IO, pp->io_base,
Jisheng Zhang2d91b492015-04-30 16:22:29 +0800749 pp->io_bus_addr, pp->io_size);
750
Jingoo Han4b1ced82013-07-31 17:14:10 +0900751 return ret;
Jingoo Han340cba62013-06-21 16:24:54 +0900752}
753
Jingoo Han4b1ced82013-07-31 17:14:10 +0900754static int dw_pcie_valid_config(struct pcie_port *pp,
755 struct pci_bus *bus, int dev)
Jingoo Han340cba62013-06-21 16:24:54 +0900756{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900757 /* 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 Han340cba62013-06-21 16:24:54 +0900762
Jingoo Han4b1ced82013-07-31 17:14:10 +0900763 /* access only one slot on each root port */
764 if (bus->number == pp->root_bus_nr && dev > 0)
765 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900766
767 /*
Jingoo Han4b1ced82013-07-31 17:14:10 +0900768 * do not read more than one device on the bus directly attached
769 * to RC's (Virtual Bridge's) DS side.
Jingoo Han340cba62013-06-21 16:24:54 +0900770 */
Jingoo Han4b1ced82013-07-31 17:14:10 +0900771 if (bus->primary == pp->root_bus_nr && dev > 0)
Jingoo Han340cba62013-06-21 16:24:54 +0900772 return 0;
Jingoo Han340cba62013-06-21 16:24:54 +0900773
774 return 1;
775}
776
Jingoo Han4b1ced82013-07-31 17:14:10 +0900777static int dw_pcie_rd_conf(struct pci_bus *bus, u32 devfn, int where,
778 int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +0900779{
Zhou Wangcbce7902015-10-29 19:57:21 -0500780 struct pcie_port *pp = bus->sysdata;
Jingoo Han340cba62013-06-21 16:24:54 +0900781
Jingoo Han4b1ced82013-07-31 17:14:10 +0900782 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0) {
783 *val = 0xffffffff;
784 return PCIBIOS_DEVICE_NOT_FOUND;
785 }
786
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600787 if (bus->number == pp->root_bus_nr)
788 return dw_pcie_rd_own_conf(pp, where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900789
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600790 return dw_pcie_rd_other_conf(pp, bus, devfn, where, size, val);
Jingoo Han340cba62013-06-21 16:24:54 +0900791}
Jingoo Han4b1ced82013-07-31 17:14:10 +0900792
793static int dw_pcie_wr_conf(struct pci_bus *bus, u32 devfn,
794 int where, int size, u32 val)
795{
Zhou Wangcbce7902015-10-29 19:57:21 -0500796 struct pcie_port *pp = bus->sysdata;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900797
Jingoo Han4b1ced82013-07-31 17:14:10 +0900798 if (dw_pcie_valid_config(pp, bus, PCI_SLOT(devfn)) == 0)
799 return PCIBIOS_DEVICE_NOT_FOUND;
800
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600801 if (bus->number == pp->root_bus_nr)
802 return dw_pcie_wr_own_conf(pp, where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900803
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600804 return dw_pcie_wr_other_conf(pp, bus, devfn, where, size, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900805}
806
807static struct pci_ops dw_pcie_ops = {
808 .read = dw_pcie_rd_conf,
809 .write = dw_pcie_wr_conf,
810};
811
Jingoo Han4b1ced82013-07-31 17:14:10 +0900812void dw_pcie_setup_rc(struct pcie_port *pp)
813{
Jingoo Han4b1ced82013-07-31 17:14:10 +0900814 u32 val;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900815
Mohit Kumar66c5c342014-04-14 14:22:54 -0600816 /* set the number of lanes */
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500817 val = dw_pcie_readl_rc(pp, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900818 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 Wang5b0f0732015-05-13 14:44:34 +0800829 case 8:
830 val |= PORT_LINK_MODE_8_LANES;
831 break;
Gabriele Paoloni907fce02015-09-29 00:03:10 +0800832 default:
833 dev_err(pp->dev, "num-lanes %u: invalid value\n", pp->lanes);
834 return;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900835 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900836 dw_pcie_writel_rc(pp, val, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900837
838 /* set link width speed control register */
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500839 val = dw_pcie_readl_rc(pp, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900840 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 Wang5b0f0732015-05-13 14:44:34 +0800851 case 8:
852 val |= PORT_LOGIC_LINK_WIDTH_8_LANES;
853 break;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900854 }
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900855 dw_pcie_writel_rc(pp, val, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900856
857 /* setup RC BARs */
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900858 dw_pcie_writel_rc(pp, 0x00000004, PCI_BASE_ADDRESS_0);
Mohit Kumardbffdd62014-02-19 17:34:35 +0530859 dw_pcie_writel_rc(pp, 0x00000000, PCI_BASE_ADDRESS_1);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900860
861 /* setup interrupt pins */
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500862 val = dw_pcie_readl_rc(pp, PCI_INTERRUPT_LINE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900863 val &= 0xffff00ff;
864 val |= 0x00000100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900865 dw_pcie_writel_rc(pp, val, PCI_INTERRUPT_LINE);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900866
867 /* setup bus numbers */
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500868 val = dw_pcie_readl_rc(pp, PCI_PRIMARY_BUS);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900869 val &= 0xff000000;
870 val |= 0x00010100;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900871 dw_pcie_writel_rc(pp, val, PCI_PRIMARY_BUS);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900872
Jingoo Han4b1ced82013-07-31 17:14:10 +0900873 /* setup command register */
Bjorn Helgaas446fc232016-08-17 14:17:58 -0500874 val = dw_pcie_readl_rc(pp, PCI_COMMAND);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900875 val &= 0xffff0000;
876 val |= PCI_COMMAND_IO | PCI_COMMAND_MEMORY |
877 PCI_COMMAND_MASTER | PCI_COMMAND_SERR;
Seungwon Jeonf7b78682013-08-28 20:53:30 +0900878 dw_pcie_writel_rc(pp, val, PCI_COMMAND);
Jisheng Zhang7e57fd12016-03-16 19:40:33 +0800879
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 Han4b1ced82013-07-31 17:14:10 +0900898}
Jingoo Han340cba62013-06-21 16:24:54 +0900899
900MODULE_AUTHOR("Jingoo Han <jg1.han@samsung.com>");
Jingoo Han4b1ced82013-07-31 17:14:10 +0900901MODULE_DESCRIPTION("Designware PCIe host controller driver");
Jingoo Han340cba62013-06-21 16:24:54 +0900902MODULE_LICENSE("GPL v2");