powerpc/powernv: Rename PE# fields in struct pnv_phb
[cascardo/linux.git] / arch / powerpc / platforms / powernv / pci.h
1 #ifndef __POWERNV_PCI_H
2 #define __POWERNV_PCI_H
3
4 struct pci_dn;
5
6 enum pnv_phb_type {
7         PNV_PHB_IODA1   = 0,
8         PNV_PHB_IODA2   = 1,
9         PNV_PHB_NPU     = 2,
10 };
11
12 /* Precise PHB model for error management */
13 enum pnv_phb_model {
14         PNV_PHB_MODEL_UNKNOWN,
15         PNV_PHB_MODEL_P7IOC,
16         PNV_PHB_MODEL_PHB3,
17         PNV_PHB_MODEL_NPU,
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 #define PNV_IODA_PE_PEER        (1 << 6)        /* PE has peers                 */
28
29 /* Data associated with a PE, including IOMMU tracking etc.. */
30 struct pnv_phb;
31 struct pnv_ioda_pe {
32         unsigned long           flags;
33         struct pnv_phb          *phb;
34
35 #define PNV_IODA_MAX_PEER_PES   8
36         struct pnv_ioda_pe      *peers[PNV_IODA_MAX_PEER_PES];
37
38         /* A PE can be associated with a single device or an
39          * entire bus (& children). In the former case, pdev
40          * is populated, in the later case, pbus is.
41          */
42 #ifdef CONFIG_PCI_IOV
43         struct pci_dev          *parent_dev;
44 #endif
45         struct pci_dev          *pdev;
46         struct pci_bus          *pbus;
47
48         /* Effective RID (device RID for a device PE and base bus
49          * RID with devfn 0 for a bus PE)
50          */
51         unsigned int            rid;
52
53         /* PE number */
54         unsigned int            pe_number;
55
56         /* "Weight" assigned to the PE for the sake of DMA resource
57          * allocations
58          */
59         unsigned int            dma_weight;
60
61         /* "Base" iommu table, ie, 4K TCEs, 32-bit DMA */
62         int                     tce32_seg;
63         int                     tce32_segcount;
64         struct iommu_table_group table_group;
65
66         /* 64-bit TCE bypass region */
67         bool                    tce_bypass_enabled;
68         uint64_t                tce_bypass_base;
69
70         /* MSIs. MVE index is identical for for 32 and 64 bit MSI
71          * and -1 if not supported. (It's actually identical to the
72          * PE number)
73          */
74         int                     mve_number;
75
76         /* PEs in compound case */
77         struct pnv_ioda_pe      *master;
78         struct list_head        slaves;
79
80         /* Link in list of PE#s */
81         struct list_head        dma_link;
82         struct list_head        list;
83 };
84
85 #define PNV_PHB_FLAG_EEH        (1 << 0)
86
87 struct pnv_phb {
88         struct pci_controller   *hose;
89         enum pnv_phb_type       type;
90         enum pnv_phb_model      model;
91         u64                     hub_id;
92         u64                     opal_id;
93         int                     flags;
94         void __iomem            *regs;
95         int                     initialized;
96         spinlock_t              lock;
97
98 #ifdef CONFIG_DEBUG_FS
99         int                     has_dbgfs;
100         struct dentry           *dbgfs;
101 #endif
102
103 #ifdef CONFIG_PCI_MSI
104         unsigned int            msi_base;
105         unsigned int            msi32_support;
106         struct msi_bitmap       msi_bmp;
107 #endif
108         int (*msi_setup)(struct pnv_phb *phb, struct pci_dev *dev,
109                          unsigned int hwirq, unsigned int virq,
110                          unsigned int is_64, struct msi_msg *msg);
111         void (*dma_dev_setup)(struct pnv_phb *phb, struct pci_dev *pdev);
112         void (*fixup_phb)(struct pci_controller *hose);
113         int (*init_m64)(struct pnv_phb *phb);
114         void (*reserve_m64_pe)(struct pci_bus *bus,
115                                unsigned long *pe_bitmap, bool all);
116         int (*pick_m64_pe)(struct pci_bus *bus, bool 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         struct {
122                 /* Global bridge info */
123                 unsigned int            total_pe_num;
124                 unsigned int            reserved_pe_idx;
125
126                 /* 32-bit MMIO window */
127                 unsigned int            m32_size;
128                 unsigned int            m32_segsize;
129                 unsigned int            m32_pci_base;
130
131                 /* 64-bit MMIO window */
132                 unsigned int            m64_bar_idx;
133                 unsigned long           m64_size;
134                 unsigned long           m64_segsize;
135                 unsigned long           m64_base;
136                 unsigned long           m64_bar_alloc;
137
138                 /* IO ports */
139                 unsigned int            io_size;
140                 unsigned int            io_segsize;
141                 unsigned int            io_pci_base;
142
143                 /* PE allocation */
144                 struct mutex            pe_alloc_mutex;
145                 unsigned long           *pe_alloc;
146                 struct pnv_ioda_pe      *pe_array;
147
148                 /* M32 & IO segment maps */
149                 unsigned int            *m32_segmap;
150                 unsigned int            *io_segmap;
151
152                 /* IRQ chip */
153                 int                     irq_chip_init;
154                 struct irq_chip         irq_chip;
155
156                 /* Sorted list of used PE's based
157                  * on the sequence of creation
158                  */
159                 struct list_head        pe_list;
160                 struct mutex            pe_list_mutex;
161
162                 /* Reverse map of PEs, will have to extend if
163                  * we are to support more than 256 PEs, indexed
164                  * bus { bus, devfn }
165                  */
166                 unsigned char           pe_rmap[0x10000];
167
168                 /* 32-bit TCE tables allocation */
169                 unsigned long           tce32_count;
170
171                 /* Total "weight" for the sake of DMA resources
172                  * allocation
173                  */
174                 unsigned int            dma_weight;
175                 unsigned int            dma_pe_count;
176
177                 /* Sorted list of used PE's, sorted at
178                  * boot for resource allocation purposes
179                  */
180                 struct list_head        pe_dma_list;
181
182                 /* TCE cache invalidate registers (physical and
183                  * remapped)
184                  */
185                 phys_addr_t             tce_inval_reg_phys;
186                 __be64 __iomem          *tce_inval_reg;
187         } ioda;
188
189         /* PHB and hub status structure */
190         union {
191                 unsigned char                   blob[PNV_PCI_DIAG_BUF_SIZE];
192                 struct OpalIoP7IOCPhbErrorData  p7ioc;
193                 struct OpalIoPhb3ErrorData      phb3;
194                 struct OpalIoP7IOCErrorData     hub_diag;
195         } diag;
196
197 };
198
199 extern struct pci_ops pnv_pci_ops;
200 extern int pnv_tce_build(struct iommu_table *tbl, long index, long npages,
201                 unsigned long uaddr, enum dma_data_direction direction,
202                 struct dma_attrs *attrs);
203 extern void pnv_tce_free(struct iommu_table *tbl, long index, long npages);
204 extern int pnv_tce_xchg(struct iommu_table *tbl, long index,
205                 unsigned long *hpa, enum dma_data_direction *direction);
206 extern unsigned long pnv_tce_get(struct iommu_table *tbl, long index);
207
208 void pnv_pci_dump_phb_diag_data(struct pci_controller *hose,
209                                 unsigned char *log_buff);
210 int pnv_pci_cfg_read(struct pci_dn *pdn,
211                      int where, int size, u32 *val);
212 int pnv_pci_cfg_write(struct pci_dn *pdn,
213                       int where, int size, u32 val);
214 extern struct iommu_table *pnv_pci_table_alloc(int nid);
215
216 extern long pnv_pci_link_table_and_group(int node, int num,
217                 struct iommu_table *tbl,
218                 struct iommu_table_group *table_group);
219 extern void pnv_pci_unlink_table_and_group(struct iommu_table *tbl,
220                 struct iommu_table_group *table_group);
221 extern void pnv_pci_setup_iommu_table(struct iommu_table *tbl,
222                                       void *tce_mem, u64 tce_size,
223                                       u64 dma_offset, unsigned page_shift);
224 extern void pnv_pci_init_ioda_hub(struct device_node *np);
225 extern void pnv_pci_init_ioda2_phb(struct device_node *np);
226 extern void pnv_pci_init_npu_phb(struct device_node *np);
227 extern void pnv_pci_ioda_tce_invalidate(struct iommu_table *tbl,
228                                         __be64 *startp, __be64 *endp, bool rm);
229 extern void pnv_pci_reset_secondary_bus(struct pci_dev *dev);
230 extern int pnv_eeh_phb_reset(struct pci_controller *hose, int option);
231
232 extern void pnv_pci_dma_dev_setup(struct pci_dev *pdev);
233 extern void pnv_pci_dma_bus_setup(struct pci_bus *bus);
234 extern int pnv_setup_msi_irqs(struct pci_dev *pdev, int nvec, int type);
235 extern void pnv_teardown_msi_irqs(struct pci_dev *pdev);
236
237 /* Nvlink functions */
238 extern void pnv_npu_tce_invalidate_entire(struct pnv_ioda_pe *npe);
239 extern void pnv_npu_tce_invalidate(struct pnv_ioda_pe *npe,
240                                        struct iommu_table *tbl,
241                                        unsigned long index,
242                                        unsigned long npages,
243                                        bool rm);
244 extern void pnv_npu_init_dma_pe(struct pnv_ioda_pe *npe);
245 extern void pnv_npu_setup_dma_pe(struct pnv_ioda_pe *npe);
246 extern int pnv_npu_dma_set_bypass(struct pnv_ioda_pe *npe, bool enabled);
247 extern int pnv_npu_dma_set_mask(struct pci_dev *npdev, u64 dma_mask);
248
249 #endif /* __POWERNV_PCI_H */