Lines Matching full:device
12 #include <device.h>
29 typedef enum FPGA_status (*fpga_api_get_status)(const struct device *dev);
30 typedef int (*fpga_api_load)(const struct device *dev, uint32_t *image_ptr,
32 typedef int (*fpga_api_reset)(const struct device *dev);
33 typedef int (*fpga_api_on)(const struct device *dev);
34 typedef int (*fpga_api_off)(const struct device *dev);
35 typedef const char *(*fpga_api_get_info)(const struct device *dev);
49 * @param dev FPGA device structure.
54 static inline enum FPGA_status fpga_get_status(const struct device *dev) in fpga_get_status()
65 * @param dev FPGA device structure.
70 static inline int fpga_reset(const struct device *dev) in fpga_reset()
81 * @param dev FPGA device structure.
88 static inline int fpga_load(const struct device *dev, uint32_t *image_ptr, in fpga_load()
100 * @param dev FPGA device structure.
105 static inline int fpga_on(const struct device *dev) in fpga_on()
120 * @param dev FPGA device structure.
124 static inline const char *fpga_get_info(const struct device *dev) in fpga_get_info()
135 * @param dev FPGA device structure.
140 static inline int fpga_off(const struct device *dev) in fpga_off()