Linux 4.19.133
[linux/fpc-iii.git] / drivers / staging / greybus / greybus.h
blobd03ddb7c9df080a96961e24c4ea46944dafba412
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Greybus driver and device API
5 * Copyright 2014-2015 Google Inc.
6 * Copyright 2014-2015 Linaro Ltd.
7 */
9 #ifndef __LINUX_GREYBUS_H
10 #define __LINUX_GREYBUS_H
12 #ifdef __KERNEL__
14 #include <linux/kernel.h>
15 #include <linux/types.h>
16 #include <linux/list.h>
17 #include <linux/slab.h>
18 #include <linux/device.h>
19 #include <linux/module.h>
20 #include <linux/pm_runtime.h>
21 #include <linux/idr.h>
23 #include "greybus_id.h"
24 #include "greybus_manifest.h"
25 #include "greybus_protocols.h"
26 #include "manifest.h"
27 #include "hd.h"
28 #include "svc.h"
29 #include "control.h"
30 #include "module.h"
31 #include "interface.h"
32 #include "bundle.h"
33 #include "connection.h"
34 #include "operation.h"
36 /* Matches up with the Greybus Protocol specification document */
37 #define GREYBUS_VERSION_MAJOR 0x00
38 #define GREYBUS_VERSION_MINOR 0x01
40 #define GREYBUS_ID_MATCH_DEVICE \
41 (GREYBUS_ID_MATCH_VENDOR | GREYBUS_ID_MATCH_PRODUCT)
43 #define GREYBUS_DEVICE(v, p) \
44 .match_flags = GREYBUS_ID_MATCH_DEVICE, \
45 .vendor = (v), \
46 .product = (p),
48 #define GREYBUS_DEVICE_CLASS(c) \
49 .match_flags = GREYBUS_ID_MATCH_CLASS, \
50 .class = (c),
52 /* Maximum number of CPorts */
53 #define CPORT_ID_MAX 4095 /* UniPro max id is 4095 */
54 #define CPORT_ID_BAD U16_MAX
56 struct greybus_driver {
57 const char *name;
59 int (*probe)(struct gb_bundle *bundle,
60 const struct greybus_bundle_id *id);
61 void (*disconnect)(struct gb_bundle *bundle);
63 const struct greybus_bundle_id *id_table;
65 struct device_driver driver;
67 #define to_greybus_driver(d) container_of(d, struct greybus_driver, driver)
69 static inline void greybus_set_drvdata(struct gb_bundle *bundle, void *data)
71 dev_set_drvdata(&bundle->dev, data);
74 static inline void *greybus_get_drvdata(struct gb_bundle *bundle)
76 return dev_get_drvdata(&bundle->dev);
79 /* Don't call these directly, use the module_greybus_driver() macro instead */
80 int greybus_register_driver(struct greybus_driver *driver,
81 struct module *module, const char *mod_name);
82 void greybus_deregister_driver(struct greybus_driver *driver);
84 /* define to get proper THIS_MODULE and KBUILD_MODNAME values */
85 #define greybus_register(driver) \
86 greybus_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
87 #define greybus_deregister(driver) \
88 greybus_deregister_driver(driver)
90 /**
91 * module_greybus_driver() - Helper macro for registering a Greybus driver
92 * @__greybus_driver: greybus_driver structure
94 * Helper macro for Greybus drivers to set up proper module init / exit
95 * functions. Replaces module_init() and module_exit() and keeps people from
96 * printing pointless things to the kernel log when their driver is loaded.
98 #define module_greybus_driver(__greybus_driver) \
99 module_driver(__greybus_driver, greybus_register, greybus_deregister)
101 int greybus_disabled(void);
103 void gb_debugfs_init(void);
104 void gb_debugfs_cleanup(void);
105 struct dentry *gb_debugfs_get(void);
107 extern struct bus_type greybus_bus_type;
109 extern struct device_type greybus_hd_type;
110 extern struct device_type greybus_module_type;
111 extern struct device_type greybus_interface_type;
112 extern struct device_type greybus_control_type;
113 extern struct device_type greybus_bundle_type;
114 extern struct device_type greybus_svc_type;
116 static inline int is_gb_host_device(const struct device *dev)
118 return dev->type == &greybus_hd_type;
121 static inline int is_gb_module(const struct device *dev)
123 return dev->type == &greybus_module_type;
126 static inline int is_gb_interface(const struct device *dev)
128 return dev->type == &greybus_interface_type;
131 static inline int is_gb_control(const struct device *dev)
133 return dev->type == &greybus_control_type;
136 static inline int is_gb_bundle(const struct device *dev)
138 return dev->type == &greybus_bundle_type;
141 static inline int is_gb_svc(const struct device *dev)
143 return dev->type == &greybus_svc_type;
146 static inline bool cport_id_valid(struct gb_host_device *hd, u16 cport_id)
148 return cport_id != CPORT_ID_BAD && cport_id < hd->num_cports;
151 #endif /* __KERNEL__ */
152 #endif /* __LINUX_GREYBUS_H */