blob: 3cf197ba7f37baa6dd9613844cd21767e3caef93 [file] [log] [blame]
Pratyush Anand51b66a62014-02-11 11:39:26 +05301/*
2 * PCIe host controller driver for ST Microelectronics SPEAr13xx SoCs
3 *
4 * SPEAr13xx PCIe Glue Layer Source Code
5 *
6 * Copyright (C) 2010-2014 ST Microelectronics
Pratyush Anande34cadd2015-06-25 15:01:08 -07007 * Pratyush Anand <pratyush.anand@gmail.com>
Pratyush Anand9c5dcdd2015-06-25 15:01:11 -07008 * Mohit Kumar <mohit.kumar.dhaka@gmail.com>
Pratyush Anand51b66a62014-02-11 11:39:26 +05309 *
10 * This file is licensed under the terms of the GNU General Public
11 * License version 2. This program is licensed "as is" without any
12 * warranty of any kind, whether express or implied.
13 */
14
15#include <linux/clk.h>
Pratyush Anand51b66a62014-02-11 11:39:26 +053016#include <linux/interrupt.h>
17#include <linux/kernel.h>
Paul Gortmaker56540c72016-08-22 17:59:45 -040018#include <linux/init.h>
Pratyush Anand51b66a62014-02-11 11:39:26 +053019#include <linux/of.h>
20#include <linux/pci.h>
21#include <linux/phy/phy.h>
22#include <linux/platform_device.h>
23#include <linux/resource.h>
24
25#include "pcie-designware.h"
26
27struct spear13xx_pcie {
Bjorn Helgaas7a29f042016-10-06 13:42:08 -050028 struct pcie_port pp; /* DT dbi is pp.dbi_base */
Pratyush Anand51b66a62014-02-11 11:39:26 +053029 void __iomem *app_base;
30 struct phy *phy;
31 struct clk *clk;
Pratyush Anand51b66a62014-02-11 11:39:26 +053032 bool is_gen1;
33};
34
35struct pcie_app_reg {
36 u32 app_ctrl_0; /* cr0 */
37 u32 app_ctrl_1; /* cr1 */
38 u32 app_status_0; /* cr2 */
39 u32 app_status_1; /* cr3 */
40 u32 msg_status; /* cr4 */
41 u32 msg_payload; /* cr5 */
42 u32 int_sts; /* cr6 */
43 u32 int_clr; /* cr7 */
44 u32 int_mask; /* cr8 */
45 u32 mst_bmisc; /* cr9 */
46 u32 phy_ctrl; /* cr10 */
47 u32 phy_status; /* cr11 */
48 u32 cxpl_debug_info_0; /* cr12 */
49 u32 cxpl_debug_info_1; /* cr13 */
50 u32 ven_msg_ctrl_0; /* cr14 */
51 u32 ven_msg_ctrl_1; /* cr15 */
52 u32 ven_msg_data_0; /* cr16 */
53 u32 ven_msg_data_1; /* cr17 */
54 u32 ven_msi_0; /* cr18 */
55 u32 ven_msi_1; /* cr19 */
56 u32 mst_rmisc; /* cr20 */
57};
58
59/* CR0 ID */
Pratyush Anand51b66a62014-02-11 11:39:26 +053060#define APP_LTSSM_ENABLE_ID 3
Pratyush Anand51b66a62014-02-11 11:39:26 +053061#define DEVICE_TYPE_RC (4 << 25)
Pratyush Anand51b66a62014-02-11 11:39:26 +053062#define MISCTRL_EN_ID 30
63#define REG_TRANSLATION_ENABLE 31
64
Pratyush Anand51b66a62014-02-11 11:39:26 +053065/* CR3 ID */
Pratyush Anand51b66a62014-02-11 11:39:26 +053066#define XMLH_LINK_UP (1 << 6)
67
Pratyush Anand51b66a62014-02-11 11:39:26 +053068/* CR6 */
Pratyush Anand51b66a62014-02-11 11:39:26 +053069#define MSI_CTRL_INT (1 << 26)
70
Pratyush Anand51b66a62014-02-11 11:39:26 +053071#define EXP_CAP_ID_OFFSET 0x70
72
73#define to_spear13xx_pcie(x) container_of(x, struct spear13xx_pcie, pp)
74
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -050075static int spear13xx_pcie_establish_link(struct spear13xx_pcie *spear13xx_pcie)
Pratyush Anand51b66a62014-02-11 11:39:26 +053076{
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -050077 struct pcie_port *pp = &spear13xx_pcie->pp;
Pratyush Anand51b66a62014-02-11 11:39:26 +053078 struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -050079 u32 val;
Pratyush Anand51b66a62014-02-11 11:39:26 +053080 u32 exp_cap_off = EXP_CAP_ID_OFFSET;
81
82 if (dw_pcie_link_up(pp)) {
83 dev_err(pp->dev, "link already up\n");
84 return 0;
85 }
86
87 dw_pcie_setup_rc(pp);
88
89 /*
90 * this controller support only 128 bytes read size, however its
91 * default value in capability register is 512 bytes. So force
92 * it to 128 here.
93 */
Gabriele Paoloni4c458522015-10-08 14:27:48 -050094 dw_pcie_cfg_read(pp->dbi_base + exp_cap_off + PCI_EXP_DEVCTL, 2, &val);
Pratyush Anand51b66a62014-02-11 11:39:26 +053095 val &= ~PCI_EXP_DEVCTL_READRQ;
Gabriele Paoloni4c458522015-10-08 14:27:48 -050096 dw_pcie_cfg_write(pp->dbi_base + exp_cap_off + PCI_EXP_DEVCTL, 2, val);
Pratyush Anand51b66a62014-02-11 11:39:26 +053097
Gabriele Paoloni4c458522015-10-08 14:27:48 -050098 dw_pcie_cfg_write(pp->dbi_base + PCI_VENDOR_ID, 2, 0x104A);
99 dw_pcie_cfg_write(pp->dbi_base + PCI_DEVICE_ID, 2, 0xCD80);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530100
101 /*
102 * if is_gen1 is set then handle it, so that some buggy card
103 * also works
104 */
105 if (spear13xx_pcie->is_gen1) {
Gabriele Paolonifa3b7cb2015-10-08 14:27:38 -0500106 dw_pcie_cfg_read(pp->dbi_base + exp_cap_off + PCI_EXP_LNKCAP,
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500107 4, &val);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530108 if ((val & PCI_EXP_LNKCAP_SLS) != PCI_EXP_LNKCAP_SLS_2_5GB) {
109 val &= ~((u32)PCI_EXP_LNKCAP_SLS);
110 val |= PCI_EXP_LNKCAP_SLS_2_5GB;
Gabriele Paolonifa3b7cb2015-10-08 14:27:38 -0500111 dw_pcie_cfg_write(pp->dbi_base + exp_cap_off +
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500112 PCI_EXP_LNKCAP, 4, val);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530113 }
114
Gabriele Paolonifa3b7cb2015-10-08 14:27:38 -0500115 dw_pcie_cfg_read(pp->dbi_base + exp_cap_off + PCI_EXP_LNKCTL2,
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500116 2, &val);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530117 if ((val & PCI_EXP_LNKCAP_SLS) != PCI_EXP_LNKCAP_SLS_2_5GB) {
118 val &= ~((u32)PCI_EXP_LNKCAP_SLS);
119 val |= PCI_EXP_LNKCAP_SLS_2_5GB;
Gabriele Paolonifa3b7cb2015-10-08 14:27:38 -0500120 dw_pcie_cfg_write(pp->dbi_base + exp_cap_off +
Gabriele Paoloni4c458522015-10-08 14:27:48 -0500121 PCI_EXP_LNKCTL2, 2, val);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530122 }
123 }
124
125 /* enable ltssm */
126 writel(DEVICE_TYPE_RC | (1 << MISCTRL_EN_ID)
127 | (1 << APP_LTSSM_ENABLE_ID)
128 | ((u32)1 << REG_TRANSLATION_ENABLE),
129 &app_reg->app_ctrl_0);
130
Joao Pinto886bc5c2016-03-10 14:44:35 -0600131 return dw_pcie_wait_for_link(pp);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530132}
133
134static irqreturn_t spear13xx_pcie_irq_handler(int irq, void *arg)
135{
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500136 struct spear13xx_pcie *spear13xx_pcie = arg;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530137 struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500138 struct pcie_port *pp = &spear13xx_pcie->pp;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530139 unsigned int status;
140
141 status = readl(&app_reg->int_sts);
142
143 if (status & MSI_CTRL_INT) {
Fabio Estevam68ebb7c2015-08-20 01:31:24 -0500144 BUG_ON(!IS_ENABLED(CONFIG_PCI_MSI));
Pratyush Anand51b66a62014-02-11 11:39:26 +0530145 dw_handle_msi_irq(pp);
146 }
147
148 writel(status, &app_reg->int_clr);
149
150 return IRQ_HANDLED;
151}
152
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500153static void spear13xx_pcie_enable_interrupts(struct spear13xx_pcie *spear13xx_pcie)
Pratyush Anand51b66a62014-02-11 11:39:26 +0530154{
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500155 struct pcie_port *pp = &spear13xx_pcie->pp;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530156 struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
157
158 /* Enable MSI interrupt */
159 if (IS_ENABLED(CONFIG_PCI_MSI)) {
160 dw_pcie_msi_init(pp);
161 writel(readl(&app_reg->int_mask) |
162 MSI_CTRL_INT, &app_reg->int_mask);
163 }
164}
165
166static int spear13xx_pcie_link_up(struct pcie_port *pp)
167{
168 struct spear13xx_pcie *spear13xx_pcie = to_spear13xx_pcie(pp);
169 struct pcie_app_reg *app_reg = spear13xx_pcie->app_base;
170
171 if (readl(&app_reg->app_status_1) & XMLH_LINK_UP)
172 return 1;
173
174 return 0;
175}
176
177static void spear13xx_pcie_host_init(struct pcie_port *pp)
178{
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500179 struct spear13xx_pcie *spear13xx_pcie = to_spear13xx_pcie(pp);
180
181 spear13xx_pcie_establish_link(spear13xx_pcie);
182 spear13xx_pcie_enable_interrupts(spear13xx_pcie);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530183}
184
185static struct pcie_host_ops spear13xx_pcie_host_ops = {
186 .link_up = spear13xx_pcie_link_up,
187 .host_init = spear13xx_pcie_host_init,
188};
189
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500190static int spear13xx_add_pcie_port(struct spear13xx_pcie *spear13xx_pcie,
191 struct platform_device *pdev)
Pratyush Anand51b66a62014-02-11 11:39:26 +0530192{
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500193 struct pcie_port *pp = &spear13xx_pcie->pp;
Bjorn Helgaas6a43a422016-10-06 13:42:09 -0500194 struct device *dev = pp->dev;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530195 int ret;
196
197 pp->irq = platform_get_irq(pdev, 0);
198 if (!pp->irq) {
199 dev_err(dev, "failed to get irq\n");
200 return -ENODEV;
201 }
202 ret = devm_request_irq(dev, pp->irq, spear13xx_pcie_irq_handler,
Grygorii Strashko8ff0ef92015-12-10 21:18:20 +0200203 IRQF_SHARED | IRQF_NO_THREAD,
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500204 "spear1340-pcie", spear13xx_pcie);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530205 if (ret) {
206 dev_err(dev, "failed to request irq %d\n", pp->irq);
207 return ret;
208 }
209
210 pp->root_bus_nr = -1;
211 pp->ops = &spear13xx_pcie_host_ops;
212
213 ret = dw_pcie_host_init(pp);
214 if (ret) {
215 dev_err(dev, "failed to initialize host\n");
216 return ret;
217 }
218
219 return 0;
220}
221
Matwey V. Kornilova43f32d2015-02-19 20:41:48 +0300222static int spear13xx_pcie_probe(struct platform_device *pdev)
Pratyush Anand51b66a62014-02-11 11:39:26 +0530223{
Bjorn Helgaas6a43a422016-10-06 13:42:09 -0500224 struct device *dev = &pdev->dev;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530225 struct spear13xx_pcie *spear13xx_pcie;
226 struct pcie_port *pp;
Bjorn Helgaas6a43a422016-10-06 13:42:09 -0500227 struct device_node *np = dev->of_node;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530228 struct resource *dbi_base;
229 int ret;
230
231 spear13xx_pcie = devm_kzalloc(dev, sizeof(*spear13xx_pcie), GFP_KERNEL);
Jingoo Han20f9ece2014-11-12 12:29:02 +0900232 if (!spear13xx_pcie)
Pratyush Anand51b66a62014-02-11 11:39:26 +0530233 return -ENOMEM;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530234
235 spear13xx_pcie->phy = devm_phy_get(dev, "pcie-phy");
236 if (IS_ERR(spear13xx_pcie->phy)) {
237 ret = PTR_ERR(spear13xx_pcie->phy);
238 if (ret == -EPROBE_DEFER)
239 dev_info(dev, "probe deferred\n");
240 else
241 dev_err(dev, "couldn't get pcie-phy\n");
242 return ret;
243 }
244
245 phy_init(spear13xx_pcie->phy);
246
247 spear13xx_pcie->clk = devm_clk_get(dev, NULL);
248 if (IS_ERR(spear13xx_pcie->clk)) {
249 dev_err(dev, "couldn't get clk for pcie\n");
250 return PTR_ERR(spear13xx_pcie->clk);
251 }
252 ret = clk_prepare_enable(spear13xx_pcie->clk);
253 if (ret) {
254 dev_err(dev, "couldn't enable clk for pcie\n");
255 return ret;
256 }
257
258 pp = &spear13xx_pcie->pp;
Pratyush Anand51b66a62014-02-11 11:39:26 +0530259 pp->dev = dev;
260
Pratyush Anand65aaae22014-09-03 10:50:49 +0530261 dbi_base = platform_get_resource_byname(pdev, IORESOURCE_MEM, "dbi");
Pratyush Anand51b66a62014-02-11 11:39:26 +0530262 pp->dbi_base = devm_ioremap_resource(dev, dbi_base);
263 if (IS_ERR(pp->dbi_base)) {
264 dev_err(dev, "couldn't remap dbi base %p\n", dbi_base);
265 ret = PTR_ERR(pp->dbi_base);
266 goto fail_clk;
267 }
268 spear13xx_pcie->app_base = pp->dbi_base + 0x2000;
269
270 if (of_property_read_bool(np, "st,pcie-is-gen1"))
271 spear13xx_pcie->is_gen1 = true;
272
Bjorn Helgaasffe82fa2016-10-06 13:42:08 -0500273 ret = spear13xx_add_pcie_port(spear13xx_pcie, pdev);
Pratyush Anand51b66a62014-02-11 11:39:26 +0530274 if (ret < 0)
275 goto fail_clk;
276
277 platform_set_drvdata(pdev, spear13xx_pcie);
278 return 0;
279
280fail_clk:
281 clk_disable_unprepare(spear13xx_pcie->clk);
282
283 return ret;
284}
285
Pratyush Anand51b66a62014-02-11 11:39:26 +0530286static const struct of_device_id spear13xx_pcie_of_match[] = {
287 { .compatible = "st,spear1340-pcie", },
288 {},
289};
Pratyush Anand51b66a62014-02-11 11:39:26 +0530290
Matwey V. Kornilova43f32d2015-02-19 20:41:48 +0300291static struct platform_driver spear13xx_pcie_driver = {
Pratyush Anand51b66a62014-02-11 11:39:26 +0530292 .probe = spear13xx_pcie_probe,
Pratyush Anand51b66a62014-02-11 11:39:26 +0530293 .driver = {
294 .name = "spear-pcie",
Pratyush Anand51b66a62014-02-11 11:39:26 +0530295 .of_match_table = of_match_ptr(spear13xx_pcie_of_match),
296 },
297};
298
Jingoo Hana9875d82014-11-06 10:29:41 +0900299static int __init spear13xx_pcie_init(void)
Pratyush Anand51b66a62014-02-11 11:39:26 +0530300{
301 return platform_driver_register(&spear13xx_pcie_driver);
302}
Paul Gortmaker56540c72016-08-22 17:59:45 -0400303device_initcall(spear13xx_pcie_init);