blob: 57d0a91ff60b1922b28c1e512a1d3da3b24b7357 [file] [log] [blame]
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -07001/*
2 * Greybus AP <-> SVC message structure format.
3 *
Alex Eldercb705e02014-09-24 05:16:17 -05004 * See "Greybus Application Protocol" document (version 0.1) for
Alex Elder908a85d2014-09-24 05:16:16 -05005 * details on these values and structures.
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -07006 *
7 * Copyright 2014 Google Inc.
Alex Elder908a85d2014-09-24 05:16:16 -05008 *
Greg Kroah-Hartman62e120f2014-10-06 20:37:18 -07009 * Released under the GPLv2 and BSD license.
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070010 */
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -070011
12#ifndef __SVC_MSG_H
13#define __SVC_MSG_H
14
Greg Kroah-Hartman48123e02014-09-02 10:51:56 -070015#pragma pack(push, 1)
16
Matt Porter710ecb02014-09-18 15:25:41 -040017enum svc_function_id {
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070018 SVC_FUNCTION_HANDSHAKE = 0x00,
19 SVC_FUNCTION_UNIPRO_NETWORK_MANAGEMENT = 0x01,
20 SVC_FUNCTION_HOTPLUG = 0x02,
21 SVC_FUNCTION_DDB = 0x03,
22 SVC_FUNCTION_POWER = 0x04,
23 SVC_FUNCTION_EPM = 0x05,
24 SVC_FUNCTION_SUSPEND = 0x06,
25};
26
Matt Porter710ecb02014-09-18 15:25:41 -040027enum svc_msg_type {
28 SVC_MSG_DATA = 0x00,
29 SVC_MSG_ERROR = 0xff,
30};
31
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070032struct svc_msg_header {
Matt Porter710ecb02014-09-18 15:25:41 -040033 __u8 function_id; /* enum svc_function_id */
34 __u8 message_type;
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -070035 __le16 payload_length;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070036};
37
38enum svc_function_handshake_type {
39 SVC_HANDSHAKE_SVC_HELLO = 0x00,
40 SVC_HANDSHAKE_AP_HELLO = 0x01,
41 SVC_HANDSHAKE_MODULE_HELLO = 0x02,
42};
43
44struct svc_function_handshake {
Matt Portere94e1712014-09-18 15:25:42 -040045 __u8 version_major;
46 __u8 version_minor;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070047 __u8 handshake_type; /* enum svc_function_handshake_type */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070048};
49
50struct svc_function_unipro_set_route {
Alex Elder9c852d22014-09-30 19:25:22 -050051 __u8 source_device_id;
Alex Elder1cfc6672014-09-30 19:25:21 -050052 __u8 source_cport_id; /* bottom 8 bits */
Alex Elder9c852d22014-09-30 19:25:22 -050053 __u8 destination_device_id;
Alex Elder1cfc6672014-09-30 19:25:21 -050054 __u8 destination_cport_id; /* bottom 8 bits */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070055};
56
57struct svc_function_unipro_link_up {
Alex Elder9c852d22014-09-30 19:25:22 -050058 __u8 device_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070059};
60
61enum svc_function_management_event {
62 SVC_MANAGEMENT_SET_ROUTE = 0x00,
63 SVC_MANAGEMENT_LINK_UP = 0x01,
64};
65
66struct svc_function_unipro_management {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070067 __u8 management_packet_type; /* enum svc_function_management_event */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070068 union {
69 struct svc_function_unipro_set_route set_route;
70 struct svc_function_unipro_link_up link_up;
71 };
72};
73
74enum svc_function_hotplug_event {
75 SVC_HOTPLUG_EVENT = 0x00,
76 SVC_HOTUNPLUG_EVENT = 0x01,
77};
78
Alex Elder9c852d22014-09-30 19:25:22 -050079/* XXX
80 * Does a hotplug come from module insertion, or from detection
81 * of each interface block (UniPro device) in a module? Assume
82 * the former for now.
83 */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070084struct svc_function_hotplug {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070085 __u8 hotplug_event; /* enum svc_function_hotplug_event */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070086 __u8 module_id;
Greg Kroah-Hartman798ea882014-09-21 18:16:41 -070087 __u8 data[0];
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070088};
89
90enum svc_function_ddb_type {
91 SVC_DDB_GET = 0x00,
92 SVC_DDB_RESPONSE = 0x01,
93};
94
Alex Elder9c852d22014-09-30 19:25:22 -050095/* XXX
96 * Will only the first interface block in a module be responsible
97 * for this? If a module has two interface blocks, will both supply
98 * the same information, or will it be partitioned? For now assume
99 * it's a per-module thing.
100 */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700101struct svc_function_ddb_get {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700102 __u8 module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700103 __u8 message_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700104};
105
106struct svc_function_ddb_response {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700107 __u8 module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700108 __u8 message_id;
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700109 __le16 descriptor_length;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700110 __u8 ddb[0];
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700111};
112
113struct svc_function_ddb {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700114 __u8 ddb_type; /* enum svc_function_ddb_type */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700115 union {
116 struct svc_function_ddb_get ddb_get;
117 struct svc_function_ddb_response ddb_response;
118 };
119};
120
121enum svc_function_power_type {
122 SVC_POWER_BATTERY_STATUS = 0x00,
123 SVC_POWER_BATTERY_STATUS_REQUEST = 0x01,
124};
125
126enum svc_function_battery_status {
127 SVC_BATTERY_UNKNOWN = 0x00,
128 SVC_BATTERY_CHARGING = 0x01,
129 SVC_BATTERY_DISCHARGING = 0x02,
130 SVC_BATTERY_NOT_CHARGING = 0x03,
131 SVC_BATTERY_FULL = 0x04,
132};
133
134struct svc_function_power_battery_status {
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700135 __le16 charge_full;
136 __le16 charge_now;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700137 __u8 status; /* enum svc_function_battery_status */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700138};
139
140struct svc_function_power_battery_status_request {
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700141};
142
Alex Elder9c852d22014-09-30 19:25:22 -0500143/* XXX
144 * Each interface block carries power, so it's possible these things
145 * are associated with each UniPro device and not just the module.
146 * For now it's safe to assume it's per-module.
147 */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700148struct svc_function_power {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700149 __u8 power_type; /* enum svc_function_power_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700150 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700151 union {
152 struct svc_function_power_battery_status status;
153 struct svc_function_power_battery_status_request request;
154 };
155};
156
157enum svc_function_epm_command_type {
158 SVC_EPM_ENABLE = 0x00,
159 SVC_EPM_DISABLE = 0x01,
160};
161
Alex Elder9c852d22014-09-30 19:25:22 -0500162/* EPM's are associated with the module */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700163struct svc_function_epm {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700164 __u8 epm_command_type; /* enum svc_function_epm_command_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700165 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700166};
167
168enum svc_function_suspend_command_type {
169 SVC_SUSPEND_FIXME_1 = 0x00, // FIXME
170 SVC_SUSPEND_FIXME_2 = 0x01,
171};
172
Alex Elder9c852d22014-09-30 19:25:22 -0500173/* We'll want independent control for multi-interface block modules */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700174struct svc_function_suspend {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700175 __u8 suspend_command_type; /* enum function_suspend_command_type */
Alex Elder9c852d22014-09-30 19:25:22 -0500176 __u8 device_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700177};
178
179struct svc_msg {
180 struct svc_msg_header header;
181 union {
182 struct svc_function_handshake handshake;
183 struct svc_function_unipro_management management;
184 struct svc_function_hotplug hotplug;
185 struct svc_function_ddb ddb;
186 struct svc_function_power power;
187 struct svc_function_epm epm;
188 struct svc_function_suspend suspend;
189 };
190};
191
Greg Kroah-Hartman48123e02014-09-02 10:51:56 -0700192#pragma pack(pop)
193
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700194#endif /* __SVC_MSG_H */