Andrew Jeffery | 4fe996c | 2018-02-27 12:16:48 +1030 | [diff] [blame] | 1 | // SPDX-License-Identifier: Apache-2.0 |
| 2 | // Copyright (C) 2018 IBM Corp. |
Andrew Jeffery | ea469b0 | 2017-04-13 13:56:43 +0930 | [diff] [blame] | 3 | |
| 4 | #include <assert.h> |
| 5 | |
Andrew Jeffery | 26558db | 2018-08-10 00:22:38 +0930 | [diff] [blame] | 6 | #include "mboxd.h" |
Andrew Jeffery | 457a6e5 | 2018-08-08 11:21:08 +0930 | [diff] [blame] | 7 | #include "transport_mbox.h" |
Andrew Jeffery | ea469b0 | 2017-04-13 13:56:43 +0930 | [diff] [blame] | 8 | |
| 9 | #include "test/mbox.h" |
| 10 | #include "test/system.h" |
| 11 | |
| 12 | static const uint8_t get_info[] = { |
| 13 | 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 14 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 15 | }; |
| 16 | |
| 17 | static const uint8_t create_read_window[] = { |
| 18 | 0x04, 0x01, 0x00, 0x00, 0x03, 0x00, 0x00, 0x00, |
| 19 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 20 | }; |
| 21 | |
| 22 | static const uint8_t mark_write_dirty[] = { |
| 23 | 0x07, 0x02, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, |
| 24 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 |
| 25 | }; |
| 26 | |
| 27 | static const uint8_t response[] = { |
| 28 | 0x07, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 29 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x07 |
| 30 | }; |
| 31 | |
| 32 | uint8_t data[3] = { 0xaa, 0x55, 0xaa }; |
| 33 | |
| 34 | #define MEM_SIZE sizeof(data) |
| 35 | #define ERASE_SIZE 1 |
| 36 | #define N_WINDOWS 1 |
| 37 | #define WINDOW_SIZE sizeof(data) |
| 38 | |
| 39 | int main(void) |
| 40 | { |
| 41 | struct mbox_context *ctx; |
| 42 | int rc; |
| 43 | |
| 44 | system_set_reserved_size(MEM_SIZE); |
| 45 | system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE); |
| 46 | |
| 47 | ctx = mbox_create_test_context(N_WINDOWS, WINDOW_SIZE); |
| 48 | |
| 49 | rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info)); |
| 50 | assert(rc == 1); |
| 51 | |
| 52 | rc = mbox_command_dispatch(ctx, create_read_window, |
| 53 | sizeof(create_read_window)); |
| 54 | assert(rc == 1); |
| 55 | |
| 56 | rc = mbox_command_dispatch(ctx, mark_write_dirty, |
| 57 | sizeof(mark_write_dirty)); |
| 58 | assert(rc == 7); |
| 59 | |
| 60 | rc = mbox_cmp(ctx, response, sizeof(response)); |
| 61 | assert(rc == 0); |
| 62 | |
| 63 | return rc; |
| 64 | }; |