blob: 47597e6cd47b2b26c9ee19a942fed3089dc2f8d6 [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 {
Matt Porter6232b072014-10-21 22:43:31 -040058 __u8 module_id;
59 __u8 interface_id;
Alex Elder9c852d22014-09-30 19:25:22 -050060 __u8 device_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070061};
62
Matt Porter98f4ab22014-10-21 01:52:27 -040063struct svc_function_ap_device_id {
64 __u8 device_id;
65};
66
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070067enum svc_function_management_event {
68 SVC_MANAGEMENT_SET_ROUTE = 0x00,
69 SVC_MANAGEMENT_LINK_UP = 0x01,
Matt Porter98f4ab22014-10-21 01:52:27 -040070 SVC_MANAGEMENT_AP_DEVICE_ID = 0x02,
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070071};
72
73struct svc_function_unipro_management {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070074 __u8 management_packet_type; /* enum svc_function_management_event */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070075 union {
76 struct svc_function_unipro_set_route set_route;
77 struct svc_function_unipro_link_up link_up;
Matt Porter98f4ab22014-10-21 01:52:27 -040078 struct svc_function_ap_device_id ap_device_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070079 };
80};
81
82enum svc_function_hotplug_event {
83 SVC_HOTPLUG_EVENT = 0x00,
84 SVC_HOTUNPLUG_EVENT = 0x01,
85};
86
Alex Elder9c852d22014-09-30 19:25:22 -050087/* XXX
88 * Does a hotplug come from module insertion, or from detection
89 * of each interface block (UniPro device) in a module? Assume
90 * the former for now.
91 */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070092struct svc_function_hotplug {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070093 __u8 hotplug_event; /* enum svc_function_hotplug_event */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070094 __u8 module_id;
Greg Kroah-Hartman798ea882014-09-21 18:16:41 -070095 __u8 data[0];
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070096};
97
98enum svc_function_ddb_type {
99 SVC_DDB_GET = 0x00,
100 SVC_DDB_RESPONSE = 0x01,
101};
102
Alex Elder9c852d22014-09-30 19:25:22 -0500103/* XXX
104 * Will only the first interface block in a module be responsible
105 * for this? If a module has two interface blocks, will both supply
106 * the same information, or will it be partitioned? For now assume
107 * it's a per-module thing.
108 */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700109struct svc_function_ddb_get {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700110 __u8 module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700111 __u8 message_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700112};
113
114struct svc_function_ddb_response {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700115 __u8 module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700116 __u8 message_id;
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700117 __le16 descriptor_length;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700118 __u8 ddb[0];
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700119};
120
121struct svc_function_ddb {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700122 __u8 ddb_type; /* enum svc_function_ddb_type */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700123 union {
124 struct svc_function_ddb_get ddb_get;
125 struct svc_function_ddb_response ddb_response;
126 };
127};
128
129enum svc_function_power_type {
130 SVC_POWER_BATTERY_STATUS = 0x00,
131 SVC_POWER_BATTERY_STATUS_REQUEST = 0x01,
132};
133
134enum svc_function_battery_status {
135 SVC_BATTERY_UNKNOWN = 0x00,
136 SVC_BATTERY_CHARGING = 0x01,
137 SVC_BATTERY_DISCHARGING = 0x02,
138 SVC_BATTERY_NOT_CHARGING = 0x03,
139 SVC_BATTERY_FULL = 0x04,
140};
141
142struct svc_function_power_battery_status {
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700143 __le16 charge_full;
144 __le16 charge_now;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700145 __u8 status; /* enum svc_function_battery_status */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700146};
147
148struct svc_function_power_battery_status_request {
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700149};
150
Alex Elder9c852d22014-09-30 19:25:22 -0500151/* XXX
152 * Each interface block carries power, so it's possible these things
153 * are associated with each UniPro device and not just the module.
154 * For now it's safe to assume it's per-module.
155 */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700156struct svc_function_power {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700157 __u8 power_type; /* enum svc_function_power_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700158 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700159 union {
160 struct svc_function_power_battery_status status;
161 struct svc_function_power_battery_status_request request;
162 };
163};
164
165enum svc_function_epm_command_type {
166 SVC_EPM_ENABLE = 0x00,
167 SVC_EPM_DISABLE = 0x01,
168};
169
Alex Elder9c852d22014-09-30 19:25:22 -0500170/* EPM's are associated with the module */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700171struct svc_function_epm {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700172 __u8 epm_command_type; /* enum svc_function_epm_command_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700173 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700174};
175
176enum svc_function_suspend_command_type {
177 SVC_SUSPEND_FIXME_1 = 0x00, // FIXME
178 SVC_SUSPEND_FIXME_2 = 0x01,
179};
180
Alex Elder9c852d22014-09-30 19:25:22 -0500181/* We'll want independent control for multi-interface block modules */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700182struct svc_function_suspend {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700183 __u8 suspend_command_type; /* enum function_suspend_command_type */
Alex Elder9c852d22014-09-30 19:25:22 -0500184 __u8 device_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700185};
186
187struct svc_msg {
188 struct svc_msg_header header;
189 union {
190 struct svc_function_handshake handshake;
191 struct svc_function_unipro_management management;
192 struct svc_function_hotplug hotplug;
193 struct svc_function_ddb ddb;
194 struct svc_function_power power;
195 struct svc_function_epm epm;
196 struct svc_function_suspend suspend;
197 };
198};
199
Greg Kroah-Hartman48123e02014-09-02 10:51:56 -0700200#pragma pack(pop)
201
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700202#endif /* __SVC_MSG_H */