blob: 879fd856c8d7900dbcba3dfc9b0500cfefe38a38 [file] [log] [blame]
Andrew Jefferye32f2c12018-03-26 17:09:12 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
3
William A. Kennington IIId5f1d402018-10-11 13:55:04 -07004#include "config.h"
5
Andrew Jefferye32f2c12018-03-26 17:09:12 +10306extern "C" {
7#include "test/mbox.h"
8#include "test/system.h"
9}
10
Andrew Jeffery30bcf842018-03-26 12:13:20 +103011#include "vpnor/test/tmpd.hpp"
Andrew Jefferye32f2c12018-03-26 17:09:12 +103012
Andrew Jeffery261f61a2019-03-14 09:57:28 +103013#include <cassert>
14
15#include "vpnor/mboxd_pnor_partition_table.h"
16
Andrew Jefferye32f2c12018-03-26 17:09:12 +103017const std::string toc[] = {
18 "partition01=HBB,00001000,00002000,80,ECC,READWRITE",
19};
20
21static const auto BLOCK_SIZE = 4096;
22static const auto MEM_SIZE = BLOCK_SIZE * 2;
23static const auto ERASE_SIZE = BLOCK_SIZE;
24static const auto N_WINDOWS = 1;
25static const auto WINDOW_SIZE = BLOCK_SIZE;
26
27static 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
32static 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
36static const uint8_t response[] = {0x06, 0x01, 0xfe, 0xff, 0x01, 0x00, 0x01,
37 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01};
38
39namespace test = openpower::virtual_pnor::test;
40
41int main()
42{
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070043 struct mbox_context* ctx;
Andrew Jefferye32f2c12018-03-26 17:09:12 +103044
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 == 1);
60
61 rc = mbox_cmp(ctx, response, sizeof(response));
62 assert(rc == 0);
63
64 return rc;
65}