blob: ecf52800ebdaf38ba30f6ee5dbb104e5d1e4e424 [file] [log] [blame]
Andrew Jeffery8b910232018-03-29 10:41:41 +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 Jeffery8b910232018-03-29 10:41:41 +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 Jeffery8b910232018-03-29 10:41:41 +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 Jeffery8b910232018-03-29 10:41:41 +103017static constexpr auto BLOCK_SIZE = 0x1000;
18static constexpr auto ERASE_SIZE = BLOCK_SIZE;
19static constexpr auto N_WINDOWS = 1;
20static constexpr auto WINDOW_SIZE = BLOCK_SIZE;
21static constexpr auto MEM_SIZE = WINDOW_SIZE;
22static constexpr auto PNOR_SIZE = 3 * BLOCK_SIZE;
23
24const std::string toc[] = {
25 "partition01=HBB,00001000,00002000,80,ECC,READWRITE",
26};
27
28static const uint8_t get_info[] = {0x02, 0x00, 0x02, 0x00, 0x00, 0x00,
29 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
30 0x00, 0x00, 0x00, 0x00};
31
32// offset 0x100 and size 6
33static const uint8_t create_write_window[] = {
34 0x06, 0x01, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00,
35 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00};
36
37static const uint8_t response[] = {0x06, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
38 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07};
39
40namespace test = openpower::virtual_pnor::test;
41
42int main()
43{
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070044 struct mbox_context* ctx;
Andrew Jeffery8b910232018-03-29 10:41:41 +103045
46 system_set_reserved_size(MEM_SIZE);
47 system_set_mtd_sizes(PNOR_SIZE, ERASE_SIZE);
48
Evan Lojewskif1e547c2019-03-14 14:34:33 +103049 ctx = mbox_create_frontend_context(N_WINDOWS, WINDOW_SIZE);
Andrew Jeffery8b910232018-03-29 10:41:41 +103050
Evan Lojewskif1e547c2019-03-14 14:34:33 +103051 test::VpnorRoot root(&ctx->backend, toc, BLOCK_SIZE);
Andrew Jeffery8b910232018-03-29 10:41:41 +103052
53 int rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info));
54 assert(rc == MBOX_R_SUCCESS);
55
56 rc = mbox_command_dispatch(ctx, create_write_window,
57 sizeof(create_write_window));
58 assert(rc == MBOX_R_WINDOW_ERROR);
59
60 rc = mbox_cmp(ctx, response, sizeof(response));
61 assert(rc == 0);
62
63 return rc;
64}