blob: 7608b0ee0246373210a6ad671b471d07e6d8ab6c [file] [log] [blame]
Andrew Jeffery1e531af2018-08-07 13:32:57 +09301/* SPDX-License-Identifier: Apache-2.0 */
2/* Copyright (C) 2018 IBM Corp. */
3
4#ifndef PROTOCOL_H
5#define PROTOCOL_H
6
7struct mbox_context;
8
9/*
10 * The GET_MBOX_INFO command is special as it can change the interface based on
11 * negotiation. As such we need to accommodate all response types
12 */
13struct protocol_get_info {
14 struct {
15 uint8_t api_version;
16 } req;
17 struct {
18 uint8_t api_version;
19 union {
20 struct {
21 uint16_t read_window_size;
22 uint16_t write_window_size;
23 } v1;
24 struct {
25 uint8_t block_size_shift;
26 uint16_t timeout;
27 } v2;
28 };
29 } resp;
30};
31
Andrew Jeffery91a87452018-08-07 14:54:14 +093032struct protocol_get_flash_info {
33 struct {
34 union {
35 struct {
36 uint32_t flash_size;
37 uint32_t erase_size;
38 } v1;
39 struct {
40 uint16_t flash_size;
41 uint16_t erase_size;
42 } v2;
43 };
44 } resp;
45};
46
Andrew Jeffery22fa5002018-08-07 15:22:50 +093047struct protocol_create_window {
48 struct {
49 uint16_t offset;
50 uint16_t size;
51 uint8_t id;
52 } req;
53 struct {
54 uint16_t lpc_address;
55 uint16_t size;
56 uint16_t offset;
57 } resp;
58};
59
Andrew Jeffery1e531af2018-08-07 13:32:57 +093060struct protocol_ops {
Andrew Jefferyab666a52018-08-07 14:28:09 +093061 int (*reset)(struct mbox_context *context);
Andrew Jeffery1e531af2018-08-07 13:32:57 +093062 int (*get_info)(struct mbox_context *context,
63 struct protocol_get_info *io);
Andrew Jeffery91a87452018-08-07 14:54:14 +093064 int (*get_flash_info)(struct mbox_context *context,
65 struct protocol_get_flash_info *io);
Andrew Jeffery22fa5002018-08-07 15:22:50 +093066 int (*create_read_window)(struct mbox_context *context,
67 struct protocol_create_window *io);
Andrew Jeffery1e531af2018-08-07 13:32:57 +093068};
69
70int protocol_init(struct mbox_context *context);
71void protocol_free(struct mbox_context *context);
72
73int protocol_negotiate_version(struct mbox_context *context, uint8_t requested);
74
75/* Protocol v1 */
Andrew Jefferyab666a52018-08-07 14:28:09 +093076int protocol_v1_reset(struct mbox_context *context);
Andrew Jeffery1e531af2018-08-07 13:32:57 +093077int protocol_v1_get_info(struct mbox_context *context,
78 struct protocol_get_info *io);
Andrew Jeffery91a87452018-08-07 14:54:14 +093079int protocol_v1_get_flash_info(struct mbox_context *context,
80 struct protocol_get_flash_info *io);
Andrew Jeffery22fa5002018-08-07 15:22:50 +093081int protocol_v1_create_read_window(struct mbox_context *context,
82 struct protocol_create_window *io);
Andrew Jeffery1e531af2018-08-07 13:32:57 +093083
84/* Protocol v2 */
85int protocol_v2_get_info(struct mbox_context *context,
86 struct protocol_get_info *io);
Andrew Jeffery91a87452018-08-07 14:54:14 +093087int protocol_v2_get_flash_info(struct mbox_context *context,
88 struct protocol_get_flash_info *io);
Andrew Jeffery22fa5002018-08-07 15:22:50 +093089int protocol_v2_create_read_window(struct mbox_context *context,
90 struct protocol_create_window *io);
Andrew Jeffery1e531af2018-08-07 13:32:57 +093091
92#endif /* PROTOCOL_H */