blob: 3694821a6d2d14be2f4abc301f3ea4857776690c [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Alan Tull21aeda92016-11-01 14:14:28 -05002
3#ifndef _LINUX_FPGA_BRIDGE_H
4#define _LINUX_FPGA_BRIDGE_H
5
Alan Tull9c1c4b22017-11-15 14:20:11 -06006#include <linux/device.h>
7#include <linux/fpga/fpga-mgr.h>
8
Alan Tull21aeda92016-11-01 14:14:28 -05009struct fpga_bridge;
10
11/**
12 * struct fpga_bridge_ops - ops for low level FPGA bridge drivers
13 * @enable_show: returns the FPGA bridge's status
14 * @enable_set: set a FPGA bridge as enabled or disabled
15 * @fpga_bridge_remove: set FPGA into a specific state during driver remove
Alan Tull845089b2017-11-15 14:20:28 -060016 * @groups: optional attribute groups.
Alan Tull21aeda92016-11-01 14:14:28 -050017 */
18struct fpga_bridge_ops {
19 int (*enable_show)(struct fpga_bridge *bridge);
20 int (*enable_set)(struct fpga_bridge *bridge, bool enable);
21 void (*fpga_bridge_remove)(struct fpga_bridge *bridge);
Alan Tull845089b2017-11-15 14:20:28 -060022 const struct attribute_group **groups;
Alan Tull21aeda92016-11-01 14:14:28 -050023};
24
25/**
26 * struct fpga_bridge - FPGA bridge structure
27 * @name: name of low level FPGA bridge
28 * @dev: FPGA bridge device
29 * @mutex: enforces exclusive reference to bridge
30 * @br_ops: pointer to struct of FPGA bridge ops
31 * @info: fpga image specific information
32 * @node: FPGA bridge list node
33 * @priv: low level driver private date
34 */
35struct fpga_bridge {
36 const char *name;
37 struct device dev;
38 struct mutex mutex; /* for exclusive reference to bridge */
39 const struct fpga_bridge_ops *br_ops;
40 struct fpga_image_info *info;
41 struct list_head node;
42 void *priv;
43};
44
45#define to_fpga_bridge(d) container_of(d, struct fpga_bridge, dev)
46
47struct fpga_bridge *of_fpga_bridge_get(struct device_node *node,
48 struct fpga_image_info *info);
Alan Tull9c1c4b22017-11-15 14:20:11 -060049struct fpga_bridge *fpga_bridge_get(struct device *dev,
50 struct fpga_image_info *info);
Alan Tull21aeda92016-11-01 14:14:28 -050051void fpga_bridge_put(struct fpga_bridge *bridge);
52int fpga_bridge_enable(struct fpga_bridge *bridge);
53int fpga_bridge_disable(struct fpga_bridge *bridge);
54
55int fpga_bridges_enable(struct list_head *bridge_list);
56int fpga_bridges_disable(struct list_head *bridge_list);
57void fpga_bridges_put(struct list_head *bridge_list);
Alan Tull9c1c4b22017-11-15 14:20:11 -060058int fpga_bridge_get_to_list(struct device *dev,
Alan Tull21aeda92016-11-01 14:14:28 -050059 struct fpga_image_info *info,
60 struct list_head *bridge_list);
Alan Tull9c1c4b22017-11-15 14:20:11 -060061int of_fpga_bridge_get_to_list(struct device_node *np,
62 struct fpga_image_info *info,
63 struct list_head *bridge_list);
Alan Tull21aeda92016-11-01 14:14:28 -050064
65int fpga_bridge_register(struct device *dev, const char *name,
66 const struct fpga_bridge_ops *br_ops, void *priv);
67void fpga_bridge_unregister(struct device *dev);
68
69#endif /* _LINUX_FPGA_BRIDGE_H */