1
2
3
4
5
6
7
8
9
10
11
12
13
14#ifndef __FPGA_DFL_H
15#define __FPGA_DFL_H
16
17#include <linux/bitfield.h>
18#include <linux/cdev.h>
19#include <linux/delay.h>
20#include <linux/eventfd.h>
21#include <linux/fs.h>
22#include <linux/interrupt.h>
23#include <linux/iopoll.h>
24#include <linux/io-64-nonatomic-lo-hi.h>
25#include <linux/mod_devicetable.h>
26#include <linux/platform_device.h>
27#include <linux/slab.h>
28#include <linux/uuid.h>
29#include <linux/fpga/fpga-region.h>
30
31
32#define MAX_DFL_FPGA_PORT_NUM 4
33
34#define MAX_DFL_FEATURE_DEV_NUM (MAX_DFL_FPGA_PORT_NUM + 1)
35
36
37#define FEATURE_ID_FIU_HEADER 0xfe
38#define FEATURE_ID_AFU 0xff
39
40#define FME_FEATURE_ID_HEADER FEATURE_ID_FIU_HEADER
41#define FME_FEATURE_ID_THERMAL_MGMT 0x1
42#define FME_FEATURE_ID_POWER_MGMT 0x2
43#define FME_FEATURE_ID_GLOBAL_IPERF 0x3
44#define FME_FEATURE_ID_GLOBAL_ERR 0x4
45#define FME_FEATURE_ID_PR_MGMT 0x5
46#define FME_FEATURE_ID_HSSI 0x6
47#define FME_FEATURE_ID_GLOBAL_DPERF 0x7
48
49#define PORT_FEATURE_ID_HEADER FEATURE_ID_FIU_HEADER
50#define PORT_FEATURE_ID_AFU FEATURE_ID_AFU
51#define PORT_FEATURE_ID_ERROR 0x10
52#define PORT_FEATURE_ID_UMSG 0x11
53#define PORT_FEATURE_ID_UINT 0x12
54#define PORT_FEATURE_ID_STP 0x13
55
56
57
58
59
60
61
62
63#define DFH 0x0
64#define GUID_L 0x8
65#define GUID_H 0x10
66#define NEXT_AFU 0x18
67
68#define DFH_SIZE 0x8
69
70
71#define DFH_ID GENMASK_ULL(11, 0)
72#define DFH_ID_FIU_FME 0
73#define DFH_ID_FIU_PORT 1
74#define DFH_REVISION GENMASK_ULL(15, 12)
75#define DFH_NEXT_HDR_OFST GENMASK_ULL(39, 16)
76#define DFH_EOL BIT_ULL(40)
77#define DFH_TYPE GENMASK_ULL(63, 60)
78#define DFH_TYPE_AFU 1
79#define DFH_TYPE_PRIVATE 3
80#define DFH_TYPE_FIU 4
81
82
83#define NEXT_AFU_NEXT_DFH_OFST GENMASK_ULL(23, 0)
84
85
86#define FME_HDR_DFH DFH
87#define FME_HDR_GUID_L GUID_L
88#define FME_HDR_GUID_H GUID_H
89#define FME_HDR_NEXT_AFU NEXT_AFU
90#define FME_HDR_CAP 0x30
91#define FME_HDR_PORT_OFST(n) (0x38 + ((n) * 0x8))
92#define FME_PORT_OFST_BAR_SKIP 7
93#define FME_HDR_BITSTREAM_ID 0x60
94#define FME_HDR_BITSTREAM_MD 0x68
95
96
97#define FME_CAP_FABRIC_VERID GENMASK_ULL(7, 0)
98#define FME_CAP_SOCKET_ID BIT_ULL(8)
99#define FME_CAP_PCIE0_LINK_AVL BIT_ULL(12)
100#define FME_CAP_PCIE1_LINK_AVL BIT_ULL(13)
101#define FME_CAP_COHR_LINK_AVL BIT_ULL(14)
102#define FME_CAP_IOMMU_AVL BIT_ULL(16)
103#define FME_CAP_NUM_PORTS GENMASK_ULL(19, 17)
104#define FME_CAP_ADDR_WIDTH GENMASK_ULL(29, 24)
105#define FME_CAP_CACHE_SIZE GENMASK_ULL(43, 32)
106#define FME_CAP_CACHE_ASSOC GENMASK_ULL(47, 44)
107
108
109
110#define FME_PORT_OFST_DFH_OFST GENMASK_ULL(23, 0)
111
112#define FME_PORT_OFST_BAR_ID GENMASK_ULL(34, 32)
113
114#define FME_PORT_OFST_ACC_CTRL BIT_ULL(55)
115#define FME_PORT_OFST_ACC_PF 0
116#define FME_PORT_OFST_ACC_VF 1
117#define FME_PORT_OFST_IMP BIT_ULL(60)
118
119
120#define FME_ERROR_CAP 0x70
121
122
123#define FME_ERROR_CAP_SUPP_INT BIT_ULL(0)
124#define FME_ERROR_CAP_INT_VECT GENMASK_ULL(12, 1)
125
126
127#define PORT_HDR_DFH DFH
128#define PORT_HDR_GUID_L GUID_L
129#define PORT_HDR_GUID_H GUID_H
130#define PORT_HDR_NEXT_AFU NEXT_AFU
131#define PORT_HDR_CAP 0x30
132#define PORT_HDR_CTRL 0x38
133#define PORT_HDR_STS 0x40
134#define PORT_HDR_USRCLK_CMD0 0x50
135#define PORT_HDR_USRCLK_CMD1 0x58
136#define PORT_HDR_USRCLK_STS0 0x60
137#define PORT_HDR_USRCLK_STS1 0x68
138
139
140#define PORT_CAP_PORT_NUM GENMASK_ULL(1, 0)
141#define PORT_CAP_MMIO_SIZE GENMASK_ULL(23, 8)
142#define PORT_CAP_SUPP_INT_NUM GENMASK_ULL(35, 32)
143
144
145#define PORT_CTRL_SFTRST BIT_ULL(0)
146
147#define PORT_CTRL_LATENCY BIT_ULL(2)
148#define PORT_CTRL_SFTRST_ACK BIT_ULL(4)
149
150
151#define PORT_STS_AP2_EVT BIT_ULL(13)
152#define PORT_STS_AP1_EVT BIT_ULL(12)
153#define PORT_STS_PWR_STATE GENMASK_ULL(11, 8)
154#define PORT_STS_PWR_STATE_NORM 0
155#define PORT_STS_PWR_STATE_AP1 1
156#define PORT_STS_PWR_STATE_AP2 2
157#define PORT_STS_PWR_STATE_AP6 6
158
159
160#define PORT_ERROR_CAP 0x38
161
162
163#define PORT_ERROR_CAP_SUPP_INT BIT_ULL(0)
164#define PORT_ERROR_CAP_INT_VECT GENMASK_ULL(12, 1)
165
166
167#define PORT_UINT_CAP 0x8
168
169
170#define PORT_UINT_CAP_INT_NUM GENMASK_ULL(11, 0)
171#define PORT_UINT_CAP_FST_VECT GENMASK_ULL(23, 12)
172
173
174
175
176
177
178
179
180
181
182struct dfl_fpga_port_ops {
183 const char *name;
184 struct module *owner;
185 struct list_head node;
186 int (*get_id)(struct platform_device *pdev);
187 int (*enable_set)(struct platform_device *pdev, bool enable);
188};
189
190void dfl_fpga_port_ops_add(struct dfl_fpga_port_ops *ops);
191void dfl_fpga_port_ops_del(struct dfl_fpga_port_ops *ops);
192struct dfl_fpga_port_ops *dfl_fpga_port_ops_get(struct platform_device *pdev);
193void dfl_fpga_port_ops_put(struct dfl_fpga_port_ops *ops);
194int dfl_fpga_check_port_id(struct platform_device *pdev, void *pport_id);
195
196
197
198
199
200
201struct dfl_feature_id {
202 u16 id;
203};
204
205
206
207
208
209
210
211struct dfl_feature_driver {
212 const struct dfl_feature_id *id_table;
213 const struct dfl_feature_ops *ops;
214};
215
216
217
218
219
220
221
222
223struct dfl_feature_irq_ctx {
224 int irq;
225 struct eventfd_ctx *trigger;
226 char *name;
227};
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244struct dfl_feature {
245 struct platform_device *dev;
246 u16 id;
247 u8 revision;
248 int resource_index;
249 void __iomem *ioaddr;
250 struct dfl_feature_irq_ctx *irq_ctx;
251 unsigned int nr_irqs;
252 const struct dfl_feature_ops *ops;
253 struct dfl_device *ddev;
254 void *priv;
255};
256
257#define FEATURE_DEV_ID_UNUSED (-1)
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275struct dfl_feature_platform_data {
276 struct list_head node;
277 struct mutex lock;
278 struct cdev cdev;
279 struct platform_device *dev;
280 struct dfl_fpga_cdev *dfl_cdev;
281 int id;
282 unsigned int disable_count;
283 bool excl_open;
284 int open_count;
285 void *private;
286 int num;
287 struct dfl_feature features[];
288};
289
290static inline
291int dfl_feature_dev_use_begin(struct dfl_feature_platform_data *pdata,
292 bool excl)
293{
294 if (pdata->excl_open)
295 return -EBUSY;
296
297 if (excl) {
298 if (pdata->open_count)
299 return -EBUSY;
300
301 pdata->excl_open = true;
302 }
303 pdata->open_count++;
304
305 return 0;
306}
307
308static inline
309void dfl_feature_dev_use_end(struct dfl_feature_platform_data *pdata)
310{
311 pdata->excl_open = false;
312
313 if (WARN_ON(pdata->open_count <= 0))
314 return;
315
316 pdata->open_count--;
317}
318
319static inline
320int dfl_feature_dev_use_count(struct dfl_feature_platform_data *pdata)
321{
322 return pdata->open_count;
323}
324
325static inline
326void dfl_fpga_pdata_set_private(struct dfl_feature_platform_data *pdata,
327 void *private)
328{
329 pdata->private = private;
330}
331
332static inline
333void *dfl_fpga_pdata_get_private(struct dfl_feature_platform_data *pdata)
334{
335 return pdata->private;
336}
337
338struct dfl_feature_ops {
339 int (*init)(struct platform_device *pdev, struct dfl_feature *feature);
340 void (*uinit)(struct platform_device *pdev,
341 struct dfl_feature *feature);
342 long (*ioctl)(struct platform_device *pdev, struct dfl_feature *feature,
343 unsigned int cmd, unsigned long arg);
344};
345
346#define DFL_FPGA_FEATURE_DEV_FME "dfl-fme"
347#define DFL_FPGA_FEATURE_DEV_PORT "dfl-port"
348
349void dfl_fpga_dev_feature_uinit(struct platform_device *pdev);
350int dfl_fpga_dev_feature_init(struct platform_device *pdev,
351 struct dfl_feature_driver *feature_drvs);
352
353int dfl_fpga_dev_ops_register(struct platform_device *pdev,
354 const struct file_operations *fops,
355 struct module *owner);
356void dfl_fpga_dev_ops_unregister(struct platform_device *pdev);
357
358static inline
359struct platform_device *dfl_fpga_inode_to_feature_dev(struct inode *inode)
360{
361 struct dfl_feature_platform_data *pdata;
362
363 pdata = container_of(inode->i_cdev, struct dfl_feature_platform_data,
364 cdev);
365 return pdata->dev;
366}
367
368#define dfl_fpga_dev_for_each_feature(pdata, feature) \
369 for ((feature) = (pdata)->features; \
370 (feature) < (pdata)->features + (pdata)->num; (feature)++)
371
372static inline
373struct dfl_feature *dfl_get_feature_by_id(struct device *dev, u16 id)
374{
375 struct dfl_feature_platform_data *pdata = dev_get_platdata(dev);
376 struct dfl_feature *feature;
377
378 dfl_fpga_dev_for_each_feature(pdata, feature)
379 if (feature->id == id)
380 return feature;
381
382 return NULL;
383}
384
385static inline
386void __iomem *dfl_get_feature_ioaddr_by_id(struct device *dev, u16 id)
387{
388 struct dfl_feature *feature = dfl_get_feature_by_id(dev, id);
389
390 if (feature && feature->ioaddr)
391 return feature->ioaddr;
392
393 WARN_ON(1);
394 return NULL;
395}
396
397static inline bool is_dfl_feature_present(struct device *dev, u16 id)
398{
399 return !!dfl_get_feature_ioaddr_by_id(dev, id);
400}
401
402static inline
403struct device *dfl_fpga_pdata_to_parent(struct dfl_feature_platform_data *pdata)
404{
405 return pdata->dev->dev.parent->parent;
406}
407
408static inline bool dfl_feature_is_fme(void __iomem *base)
409{
410 u64 v = readq(base + DFH);
411
412 return (FIELD_GET(DFH_TYPE, v) == DFH_TYPE_FIU) &&
413 (FIELD_GET(DFH_ID, v) == DFH_ID_FIU_FME);
414}
415
416static inline bool dfl_feature_is_port(void __iomem *base)
417{
418 u64 v = readq(base + DFH);
419
420 return (FIELD_GET(DFH_TYPE, v) == DFH_TYPE_FIU) &&
421 (FIELD_GET(DFH_ID, v) == DFH_ID_FIU_PORT);
422}
423
424static inline u8 dfl_feature_revision(void __iomem *base)
425{
426 return (u8)FIELD_GET(DFH_REVISION, readq(base + DFH));
427}
428
429
430
431
432
433
434
435
436
437struct dfl_fpga_enum_info {
438 struct device *dev;
439 struct list_head dfls;
440 unsigned int nr_irqs;
441 int *irq_table;
442};
443
444
445
446
447
448
449
450
451struct dfl_fpga_enum_dfl {
452 resource_size_t start;
453 resource_size_t len;
454 struct list_head node;
455};
456
457struct dfl_fpga_enum_info *dfl_fpga_enum_info_alloc(struct device *dev);
458int dfl_fpga_enum_info_add_dfl(struct dfl_fpga_enum_info *info,
459 resource_size_t start, resource_size_t len);
460int dfl_fpga_enum_info_add_irq(struct dfl_fpga_enum_info *info,
461 unsigned int nr_irqs, int *irq_table);
462void dfl_fpga_enum_info_free(struct dfl_fpga_enum_info *info);
463
464
465
466
467
468
469
470
471
472
473
474struct dfl_fpga_cdev {
475 struct device *parent;
476 struct fpga_region *region;
477 struct device *fme_dev;
478 struct mutex lock;
479 struct list_head port_dev_list;
480 int released_port_num;
481};
482
483struct dfl_fpga_cdev *
484dfl_fpga_feature_devs_enumerate(struct dfl_fpga_enum_info *info);
485void dfl_fpga_feature_devs_remove(struct dfl_fpga_cdev *cdev);
486
487
488
489
490
491
492struct platform_device *
493__dfl_fpga_cdev_find_port(struct dfl_fpga_cdev *cdev, void *data,
494 int (*match)(struct platform_device *, void *));
495
496static inline struct platform_device *
497dfl_fpga_cdev_find_port(struct dfl_fpga_cdev *cdev, void *data,
498 int (*match)(struct platform_device *, void *))
499{
500 struct platform_device *pdev;
501
502 mutex_lock(&cdev->lock);
503 pdev = __dfl_fpga_cdev_find_port(cdev, data, match);
504 mutex_unlock(&cdev->lock);
505
506 return pdev;
507}
508
509int dfl_fpga_cdev_release_port(struct dfl_fpga_cdev *cdev, int port_id);
510int dfl_fpga_cdev_assign_port(struct dfl_fpga_cdev *cdev, int port_id);
511void dfl_fpga_cdev_config_ports_pf(struct dfl_fpga_cdev *cdev);
512int dfl_fpga_cdev_config_ports_vf(struct dfl_fpga_cdev *cdev, int num_vf);
513int dfl_fpga_set_irq_triggers(struct dfl_feature *feature, unsigned int start,
514 unsigned int count, int32_t *fds);
515long dfl_feature_ioctl_get_num_irqs(struct platform_device *pdev,
516 struct dfl_feature *feature,
517 unsigned long arg);
518long dfl_feature_ioctl_set_irq(struct platform_device *pdev,
519 struct dfl_feature *feature,
520 unsigned long arg);
521
522#endif
523