Linux 6.10-rc4
[linux-block.git] / include / linux / pci-epf.h
CommitLineData
8cfab3cf 1/* SPDX-License-Identifier: GPL-2.0 */
347269c1 2/*
5e8cb403
KVA
3 * PCI Endpoint *Function* (EPF) header file
4 *
5 * Copyright (C) 2017 Texas Instruments
6 * Author: Kishon Vijay Abraham I <kishon@ti.com>
5e8cb403
KVA
7 */
8
9#ifndef __LINUX_PCI_EPF_H
10#define __LINUX_PCI_EPF_H
11
38ad827e 12#include <linux/configfs.h>
5e8cb403
KVA
13#include <linux/device.h>
14#include <linux/mod_devicetable.h>
b352baf1 15#include <linux/pci.h>
5e8cb403
KVA
16
17struct pci_epf;
e891becd 18struct pci_epc_features;
63840ff5 19enum pci_epc_interface_type;
5e8cb403 20
5e8cb403 21enum pci_barno {
0e27aecc 22 NO_BAR = -1,
5e8cb403
KVA
23 BAR_0,
24 BAR_1,
25 BAR_2,
26 BAR_3,
27 BAR_4,
28 BAR_5,
29};
30
31/**
32 * struct pci_epf_header - represents standard configuration header
33 * @vendorid: identifies device manufacturer
34 * @deviceid: identifies a particular device
35 * @revid: specifies a device-specific revision identifier
36 * @progif_code: identifies a specific register-level programming interface
37 * @subclass_code: identifies more specifically the function of the device
38 * @baseclass_code: broadly classifies the type of function the device performs
39 * @cache_line_size: specifies the system cacheline size in units of DWORDs
40 * @subsys_vendor_id: vendor of the add-in card or subsystem
41 * @subsys_id: id specific to vendor
42 * @interrupt_pin: interrupt pin the device (or device function) uses
43 */
44struct pci_epf_header {
45 u16 vendorid;
46 u16 deviceid;
47 u8 revid;
48 u8 progif_code;
49 u8 subclass_code;
50 u8 baseclass_code;
51 u8 cache_line_size;
52 u16 subsys_vendor_id;
53 u16 subsys_id;
54 enum pci_interrupt_pin interrupt_pin;
55};
56
57/**
58 * struct pci_epf_ops - set of function pointers for performing EPF operations
59 * @bind: ops to perform when a EPC device has been bound to EPF device
60 * @unbind: ops to perform when a binding has been lost between a EPC device
61 * and EPF device
256ae475 62 * @add_cfs: ops to initialize function specific configfs attributes
5e8cb403
KVA
63 */
64struct pci_epf_ops {
65 int (*bind)(struct pci_epf *epf);
66 void (*unbind)(struct pci_epf *epf);
256ae475
KVA
67 struct config_group *(*add_cfs)(struct pci_epf *epf,
68 struct config_group *group);
5e8cb403
KVA
69};
70
838125b0 71/**
2db6b72c 72 * struct pci_epc_event_ops - Callbacks for capturing the EPC events
838125b0 73 * @core_init: Callback for the EPC initialization complete event
f5edd871 74 * @link_up: Callback for the EPC link up event
a1f6c3d7 75 * @link_down: Callback for the EPC link down event
6360efb9 76 * @bme: Callback for the EPC BME (Bus Master Enable) event
838125b0
MS
77 */
78struct pci_epc_event_ops {
79 int (*core_init)(struct pci_epf *epf);
f5edd871 80 int (*link_up)(struct pci_epf *epf);
a1f6c3d7 81 int (*link_down)(struct pci_epf *epf);
6360efb9 82 int (*bme)(struct pci_epf *epf);
838125b0
MS
83};
84
5e8cb403
KVA
85/**
86 * struct pci_epf_driver - represents the PCI EPF driver
87 * @probe: ops to perform when a new EPF device has been bound to the EPF driver
88 * @remove: ops to perform when the binding between the EPF device and EPF
89 * driver is broken
90 * @driver: PCI EPF driver
91 * @ops: set of function pointers for performing EPF operations
92 * @owner: the owner of the module that registers the PCI EPF driver
ef1433f7 93 * @epf_group: list of configfs group corresponding to the PCI EPF driver
5e8cb403
KVA
94 * @id_table: identifies EPF devices for probing
95 */
96struct pci_epf_driver {
081c715d
MS
97 int (*probe)(struct pci_epf *epf,
98 const struct pci_epf_device_id *id);
dde0a318 99 void (*remove)(struct pci_epf *epf);
5e8cb403
KVA
100
101 struct device_driver driver;
86362293 102 const struct pci_epf_ops *ops;
5e8cb403 103 struct module *owner;
ef1433f7 104 struct list_head epf_group;
5e8cb403
KVA
105 const struct pci_epf_device_id *id_table;
106};
107
108#define to_pci_epf_driver(drv) (container_of((drv), struct pci_epf_driver, \
109 driver))
110
111/**
112 * struct pci_epf_bar - represents the BAR of EPF device
113 * @phys_addr: physical address that should be mapped to the BAR
6f5e193b 114 * @addr: virtual address corresponding to the @phys_addr
5e8cb403 115 * @size: the size of the address space present in BAR
347269c1
KW
116 * @barno: BAR number
117 * @flags: flags that are set for the BAR
5e8cb403
KVA
118 */
119struct pci_epf_bar {
120 dma_addr_t phys_addr;
6f5e193b 121 void *addr;
5e8cb403 122 size_t size;
bc4a4897
NC
123 enum pci_barno barno;
124 int flags;
5e8cb403
KVA
125};
126
127/**
128 * struct pci_epf - represents the PCI EPF device
129 * @dev: the PCI EPF device
130 * @name: the name of the PCI EPF device
131 * @header: represents standard configuration header
132 * @bar: represents the BAR of EPF device
133 * @msi_interrupts: number of MSI interrupts required by this function
347269c1 134 * @msix_interrupts: number of MSI-X interrupts required by this function
1cf362e9
KVA
135 * @func_no: unique (physical) function number within this endpoint device
136 * @vfunc_no: unique virtual function number within a physical function
5e8cb403 137 * @epc: the EPC device to which this EPF device is bound
1cf362e9 138 * @epf_pf: the physical EPF device to which this virtual EPF device is bound
5e8cb403 139 * @driver: the EPF driver to which this EPF device is bound
081c715d 140 * @id: Pointer to the EPF device ID
5e8cb403 141 * @list: to add pci_epf as a list of PCI endpoint functions to pci_epc
07301c98 142 * @lock: mutex to protect pci_epf_ops
63840ff5
KVA
143 * @sec_epc: the secondary EPC device to which this EPF device is bound
144 * @sec_epc_list: to add pci_epf as list of PCI endpoint functions to secondary
145 * EPC device
146 * @sec_epc_bar: represents the BAR of EPF device associated with secondary EPC
147 * @sec_epc_func_no: unique (physical) function number within the secondary EPC
38ad827e 148 * @group: configfs group associated with the EPF device
1cf362e9
KVA
149 * @is_bound: indicates if bind notification to function driver has been invoked
150 * @is_vf: true - virtual function, false - physical function
151 * @vfunction_num_map: bitmap to manage virtual function number
152 * @pci_vepf: list of virtual endpoint functions associated with this function
838125b0 153 * @event_ops: Callbacks for capturing the EPC events
5e8cb403
KVA
154 */
155struct pci_epf {
156 struct device dev;
157 const char *name;
158 struct pci_epf_header *header;
159 struct pci_epf_bar bar[6];
160 u8 msi_interrupts;
8963106e 161 u16 msix_interrupts;
5e8cb403 162 u8 func_no;
1cf362e9 163 u8 vfunc_no;
5e8cb403
KVA
164
165 struct pci_epc *epc;
1cf362e9 166 struct pci_epf *epf_pf;
5e8cb403 167 struct pci_epf_driver *driver;
081c715d 168 const struct pci_epf_device_id *id;
5e8cb403 169 struct list_head list;
07301c98
KVA
170 /* mutex to protect against concurrent access of pci_epf_ops */
171 struct mutex lock;
63840ff5
KVA
172
173 /* Below members are to attach secondary EPC to an endpoint function */
174 struct pci_epc *sec_epc;
175 struct list_head sec_epc_list;
176 struct pci_epf_bar sec_epc_bar[6];
177 u8 sec_epc_func_no;
38ad827e 178 struct config_group *group;
1cf362e9
KVA
179 unsigned int is_bound;
180 unsigned int is_vf;
181 unsigned long vfunction_num_map;
182 struct list_head pci_vepf;
838125b0 183 const struct pci_epc_event_ops *event_ops;
5e8cb403
KVA
184};
185
6f5e193b
KVA
186/**
187 * struct pci_epf_msix_tbl - represents the MSIX table entry structure
188 * @msg_addr: Writes to this address will trigger MSIX interrupt in host
189 * @msg_data: Data that should be written to @msg_addr to trigger MSIX interrupt
190 * @vector_ctrl: Identifies if the function is prohibited from sending a message
191 * using this MSIX table entry
192 */
193struct pci_epf_msix_tbl {
194 u64 msg_addr;
195 u32 msg_data;
196 u32 vector_ctrl;
197};
198
5e8cb403
KVA
199#define to_pci_epf(epf_dev) container_of((epf_dev), struct pci_epf, dev)
200
201#define pci_epf_register_driver(driver) \
202 __pci_epf_register_driver((driver), THIS_MODULE)
203
204static inline void epf_set_drvdata(struct pci_epf *epf, void *data)
205{
206 dev_set_drvdata(&epf->dev, data);
207}
208
209static inline void *epf_get_drvdata(struct pci_epf *epf)
210{
211 return dev_get_drvdata(&epf->dev);
212}
213
214struct pci_epf *pci_epf_create(const char *name);
215void pci_epf_destroy(struct pci_epf *epf);
216int __pci_epf_register_driver(struct pci_epf_driver *driver,
217 struct module *owner);
218void pci_epf_unregister_driver(struct pci_epf_driver *driver);
2a9a8016 219void *pci_epf_alloc_space(struct pci_epf *epf, size_t size, enum pci_barno bar,
e891becd
NC
220 const struct pci_epc_features *epc_features,
221 enum pci_epc_interface_type type);
63840ff5
KVA
222void pci_epf_free_space(struct pci_epf *epf, void *addr, enum pci_barno bar,
223 enum pci_epc_interface_type type);
5e8cb403
KVA
224int pci_epf_bind(struct pci_epf *epf);
225void pci_epf_unbind(struct pci_epf *epf);
1cf362e9
KVA
226int pci_epf_add_vepf(struct pci_epf *epf_pf, struct pci_epf *epf_vf);
227void pci_epf_remove_vepf(struct pci_epf *epf_pf, struct pci_epf *epf_vf);
5e8cb403 228#endif /* __LINUX_PCI_EPF_H */