pcie-designware.h 2.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * Synopsys Designware PCIe host controller driver
 *
 * Copyright (C) 2013 Samsung Electronics Co., Ltd.
 *		http://www.samsung.com
 *
 * Author: Jingoo Han <jg1.han@samsung.com>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

S
Seungwon Jeon 已提交
14 15 16
#ifndef _PCIE_DESIGNWARE_H
#define _PCIE_DESIGNWARE_H

J
Jingoo Han 已提交
17 18 19 20 21 22 23 24
/*
 * Maximum number of MSI IRQs can be 256 per controller. But keep
 * it 32 as of now. Probably we will never need more than 32. If needed,
 * then increment it in multiple of 32.
 */
#define MAX_MSI_IRQS			32
#define MAX_MSI_CTRLS			(MAX_MSI_IRQS / 32)

25 26 27 28 29 30
struct pcie_port {
	struct device		*dev;
	u8			root_bus_nr;
	void __iomem		*dbi_base;
	u64			cfg0_base;
	void __iomem		*va_cfg0_base;
31
	u32			cfg0_size;
32 33
	u64			cfg1_base;
	void __iomem		*va_cfg1_base;
34
	u32			cfg1_size;
35
	resource_size_t		io_base;
36 37
	phys_addr_t		io_bus_addr;
	u32			io_size;
38
	u64			mem_base;
39 40
	phys_addr_t		mem_bus_addr;
	u32			mem_size;
41 42 43 44
	struct resource		*cfg;
	struct resource		*io;
	struct resource		*mem;
	struct resource		*busn;
45 46 47
	int			irq;
	u32			lanes;
	struct pcie_host_ops	*ops;
J
Jingoo Han 已提交
48
	int			msi_irq;
49
	struct irq_domain	*irq_domain;
J
Jingoo Han 已提交
50 51
	unsigned long		msi_data;
	DECLARE_BITMAP(msi_irq_in_use, MAX_MSI_IRQS);
52 53 54
};

struct pcie_host_ops {
55
	u32 (*readl_rc)(struct pcie_port *pp, void __iomem *dbi_base);
56 57 58 59
	void (*writel_rc)(struct pcie_port *pp,
			u32 val, void __iomem *dbi_base);
	int (*rd_own_conf)(struct pcie_port *pp, int where, int size, u32 *val);
	int (*wr_own_conf)(struct pcie_port *pp, int where, int size, u32 val);
60 61 62 63
	int (*rd_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
			unsigned int devfn, int where, int size, u32 *val);
	int (*wr_other_conf)(struct pcie_port *pp, struct pci_bus *bus,
			unsigned int devfn, int where, int size, u32 val);
64 65
	int (*link_up)(struct pcie_port *pp);
	void (*host_init)(struct pcie_port *pp);
66 67
	void (*msi_set_irq)(struct pcie_port *pp, int irq);
	void (*msi_clear_irq)(struct pcie_port *pp, int irq);
68
	phys_addr_t (*get_msi_addr)(struct pcie_port *pp);
69
	u32 (*get_msi_data)(struct pcie_port *pp, int pos);
70
	void (*scan_bus)(struct pcie_port *pp);
71
	int (*msi_host_init)(struct pcie_port *pp, struct msi_controller *chip);
72 73
};

74 75
int dw_pcie_cfg_read(void __iomem *addr, int size, u32 *val);
int dw_pcie_cfg_write(void __iomem *addr, int size, u32 val);
76
irqreturn_t dw_handle_msi_irq(struct pcie_port *pp);
J
Jingoo Han 已提交
77
void dw_pcie_msi_init(struct pcie_port *pp);
78
int dw_pcie_wait_for_link(struct pcie_port *pp);
79 80 81
int dw_pcie_link_up(struct pcie_port *pp);
void dw_pcie_setup_rc(struct pcie_port *pp);
int dw_pcie_host_init(struct pcie_port *pp);
S
Seungwon Jeon 已提交
82 83

#endif /* _PCIE_DESIGNWARE_H */