1 // SPDX-License-Identifier: Apache-2.0 2 // Copyright (C) 2018 IBM Corp. 3 4 #include "config.h" 5 6 extern "C" { 7 #include "test/mbox.h" 8 #include "test/system.h" 9 } 10 11 #include "vpnor/test/tmpd.hpp" 12 13 #include <cassert> 14 15 #include "vpnor/mboxd_pnor_partition_table.h" 16 17 const std::string toc[] = { 18 "partition01=HBB,00001000,00002000,80,ECC,READONLY", 19 }; 20 21 static const auto BLOCK_SIZE = 4096; 22 static const auto MEM_SIZE = BLOCK_SIZE * 2; 23 static const auto ERASE_SIZE = BLOCK_SIZE; 24 static const auto N_WINDOWS = 1; 25 static const auto WINDOW_SIZE = BLOCK_SIZE; 26 27 static const uint8_t get_info[] = {0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 28 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 29 0x00, 0x00, 0x00, 0x00}; 30 31 // offset 0x100 and size 6 32 static const uint8_t create_write_window[] = { 33 0x06, 0x01, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 34 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00}; 35 36 static const uint8_t response[] = {0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 37 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07}; 38 39 namespace test = openpower::virtual_pnor::test; 40 41 int main() 42 { 43 struct mbox_context* ctx; 44 45 system_set_reserved_size(MEM_SIZE); 46 system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE); 47 48 ctx = mbox_create_test_context(N_WINDOWS, WINDOW_SIZE); 49 50 test::VpnorRoot root(ctx, toc, BLOCK_SIZE); 51 52 init_vpnor_from_paths(ctx); 53 54 int rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info)); 55 assert(rc == 1); 56 57 rc = mbox_command_dispatch(ctx, create_write_window, 58 sizeof(create_write_window)); 59 assert(rc == 7); 60 61 rc = mbox_cmp(ctx, response, sizeof(response)); 62 assert(rc == 0); 63 64 return rc; 65 } 66