blob: 8b936ed48d934714edc3204eb2e5756c756330a3 [file] [log] [blame]
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -07001/*
2 * Greybus AP <-> SVC message structure format.
3 *
Alex Elder908a85d2014-09-24 05:16:16 -05004 * See "Greybus Application Protocol" document (version 0.draft) for
5 * 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 *
9 * Released under the GPLv2 only.
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 {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070051 __u8 source_module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070052 __u8 source_cport_id;
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070053 __u8 destination_module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070054 __u8 destination_cport_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070055};
56
57struct svc_function_unipro_link_up {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070058 __u8 module_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
79struct svc_function_hotplug {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070080 __u8 hotplug_event; /* enum svc_function_hotplug_event */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070081 __u8 module_id;
Greg Kroah-Hartman798ea882014-09-21 18:16:41 -070082 __u8 data[0];
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070083};
84
85enum svc_function_ddb_type {
86 SVC_DDB_GET = 0x00,
87 SVC_DDB_RESPONSE = 0x01,
88};
89
90struct svc_function_ddb_get {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070091 __u8 module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070092 __u8 message_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -070093};
94
95struct svc_function_ddb_response {
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -070096 __u8 module_id;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070097 __u8 message_id;
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -070098 __le16 descriptor_length;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -070099 __u8 ddb[0];
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700100};
101
102struct svc_function_ddb {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700103 __u8 ddb_type; /* enum svc_function_ddb_type */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700104 union {
105 struct svc_function_ddb_get ddb_get;
106 struct svc_function_ddb_response ddb_response;
107 };
108};
109
110enum svc_function_power_type {
111 SVC_POWER_BATTERY_STATUS = 0x00,
112 SVC_POWER_BATTERY_STATUS_REQUEST = 0x01,
113};
114
115enum svc_function_battery_status {
116 SVC_BATTERY_UNKNOWN = 0x00,
117 SVC_BATTERY_CHARGING = 0x01,
118 SVC_BATTERY_DISCHARGING = 0x02,
119 SVC_BATTERY_NOT_CHARGING = 0x03,
120 SVC_BATTERY_FULL = 0x04,
121};
122
123struct svc_function_power_battery_status {
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700124 __le16 charge_full;
125 __le16 charge_now;
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700126 __u8 status; /* enum svc_function_battery_status */
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700127};
128
129struct svc_function_power_battery_status_request {
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700130};
131
132struct svc_function_power {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700133 __u8 power_type; /* enum svc_function_power_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700134 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700135 union {
136 struct svc_function_power_battery_status status;
137 struct svc_function_power_battery_status_request request;
138 };
139};
140
141enum svc_function_epm_command_type {
142 SVC_EPM_ENABLE = 0x00,
143 SVC_EPM_DISABLE = 0x01,
144};
145
146struct svc_function_epm {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700147 __u8 epm_command_type; /* enum svc_function_epm_command_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700148 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700149};
150
151enum svc_function_suspend_command_type {
152 SVC_SUSPEND_FIXME_1 = 0x00, // FIXME
153 SVC_SUSPEND_FIXME_2 = 0x01,
154};
155
156struct svc_function_suspend {
Greg Kroah-Hartman3772f162014-09-01 09:51:33 -0700157 __u8 suspend_command_type; /* enum function_suspend_command_type */
Greg Kroah-Hartmand5877802014-09-01 10:59:08 -0700158 __u8 module_id;
Greg Kroah-Hartmanb9b2a462014-08-31 17:43:38 -0700159};
160
161struct svc_msg {
162 struct svc_msg_header header;
163 union {
164 struct svc_function_handshake handshake;
165 struct svc_function_unipro_management management;
166 struct svc_function_hotplug hotplug;
167 struct svc_function_ddb ddb;
168 struct svc_function_power power;
169 struct svc_function_epm epm;
170 struct svc_function_suspend suspend;
171 };
172};
173
Greg Kroah-Hartman48123e02014-09-02 10:51:56 -0700174#pragma pack(pop)
175
Greg Kroah-Hartman80ebe8a2014-08-31 18:08:52 -0700176#endif /* __SVC_MSG_H */