blob: 54de468a745e8ecc78d79acab1f9e5a263558b3a [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
Joao Pinto886bc5c2016-03-10 14:44:35 -060014#include <linux/delay.h>
Kishon Vijay Abraham Ifeb85d92017-02-15 18:48:17 +053015#include <linux/of.h>
16#include <linux/types.h>
Jingoo Han340cba62013-06-21 16:24:54 +090017
Jingoo Han4b1ced82013-07-31 17:14:10 +090018#include "pcie-designware.h"
Jingoo Han340cba62013-06-21 16:24:54 +090019
Joao Pintodac29e62016-03-10 14:44:44 -060020/* PCIe Port Logic registers */
21#define PLR_OFFSET 0x700
22#define PCIE_PHY_DEBUG_R1 (PLR_OFFSET + 0x2c)
Jisheng Zhang01c07672016-08-17 15:57:37 -050023#define PCIE_PHY_DEBUG_R1_LINK_UP (0x1 << 4)
24#define PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING (0x1 << 29)
Joao Pintodac29e62016-03-10 14:44:44 -060025
Kishon Vijay Abraham I19ce01cc2017-02-15 18:48:12 +053026int dw_pcie_read(void __iomem *addr, int size, u32 *val)
Jingoo Han340cba62013-06-21 16:24:54 +090027{
Gabriele Paolonib6b18f52015-10-08 14:27:53 -050028 if ((uintptr_t)addr & (size - 1)) {
29 *val = 0;
30 return PCIBIOS_BAD_REGISTER_NUMBER;
31 }
32
Kishon Vijay Abraham I314fc852017-02-15 18:48:16 +053033 if (size == 4) {
Gabriele Paolonic003ca92015-10-08 14:27:43 -050034 *val = readl(addr);
Kishon Vijay Abraham I314fc852017-02-15 18:48:16 +053035 } else if (size == 2) {
Gabriele Paoloni4c458522015-10-08 14:27:48 -050036 *val = readw(addr);
Kishon Vijay Abraham I314fc852017-02-15 18:48:16 +053037 } else if (size == 1) {
Gabriele Paoloni4c458522015-10-08 14:27:48 -050038 *val = readb(addr);
Kishon Vijay Abraham I314fc852017-02-15 18:48:16 +053039 } else {
Gabriele Paolonic003ca92015-10-08 14:27:43 -050040 *val = 0;
Jingoo Han340cba62013-06-21 16:24:54 +090041 return PCIBIOS_BAD_REGISTER_NUMBER;
Gabriele Paolonic003ca92015-10-08 14:27:43 -050042 }
Jingoo Han340cba62013-06-21 16:24:54 +090043
44 return PCIBIOS_SUCCESSFUL;
45}
46
Kishon Vijay Abraham I19ce01cc2017-02-15 18:48:12 +053047int dw_pcie_write(void __iomem *addr, int size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +090048{
Gabriele Paolonib6b18f52015-10-08 14:27:53 -050049 if ((uintptr_t)addr & (size - 1))
50 return PCIBIOS_BAD_REGISTER_NUMBER;
51
Jingoo Han340cba62013-06-21 16:24:54 +090052 if (size == 4)
53 writel(val, addr);
54 else if (size == 2)
Gabriele Paoloni4c458522015-10-08 14:27:48 -050055 writew(val, addr);
Jingoo Han340cba62013-06-21 16:24:54 +090056 else if (size == 1)
Gabriele Paoloni4c458522015-10-08 14:27:48 -050057 writeb(val, addr);
Jingoo Han340cba62013-06-21 16:24:54 +090058 else
59 return PCIBIOS_BAD_REGISTER_NUMBER;
60
61 return PCIBIOS_SUCCESSFUL;
62}
63
Kishon Vijay Abraham Ia509d7d2017-03-13 19:13:26 +053064u32 __dw_pcie_read_dbi(struct dw_pcie *pci, void __iomem *base, u32 reg,
65 size_t size)
Jingoo Han340cba62013-06-21 16:24:54 +090066{
Kishon Vijay Abraham Ia509d7d2017-03-13 19:13:26 +053067 int ret;
68 u32 val;
Bjorn Helgaas446fc232016-08-17 14:17:58 -050069
Kishon Vijay Abraham Ia509d7d2017-03-13 19:13:26 +053070 if (pci->ops->read_dbi)
71 return pci->ops->read_dbi(pci, base, reg, size);
72
73 ret = dw_pcie_read(base + reg, size, &val);
74 if (ret)
75 dev_err(pci->dev, "read DBI address failed\n");
76
77 return val;
Jingoo Han340cba62013-06-21 16:24:54 +090078}
79
Kishon Vijay Abraham Ia509d7d2017-03-13 19:13:26 +053080void __dw_pcie_write_dbi(struct dw_pcie *pci, void __iomem *base, u32 reg,
81 size_t size, u32 val)
Jingoo Han340cba62013-06-21 16:24:54 +090082{
Kishon Vijay Abraham Ia509d7d2017-03-13 19:13:26 +053083 int ret;
84
85 if (pci->ops->write_dbi) {
86 pci->ops->write_dbi(pci, base, reg, size, val);
87 return;
88 }
89
90 ret = dw_pcie_write(base + reg, size, val);
91 if (ret)
92 dev_err(pci->dev, "write DBI address failed\n");
Jingoo Han340cba62013-06-21 16:24:54 +090093}
94
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +053095static u32 dw_pcie_readl_ob_unroll(struct dw_pcie *pci, u32 index, u32 reg)
Joao Pintoa0601a42016-08-10 11:02:39 +010096{
97 u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index);
98
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +053099 return dw_pcie_readl_dbi(pci, offset + reg);
Joao Pintoa0601a42016-08-10 11:02:39 +0100100}
101
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +0530102static void dw_pcie_writel_ob_unroll(struct dw_pcie *pci, u32 index, u32 reg,
103 u32 val)
Joao Pintoa0601a42016-08-10 11:02:39 +0100104{
105 u32 offset = PCIE_GET_ATU_OUTB_UNR_REG_OFFSET(index);
106
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530107 dw_pcie_writel_dbi(pci, offset + reg, val);
Joao Pintoa0601a42016-08-10 11:02:39 +0100108}
109
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +0530110void dw_pcie_prog_outbound_atu_unroll(struct dw_pcie *pci, int index, int type,
111 u64 cpu_addr, u64 pci_addr, u32 size)
112{
113 u32 retries, val;
114
115 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_LOWER_BASE,
116 lower_32_bits(cpu_addr));
117 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_UPPER_BASE,
118 upper_32_bits(cpu_addr));
119 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_LIMIT,
120 lower_32_bits(cpu_addr + size - 1));
121 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_LOWER_TARGET,
122 lower_32_bits(pci_addr));
123 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_UPPER_TARGET,
124 upper_32_bits(pci_addr));
125 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_REGION_CTRL1,
126 type);
127 dw_pcie_writel_ob_unroll(pci, index, PCIE_ATU_UNR_REGION_CTRL2,
128 PCIE_ATU_ENABLE);
129
130 /*
131 * Make sure ATU enable takes effect before any subsequent config
132 * and I/O accesses.
133 */
134 for (retries = 0; retries < LINK_WAIT_MAX_IATU_RETRIES; retries++) {
135 val = dw_pcie_readl_ob_unroll(pci, index,
136 PCIE_ATU_UNR_REGION_CTRL2);
137 if (val & PCIE_ATU_ENABLE)
138 return;
139
140 usleep_range(LINK_WAIT_IATU_MIN, LINK_WAIT_IATU_MAX);
141 }
142 dev_err(pci->dev, "outbound iATU is not being enabled\n");
143}
144
Kishon Vijay Abraham Ifeb85d92017-02-15 18:48:17 +0530145void dw_pcie_prog_outbound_atu(struct dw_pcie *pci, int index, int type,
146 u64 cpu_addr, u64 pci_addr, u32 size)
Jisheng Zhang63503c82015-04-30 16:22:28 +0800147{
Joao Pintod8bbeb32016-08-17 13:26:07 -0500148 u32 retries, val;
Stanimir Varbanov17209df2015-12-18 14:38:55 +0200149
Kishon Vijay Abraham Ia6600832017-03-13 19:13:22 +0530150 if (pci->ops->cpu_addr_fixup)
151 cpu_addr = pci->ops->cpu_addr_fixup(cpu_addr);
152
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530153 if (pci->iatu_unroll_enabled) {
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +0530154 dw_pcie_prog_outbound_atu_unroll(pci, index, type, cpu_addr,
155 pci_addr, size);
156 return;
Joao Pintoa0601a42016-08-10 11:02:39 +0100157 }
Stanimir Varbanov17209df2015-12-18 14:38:55 +0200158
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +0530159 dw_pcie_writel_dbi(pci, PCIE_ATU_VIEWPORT,
160 PCIE_ATU_REGION_OUTBOUND | index);
161 dw_pcie_writel_dbi(pci, PCIE_ATU_LOWER_BASE,
162 lower_32_bits(cpu_addr));
163 dw_pcie_writel_dbi(pci, PCIE_ATU_UPPER_BASE,
164 upper_32_bits(cpu_addr));
165 dw_pcie_writel_dbi(pci, PCIE_ATU_LIMIT,
166 lower_32_bits(cpu_addr + size - 1));
167 dw_pcie_writel_dbi(pci, PCIE_ATU_LOWER_TARGET,
168 lower_32_bits(pci_addr));
169 dw_pcie_writel_dbi(pci, PCIE_ATU_UPPER_TARGET,
170 upper_32_bits(pci_addr));
171 dw_pcie_writel_dbi(pci, PCIE_ATU_CR1, type);
172 dw_pcie_writel_dbi(pci, PCIE_ATU_CR2, PCIE_ATU_ENABLE);
173
Stanimir Varbanov17209df2015-12-18 14:38:55 +0200174 /*
175 * Make sure ATU enable takes effect before any subsequent config
176 * and I/O accesses.
177 */
Joao Pintod8bbeb32016-08-17 13:26:07 -0500178 for (retries = 0; retries < LINK_WAIT_MAX_IATU_RETRIES; retries++) {
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +0530179 val = dw_pcie_readl_dbi(pci, PCIE_ATU_CR2);
Joao Pintod8bbeb32016-08-17 13:26:07 -0500180 if (val == PCIE_ATU_ENABLE)
181 return;
182
183 usleep_range(LINK_WAIT_IATU_MIN, LINK_WAIT_IATU_MAX);
184 }
Kishon Vijay Abraham Iedd45e32017-03-13 19:13:27 +0530185 dev_err(pci->dev, "outbound iATU is not being enabled\n");
Jisheng Zhang63503c82015-04-30 16:22:28 +0800186}
187
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530188int dw_pcie_wait_for_link(struct dw_pcie *pci)
Joao Pinto886bc5c2016-03-10 14:44:35 -0600189{
190 int retries;
191
192 /* check if the link is up or not */
193 for (retries = 0; retries < LINK_WAIT_MAX_RETRIES; retries++) {
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530194 if (dw_pcie_link_up(pci)) {
195 dev_info(pci->dev, "link up\n");
Joao Pinto886bc5c2016-03-10 14:44:35 -0600196 return 0;
197 }
198 usleep_range(LINK_WAIT_USLEEP_MIN, LINK_WAIT_USLEEP_MAX);
199 }
200
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530201 dev_err(pci->dev, "phy link never came up\n");
Joao Pinto886bc5c2016-03-10 14:44:35 -0600202
203 return -ETIMEDOUT;
204}
205
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530206int dw_pcie_link_up(struct dw_pcie *pci)
Jingoo Han340cba62013-06-21 16:24:54 +0900207{
Joao Pintodac29e62016-03-10 14:44:44 -0600208 u32 val;
209
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530210 if (pci->ops->link_up)
211 return pci->ops->link_up(pci);
Bjorn Helgaas116a4892016-01-05 15:48:11 -0600212
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530213 val = readl(pci->dbi_base + PCIE_PHY_DEBUG_R1);
Jisheng Zhang01c07672016-08-17 15:57:37 -0500214 return ((val & PCIE_PHY_DEBUG_R1_LINK_UP) &&
215 (!(val & PCIE_PHY_DEBUG_R1_LINK_IN_TRAINING)));
Jingoo Han340cba62013-06-21 16:24:54 +0900216}
217
Kishon Vijay Abraham Ifeb85d92017-02-15 18:48:17 +0530218void dw_pcie_setup(struct dw_pcie *pci)
Jingoo Han4b1ced82013-07-31 17:14:10 +0900219{
Kishon Vijay Abraham I5f334db2017-02-15 18:48:15 +0530220 int ret;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900221 u32 val;
Kishon Vijay Abraham Ifeb85d92017-02-15 18:48:17 +0530222 u32 lanes;
Kishon Vijay Abraham I5f334db2017-02-15 18:48:15 +0530223 struct device *dev = pci->dev;
224 struct device_node *np = dev->of_node;
225
226 ret = of_property_read_u32(np, "num-lanes", &lanes);
227 if (ret)
228 lanes = 0;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900229
Mohit Kumar66c5c342014-04-14 14:22:54 -0600230 /* set the number of lanes */
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530231 val = dw_pcie_readl_dbi(pci, PCIE_PORT_LINK_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900232 val &= ~PORT_LINK_MODE_MASK;
Kishon Vijay Abraham I5f334db2017-02-15 18:48:15 +0530233 switch (lanes) {
Jingoo Han4b1ced82013-07-31 17:14:10 +0900234 case 1:
235 val |= PORT_LINK_MODE_1_LANES;
236 break;
237 case 2:
238 val |= PORT_LINK_MODE_2_LANES;
239 break;
240 case 4:
241 val |= PORT_LINK_MODE_4_LANES;
242 break;
Zhou Wang5b0f0732015-05-13 14:44:34 +0800243 case 8:
244 val |= PORT_LINK_MODE_8_LANES;
245 break;
Gabriele Paoloni907fce02015-09-29 00:03:10 +0800246 default:
Kishon Vijay Abraham I5f334db2017-02-15 18:48:15 +0530247 dev_err(pci->dev, "num-lanes %u: invalid value\n", lanes);
Gabriele Paoloni907fce02015-09-29 00:03:10 +0800248 return;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900249 }
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530250 dw_pcie_writel_dbi(pci, PCIE_PORT_LINK_CONTROL, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900251
252 /* set link width speed control register */
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530253 val = dw_pcie_readl_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900254 val &= ~PORT_LOGIC_LINK_WIDTH_MASK;
Kishon Vijay Abraham I5f334db2017-02-15 18:48:15 +0530255 switch (lanes) {
Jingoo Han4b1ced82013-07-31 17:14:10 +0900256 case 1:
257 val |= PORT_LOGIC_LINK_WIDTH_1_LANES;
258 break;
259 case 2:
260 val |= PORT_LOGIC_LINK_WIDTH_2_LANES;
261 break;
262 case 4:
263 val |= PORT_LOGIC_LINK_WIDTH_4_LANES;
264 break;
Zhou Wang5b0f0732015-05-13 14:44:34 +0800265 case 8:
266 val |= PORT_LOGIC_LINK_WIDTH_8_LANES;
267 break;
Jingoo Han4b1ced82013-07-31 17:14:10 +0900268 }
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530269 dw_pcie_writel_dbi(pci, PCIE_LINK_WIDTH_SPEED_CONTROL, val);
Jingoo Han4b1ced82013-07-31 17:14:10 +0900270}