1 /* SPDX-License-Identifier: GPL-2.0 */
3 * Driver Header File for FPGA Device Feature List (DFL) Support
5 * Copyright (C) 2017-2018 Intel Corporation, Inc.
17 #include <linux/bitfield.h>
18 #include <linux/cdev.h>
19 #include <linux/delay.h>
21 #include <linux/iopoll.h>
22 #include <linux/io-64-nonatomic-lo-hi.h>
23 #include <linux/platform_device.h>
24 #include <linux/slab.h>
25 #include <linux/uuid.h>
26 #include <linux/fpga/fpga-region.h>
28 /* maximum supported number of ports */
29 #define MAX_DFL_FPGA_PORT_NUM 4
30 /* plus one for fme device */
31 #define MAX_DFL_FEATURE_DEV_NUM (MAX_DFL_FPGA_PORT_NUM + 1)
33 /* Reserved 0xfe for Header Group Register and 0xff for AFU */
34 #define FEATURE_ID_FIU_HEADER 0xfe
35 #define FEATURE_ID_AFU 0xff
37 #define FME_FEATURE_ID_HEADER FEATURE_ID_FIU_HEADER
38 #define FME_FEATURE_ID_THERMAL_MGMT 0x1
39 #define FME_FEATURE_ID_POWER_MGMT 0x2
40 #define FME_FEATURE_ID_GLOBAL_IPERF 0x3
41 #define FME_FEATURE_ID_GLOBAL_ERR 0x4
42 #define FME_FEATURE_ID_PR_MGMT 0x5
43 #define FME_FEATURE_ID_HSSI 0x6
44 #define FME_FEATURE_ID_GLOBAL_DPERF 0x7
46 #define PORT_FEATURE_ID_HEADER FEATURE_ID_FIU_HEADER
47 #define PORT_FEATURE_ID_AFU FEATURE_ID_AFU
48 #define PORT_FEATURE_ID_ERROR 0x10
49 #define PORT_FEATURE_ID_UMSG 0x11
50 #define PORT_FEATURE_ID_UINT 0x12
51 #define PORT_FEATURE_ID_STP 0x13
54 * Device Feature Header Register Set
56 * For FIUs, they all have DFH + GUID + NEXT_AFU as common header registers.
57 * For AFUs, they have DFH + GUID as common header registers.
58 * For private features, they only have DFH register as common header.
67 /* Device Feature Header Register Bitfield */
68 #define DFH_ID GENMASK_ULL(11, 0) /* Feature ID */
69 #define DFH_ID_FIU_FME 0
70 #define DFH_ID_FIU_PORT 1
71 #define DFH_REVISION GENMASK_ULL(15, 12) /* Feature revision */
72 #define DFH_NEXT_HDR_OFST GENMASK_ULL(39, 16) /* Offset to next DFH */
73 #define DFH_EOL BIT_ULL(40) /* End of list */
74 #define DFH_TYPE GENMASK_ULL(63, 60) /* Feature type */
75 #define DFH_TYPE_AFU 1
76 #define DFH_TYPE_PRIVATE 3
77 #define DFH_TYPE_FIU 4
79 /* Next AFU Register Bitfield */
80 #define NEXT_AFU_NEXT_DFH_OFST GENMASK_ULL(23, 0) /* Offset to next AFU */
82 /* FME Header Register Set */
83 #define FME_HDR_DFH DFH
84 #define FME_HDR_GUID_L GUID_L
85 #define FME_HDR_GUID_H GUID_H
86 #define FME_HDR_NEXT_AFU NEXT_AFU
87 #define FME_HDR_CAP 0x30
88 #define FME_HDR_PORT_OFST(n) (0x38 + ((n) * 0x8))
89 #define FME_HDR_BITSTREAM_ID 0x60
90 #define FME_HDR_BITSTREAM_MD 0x68
92 /* FME Fab Capability Register Bitfield */
93 #define FME_CAP_FABRIC_VERID GENMASK_ULL(7, 0) /* Fabric version ID */
94 #define FME_CAP_SOCKET_ID BIT_ULL(8) /* Socket ID */
95 #define FME_CAP_PCIE0_LINK_AVL BIT_ULL(12) /* PCIE0 Link */
96 #define FME_CAP_PCIE1_LINK_AVL BIT_ULL(13) /* PCIE1 Link */
97 #define FME_CAP_COHR_LINK_AVL BIT_ULL(14) /* Coherent Link */
98 #define FME_CAP_IOMMU_AVL BIT_ULL(16) /* IOMMU available */
99 #define FME_CAP_NUM_PORTS GENMASK_ULL(19, 17) /* Number of ports */
100 #define FME_CAP_ADDR_WIDTH GENMASK_ULL(29, 24) /* Address bus width */
101 #define FME_CAP_CACHE_SIZE GENMASK_ULL(43, 32) /* cache size in KB */
102 #define FME_CAP_CACHE_ASSOC GENMASK_ULL(47, 44) /* Associativity */
104 /* FME Port Offset Register Bitfield */
105 /* Offset to port device feature header */
106 #define FME_PORT_OFST_DFH_OFST GENMASK_ULL(23, 0)
107 /* PCI Bar ID for this port */
108 #define FME_PORT_OFST_BAR_ID GENMASK_ULL(34, 32)
109 /* AFU MMIO access permission. 1 - VF, 0 - PF. */
110 #define FME_PORT_OFST_ACC_CTRL BIT_ULL(55)
111 #define FME_PORT_OFST_ACC_PF 0
112 #define FME_PORT_OFST_ACC_VF 1
113 #define FME_PORT_OFST_IMP BIT_ULL(60)
115 /* PORT Header Register Set */
116 #define PORT_HDR_DFH DFH
117 #define PORT_HDR_GUID_L GUID_L
118 #define PORT_HDR_GUID_H GUID_H
119 #define PORT_HDR_NEXT_AFU NEXT_AFU
120 #define PORT_HDR_CAP 0x30
121 #define PORT_HDR_CTRL 0x38
122 #define PORT_HDR_STS 0x40
123 #define PORT_HDR_USRCLK_CMD0 0x50
124 #define PORT_HDR_USRCLK_CMD1 0x58
125 #define PORT_HDR_USRCLK_STS0 0x60
126 #define PORT_HDR_USRCLK_STS1 0x68
128 /* Port Capability Register Bitfield */
129 #define PORT_CAP_PORT_NUM GENMASK_ULL(1, 0) /* ID of this port */
130 #define PORT_CAP_MMIO_SIZE GENMASK_ULL(23, 8) /* MMIO size in KB */
131 #define PORT_CAP_SUPP_INT_NUM GENMASK_ULL(35, 32) /* Interrupts num */
133 /* Port Control Register Bitfield */
134 #define PORT_CTRL_SFTRST BIT_ULL(0) /* Port soft reset */
135 /* Latency tolerance reporting. '1' >= 40us, '0' < 40us.*/
136 #define PORT_CTRL_LATENCY BIT_ULL(2)
137 #define PORT_CTRL_SFTRST_ACK BIT_ULL(4) /* HW ack for reset */
139 /* Port Status Register Bitfield */
140 #define PORT_STS_AP2_EVT BIT_ULL(13) /* AP2 event detected */
141 #define PORT_STS_AP1_EVT BIT_ULL(12) /* AP1 event detected */
142 #define PORT_STS_PWR_STATE GENMASK_ULL(11, 8) /* AFU power states */
143 #define PORT_STS_PWR_STATE_NORM 0
144 #define PORT_STS_PWR_STATE_AP1 1 /* 50% throttling */
145 #define PORT_STS_PWR_STATE_AP2 2 /* 90% throttling */
146 #define PORT_STS_PWR_STATE_AP6 6 /* 100% throttling */
149 * struct dfl_fpga_port_ops - port ops
151 * @name: name of this port ops, to match with port platform device.
152 * @owner: pointer to the module which owns this port ops.
153 * @node: node to link port ops to global list.
154 * @get_id: get port id from hardware.
155 * @enable_set: enable/disable the port.
157 struct dfl_fpga_port_ops {
159 struct module *owner;
160 struct list_head node;
161 int (*get_id)(struct platform_device *pdev);
162 int (*enable_set)(struct platform_device *pdev, bool enable);
165 void dfl_fpga_port_ops_add(struct dfl_fpga_port_ops *ops);
166 void dfl_fpga_port_ops_del(struct dfl_fpga_port_ops *ops);
167 struct dfl_fpga_port_ops *dfl_fpga_port_ops_get(struct platform_device *pdev);
168 void dfl_fpga_port_ops_put(struct dfl_fpga_port_ops *ops);
169 int dfl_fpga_check_port_id(struct platform_device *pdev, void *pport_id);
172 * struct dfl_feature_id - dfl private feature id
174 * @id: unique dfl private feature id.
176 struct dfl_feature_id {
181 * struct dfl_feature_driver - dfl private feature driver
183 * @id_table: id_table for dfl private features supported by this driver.
184 * @ops: ops of this dfl private feature driver.
186 struct dfl_feature_driver {
187 const struct dfl_feature_id *id_table;
188 const struct dfl_feature_ops *ops;
192 * struct dfl_feature - sub feature of the feature devices
194 * @id: sub feature id.
195 * @resource_index: each sub feature has one mmio resource for its registers.
196 * this index is used to find its mmio resource from the
197 * feature dev (platform device)'s reources.
198 * @ioaddr: mapped mmio resource address.
199 * @ops: ops of this sub feature.
200 * @priv: priv data of this feature.
205 void __iomem *ioaddr;
206 const struct dfl_feature_ops *ops;
210 #define FEATURE_DEV_ID_UNUSED (-1)
213 * struct dfl_feature_platform_data - platform data for feature devices
215 * @node: node to link feature devs to container device's port_dev_list.
216 * @lock: mutex to protect platform data.
217 * @cdev: cdev of feature dev.
218 * @dev: ptr to platform device linked with this platform data.
219 * @dfl_cdev: ptr to container device.
220 * @id: id used for this feature device.
221 * @disable_count: count for port disable.
222 * @excl_open: set on feature device exclusive open.
223 * @open_count: count for feature device open.
224 * @num: number for sub features.
225 * @private: ptr to feature dev private data.
226 * @features: sub features of this feature dev.
228 struct dfl_feature_platform_data {
229 struct list_head node;
232 struct platform_device *dev;
233 struct dfl_fpga_cdev *dfl_cdev;
235 unsigned int disable_count;
240 struct dfl_feature features[];
244 int dfl_feature_dev_use_begin(struct dfl_feature_platform_data *pdata,
247 if (pdata->excl_open)
251 if (pdata->open_count)
254 pdata->excl_open = true;
262 void dfl_feature_dev_use_end(struct dfl_feature_platform_data *pdata)
264 pdata->excl_open = false;
266 if (WARN_ON(pdata->open_count <= 0))
273 int dfl_feature_dev_use_count(struct dfl_feature_platform_data *pdata)
275 return pdata->open_count;
279 void dfl_fpga_pdata_set_private(struct dfl_feature_platform_data *pdata,
282 pdata->private = private;
286 void *dfl_fpga_pdata_get_private(struct dfl_feature_platform_data *pdata)
288 return pdata->private;
291 struct dfl_feature_ops {
292 int (*init)(struct platform_device *pdev, struct dfl_feature *feature);
293 void (*uinit)(struct platform_device *pdev,
294 struct dfl_feature *feature);
295 long (*ioctl)(struct platform_device *pdev, struct dfl_feature *feature,
296 unsigned int cmd, unsigned long arg);
299 #define DFL_FPGA_FEATURE_DEV_FME "dfl-fme"
300 #define DFL_FPGA_FEATURE_DEV_PORT "dfl-port"
302 static inline int dfl_feature_platform_data_size(const int num)
304 return sizeof(struct dfl_feature_platform_data) +
305 num * sizeof(struct dfl_feature);
308 void dfl_fpga_dev_feature_uinit(struct platform_device *pdev);
309 int dfl_fpga_dev_feature_init(struct platform_device *pdev,
310 struct dfl_feature_driver *feature_drvs);
312 int dfl_fpga_dev_ops_register(struct platform_device *pdev,
313 const struct file_operations *fops,
314 struct module *owner);
315 void dfl_fpga_dev_ops_unregister(struct platform_device *pdev);
318 struct platform_device *dfl_fpga_inode_to_feature_dev(struct inode *inode)
320 struct dfl_feature_platform_data *pdata;
322 pdata = container_of(inode->i_cdev, struct dfl_feature_platform_data,
327 #define dfl_fpga_dev_for_each_feature(pdata, feature) \
328 for ((feature) = (pdata)->features; \
329 (feature) < (pdata)->features + (pdata)->num; (feature)++)
332 struct dfl_feature *dfl_get_feature_by_id(struct device *dev, u64 id)
334 struct dfl_feature_platform_data *pdata = dev_get_platdata(dev);
335 struct dfl_feature *feature;
337 dfl_fpga_dev_for_each_feature(pdata, feature)
338 if (feature->id == id)
345 void __iomem *dfl_get_feature_ioaddr_by_id(struct device *dev, u64 id)
347 struct dfl_feature *feature = dfl_get_feature_by_id(dev, id);
349 if (feature && feature->ioaddr)
350 return feature->ioaddr;
356 static inline bool is_dfl_feature_present(struct device *dev, u64 id)
358 return !!dfl_get_feature_ioaddr_by_id(dev, id);
362 struct device *dfl_fpga_pdata_to_parent(struct dfl_feature_platform_data *pdata)
364 return pdata->dev->dev.parent->parent;
367 static inline bool dfl_feature_is_fme(void __iomem *base)
369 u64 v = readq(base + DFH);
371 return (FIELD_GET(DFH_TYPE, v) == DFH_TYPE_FIU) &&
372 (FIELD_GET(DFH_ID, v) == DFH_ID_FIU_FME);
375 static inline bool dfl_feature_is_port(void __iomem *base)
377 u64 v = readq(base + DFH);
379 return (FIELD_GET(DFH_TYPE, v) == DFH_TYPE_FIU) &&
380 (FIELD_GET(DFH_ID, v) == DFH_ID_FIU_PORT);
383 static inline u8 dfl_feature_revision(void __iomem *base)
385 return (u8)FIELD_GET(DFH_REVISION, readq(base + DFH));
389 * struct dfl_fpga_enum_info - DFL FPGA enumeration information
391 * @dev: parent device.
392 * @dfls: list of device feature lists.
394 struct dfl_fpga_enum_info {
396 struct list_head dfls;
400 * struct dfl_fpga_enum_dfl - DFL FPGA enumeration device feature list info
402 * @start: base address of this device feature list.
403 * @len: size of this device feature list.
404 * @ioaddr: mapped base address of this device feature list.
405 * @node: node in list of device feature lists.
407 struct dfl_fpga_enum_dfl {
408 resource_size_t start;
411 void __iomem *ioaddr;
413 struct list_head node;
416 struct dfl_fpga_enum_info *dfl_fpga_enum_info_alloc(struct device *dev);
417 int dfl_fpga_enum_info_add_dfl(struct dfl_fpga_enum_info *info,
418 resource_size_t start, resource_size_t len,
419 void __iomem *ioaddr);
420 void dfl_fpga_enum_info_free(struct dfl_fpga_enum_info *info);
423 * struct dfl_fpga_cdev - container device of DFL based FPGA
425 * @parent: parent device of this container device.
426 * @region: base fpga region.
427 * @fme_dev: FME feature device under this container device.
428 * @lock: mutex lock to protect the port device list.
429 * @port_dev_list: list of all port feature devices under this container device.
430 * @released_port_num: released port number under this container device.
432 struct dfl_fpga_cdev {
433 struct device *parent;
434 struct fpga_region *region;
435 struct device *fme_dev;
437 struct list_head port_dev_list;
438 int released_port_num;
441 struct dfl_fpga_cdev *
442 dfl_fpga_feature_devs_enumerate(struct dfl_fpga_enum_info *info);
443 void dfl_fpga_feature_devs_remove(struct dfl_fpga_cdev *cdev);
446 * need to drop the device reference with put_device() after use port platform
447 * device returned by __dfl_fpga_cdev_find_port and dfl_fpga_cdev_find_port
450 struct platform_device *
451 __dfl_fpga_cdev_find_port(struct dfl_fpga_cdev *cdev, void *data,
452 int (*match)(struct platform_device *, void *));
454 static inline struct platform_device *
455 dfl_fpga_cdev_find_port(struct dfl_fpga_cdev *cdev, void *data,
456 int (*match)(struct platform_device *, void *))
458 struct platform_device *pdev;
460 mutex_lock(&cdev->lock);
461 pdev = __dfl_fpga_cdev_find_port(cdev, data, match);
462 mutex_unlock(&cdev->lock);
467 int dfl_fpga_cdev_release_port(struct dfl_fpga_cdev *cdev, int port_id);
468 int dfl_fpga_cdev_assign_port(struct dfl_fpga_cdev *cdev, int port_id);
469 void dfl_fpga_cdev_config_ports_pf(struct dfl_fpga_cdev *cdev);
470 int dfl_fpga_cdev_config_ports_vf(struct dfl_fpga_cdev *cdev, int num_vf);
471 #endif /* __FPGA_DFL_H */