blob: 1e5b46ca4e9565248bd16eaa271c3049ccc3b66c [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
Andrew Jefferyf4bc3352019-03-18 12:09:48 +103015#include "vpnor/backend.h"
Andrew Jeffery261f61a2019-03-14 09:57:28 +103016
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
Evan Lojewskif1e547c2019-03-14 14:34:33 +103048 ctx = mbox_create_frontend_context(N_WINDOWS, WINDOW_SIZE);
Andrew Jefferye32f2c12018-03-26 17:09:12 +103049
Evan Lojewskif1e547c2019-03-14 14:34:33 +103050 test::VpnorRoot root(&ctx->backend, toc, BLOCK_SIZE);
Andrew Jefferye32f2c12018-03-26 17:09:12 +103051
52 int rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info));
53 assert(rc == 1);
54
55 rc = mbox_command_dispatch(ctx, create_write_window,
56 sizeof(create_write_window));
57 assert(rc == 1);
58
59 rc = mbox_cmp(ctx, response, sizeof(response));
60 assert(rc == 0);
61
62 return rc;
63}