blob: c8e5bc647f4958d0cf66643d8280bc7f41713ab7 [file] [log] [blame]
Jingoo Han4b1ced82013-07-31 17:14:10 +09001/*
2 * Synopsys Designware PCIe host controller driver
3 *
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
Seungwon Jeon18edf452013-10-09 09:12:21 -060014#ifndef _PCIE_DESIGNWARE_H
15#define _PCIE_DESIGNWARE_H
16
Jingoo Hanf342d942013-09-06 15:54:59 +090017/*
18 * Maximum number of MSI IRQs can be 256 per controller. But keep
19 * it 32 as of now. Probably we will never need more than 32. If needed,
20 * then increment it in multiple of 32.
21 */
22#define MAX_MSI_IRQS 32
23#define MAX_MSI_CTRLS (MAX_MSI_IRQS / 32)
24
Jingoo Han4b1ced82013-07-31 17:14:10 +090025struct pcie_port {
26 struct device *dev;
27 u8 root_bus_nr;
28 void __iomem *dbi_base;
29 u64 cfg0_base;
30 void __iomem *va_cfg0_base;
Pratyush Anandadf70fc2014-09-05 17:48:54 -060031 u32 cfg0_size;
Jingoo Han4b1ced82013-07-31 17:14:10 +090032 u64 cfg1_base;
33 void __iomem *va_cfg1_base;
Pratyush Anandadf70fc2014-09-05 17:48:54 -060034 u32 cfg1_size;
Zhou Wang0021d222015-10-29 19:57:06 -050035 resource_size_t io_base;
Pratyush Anandadf70fc2014-09-05 17:48:54 -060036 phys_addr_t io_bus_addr;
37 u32 io_size;
Jingoo Han4b1ced82013-07-31 17:14:10 +090038 u64 mem_base;
Pratyush Anandadf70fc2014-09-05 17:48:54 -060039 phys_addr_t mem_bus_addr;
40 u32 mem_size;
Zhou Wang0021d222015-10-29 19:57:06 -050041 struct resource *cfg;
42 struct resource *io;
43 struct resource *mem;
44 struct resource *busn;
Jingoo Han4b1ced82013-07-31 17:14:10 +090045 int irq;
46 u32 lanes;
Pratyush Anandfe48cb82016-07-04 21:44:42 +053047 u32 num_viewport;
Jingoo Han4b1ced82013-07-31 17:14:10 +090048 struct pcie_host_ops *ops;
Jingoo Hanf342d942013-09-06 15:54:59 +090049 int msi_irq;
Pratyush Anand904d0e72013-10-09 21:32:12 +090050 struct irq_domain *irq_domain;
Jingoo Hanf342d942013-09-06 15:54:59 +090051 unsigned long msi_data;
Joao Pintoa0601a42016-08-10 11:02:39 +010052 u8 iatu_unroll_enabled;
Jingoo Hanf342d942013-09-06 15:54:59 +090053 DECLARE_BITMAP(msi_irq_in_use, MAX_MSI_IRQS);
Jingoo Han4b1ced82013-07-31 17:14:10 +090054};
55
56struct pcie_host_ops {
Bjorn Helgaas446fc232016-08-17 14:17:58 -050057 u32 (*readl_rc)(struct pcie_port *pp, void __iomem *dbi_base);
Jingoo Han4b1ced82013-07-31 17:14:10 +090058 void (*writel_rc)(struct pcie_port *pp,
59 u32 val, void __iomem *dbi_base);
60 int (*rd_own_conf)(struct pcie_port *pp, int where, int size, u32 *val);
61 int (*wr_own_conf)(struct pcie_port *pp, int where, int size, u32 val);
Murali Karicheria1c0ae92014-07-21 12:58:41 -040062 int (*rd_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
63 unsigned int devfn, int where, int size, u32 *val);
64 int (*wr_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
65 unsigned int devfn, int where, int size, u32 val);
Jingoo Han4b1ced82013-07-31 17:14:10 +090066 int (*link_up)(struct pcie_port *pp);
67 void (*host_init)(struct pcie_port *pp);
Murali Karicheri2f37c5a2014-07-21 12:58:42 -040068 void (*msi_set_irq)(struct pcie_port *pp, int irq);
69 void (*msi_clear_irq)(struct pcie_port *pp, int irq);
Lucas Stach98a97e62015-09-18 13:58:35 -050070 phys_addr_t (*get_msi_addr)(struct pcie_port *pp);
Minghuan Lian24832b42014-09-23 22:28:59 +080071 u32 (*get_msi_data)(struct pcie_port *pp, int pos);
Murali Karicherib14a3d12014-07-23 14:54:51 -040072 void (*scan_bus)(struct pcie_port *pp);
Yijing Wangc2791b82014-11-11 17:45:45 -070073 int (*msi_host_init)(struct pcie_port *pp, struct msi_controller *chip);
Jingoo Han4b1ced82013-07-31 17:14:10 +090074};
75
Gabriele Paoloni4c458522015-10-08 14:27:48 -050076int dw_pcie_cfg_read(void __iomem *addr, int size, u32 *val);
77int dw_pcie_cfg_write(void __iomem *addr, int size, u32 val);
Lucas Stach7f4f16e2014-03-28 17:52:58 +010078irqreturn_t dw_handle_msi_irq(struct pcie_port *pp);
Jingoo Hanf342d942013-09-06 15:54:59 +090079void dw_pcie_msi_init(struct pcie_port *pp);
Joao Pinto886bc5c2016-03-10 14:44:35 -060080int dw_pcie_wait_for_link(struct pcie_port *pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +090081int dw_pcie_link_up(struct pcie_port *pp);
82void dw_pcie_setup_rc(struct pcie_port *pp);
83int dw_pcie_host_init(struct pcie_port *pp);
Seungwon Jeon18edf452013-10-09 09:12:21 -060084
85#endif /* _PCIE_DESIGNWARE_H */