blob: d87fbaeffe70c0465ec571e328fcaaab377918ee [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 Han4b1ced82013-07-31 17:14:10 +090017struct pcie_port_info {
18 u32 cfg0_size;
19 u32 cfg1_size;
20 u32 io_size;
21 u32 mem_size;
22 phys_addr_t io_bus_addr;
23 phys_addr_t mem_bus_addr;
24};
25
Jingoo Hanf342d942013-09-06 15:54:59 +090026/*
27 * Maximum number of MSI IRQs can be 256 per controller. But keep
28 * it 32 as of now. Probably we will never need more than 32. If needed,
29 * then increment it in multiple of 32.
30 */
31#define MAX_MSI_IRQS 32
32#define MAX_MSI_CTRLS (MAX_MSI_IRQS / 32)
33
Jingoo Han4b1ced82013-07-31 17:14:10 +090034struct pcie_port {
35 struct device *dev;
36 u8 root_bus_nr;
37 void __iomem *dbi_base;
38 u64 cfg0_base;
39 void __iomem *va_cfg0_base;
40 u64 cfg1_base;
41 void __iomem *va_cfg1_base;
42 u64 io_base;
43 u64 mem_base;
44 spinlock_t conf_lock;
45 struct resource cfg;
46 struct resource io;
47 struct resource mem;
48 struct pcie_port_info config;
49 int irq;
50 u32 lanes;
51 struct pcie_host_ops *ops;
Jingoo Hanf342d942013-09-06 15:54:59 +090052 int msi_irq;
53 int msi_irq_start;
54 unsigned long msi_data;
55 DECLARE_BITMAP(msi_irq_in_use, MAX_MSI_IRQS);
Jingoo Han4b1ced82013-07-31 17:14:10 +090056};
57
58struct pcie_host_ops {
59 void (*readl_rc)(struct pcie_port *pp,
60 void __iomem *dbi_base, u32 *val);
61 void (*writel_rc)(struct pcie_port *pp,
62 u32 val, void __iomem *dbi_base);
63 int (*rd_own_conf)(struct pcie_port *pp, int where, int size, u32 *val);
64 int (*wr_own_conf)(struct pcie_port *pp, int where, int size, u32 val);
65 int (*link_up)(struct pcie_port *pp);
66 void (*host_init)(struct pcie_port *pp);
67};
68
69extern unsigned long global_io_offset;
70
71int cfg_read(void __iomem *addr, int where, int size, u32 *val);
72int cfg_write(void __iomem *addr, int where, int size, u32 val);
73int dw_pcie_wr_own_conf(struct pcie_port *pp, int where, int size, u32 val);
74int dw_pcie_rd_own_conf(struct pcie_port *pp, int where, int size, u32 *val);
Jingoo Hanf342d942013-09-06 15:54:59 +090075void dw_handle_msi_irq(struct pcie_port *pp);
76void dw_pcie_msi_init(struct pcie_port *pp);
Jingoo Han4b1ced82013-07-31 17:14:10 +090077int dw_pcie_link_up(struct pcie_port *pp);
78void dw_pcie_setup_rc(struct pcie_port *pp);
79int dw_pcie_host_init(struct pcie_port *pp);
80int dw_pcie_setup(int nr, struct pci_sys_data *sys);
81struct pci_bus *dw_pcie_scan_bus(int nr, struct pci_sys_data *sys);
82int dw_pcie_map_irq(const struct pci_dev *dev, u8 slot, u8 pin);
Seungwon Jeon18edf452013-10-09 09:12:21 -060083
84#endif /* _PCIE_DESIGNWARE_H */