blob: a276fa657c9573686e772cada193b08032119388 [file] [log] [blame]
Srikanth Thokala8961def2014-08-20 21:56:02 +05301/*
2 * PCIe host controller driver for Xilinx AXI PCIe Bridge
3 *
4 * Copyright (c) 2012 - 2014 Xilinx, Inc.
5 *
6 * Based on the Tegra PCIe driver
7 *
8 * Bits taken from Synopsys Designware Host controller driver and
9 * ARM PCI Host generic driver.
10 *
11 * This program is free software: you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation, either version 2 of the License, or
14 * (at your option) any later version.
15 */
16
17#include <linux/interrupt.h>
18#include <linux/irq.h>
19#include <linux/irqdomain.h>
20#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/msi.h>
23#include <linux/of_address.h>
24#include <linux/of_pci.h>
25#include <linux/of_platform.h>
26#include <linux/of_irq.h>
27#include <linux/pci.h>
28#include <linux/platform_device.h>
29
30/* Register definitions */
31#define XILINX_PCIE_REG_BIR 0x00000130
32#define XILINX_PCIE_REG_IDR 0x00000138
33#define XILINX_PCIE_REG_IMR 0x0000013c
34#define XILINX_PCIE_REG_PSCR 0x00000144
35#define XILINX_PCIE_REG_RPSC 0x00000148
36#define XILINX_PCIE_REG_MSIBASE1 0x0000014c
37#define XILINX_PCIE_REG_MSIBASE2 0x00000150
38#define XILINX_PCIE_REG_RPEFR 0x00000154
39#define XILINX_PCIE_REG_RPIFR1 0x00000158
40#define XILINX_PCIE_REG_RPIFR2 0x0000015c
41
42/* Interrupt registers definitions */
43#define XILINX_PCIE_INTR_LINK_DOWN BIT(0)
44#define XILINX_PCIE_INTR_ECRC_ERR BIT(1)
45#define XILINX_PCIE_INTR_STR_ERR BIT(2)
46#define XILINX_PCIE_INTR_HOT_RESET BIT(3)
47#define XILINX_PCIE_INTR_CFG_TIMEOUT BIT(8)
48#define XILINX_PCIE_INTR_CORRECTABLE BIT(9)
49#define XILINX_PCIE_INTR_NONFATAL BIT(10)
50#define XILINX_PCIE_INTR_FATAL BIT(11)
51#define XILINX_PCIE_INTR_INTX BIT(16)
52#define XILINX_PCIE_INTR_MSI BIT(17)
53#define XILINX_PCIE_INTR_SLV_UNSUPP BIT(20)
54#define XILINX_PCIE_INTR_SLV_UNEXP BIT(21)
55#define XILINX_PCIE_INTR_SLV_COMPL BIT(22)
56#define XILINX_PCIE_INTR_SLV_ERRP BIT(23)
57#define XILINX_PCIE_INTR_SLV_CMPABT BIT(24)
58#define XILINX_PCIE_INTR_SLV_ILLBUR BIT(25)
59#define XILINX_PCIE_INTR_MST_DECERR BIT(26)
60#define XILINX_PCIE_INTR_MST_SLVERR BIT(27)
61#define XILINX_PCIE_INTR_MST_ERRP BIT(28)
62#define XILINX_PCIE_IMR_ALL_MASK 0x1FF30FED
63#define XILINX_PCIE_IDR_ALL_MASK 0xFFFFFFFF
64
65/* Root Port Error FIFO Read Register definitions */
66#define XILINX_PCIE_RPEFR_ERR_VALID BIT(18)
67#define XILINX_PCIE_RPEFR_REQ_ID GENMASK(15, 0)
68#define XILINX_PCIE_RPEFR_ALL_MASK 0xFFFFFFFF
69
70/* Root Port Interrupt FIFO Read Register 1 definitions */
71#define XILINX_PCIE_RPIFR1_INTR_VALID BIT(31)
72#define XILINX_PCIE_RPIFR1_MSI_INTR BIT(30)
73#define XILINX_PCIE_RPIFR1_INTR_MASK GENMASK(28, 27)
74#define XILINX_PCIE_RPIFR1_ALL_MASK 0xFFFFFFFF
75#define XILINX_PCIE_RPIFR1_INTR_SHIFT 27
76
77/* Bridge Info Register definitions */
78#define XILINX_PCIE_BIR_ECAM_SZ_MASK GENMASK(18, 16)
79#define XILINX_PCIE_BIR_ECAM_SZ_SHIFT 16
80
81/* Root Port Interrupt FIFO Read Register 2 definitions */
82#define XILINX_PCIE_RPIFR2_MSG_DATA GENMASK(15, 0)
83
84/* Root Port Status/control Register definitions */
85#define XILINX_PCIE_REG_RPSC_BEN BIT(0)
86
87/* Phy Status/Control Register definitions */
88#define XILINX_PCIE_REG_PSCR_LNKUP BIT(11)
89
90/* ECAM definitions */
91#define ECAM_BUS_NUM_SHIFT 20
92#define ECAM_DEV_NUM_SHIFT 12
93
94/* Number of MSI IRQs */
95#define XILINX_NUM_MSI_IRQS 128
96
Srikanth Thokala8961def2014-08-20 21:56:02 +053097/**
98 * struct xilinx_pcie_port - PCIe port information
99 * @reg_base: IO Mapped Register Base
100 * @irq: Interrupt number
101 * @msi_pages: MSI pages
102 * @root_busno: Root Bus number
103 * @dev: Device pointer
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530104 * @msi_domain: MSI IRQ domain pointer
105 * @leg_domain: Legacy IRQ domain pointer
Srikanth Thokala8961def2014-08-20 21:56:02 +0530106 * @resources: Bus Resources
107 */
108struct xilinx_pcie_port {
109 void __iomem *reg_base;
110 u32 irq;
111 unsigned long msi_pages;
112 u8 root_busno;
113 struct device *dev;
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530114 struct irq_domain *msi_domain;
115 struct irq_domain *leg_domain;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530116 struct list_head resources;
117};
118
119static DECLARE_BITMAP(msi_irq_in_use, XILINX_NUM_MSI_IRQS);
120
Srikanth Thokala8961def2014-08-20 21:56:02 +0530121static inline u32 pcie_read(struct xilinx_pcie_port *port, u32 reg)
122{
123 return readl(port->reg_base + reg);
124}
125
126static inline void pcie_write(struct xilinx_pcie_port *port, u32 val, u32 reg)
127{
128 writel(val, port->reg_base + reg);
129}
130
131static inline bool xilinx_pcie_link_is_up(struct xilinx_pcie_port *port)
132{
133 return (pcie_read(port, XILINX_PCIE_REG_PSCR) &
134 XILINX_PCIE_REG_PSCR_LNKUP) ? 1 : 0;
135}
136
137/**
138 * xilinx_pcie_clear_err_interrupts - Clear Error Interrupts
139 * @port: PCIe port information
140 */
141static void xilinx_pcie_clear_err_interrupts(struct xilinx_pcie_port *port)
142{
Arnd Bergmannabc596b2015-01-13 15:20:05 +0100143 unsigned long val = pcie_read(port, XILINX_PCIE_REG_RPEFR);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530144
145 if (val & XILINX_PCIE_RPEFR_ERR_VALID) {
Arnd Bergmannabc596b2015-01-13 15:20:05 +0100146 dev_dbg(port->dev, "Requester ID %lu\n",
Srikanth Thokala8961def2014-08-20 21:56:02 +0530147 val & XILINX_PCIE_RPEFR_REQ_ID);
148 pcie_write(port, XILINX_PCIE_RPEFR_ALL_MASK,
149 XILINX_PCIE_REG_RPEFR);
150 }
151}
152
153/**
154 * xilinx_pcie_valid_device - Check if a valid device is present on bus
155 * @bus: PCI Bus structure
156 * @devfn: device/function
157 *
158 * Return: 'true' on success and 'false' if invalid device is found
159 */
160static bool xilinx_pcie_valid_device(struct pci_bus *bus, unsigned int devfn)
161{
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530162 struct xilinx_pcie_port *port = bus->sysdata;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530163
164 /* Check if link is up when trying to access downstream ports */
165 if (bus->number != port->root_busno)
166 if (!xilinx_pcie_link_is_up(port))
167 return false;
168
169 /* Only one device down on each root port */
170 if (bus->number == port->root_busno && devfn > 0)
171 return false;
172
173 /*
174 * Do not read more than one device on the bus directly attached
175 * to RC.
176 */
177 if (bus->primary == port->root_busno && devfn > 0)
178 return false;
179
180 return true;
181}
182
183/**
Rob Herring029e2152015-01-09 20:34:50 -0600184 * xilinx_pcie_map_bus - Get configuration base
Srikanth Thokala8961def2014-08-20 21:56:02 +0530185 * @bus: PCI Bus structure
186 * @devfn: Device/function
187 * @where: Offset from base
188 *
189 * Return: Base address of the configuration space needed to be
190 * accessed.
191 */
Rob Herring029e2152015-01-09 20:34:50 -0600192static void __iomem *xilinx_pcie_map_bus(struct pci_bus *bus,
193 unsigned int devfn, int where)
Srikanth Thokala8961def2014-08-20 21:56:02 +0530194{
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530195 struct xilinx_pcie_port *port = bus->sysdata;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530196 int relbus;
197
Rob Herring029e2152015-01-09 20:34:50 -0600198 if (!xilinx_pcie_valid_device(bus, devfn))
199 return NULL;
200
Srikanth Thokala8961def2014-08-20 21:56:02 +0530201 relbus = (bus->number << ECAM_BUS_NUM_SHIFT) |
202 (devfn << ECAM_DEV_NUM_SHIFT);
203
204 return port->reg_base + relbus + where;
205}
206
Srikanth Thokala8961def2014-08-20 21:56:02 +0530207/* PCIe operations */
208static struct pci_ops xilinx_pcie_ops = {
Rob Herring029e2152015-01-09 20:34:50 -0600209 .map_bus = xilinx_pcie_map_bus,
210 .read = pci_generic_config_read,
211 .write = pci_generic_config_write,
Srikanth Thokala8961def2014-08-20 21:56:02 +0530212};
213
214/* MSI functions */
215
216/**
217 * xilinx_pcie_destroy_msi - Free MSI number
218 * @irq: IRQ to be freed
219 */
220static void xilinx_pcie_destroy_msi(unsigned int irq)
221{
Srikanth Thokala8961def2014-08-20 21:56:02 +0530222 struct msi_desc *msi;
223 struct xilinx_pcie_port *port;
Bharat Kumar Gogada8a4036e2016-09-01 15:44:43 +0530224 struct irq_data *d = irq_get_irq_data(irq);
225 irq_hw_number_t hwirq = irqd_to_hwirq(d);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530226
Bharat Kumar Gogada8a4036e2016-09-01 15:44:43 +0530227 if (!test_bit(hwirq, msi_irq_in_use)) {
Jiang Liue39758e2015-07-09 16:00:43 +0800228 msi = irq_get_msi_desc(irq);
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530229 port = msi_desc_to_pci_sysdata(msi);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530230 dev_err(port->dev, "Trying to free unused MSI#%d\n", irq);
Jiang Liue39758e2015-07-09 16:00:43 +0800231 } else {
Bharat Kumar Gogada8a4036e2016-09-01 15:44:43 +0530232 clear_bit(hwirq, msi_irq_in_use);
Jiang Liue39758e2015-07-09 16:00:43 +0800233 }
Srikanth Thokala8961def2014-08-20 21:56:02 +0530234}
235
236/**
237 * xilinx_pcie_assign_msi - Allocate MSI number
238 * @port: PCIe port structure
239 *
240 * Return: A valid IRQ on success and error value on failure.
241 */
242static int xilinx_pcie_assign_msi(struct xilinx_pcie_port *port)
243{
244 int pos;
245
246 pos = find_first_zero_bit(msi_irq_in_use, XILINX_NUM_MSI_IRQS);
247 if (pos < XILINX_NUM_MSI_IRQS)
248 set_bit(pos, msi_irq_in_use);
249 else
250 return -ENOSPC;
251
252 return pos;
253}
254
255/**
256 * xilinx_msi_teardown_irq - Destroy the MSI
257 * @chip: MSI Chip descriptor
258 * @irq: MSI IRQ to destroy
259 */
Yijing Wangc2791b82014-11-11 17:45:45 -0700260static void xilinx_msi_teardown_irq(struct msi_controller *chip,
261 unsigned int irq)
Srikanth Thokala8961def2014-08-20 21:56:02 +0530262{
263 xilinx_pcie_destroy_msi(irq);
Bharat Kumar Gogadab328f3c2016-09-01 15:44:44 +0530264 irq_dispose_mapping(irq);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530265}
266
267/**
268 * xilinx_pcie_msi_setup_irq - Setup MSI request
269 * @chip: MSI chip pointer
270 * @pdev: PCIe device pointer
271 * @desc: MSI descriptor pointer
272 *
273 * Return: '0' on success and error value on failure
274 */
Yijing Wangc2791b82014-11-11 17:45:45 -0700275static int xilinx_pcie_msi_setup_irq(struct msi_controller *chip,
Srikanth Thokala8961def2014-08-20 21:56:02 +0530276 struct pci_dev *pdev,
277 struct msi_desc *desc)
278{
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530279 struct xilinx_pcie_port *port = pdev->bus->sysdata;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530280 unsigned int irq;
281 int hwirq;
282 struct msi_msg msg;
283 phys_addr_t msg_addr;
284
285 hwirq = xilinx_pcie_assign_msi(port);
Dan Carpenterf9dd0ce2014-09-09 15:11:50 +0300286 if (hwirq < 0)
287 return hwirq;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530288
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530289 irq = irq_create_mapping(port->msi_domain, hwirq);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530290 if (!irq)
291 return -EINVAL;
292
293 irq_set_msi_desc(irq, desc);
294
295 msg_addr = virt_to_phys((void *)port->msi_pages);
296
297 msg.address_hi = 0;
298 msg.address_lo = msg_addr;
299 msg.data = irq;
300
Jiang Liu83a18912014-11-09 23:10:34 +0800301 pci_write_msi_msg(irq, &msg);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530302
303 return 0;
304}
305
306/* MSI Chip Descriptor */
Yijing Wangc2791b82014-11-11 17:45:45 -0700307static struct msi_controller xilinx_pcie_msi_chip = {
Srikanth Thokala8961def2014-08-20 21:56:02 +0530308 .setup_irq = xilinx_pcie_msi_setup_irq,
309 .teardown_irq = xilinx_msi_teardown_irq,
310};
311
312/* HW Interrupt Chip Descriptor */
313static struct irq_chip xilinx_msi_irq_chip = {
314 .name = "Xilinx PCIe MSI",
Thomas Gleixner280510f2014-11-23 12:23:20 +0100315 .irq_enable = pci_msi_unmask_irq,
316 .irq_disable = pci_msi_mask_irq,
317 .irq_mask = pci_msi_mask_irq,
318 .irq_unmask = pci_msi_unmask_irq,
Srikanth Thokala8961def2014-08-20 21:56:02 +0530319};
320
321/**
322 * xilinx_pcie_msi_map - Set the handler for the MSI and mark IRQ as valid
323 * @domain: IRQ domain
324 * @irq: Virtual IRQ number
325 * @hwirq: HW interrupt number
326 *
327 * Return: Always returns 0.
328 */
329static int xilinx_pcie_msi_map(struct irq_domain *domain, unsigned int irq,
330 irq_hw_number_t hwirq)
331{
332 irq_set_chip_and_handler(irq, &xilinx_msi_irq_chip, handle_simple_irq);
333 irq_set_chip_data(irq, domain->host_data);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530334
335 return 0;
336}
337
338/* IRQ Domain operations */
339static const struct irq_domain_ops msi_domain_ops = {
340 .map = xilinx_pcie_msi_map,
341};
342
343/**
344 * xilinx_pcie_enable_msi - Enable MSI support
345 * @port: PCIe port information
346 */
347static void xilinx_pcie_enable_msi(struct xilinx_pcie_port *port)
348{
349 phys_addr_t msg_addr;
350
351 port->msi_pages = __get_free_pages(GFP_KERNEL, 0);
352 msg_addr = virt_to_phys((void *)port->msi_pages);
353 pcie_write(port, 0x0, XILINX_PCIE_REG_MSIBASE1);
354 pcie_write(port, msg_addr, XILINX_PCIE_REG_MSIBASE2);
355}
356
Srikanth Thokala8961def2014-08-20 21:56:02 +0530357/* INTx Functions */
358
359/**
360 * xilinx_pcie_intx_map - Set the handler for the INTx and mark IRQ as valid
361 * @domain: IRQ domain
362 * @irq: Virtual IRQ number
363 * @hwirq: HW interrupt number
364 *
365 * Return: Always returns 0.
366 */
367static int xilinx_pcie_intx_map(struct irq_domain *domain, unsigned int irq,
368 irq_hw_number_t hwirq)
369{
370 irq_set_chip_and_handler(irq, &dummy_irq_chip, handle_simple_irq);
371 irq_set_chip_data(irq, domain->host_data);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530372
373 return 0;
374}
375
376/* INTx IRQ Domain operations */
377static const struct irq_domain_ops intx_domain_ops = {
378 .map = xilinx_pcie_intx_map,
379};
380
381/* PCIe HW Functions */
382
383/**
384 * xilinx_pcie_intr_handler - Interrupt Service Handler
385 * @irq: IRQ number
386 * @data: PCIe port information
387 *
388 * Return: IRQ_HANDLED on success and IRQ_NONE on failure
389 */
390static irqreturn_t xilinx_pcie_intr_handler(int irq, void *data)
391{
392 struct xilinx_pcie_port *port = (struct xilinx_pcie_port *)data;
393 u32 val, mask, status, msi_data;
394
395 /* Read interrupt decode and mask registers */
396 val = pcie_read(port, XILINX_PCIE_REG_IDR);
397 mask = pcie_read(port, XILINX_PCIE_REG_IMR);
398
399 status = val & mask;
400 if (!status)
401 return IRQ_NONE;
402
403 if (status & XILINX_PCIE_INTR_LINK_DOWN)
404 dev_warn(port->dev, "Link Down\n");
405
406 if (status & XILINX_PCIE_INTR_ECRC_ERR)
407 dev_warn(port->dev, "ECRC failed\n");
408
409 if (status & XILINX_PCIE_INTR_STR_ERR)
410 dev_warn(port->dev, "Streaming error\n");
411
412 if (status & XILINX_PCIE_INTR_HOT_RESET)
413 dev_info(port->dev, "Hot reset\n");
414
415 if (status & XILINX_PCIE_INTR_CFG_TIMEOUT)
416 dev_warn(port->dev, "ECAM access timeout\n");
417
418 if (status & XILINX_PCIE_INTR_CORRECTABLE) {
419 dev_warn(port->dev, "Correctable error message\n");
420 xilinx_pcie_clear_err_interrupts(port);
421 }
422
423 if (status & XILINX_PCIE_INTR_NONFATAL) {
424 dev_warn(port->dev, "Non fatal error message\n");
425 xilinx_pcie_clear_err_interrupts(port);
426 }
427
428 if (status & XILINX_PCIE_INTR_FATAL) {
429 dev_warn(port->dev, "Fatal error message\n");
430 xilinx_pcie_clear_err_interrupts(port);
431 }
432
433 if (status & XILINX_PCIE_INTR_INTX) {
434 /* INTx interrupt received */
435 val = pcie_read(port, XILINX_PCIE_REG_RPIFR1);
436
437 /* Check whether interrupt valid */
438 if (!(val & XILINX_PCIE_RPIFR1_INTR_VALID)) {
439 dev_warn(port->dev, "RP Intr FIFO1 read error\n");
Bharat Kumar Gogada3cd049a2016-09-01 15:44:42 +0530440 goto error;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530441 }
442
Russell Joycee4a8f8e2015-07-07 17:54:19 +0100443 if (!(val & XILINX_PCIE_RPIFR1_MSI_INTR)) {
444 /* Clear interrupt FIFO register 1 */
445 pcie_write(port, XILINX_PCIE_RPIFR1_ALL_MASK,
446 XILINX_PCIE_REG_RPIFR1);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530447
Russell Joycee4a8f8e2015-07-07 17:54:19 +0100448 /* Handle INTx Interrupt */
449 val = ((val & XILINX_PCIE_RPIFR1_INTR_MASK) >>
450 XILINX_PCIE_RPIFR1_INTR_SHIFT) + 1;
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530451 generic_handle_irq(irq_find_mapping(port->leg_domain,
Russell Joycee4a8f8e2015-07-07 17:54:19 +0100452 val));
453 }
Srikanth Thokala8961def2014-08-20 21:56:02 +0530454 }
455
456 if (status & XILINX_PCIE_INTR_MSI) {
457 /* MSI Interrupt */
458 val = pcie_read(port, XILINX_PCIE_REG_RPIFR1);
459
460 if (!(val & XILINX_PCIE_RPIFR1_INTR_VALID)) {
461 dev_warn(port->dev, "RP Intr FIFO1 read error\n");
Bharat Kumar Gogada3cd049a2016-09-01 15:44:42 +0530462 goto error;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530463 }
464
465 if (val & XILINX_PCIE_RPIFR1_MSI_INTR) {
466 msi_data = pcie_read(port, XILINX_PCIE_REG_RPIFR2) &
467 XILINX_PCIE_RPIFR2_MSG_DATA;
468
469 /* Clear interrupt FIFO register 1 */
470 pcie_write(port, XILINX_PCIE_RPIFR1_ALL_MASK,
471 XILINX_PCIE_REG_RPIFR1);
472
473 if (IS_ENABLED(CONFIG_PCI_MSI)) {
474 /* Handle MSI Interrupt */
475 generic_handle_irq(msi_data);
476 }
477 }
478 }
479
480 if (status & XILINX_PCIE_INTR_SLV_UNSUPP)
481 dev_warn(port->dev, "Slave unsupported request\n");
482
483 if (status & XILINX_PCIE_INTR_SLV_UNEXP)
484 dev_warn(port->dev, "Slave unexpected completion\n");
485
486 if (status & XILINX_PCIE_INTR_SLV_COMPL)
487 dev_warn(port->dev, "Slave completion timeout\n");
488
489 if (status & XILINX_PCIE_INTR_SLV_ERRP)
490 dev_warn(port->dev, "Slave Error Poison\n");
491
492 if (status & XILINX_PCIE_INTR_SLV_CMPABT)
493 dev_warn(port->dev, "Slave Completer Abort\n");
494
495 if (status & XILINX_PCIE_INTR_SLV_ILLBUR)
496 dev_warn(port->dev, "Slave Illegal Burst\n");
497
498 if (status & XILINX_PCIE_INTR_MST_DECERR)
499 dev_warn(port->dev, "Master decode error\n");
500
501 if (status & XILINX_PCIE_INTR_MST_SLVERR)
502 dev_warn(port->dev, "Master slave error\n");
503
504 if (status & XILINX_PCIE_INTR_MST_ERRP)
505 dev_warn(port->dev, "Master error poison\n");
506
Bharat Kumar Gogada3cd049a2016-09-01 15:44:42 +0530507error:
Srikanth Thokala8961def2014-08-20 21:56:02 +0530508 /* Clear the Interrupt Decode register */
509 pcie_write(port, status, XILINX_PCIE_REG_IDR);
510
511 return IRQ_HANDLED;
512}
513
514/**
515 * xilinx_pcie_free_irq_domain - Free IRQ domain
516 * @port: PCIe port information
517 */
518static void xilinx_pcie_free_irq_domain(struct xilinx_pcie_port *port)
519{
520 int i;
521 u32 irq, num_irqs;
522
523 /* Free IRQ Domain */
524 if (IS_ENABLED(CONFIG_PCI_MSI)) {
525
526 free_pages(port->msi_pages, 0);
527
528 num_irqs = XILINX_NUM_MSI_IRQS;
529 } else {
530 /* INTx */
531 num_irqs = 4;
532 }
533
534 for (i = 0; i < num_irqs; i++) {
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530535 irq = irq_find_mapping(port->leg_domain, i);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530536 if (irq > 0)
537 irq_dispose_mapping(irq);
538 }
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530539 if (port->leg_domain)
540 irq_domain_remove(port->leg_domain);
541 if (port->msi_domain)
542 irq_domain_remove(port->msi_domain);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530543}
544
545/**
546 * xilinx_pcie_init_irq_domain - Initialize IRQ domain
547 * @port: PCIe port information
548 *
549 * Return: '0' on success and error value on failure
550 */
551static int xilinx_pcie_init_irq_domain(struct xilinx_pcie_port *port)
552{
553 struct device *dev = port->dev;
554 struct device_node *node = dev->of_node;
555 struct device_node *pcie_intc_node;
556
557 /* Setup INTx */
558 pcie_intc_node = of_get_next_child(node, NULL);
559 if (!pcie_intc_node) {
560 dev_err(dev, "No PCIe Intc node found\n");
Christophe JAILLETcec6dba2016-07-14 12:10:46 +0200561 return -ENODEV;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530562 }
563
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530564 port->leg_domain = irq_domain_add_linear(pcie_intc_node, 4,
Srikanth Thokala8961def2014-08-20 21:56:02 +0530565 &intx_domain_ops,
566 port);
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530567 if (!port->leg_domain) {
Srikanth Thokala8961def2014-08-20 21:56:02 +0530568 dev_err(dev, "Failed to get a INTx IRQ domain\n");
Christophe JAILLETcec6dba2016-07-14 12:10:46 +0200569 return -ENODEV;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530570 }
571
572 /* Setup MSI */
573 if (IS_ENABLED(CONFIG_PCI_MSI)) {
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530574 port->msi_domain = irq_domain_add_linear(node,
Srikanth Thokala8961def2014-08-20 21:56:02 +0530575 XILINX_NUM_MSI_IRQS,
576 &msi_domain_ops,
577 &xilinx_pcie_msi_chip);
Bharat Kumar Gogadab584fa12016-09-01 15:44:41 +0530578 if (!port->msi_domain) {
Srikanth Thokala8961def2014-08-20 21:56:02 +0530579 dev_err(dev, "Failed to get a MSI IRQ domain\n");
Christophe JAILLETcec6dba2016-07-14 12:10:46 +0200580 return -ENODEV;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530581 }
582
583 xilinx_pcie_enable_msi(port);
584 }
585
586 return 0;
587}
588
589/**
590 * xilinx_pcie_init_port - Initialize hardware
591 * @port: PCIe port information
592 */
593static void xilinx_pcie_init_port(struct xilinx_pcie_port *port)
594{
595 if (xilinx_pcie_link_is_up(port))
596 dev_info(port->dev, "PCIe Link is UP\n");
597 else
598 dev_info(port->dev, "PCIe Link is DOWN\n");
599
600 /* Disable all interrupts */
601 pcie_write(port, ~XILINX_PCIE_IDR_ALL_MASK,
602 XILINX_PCIE_REG_IMR);
603
604 /* Clear pending interrupts */
605 pcie_write(port, pcie_read(port, XILINX_PCIE_REG_IDR) &
606 XILINX_PCIE_IMR_ALL_MASK,
607 XILINX_PCIE_REG_IDR);
608
609 /* Enable all interrupts */
610 pcie_write(port, XILINX_PCIE_IMR_ALL_MASK, XILINX_PCIE_REG_IMR);
611
612 /* Enable the Bridge enable bit */
613 pcie_write(port, pcie_read(port, XILINX_PCIE_REG_RPSC) |
614 XILINX_PCIE_REG_RPSC_BEN,
615 XILINX_PCIE_REG_RPSC);
616}
617
618/**
Srikanth Thokala8961def2014-08-20 21:56:02 +0530619 * xilinx_pcie_parse_dt - Parse Device tree
620 * @port: PCIe port information
621 *
622 * Return: '0' on success and error value on failure
623 */
624static int xilinx_pcie_parse_dt(struct xilinx_pcie_port *port)
625{
626 struct device *dev = port->dev;
627 struct device_node *node = dev->of_node;
628 struct resource regs;
629 const char *type;
630 int err;
631
632 type = of_get_property(node, "device_type", NULL);
633 if (!type || strcmp(type, "pci")) {
634 dev_err(dev, "invalid \"device_type\" %s\n", type);
635 return -EINVAL;
636 }
637
638 err = of_address_to_resource(node, 0, &regs);
639 if (err) {
640 dev_err(dev, "missing \"reg\" property\n");
641 return err;
642 }
643
644 port->reg_base = devm_ioremap_resource(dev, &regs);
645 if (IS_ERR(port->reg_base))
646 return PTR_ERR(port->reg_base);
647
648 port->irq = irq_of_parse_and_map(node, 0);
649 err = devm_request_irq(dev, port->irq, xilinx_pcie_intr_handler,
Grygorii Strashko8ff0ef92015-12-10 21:18:20 +0200650 IRQF_SHARED | IRQF_NO_THREAD,
651 "xilinx-pcie", port);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530652 if (err) {
653 dev_err(dev, "unable to request irq %d\n", port->irq);
654 return err;
655 }
656
657 return 0;
658}
659
660/**
661 * xilinx_pcie_probe - Probe function
662 * @pdev: Platform device pointer
663 *
664 * Return: '0' on success and error value on failure
665 */
666static int xilinx_pcie_probe(struct platform_device *pdev)
667{
668 struct xilinx_pcie_port *port;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530669 struct device *dev = &pdev->dev;
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530670 struct pci_bus *bus;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530671 int err;
Bharat Kumar Gogada02598822016-02-11 21:58:07 +0530672 resource_size_t iobase = 0;
673 LIST_HEAD(res);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530674
675 if (!dev->of_node)
676 return -ENODEV;
677
678 port = devm_kzalloc(dev, sizeof(*port), GFP_KERNEL);
679 if (!port)
680 return -ENOMEM;
681
682 port->dev = dev;
683
684 err = xilinx_pcie_parse_dt(port);
685 if (err) {
686 dev_err(dev, "Parsing DT failed\n");
687 return err;
688 }
689
690 xilinx_pcie_init_port(port);
691
692 err = xilinx_pcie_init_irq_domain(port);
693 if (err) {
694 dev_err(dev, "Failed creating IRQ Domain\n");
695 return err;
696 }
697
Bharat Kumar Gogada02598822016-02-11 21:58:07 +0530698 err = of_pci_get_host_bridge_resources(dev->of_node, 0, 0xff, &res,
699 &iobase);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530700 if (err) {
Bharat Kumar Gogada02598822016-02-11 21:58:07 +0530701 dev_err(dev, "Getting bridge resources failed\n");
Srikanth Thokala8961def2014-08-20 21:56:02 +0530702 return err;
703 }
Bjorn Helgaas93a5b5e2016-05-28 18:27:03 -0500704
705 err = devm_request_pci_bus_resources(dev, &res);
706 if (err)
707 goto error;
708
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530709 bus = pci_create_root_bus(&pdev->dev, 0,
710 &xilinx_pcie_ops, port, &res);
Bjorn Helgaasc41be7a2016-05-31 11:49:14 -0500711 if (!bus) {
712 err = -ENOMEM;
713 goto error;
714 }
Yijing Wang8dd26dc2014-11-11 15:45:31 -0700715
716#ifdef CONFIG_PCI_MSI
717 xilinx_pcie_msi_chip.dev = port->dev;
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530718 bus->msi = &xilinx_pcie_msi_chip;
Yijing Wang8dd26dc2014-11-11 15:45:31 -0700719#endif
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530720 pci_scan_child_bus(bus);
721 pci_assign_unassigned_bus_resources(bus);
Bharat Kumar Gogada2c513912016-02-11 21:58:09 +0530722#ifndef CONFIG_MICROBLAZE
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530723 pci_fixup_irqs(pci_common_swizzle, of_irq_parse_and_map_pci);
Bharat Kumar Gogada2c513912016-02-11 21:58:09 +0530724#endif
Bharat Kumar Gogada4c01f3b2016-02-11 21:58:08 +0530725 pci_bus_add_devices(bus);
726 platform_set_drvdata(pdev, port);
Srikanth Thokala8961def2014-08-20 21:56:02 +0530727
728 return 0;
Bjorn Helgaasc41be7a2016-05-31 11:49:14 -0500729
730error:
731 pci_free_resource_list(&res);
732 return err;
Srikanth Thokala8961def2014-08-20 21:56:02 +0530733}
734
735/**
736 * xilinx_pcie_remove - Remove function
737 * @pdev: Platform device pointer
738 *
739 * Return: '0' always
740 */
741static int xilinx_pcie_remove(struct platform_device *pdev)
742{
743 struct xilinx_pcie_port *port = platform_get_drvdata(pdev);
744
745 xilinx_pcie_free_irq_domain(port);
746
747 return 0;
748}
749
750static struct of_device_id xilinx_pcie_of_match[] = {
751 { .compatible = "xlnx,axi-pcie-host-1.00.a", },
752 {}
753};
754
755static struct platform_driver xilinx_pcie_driver = {
756 .driver = {
757 .name = "xilinx-pcie",
Srikanth Thokala8961def2014-08-20 21:56:02 +0530758 .of_match_table = xilinx_pcie_of_match,
759 .suppress_bind_attrs = true,
760 },
761 .probe = xilinx_pcie_probe,
762 .remove = xilinx_pcie_remove,
763};
764module_platform_driver(xilinx_pcie_driver);
765
766MODULE_AUTHOR("Xilinx Inc");
767MODULE_DESCRIPTION("Xilinx AXI PCIe driver");
768MODULE_LICENSE("GPL v2");