summaryrefslogtreecommitdiffstats
path: root/drivers/staging/greybus/greybus_protocols.h
diff options
context:
space:
mode:
authorJohan Hovold <johan@hovoldconsulting.com>2016-01-29 15:42:31 +0100
committerGreg Kroah-Hartman <gregkh@google.com>2016-02-01 17:52:20 -0800
commit8ec589b9796eebfa266d2b047ee2318541814e28 (patch)
tree6e4b821bd77f9a507bc7e1ebaabf5c5e038038f6 /drivers/staging/greybus/greybus_protocols.h
parentc760442e1cafef30de20ea5b64074d70efa6eec2 (diff)
greybus: firmware: convert to bundle driver
Convert the legacy firmware protocol driver to a bundle driver. This also fixes a potential crash should a (malicious) module have sent an early request before the private data had been initialised. Note that the firmware protocol needs to support the version request indefinitely since it has been burnt into ROM. In order to avoid having to update current module-loading scripts, keep this driver internal to greybus core at least until modalias support is added. Note that there is no MODULE_DEVICE_TABLE defined for firmware as we cannot have two greybus tables in one module on ancient 3.10 kernels and that the legacy driver is currently also internal to core. This needs be added once the driver can be built as a module. Testing Done: Tested on DB3. Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Signed-off-by: Johan Hovold <johan@hovoldconsulting.com> Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Diffstat (limited to 'drivers/staging/greybus/greybus_protocols.h')
-rw-r--r--drivers/staging/greybus/greybus_protocols.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/staging/greybus/greybus_protocols.h b/drivers/staging/greybus/greybus_protocols.h
index 3f51fb5d6e8b..89db93282cac 100644
--- a/drivers/staging/greybus/greybus_protocols.h
+++ b/drivers/staging/greybus/greybus_protocols.h
@@ -203,6 +203,7 @@ struct gb_control_interface_version_response {
#define GB_FIRMWARE_VERSION_MINOR 0x01
/* Greybus firmware request types */
+#define GB_FIRMWARE_TYPE_VERSION 0x01
#define GB_FIRMWARE_TYPE_FIRMWARE_SIZE 0x02
#define GB_FIRMWARE_TYPE_GET_FIRMWARE 0x03
#define GB_FIRMWARE_TYPE_READY_TO_BOOT 0x04
@@ -226,6 +227,16 @@ struct gb_control_interface_version_response {
/* Max firmware data fetch size in bytes */
#define GB_FIRMWARE_FETCH_MAX 2000
+struct gb_firmware_version_request {
+ __u8 major;
+ __u8 minor;
+} __packed;
+
+struct gb_firmware_version_response {
+ __u8 major;
+ __u8 minor;
+} __packed;
+
/* Firmware protocol firmware size request/response */
struct gb_firmware_size_request {
__u8 stage;