mtd: nand: brcmnand: Check flash #WP pin status before nand erase/program
[linux/fpc-iii.git] / drivers / staging / greybus / greybus.h
blob12526887ae2e72030ea2654a13ab69f96fc9cfe4
1 /*
2 * Greybus driver and device API
4 * Copyright 2014-2015 Google Inc.
5 * Copyright 2014-2015 Linaro Ltd.
7 * Released under the GPLv2 only.
8 */
10 #ifndef __LINUX_GREYBUS_H
11 #define __LINUX_GREYBUS_H
13 #ifdef __KERNEL__
15 #include <linux/kernel.h>
16 #include <linux/types.h>
17 #include <linux/list.h>
18 #include <linux/slab.h>
19 #include <linux/device.h>
20 #include <linux/module.h>
21 #include <linux/pm_runtime.h>
22 #include <linux/idr.h>
24 #include "greybus_id.h"
25 #include "greybus_manifest.h"
26 #include "greybus_protocols.h"
27 #include "manifest.h"
28 #include "hd.h"
29 #include "svc.h"
30 #include "control.h"
31 #include "module.h"
32 #include "interface.h"
33 #include "bundle.h"
34 #include "connection.h"
35 #include "operation.h"
36 #include "timesync.h"
38 /* Matches up with the Greybus Protocol specification document */
39 #define GREYBUS_VERSION_MAJOR 0x00
40 #define GREYBUS_VERSION_MINOR 0x01
42 #define GREYBUS_ID_MATCH_DEVICE \
43 (GREYBUS_ID_MATCH_VENDOR | GREYBUS_ID_MATCH_PRODUCT)
45 #define GREYBUS_DEVICE(v, p) \
46 .match_flags = GREYBUS_ID_MATCH_DEVICE, \
47 .vendor = (v), \
48 .product = (p),
50 #define GREYBUS_DEVICE_CLASS(c) \
51 .match_flags = GREYBUS_ID_MATCH_CLASS, \
52 .class = (c),
54 /* Maximum number of CPorts */
55 #define CPORT_ID_MAX 4095 /* UniPro max id is 4095 */
56 #define CPORT_ID_BAD U16_MAX
58 struct greybus_driver {
59 const char *name;
61 int (*probe)(struct gb_bundle *bundle,
62 const struct greybus_bundle_id *id);
63 void (*disconnect)(struct gb_bundle *bundle);
65 const struct greybus_bundle_id *id_table;
67 struct device_driver driver;
69 #define to_greybus_driver(d) container_of(d, struct greybus_driver, driver)
71 static inline void greybus_set_drvdata(struct gb_bundle *bundle, void *data)
73 dev_set_drvdata(&bundle->dev, data);
76 static inline void *greybus_get_drvdata(struct gb_bundle *bundle)
78 return dev_get_drvdata(&bundle->dev);
81 /* Don't call these directly, use the module_greybus_driver() macro instead */
82 int greybus_register_driver(struct greybus_driver *driver,
83 struct module *module, const char *mod_name);
84 void greybus_deregister_driver(struct greybus_driver *driver);
86 /* define to get proper THIS_MODULE and KBUILD_MODNAME values */
87 #define greybus_register(driver) \
88 greybus_register_driver(driver, THIS_MODULE, KBUILD_MODNAME)
89 #define greybus_deregister(driver) \
90 greybus_deregister_driver(driver)
92 /**
93 * module_greybus_driver() - Helper macro for registering a Greybus driver
94 * @__greybus_driver: greybus_driver structure
96 * Helper macro for Greybus drivers to set up proper module init / exit
97 * functions. Replaces module_init() and module_exit() and keeps people from
98 * printing pointless things to the kernel log when their driver is loaded.
100 #define module_greybus_driver(__greybus_driver) \
101 module_driver(__greybus_driver, greybus_register, greybus_deregister)
103 int greybus_disabled(void);
105 void gb_debugfs_init(void);
106 void gb_debugfs_cleanup(void);
107 struct dentry *gb_debugfs_get(void);
109 extern struct bus_type greybus_bus_type;
111 extern struct device_type greybus_hd_type;
112 extern struct device_type greybus_module_type;
113 extern struct device_type greybus_interface_type;
114 extern struct device_type greybus_control_type;
115 extern struct device_type greybus_bundle_type;
116 extern struct device_type greybus_svc_type;
118 static inline int is_gb_host_device(const struct device *dev)
120 return dev->type == &greybus_hd_type;
123 static inline int is_gb_module(const struct device *dev)
125 return dev->type == &greybus_module_type;
128 static inline int is_gb_interface(const struct device *dev)
130 return dev->type == &greybus_interface_type;
133 static inline int is_gb_control(const struct device *dev)
135 return dev->type == &greybus_control_type;
138 static inline int is_gb_bundle(const struct device *dev)
140 return dev->type == &greybus_bundle_type;
143 static inline int is_gb_svc(const struct device *dev)
145 return dev->type == &greybus_svc_type;
148 static inline bool cport_id_valid(struct gb_host_device *hd, u16 cport_id)
150 return cport_id != CPORT_ID_BAD && cport_id < hd->num_cports;
153 #endif /* __KERNEL__ */
154 #endif /* __LINUX_GREYBUS_H */