blob: 8dc66409182da0cc8758ec108ecceca6ef9b75de [file] [log] [blame]
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -06001/*
2 * PCIe host controller driver for Texas Instruments Keystone SoCs
3 *
4 * Copyright (C) 2013-2014 Texas Instruments., Ltd.
5 * http://www.ti.com
6 *
7 * Author: Murali Karicheri <m-karicheri2@ti.com>
8 * Implementation based on pci-exynos.c and pcie-designware.c
9 *
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
13 */
14
15#include <linux/irqchip/chained_irq.h>
16#include <linux/clk.h>
17#include <linux/delay.h>
Murali Karicheri025dd3d2016-04-11 10:50:30 -040018#include <linux/interrupt.h>
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060019#include <linux/irqdomain.h>
Paul Gortmaker1481bf22016-07-02 19:13:26 -040020#include <linux/init.h>
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060021#include <linux/msi.h>
22#include <linux/of_irq.h>
23#include <linux/of.h>
24#include <linux/of_pci.h>
25#include <linux/platform_device.h>
26#include <linux/phy/phy.h>
27#include <linux/resource.h>
28#include <linux/signal.h>
29
30#include "pcie-designware.h"
31#include "pci-keystone.h"
32
33#define DRIVER_NAME "keystone-pcie"
34
35/* driver specific constants */
36#define MAX_MSI_HOST_IRQS 8
37#define MAX_LEGACY_HOST_IRQS 4
38
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060039/* DEV_STAT_CTRL */
40#define PCIE_CAP_BASE 0x70
41
Murali Karicheric15982d2014-09-08 13:03:34 -040042/* PCIE controller device IDs */
43#define PCIE_RC_K2HK 0xb008
44#define PCIE_RC_K2E 0xb009
45#define PCIE_RC_K2L 0xb00a
46
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +053047#define to_keystone_pcie(x) dev_get_drvdata((x)->dev)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060048
Murali Karicheric15982d2014-09-08 13:03:34 -040049static void quirk_limit_mrrs(struct pci_dev *dev)
50{
51 struct pci_bus *bus = dev->bus;
52 struct pci_dev *bridge = bus->self;
53 static const struct pci_device_id rc_pci_devids[] = {
54 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2HK),
55 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
56 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2E),
57 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
58 { PCI_DEVICE(PCI_VENDOR_ID_TI, PCIE_RC_K2L),
59 .class = PCI_CLASS_BRIDGE_PCI << 8, .class_mask = ~0, },
60 { 0, },
61 };
62
63 if (pci_is_root_bus(bus))
64 return;
65
66 /* look for the host bridge */
67 while (!pci_is_root_bus(bus)) {
68 bridge = bus->self;
69 bus = bus->parent;
70 }
71
72 if (bridge) {
73 /*
74 * Keystone PCI controller has a h/w limitation of
75 * 256 bytes maximum read request size. It can't handle
76 * anything higher than this. So force this limit on
77 * all downstream devices.
78 */
79 if (pci_match_id(rc_pci_devids, bridge)) {
80 if (pcie_get_readrq(dev) > 256) {
81 dev_info(&dev->dev, "limiting MRRS to 256\n");
82 pcie_set_readrq(dev, 256);
83 }
84 }
85 }
86}
87DECLARE_PCI_FIXUP_ENABLE(PCI_ANY_ID, PCI_ANY_ID, quirk_limit_mrrs);
88
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060089static int ks_pcie_establish_link(struct keystone_pcie *ks_pcie)
90{
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +053091 struct dw_pcie *pci = ks_pcie->pci;
92 struct pcie_port *pp = &pci->pp;
93 struct device *dev = pci->dev;
Bjorn Helgaas6cbb2472015-06-02 16:47:17 -050094 unsigned int retries;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -060095
96 dw_pcie_setup_rc(pp);
97
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +053098 if (dw_pcie_link_up(pci)) {
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -050099 dev_err(dev, "Link already up\n");
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600100 return 0;
101 }
102
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600103 /* check if the link is up or not */
Joao Pinto886bc5c2016-03-10 14:44:35 -0600104 for (retries = 0; retries < 5; retries++) {
Bjorn Helgaas6cbb2472015-06-02 16:47:17 -0500105 ks_dw_pcie_initiate_link_train(ks_pcie);
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530106 if (!dw_pcie_wait_for_link(pci))
Joao Pinto886bc5c2016-03-10 14:44:35 -0600107 return 0;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600108 }
109
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500110 dev_err(dev, "phy link never came up\n");
Joao Pinto886bc5c2016-03-10 14:44:35 -0600111 return -ETIMEDOUT;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600112}
113
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200114static void ks_pcie_msi_irq_handler(struct irq_desc *desc)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600115{
Thomas Gleixner97a85962015-07-16 23:24:10 +0200116 unsigned int irq = irq_desc_get_irq(desc);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600117 struct keystone_pcie *ks_pcie = irq_desc_get_handler_data(desc);
118 u32 offset = irq - ks_pcie->msi_host_irqs[0];
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530119 struct dw_pcie *pci = ks_pcie->pci;
120 struct device *dev = pci->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600121 struct irq_chip *chip = irq_desc_get_chip(desc);
122
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500123 dev_dbg(dev, "%s, irq %d\n", __func__, irq);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600124
125 /*
126 * The chained irq handler installation would have replaced normal
127 * interrupt driver handler so we need to take care of mask/unmask and
128 * ack operation.
129 */
130 chained_irq_enter(chip, desc);
131 ks_dw_pcie_handle_msi_irq(ks_pcie, offset);
132 chained_irq_exit(chip, desc);
133}
134
135/**
136 * ks_pcie_legacy_irq_handler() - Handle legacy interrupt
137 * @irq: IRQ line for legacy interrupts
138 * @desc: Pointer to irq descriptor
139 *
140 * Traverse through pending legacy interrupts and invoke handler for each. Also
141 * takes care of interrupt controller level mask/ack operation.
142 */
Thomas Gleixnerbd0b9ac2015-09-14 10:42:37 +0200143static void ks_pcie_legacy_irq_handler(struct irq_desc *desc)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600144{
Thomas Gleixner97a85962015-07-16 23:24:10 +0200145 unsigned int irq = irq_desc_get_irq(desc);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600146 struct keystone_pcie *ks_pcie = irq_desc_get_handler_data(desc);
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530147 struct dw_pcie *pci = ks_pcie->pci;
148 struct device *dev = pci->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600149 u32 irq_offset = irq - ks_pcie->legacy_host_irqs[0];
150 struct irq_chip *chip = irq_desc_get_chip(desc);
151
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500152 dev_dbg(dev, ": Handling legacy irq %d\n", irq);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600153
154 /*
155 * The chained irq handler installation would have replaced normal
156 * interrupt driver handler so we need to take care of mask/unmask and
157 * ack operation.
158 */
159 chained_irq_enter(chip, desc);
160 ks_dw_pcie_handle_legacy_irq(ks_pcie, irq_offset);
161 chained_irq_exit(chip, desc);
162}
163
164static int ks_pcie_get_irq_controller_info(struct keystone_pcie *ks_pcie,
165 char *controller, int *num_irqs)
166{
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400167 int temp, max_host_irqs, legacy = 1, *host_irqs;
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530168 struct device *dev = ks_pcie->pci->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600169 struct device_node *np_pcie = dev->of_node, **np_temp;
170
171 if (!strcmp(controller, "msi-interrupt-controller"))
172 legacy = 0;
173
174 if (legacy) {
175 np_temp = &ks_pcie->legacy_intc_np;
176 max_host_irqs = MAX_LEGACY_HOST_IRQS;
177 host_irqs = &ks_pcie->legacy_host_irqs[0];
178 } else {
179 np_temp = &ks_pcie->msi_intc_np;
180 max_host_irqs = MAX_MSI_HOST_IRQS;
181 host_irqs = &ks_pcie->msi_host_irqs[0];
182 }
183
184 /* interrupt controller is in a child node */
185 *np_temp = of_find_node_by_name(np_pcie, controller);
186 if (!(*np_temp)) {
187 dev_err(dev, "Node for %s is absent\n", controller);
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400188 return -EINVAL;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600189 }
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400190
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600191 temp = of_irq_count(*np_temp);
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400192 if (!temp) {
193 dev_err(dev, "No IRQ entries in %s\n", controller);
194 return -EINVAL;
195 }
196
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600197 if (temp > max_host_irqs)
198 dev_warn(dev, "Too many %s interrupts defined %u\n",
199 (legacy ? "legacy" : "MSI"), temp);
200
201 /*
202 * support upto max_host_irqs. In dt from index 0 to 3 (legacy) or 0 to
203 * 7 (MSI)
204 */
205 for (temp = 0; temp < max_host_irqs; temp++) {
206 host_irqs[temp] = irq_of_parse_and_map(*np_temp, temp);
Dmitry Torokhovea3651f2014-11-14 14:19:03 -0800207 if (!host_irqs[temp])
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600208 break;
209 }
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400210
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600211 if (temp) {
212 *num_irqs = temp;
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400213 return 0;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600214 }
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400215
216 return -EINVAL;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600217}
218
219static void ks_pcie_setup_interrupts(struct keystone_pcie *ks_pcie)
220{
221 int i;
222
223 /* Legacy IRQ */
224 for (i = 0; i < ks_pcie->num_legacy_host_irqs; i++) {
Thomas Gleixner5168a732015-06-21 21:11:05 +0200225 irq_set_chained_handler_and_data(ks_pcie->legacy_host_irqs[i],
226 ks_pcie_legacy_irq_handler,
227 ks_pcie);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600228 }
229 ks_dw_pcie_enable_legacy_irqs(ks_pcie);
230
231 /* MSI IRQ */
232 if (IS_ENABLED(CONFIG_PCI_MSI)) {
233 for (i = 0; i < ks_pcie->num_msi_host_irqs; i++) {
Thomas Gleixner2cf5a032015-06-21 20:16:09 +0200234 irq_set_chained_handler_and_data(ks_pcie->msi_host_irqs[i],
235 ks_pcie_msi_irq_handler,
236 ks_pcie);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600237 }
238 }
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400239
240 if (ks_pcie->error_irq > 0)
Bjorn Helgaas5649e4c2016-10-06 13:36:56 -0500241 ks_dw_pcie_enable_error_irq(ks_pcie);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600242}
243
244/*
245 * When a PCI device does not exist during config cycles, keystone host gets a
246 * bus error instead of returning 0xffffffff. This handler always returns 0
247 * for this kind of faults.
248 */
249static int keystone_pcie_fault(unsigned long addr, unsigned int fsr,
250 struct pt_regs *regs)
251{
252 unsigned long instr = *(unsigned long *) instruction_pointer(regs);
253
254 if ((instr & 0x0e100090) == 0x00100090) {
255 int reg = (instr >> 12) & 15;
256
257 regs->uregs[reg] = -1;
258 regs->ARM_pc += 4;
259 }
260
261 return 0;
262}
263
264static void __init ks_pcie_host_init(struct pcie_port *pp)
265{
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530266 struct dw_pcie *pci = to_dw_pcie_from_pp(pp);
267 struct keystone_pcie *ks_pcie = to_keystone_pcie(pci);
Murali Karicheri8665a482014-09-10 13:12:39 -0400268 u32 val;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600269
270 ks_pcie_establish_link(ks_pcie);
271 ks_dw_pcie_setup_rc_app_regs(ks_pcie);
272 ks_pcie_setup_interrupts(ks_pcie);
273 writew(PCI_IO_RANGE_TYPE_32 | (PCI_IO_RANGE_TYPE_32 << 8),
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530274 pci->dbi_base + PCI_IO_BASE);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600275
276 /* update the Vendor ID */
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530277 writew(ks_pcie->device_id, pci->dbi_base + PCI_DEVICE_ID);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600278
279 /* update the DEV_STAT_CTRL to publish right mrrs */
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530280 val = readl(pci->dbi_base + PCIE_CAP_BASE + PCI_EXP_DEVCTL);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600281 val &= ~PCI_EXP_DEVCTL_READRQ;
282 /* set the mrrs to 256 bytes */
283 val |= BIT(12);
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530284 writel(val, pci->dbi_base + PCIE_CAP_BASE + PCI_EXP_DEVCTL);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600285
286 /*
287 * PCIe access errors that result into OCP errors are caught by ARM as
288 * "External aborts"
289 */
290 hook_fault_code(17, keystone_pcie_fault, SIGBUS, 0,
291 "Asynchronous external abort");
292}
293
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530294static struct dw_pcie_host_ops keystone_pcie_host_ops = {
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600295 .rd_other_conf = ks_dw_pcie_rd_other_conf,
296 .wr_other_conf = ks_dw_pcie_wr_other_conf,
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600297 .host_init = ks_pcie_host_init,
298 .msi_set_irq = ks_dw_pcie_msi_set_irq,
299 .msi_clear_irq = ks_dw_pcie_msi_clear_irq,
Bjorn Helgaas11045282014-09-29 13:24:24 -0600300 .get_msi_addr = ks_dw_pcie_get_msi_addr,
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600301 .msi_host_init = ks_dw_pcie_msi_host_init,
302 .scan_bus = ks_dw_pcie_v3_65_scan_bus,
303};
304
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400305static irqreturn_t pcie_err_irq_handler(int irq, void *priv)
306{
307 struct keystone_pcie *ks_pcie = priv;
308
Bjorn Helgaas5649e4c2016-10-06 13:36:56 -0500309 return ks_dw_pcie_handle_error_irq(ks_pcie);
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400310}
311
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600312static int __init ks_add_pcie_port(struct keystone_pcie *ks_pcie,
313 struct platform_device *pdev)
314{
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530315 struct dw_pcie *pci = ks_pcie->pci;
316 struct pcie_port *pp = &pci->pp;
317 struct device *dev = &pdev->dev;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600318 int ret;
319
320 ret = ks_pcie_get_irq_controller_info(ks_pcie,
321 "legacy-interrupt-controller",
322 &ks_pcie->num_legacy_host_irqs);
323 if (ret)
324 return ret;
325
326 if (IS_ENABLED(CONFIG_PCI_MSI)) {
327 ret = ks_pcie_get_irq_controller_info(ks_pcie,
328 "msi-interrupt-controller",
329 &ks_pcie->num_msi_host_irqs);
330 if (ret)
331 return ret;
332 }
333
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400334 /*
335 * Index 0 is the platform interrupt for error interrupt
336 * from RC. This is optional.
337 */
338 ks_pcie->error_irq = irq_of_parse_and_map(ks_pcie->np, 0);
339 if (ks_pcie->error_irq <= 0)
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500340 dev_info(dev, "no error IRQ defined\n");
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400341 else {
Wei Yongjun8116acc2016-07-28 16:16:18 +0000342 ret = request_irq(ks_pcie->error_irq, pcie_err_irq_handler,
343 IRQF_SHARED, "pcie-error-irq", ks_pcie);
344 if (ret < 0) {
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500345 dev_err(dev, "failed to request error IRQ %d\n",
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400346 ks_pcie->error_irq);
347 return ret;
348 }
349 }
350
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600351 pp->root_bus_nr = -1;
352 pp->ops = &keystone_pcie_host_ops;
353 ret = ks_dw_pcie_host_init(ks_pcie, ks_pcie->msi_intc_np);
354 if (ret) {
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500355 dev_err(dev, "failed to initialize host\n");
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600356 return ret;
357 }
358
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400359 return 0;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600360}
361
362static const struct of_device_id ks_pcie_of_match[] = {
363 {
364 .type = "pci",
365 .compatible = "ti,keystone-pcie",
366 },
367 { },
368};
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600369
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530370static const struct dw_pcie_ops dw_pcie_ops = {
371 .link_up = ks_dw_pcie_link_up,
372};
373
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600374static int __exit ks_pcie_remove(struct platform_device *pdev)
375{
376 struct keystone_pcie *ks_pcie = platform_get_drvdata(pdev);
377
378 clk_disable_unprepare(ks_pcie->clk);
379
380 return 0;
381}
382
383static int __init ks_pcie_probe(struct platform_device *pdev)
384{
385 struct device *dev = &pdev->dev;
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530386 struct dw_pcie *pci;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600387 struct keystone_pcie *ks_pcie;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600388 struct resource *res;
389 void __iomem *reg_p;
390 struct phy *phy;
Murali Karicheri1e9f8dc2016-04-11 10:50:31 -0400391 int ret;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600392
Bjorn Helgaas21fa0c52016-10-11 22:48:42 -0500393 ks_pcie = devm_kzalloc(dev, sizeof(*ks_pcie), GFP_KERNEL);
Jingoo Han66700702014-11-12 12:22:56 +0900394 if (!ks_pcie)
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600395 return -ENOMEM;
Jingoo Han66700702014-11-12 12:22:56 +0900396
Kishon Vijay Abraham I442ec4c2017-02-15 18:48:14 +0530397 pci = devm_kzalloc(dev, sizeof(*pci), GFP_KERNEL);
398 if (!pci)
399 return -ENOMEM;
400
401 pci->dev = dev;
402 pci->ops = &dw_pcie_ops;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600403
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600404 /* initialize SerDes Phy if present */
405 phy = devm_phy_get(dev, "pcie-phy");
Shawn Lin25de15c92016-03-07 12:32:21 +0800406 if (PTR_ERR_OR_ZERO(phy) == -EPROBE_DEFER)
407 return PTR_ERR(phy);
408
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600409 if (!IS_ERR_OR_NULL(phy)) {
410 ret = phy_init(phy);
411 if (ret < 0)
412 return ret;
413 }
414
Murali Karicheri4455efc2014-09-10 13:12:38 -0400415 /* index 2 is to read PCI DEVICE_ID */
416 res = platform_get_resource(pdev, IORESOURCE_MEM, 2);
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600417 reg_p = devm_ioremap_resource(dev, res);
418 if (IS_ERR(reg_p))
419 return PTR_ERR(reg_p);
Murali Karicheri8665a482014-09-10 13:12:39 -0400420 ks_pcie->device_id = readl(reg_p) >> 16;
421 devm_iounmap(dev, reg_p);
422 devm_release_mem_region(dev, res->start, resource_size(res));
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600423
Murali Karicheri025dd3d2016-04-11 10:50:30 -0400424 ks_pcie->np = dev->of_node;
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600425 platform_set_drvdata(pdev, ks_pcie);
426 ks_pcie->clk = devm_clk_get(dev, "pcie");
427 if (IS_ERR(ks_pcie->clk)) {
428 dev_err(dev, "Failed to get pcie rc clock\n");
429 return PTR_ERR(ks_pcie->clk);
430 }
431 ret = clk_prepare_enable(ks_pcie->clk);
432 if (ret)
433 return ret;
434
Kishon Vijay Abraham I9bcf0a62017-02-15 18:48:11 +0530435 platform_set_drvdata(pdev, ks_pcie);
436
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600437 ret = ks_add_pcie_port(ks_pcie, pdev);
438 if (ret < 0)
439 goto fail_clk;
440
441 return 0;
442fail_clk:
443 clk_disable_unprepare(ks_pcie->clk);
444
445 return ret;
446}
447
448static struct platform_driver ks_pcie_driver __refdata = {
449 .probe = ks_pcie_probe,
450 .remove = __exit_p(ks_pcie_remove),
451 .driver = {
452 .name = "keystone-pcie",
Murali Karicheri0c4ffcf2014-09-02 17:26:19 -0600453 .of_match_table = of_match_ptr(ks_pcie_of_match),
454 },
455};
Paul Gortmaker1481bf22016-07-02 19:13:26 -0400456builtin_platform_driver(ks_pcie_driver);