Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at b935117fe6d1af576e39b1f18c9e875f44bd146f 280 lines 9.6 kB view raw
1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * PCI Endpoint *Function* (EPF) header file 4 * 5 * Copyright (C) 2017 Texas Instruments 6 * Author: Kishon Vijay Abraham I <kishon@ti.com> 7 */ 8 9#ifndef __LINUX_PCI_EPF_H 10#define __LINUX_PCI_EPF_H 11 12#include <linux/configfs.h> 13#include <linux/device.h> 14#include <linux/mod_devicetable.h> 15#include <linux/msi.h> 16#include <linux/pci.h> 17 18struct pci_epf; 19struct pci_epc_features; 20enum pci_epc_interface_type; 21 22enum pci_barno { 23 NO_BAR = -1, 24 BAR_0, 25 BAR_1, 26 BAR_2, 27 BAR_3, 28 BAR_4, 29 BAR_5, 30}; 31 32/** 33 * struct pci_epf_header - represents standard configuration header 34 * @vendorid: identifies device manufacturer 35 * @deviceid: identifies a particular device 36 * @revid: specifies a device-specific revision identifier 37 * @progif_code: identifies a specific register-level programming interface 38 * @subclass_code: identifies more specifically the function of the device 39 * @baseclass_code: broadly classifies the type of function the device performs 40 * @cache_line_size: specifies the system cacheline size in units of DWORDs 41 * @subsys_vendor_id: vendor of the add-in card or subsystem 42 * @subsys_id: ID specific to vendor 43 * @interrupt_pin: interrupt pin the device (or device function) uses 44 */ 45struct pci_epf_header { 46 u16 vendorid; 47 u16 deviceid; 48 u8 revid; 49 u8 progif_code; 50 u8 subclass_code; 51 u8 baseclass_code; 52 u8 cache_line_size; 53 u16 subsys_vendor_id; 54 u16 subsys_id; 55 enum pci_interrupt_pin interrupt_pin; 56}; 57 58/** 59 * struct pci_epf_ops - set of function pointers for performing EPF operations 60 * @bind: ops to perform when a EPC device has been bound to EPF device 61 * @unbind: ops to perform when a binding has been lost between a EPC device 62 * and EPF device 63 * @add_cfs: ops to initialize function-specific configfs attributes 64 */ 65struct pci_epf_ops { 66 int (*bind)(struct pci_epf *epf); 67 void (*unbind)(struct pci_epf *epf); 68 struct config_group *(*add_cfs)(struct pci_epf *epf, 69 struct config_group *group); 70}; 71 72/** 73 * struct pci_epc_event_ops - Callbacks for capturing the EPC events 74 * @epc_init: Callback for the EPC initialization complete event 75 * @epc_deinit: Callback for the EPC deinitialization event 76 * @link_up: Callback for the EPC link up event 77 * @link_down: Callback for the EPC link down event 78 * @bus_master_enable: Callback for the EPC Bus Master Enable event 79 */ 80struct pci_epc_event_ops { 81 int (*epc_init)(struct pci_epf *epf); 82 void (*epc_deinit)(struct pci_epf *epf); 83 int (*link_up)(struct pci_epf *epf); 84 int (*link_down)(struct pci_epf *epf); 85 int (*bus_master_enable)(struct pci_epf *epf); 86}; 87 88/** 89 * struct pci_epf_driver - represents the PCI EPF driver 90 * @probe: ops to perform when a new EPF device has been bound to the EPF driver 91 * @remove: ops to perform when the binding between the EPF device and EPF 92 * driver is broken 93 * @driver: PCI EPF driver 94 * @ops: set of function pointers for performing EPF operations 95 * @owner: the owner of the module that registers the PCI EPF driver 96 * @epf_group: list of configfs group corresponding to the PCI EPF driver 97 * @id_table: identifies EPF devices for probing 98 */ 99struct pci_epf_driver { 100 int (*probe)(struct pci_epf *epf, 101 const struct pci_epf_device_id *id); 102 void (*remove)(struct pci_epf *epf); 103 104 struct device_driver driver; 105 const struct pci_epf_ops *ops; 106 struct module *owner; 107 struct list_head epf_group; 108 const struct pci_epf_device_id *id_table; 109}; 110 111#define to_pci_epf_driver(drv) container_of_const((drv), struct pci_epf_driver, driver) 112 113/** 114 * struct pci_epf_bar_submap - BAR subrange for inbound mapping 115 * @phys_addr: target physical/DMA address for this subrange 116 * @size: the size of the subrange to be mapped 117 * 118 * When pci_epf_bar.num_submap is >0, pci_epf_bar.submap describes the 119 * complete BAR layout. This allows an EPC driver to program multiple 120 * inbound translation windows for a single BAR when supported by the 121 * controller. The array order defines the BAR layout (submap[0] at offset 122 * 0, and each immediately follows the previous one). 123 */ 124struct pci_epf_bar_submap { 125 dma_addr_t phys_addr; 126 size_t size; 127}; 128 129/** 130 * struct pci_epf_bar - represents the BAR of EPF device 131 * @phys_addr: physical address that should be mapped to the BAR 132 * @addr: virtual address corresponding to the @phys_addr 133 * @size: the size of the address space present in BAR 134 * @mem_size: the size actually allocated to accommodate the iATU alignment 135 * requirement 136 * @barno: BAR number 137 * @flags: flags that are set for the BAR 138 * @num_submap: number of entries in @submap 139 * @submap: array of subrange descriptors allocated by the caller. See 140 * struct pci_epf_bar_submap for the semantics in detail. 141 */ 142struct pci_epf_bar { 143 dma_addr_t phys_addr; 144 void *addr; 145 size_t size; 146 size_t mem_size; 147 enum pci_barno barno; 148 int flags; 149 150 /* Optional sub-range mapping */ 151 unsigned int num_submap; 152 struct pci_epf_bar_submap *submap; 153}; 154 155/** 156 * struct pci_epf_doorbell_msg - represents doorbell message 157 * @msg: MSI message 158 * @virq: IRQ number of this doorbell MSI message 159 */ 160struct pci_epf_doorbell_msg { 161 struct msi_msg msg; 162 int virq; 163}; 164 165/** 166 * struct pci_epf - represents the PCI EPF device 167 * @dev: the PCI EPF device 168 * @name: the name of the PCI EPF device 169 * @header: represents standard configuration header 170 * @bar: represents the BAR of EPF device 171 * @msi_interrupts: number of MSI interrupts required by this function 172 * @msix_interrupts: number of MSI-X interrupts required by this function 173 * @func_no: unique (physical) function number within this endpoint device 174 * @vfunc_no: unique virtual function number within a physical function 175 * @epc: the EPC device to which this EPF device is bound 176 * @epf_pf: the physical EPF device to which this virtual EPF device is bound 177 * @driver: the EPF driver to which this EPF device is bound 178 * @id: pointer to the EPF device ID 179 * @list: to add pci_epf as a list of PCI endpoint functions to pci_epc 180 * @lock: mutex to protect pci_epf_ops 181 * @sec_epc: the secondary EPC device to which this EPF device is bound 182 * @sec_epc_list: to add pci_epf as list of PCI endpoint functions to secondary 183 * EPC device 184 * @sec_epc_bar: represents the BAR of EPF device associated with secondary EPC 185 * @sec_epc_func_no: unique (physical) function number within the secondary EPC 186 * @group: configfs group associated with the EPF device 187 * @is_bound: indicates if bind notification to function driver has been invoked 188 * @is_vf: true - virtual function, false - physical function 189 * @vfunction_num_map: bitmap to manage virtual function number 190 * @pci_vepf: list of virtual endpoint functions associated with this function 191 * @event_ops: callbacks for capturing the EPC events 192 * @db_msg: data for MSI from RC side 193 * @num_db: number of doorbells 194 */ 195struct pci_epf { 196 struct device dev; 197 const char *name; 198 struct pci_epf_header *header; 199 struct pci_epf_bar bar[PCI_STD_NUM_BARS]; 200 u8 msi_interrupts; 201 u16 msix_interrupts; 202 u8 func_no; 203 u8 vfunc_no; 204 205 struct pci_epc *epc; 206 struct pci_epf *epf_pf; 207 struct pci_epf_driver *driver; 208 const struct pci_epf_device_id *id; 209 struct list_head list; 210 /* mutex to protect against concurrent access of pci_epf_ops */ 211 struct mutex lock; 212 213 /* Below members are to attach secondary EPC to an endpoint function */ 214 struct pci_epc *sec_epc; 215 struct list_head sec_epc_list; 216 struct pci_epf_bar sec_epc_bar[PCI_STD_NUM_BARS]; 217 u8 sec_epc_func_no; 218 struct config_group *group; 219 unsigned int is_bound; 220 unsigned int is_vf; 221 unsigned long vfunction_num_map; 222 struct list_head pci_vepf; 223 const struct pci_epc_event_ops *event_ops; 224 struct pci_epf_doorbell_msg *db_msg; 225 u16 num_db; 226}; 227 228/** 229 * struct pci_epf_msix_tbl - represents the MSI-X table entry structure 230 * @msg_addr: Writes to this address will trigger MSI-X interrupt in host 231 * @msg_data: Data that should be written to @msg_addr to trigger MSI-X 232 * interrupt 233 * @vector_ctrl: Identifies if the function is prohibited from sending a message 234 * using this MSI-X table entry 235 */ 236struct pci_epf_msix_tbl { 237 u64 msg_addr; 238 u32 msg_data; 239 u32 vector_ctrl; 240}; 241 242#define to_pci_epf(epf_dev) container_of((epf_dev), struct pci_epf, dev) 243 244#define pci_epf_register_driver(driver) \ 245 __pci_epf_register_driver((driver), THIS_MODULE) 246 247static inline void epf_set_drvdata(struct pci_epf *epf, void *data) 248{ 249 dev_set_drvdata(&epf->dev, data); 250} 251 252static inline void *epf_get_drvdata(struct pci_epf *epf) 253{ 254 return dev_get_drvdata(&epf->dev); 255} 256 257struct pci_epf *pci_epf_create(const char *name); 258void pci_epf_destroy(struct pci_epf *epf); 259int __pci_epf_register_driver(struct pci_epf_driver *driver, 260 struct module *owner); 261void pci_epf_unregister_driver(struct pci_epf_driver *driver); 262void *pci_epf_alloc_space(struct pci_epf *epf, size_t size, enum pci_barno bar, 263 const struct pci_epc_features *epc_features, 264 enum pci_epc_interface_type type); 265void pci_epf_free_space(struct pci_epf *epf, void *addr, enum pci_barno bar, 266 enum pci_epc_interface_type type); 267 268int pci_epf_assign_bar_space(struct pci_epf *epf, size_t size, 269 enum pci_barno bar, 270 const struct pci_epc_features *epc_features, 271 enum pci_epc_interface_type type, 272 dma_addr_t bar_addr); 273 274int pci_epf_align_inbound_addr(struct pci_epf *epf, enum pci_barno bar, 275 u64 addr, dma_addr_t *base, size_t *off); 276int pci_epf_bind(struct pci_epf *epf); 277void pci_epf_unbind(struct pci_epf *epf); 278int pci_epf_add_vepf(struct pci_epf *epf_pf, struct pci_epf *epf_vf); 279void pci_epf_remove_vepf(struct pci_epf *epf_pf, struct pci_epf *epf_vf); 280#endif /* __LINUX_PCI_EPF_H */