1 #ifndef __POWERNV_PCI_H
2 #define __POWERNV_PCI_H
3 
4 struct pci_dn;
5 
6 enum pnv_phb_type {
7 	PNV_PHB_P5IOC2	= 0,
8 	PNV_PHB_IODA1	= 1,
9 	PNV_PHB_IODA2	= 2,
10 };
11 
12 /* Precise PHB model for error management */
13 enum pnv_phb_model {
14 	PNV_PHB_MODEL_UNKNOWN,
15 	PNV_PHB_MODEL_P5IOC2,
16 	PNV_PHB_MODEL_P7IOC,
17 	PNV_PHB_MODEL_PHB3,
18 };
19 
20 #define PNV_PCI_DIAG_BUF_SIZE	8192
21 #define PNV_IODA_PE_DEV		(1 << 0)	/* PE has single PCI device	*/
22 #define PNV_IODA_PE_BUS		(1 << 1)	/* PE has primary PCI bus	*/
23 #define PNV_IODA_PE_BUS_ALL	(1 << 2)	/* PE has subordinate buses	*/
24 #define PNV_IODA_PE_MASTER	(1 << 3)	/* Master PE in compound case	*/
25 #define PNV_IODA_PE_SLAVE	(1 << 4)	/* Slave PE in compound case	*/
26 #define PNV_IODA_PE_VF		(1 << 5)	/* PE for one VF 		*/
27 
28 /* Data associated with a PE, including IOMMU tracking etc.. */
29 struct pnv_phb;
30 struct pnv_ioda_pe {
31 	unsigned long		flags;
32 	struct pnv_phb		*phb;
33 
34 	/* A PE can be associated with a single device or an
35 	 * entire bus (& children). In the former case, pdev
36 	 * is populated, in the later case, pbus is.
37 	 */
38 #ifdef CONFIG_PCI_IOV
39 	struct pci_dev          *parent_dev;
40 #endif
41 	struct pci_dev		*pdev;
42 	struct pci_bus		*pbus;
43 
44 	/* Effective RID (device RID for a device PE and base bus
45 	 * RID with devfn 0 for a bus PE)
46 	 */
47 	unsigned int		rid;
48 
49 	/* PE number */
50 	unsigned int		pe_number;
51 
52 	/* "Weight" assigned to the PE for the sake of DMA resource
53 	 * allocations
54 	 */
55 	unsigned int		dma_weight;
56 
57 	/* "Base" iommu table, ie, 4K TCEs, 32-bit DMA */
58 	int			tce32_seg;
59 	int			tce32_segcount;
60 	struct iommu_table	*tce32_table;
61 	phys_addr_t		tce_inval_reg_phys;
62 
63 	/* 64-bit TCE bypass region */
64 	bool			tce_bypass_enabled;
65 	uint64_t		tce_bypass_base;
66 
67 	/* MSIs. MVE index is identical for for 32 and 64 bit MSI
68 	 * and -1 if not supported. (It's actually identical to the
69 	 * PE number)
70 	 */
71 	int			mve_number;
72 
73 	/* PEs in compound case */
74 	struct pnv_ioda_pe	*master;
75 	struct list_head	slaves;
76 
77 	/* Link in list of PE#s */
78 	struct list_head	dma_link;
79 	struct list_head	list;
80 };
81 
82 #define PNV_PHB_FLAG_EEH	(1 << 0)
83 
84 struct pnv_phb {
85 	struct pci_controller	*hose;
86 	enum pnv_phb_type	type;
87 	enum pnv_phb_model	model;
88 	u64			hub_id;
89 	u64			opal_id;
90 	int			flags;
91 	void __iomem		*regs;
92 	int			initialized;
93 	spinlock_t		lock;
94 
95 #ifdef CONFIG_DEBUG_FS
96 	int			has_dbgfs;
97 	struct dentry		*dbgfs;
98 #endif
99 
100 #ifdef CONFIG_PCI_MSI
101 	unsigned int		msi_base;
102 	unsigned int		msi32_support;
103 	struct msi_bitmap	msi_bmp;
104 #endif
105 	int (*msi_setup)(struct pnv_phb *phb, struct pci_dev *dev,
106 			 unsigned int hwirq, unsigned int virq,
107 			 unsigned int is_64, struct msi_msg *msg);
108 	void (*dma_dev_setup)(struct pnv_phb *phb, struct pci_dev *pdev);
109 	u64 (*dma_get_required_mask)(struct pnv_phb *phb,
110 				     struct pci_dev *pdev);
111 	void (*fixup_phb)(struct pci_controller *hose);
112 	u32 (*bdfn_to_pe)(struct pnv_phb *phb, struct pci_bus *bus, u32 devfn);
113 	void (*shutdown)(struct pnv_phb *phb);
114 	int (*init_m64)(struct pnv_phb *phb);
115 	void (*reserve_m64_pe)(struct pnv_phb *phb);
116 	int (*pick_m64_pe)(struct pnv_phb *phb, struct pci_bus *bus, int all);
117 	int (*get_pe_state)(struct pnv_phb *phb, int pe_no);
118 	void (*freeze_pe)(struct pnv_phb *phb, int pe_no);
119 	int (*unfreeze_pe)(struct pnv_phb *phb, int pe_no, int opt);
120 
121 	union {
122 		struct {
123 			struct iommu_table iommu_table;
124 		} p5ioc2;
125 
126 		struct {
127 			/* Global bridge info */
128 			unsigned int		total_pe;
129 			unsigned int		reserved_pe;
130 
131 			/* 32-bit MMIO window */
132 			unsigned int		m32_size;
133 			unsigned int		m32_segsize;
134 			unsigned int		m32_pci_base;
135 
136 			/* 64-bit MMIO window */
137 			unsigned int		m64_bar_idx;
138 			unsigned long		m64_size;
139 			unsigned long		m64_segsize;
140 			unsigned long		m64_base;
141 			unsigned long		m64_bar_alloc;
142 
143 			/* IO ports */
144 			unsigned int		io_size;
145 			unsigned int		io_segsize;
146 			unsigned int		io_pci_base;
147 
148 			/* PE allocation bitmap */
149 			unsigned long		*pe_alloc;
150 			/* PE allocation mutex */
151 			struct mutex		pe_alloc_mutex;
152 
153 			/* M32 & IO segment maps */
154 			unsigned int		*m32_segmap;
155 			unsigned int		*io_segmap;
156 			struct pnv_ioda_pe	*pe_array;
157 
158 			/* IRQ chip */
159 			int			irq_chip_init;
160 			struct irq_chip		irq_chip;
161 
162 			/* Sorted list of used PE's based
163 			 * on the sequence of creation
164 			 */
165 			struct list_head	pe_list;
166 			struct mutex            pe_list_mutex;
167 
168 			/* Reverse map of PEs, will have to extend if
169 			 * we are to support more than 256 PEs, indexed
170 			 * bus { bus, devfn }
171 			 */
172 			unsigned char		pe_rmap[0x10000];
173 
174 			/* 32-bit TCE tables allocation */
175 			unsigned long		tce32_count;
176 
177 			/* Total "weight" for the sake of DMA resources
178 			 * allocation
179 			 */
180 			unsigned int		dma_weight;
181 			unsigned int		dma_pe_count;
182 
183 			/* Sorted list of used PE's, sorted at
184 			 * boot for resource allocation purposes
185 			 */
186 			struct list_head	pe_dma_list;
187 		} ioda;
188 	};
189 
190 	/* PHB and hub status structure */
191 	union {
192 		unsigned char			blob[PNV_PCI_DIAG_BUF_SIZE];
193 		struct OpalIoP7IOCPhbErrorData	p7ioc;
194 		struct OpalIoPhb3ErrorData	phb3;
195 		struct OpalIoP7IOCErrorData 	hub_diag;
196 	} diag;
197 
198 };
199 
200 extern struct pci_ops pnv_pci_ops;
201 
202 void pnv_pci_dump_phb_diag_data(struct pci_controller *hose,
203 				unsigned char *log_buff);
204 int pnv_pci_cfg_read(struct pci_dn *pdn,
205 		     int where, int size, u32 *val);
206 int pnv_pci_cfg_write(struct pci_dn *pdn,
207 		      int where, int size, u32 val);
208 extern void pnv_pci_setup_iommu_table(struct iommu_table *tbl,
209 				      void *tce_mem, u64 tce_size,
210 				      u64 dma_offset, unsigned page_shift);
211 extern void pnv_pci_init_p5ioc2_hub(struct device_node *np);
212 extern void pnv_pci_init_ioda_hub(struct device_node *np);
213 extern void pnv_pci_init_ioda2_phb(struct device_node *np);
214 extern void pnv_pci_ioda_tce_invalidate(struct iommu_table *tbl,
215 					__be64 *startp, __be64 *endp, bool rm);
216 extern void pnv_pci_reset_secondary_bus(struct pci_dev *dev);
217 extern int pnv_eeh_phb_reset(struct pci_controller *hose, int option);
218 
219 extern void pnv_pci_dma_dev_setup(struct pci_dev *pdev);
220 extern int pnv_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type);
221 extern void pnv_teardown_msi_irqs(struct pci_dev *pdev);
222 
223 #endif /* __POWERNV_PCI_H */
224