| /* SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) */ |
| * Copyright(c) 2016 Google Inc. All rights reserved. |
| * Copyright(c) 2016 Linaro Ltd. All rights reserved. |
| /* APBridgeA RPC (ARPC) */ |
| ARPC_UNKNOWN_ERROR = 0xff, |
| struct arpc_request_message { |
| __le16 id; /* RPC unique id */ |
| __le16 size; /* Size in bytes of header + payload */ |
| __u8 type; /* RPC type */ |
| __u8 data[]; /* ARPC data */ |
| struct arpc_response_message { |
| __le16 id; /* RPC unique id */ |
| __u8 result; /* Result of RPC */ |
| #define ARPC_TYPE_CPORT_CONNECTED 0x01 |
| #define ARPC_TYPE_CPORT_QUIESCE 0x02 |
| #define ARPC_TYPE_CPORT_CLEAR 0x03 |
| #define ARPC_TYPE_CPORT_FLUSH 0x04 |
| #define ARPC_TYPE_CPORT_SHUTDOWN 0x05 |
| struct arpc_cport_connected_req { |
| struct arpc_cport_quiesce_req { |
| struct arpc_cport_clear_req { |
| struct arpc_cport_flush_req { |
| struct arpc_cport_shutdown_req { |