blob: 7b09ff6b8bf68a981f7eca71a35e4561fa907c47 [file] [log] [blame]
Andrew Jeffery2b73f172018-03-01 13:06:29 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
3
4#include "config.h"
5
Andrew Jeffery2b73f172018-03-01 13:06:29 +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 Jeffery2b73f172018-03-01 13:06:29 +103012
Andrew Jeffery261f61a2019-03-14 09:57:28 +103013#include <cassert>
14#include <cstring>
15
Andrew Jefferyf4bc3352019-03-18 12:09:48 +103016#include "vpnor/backend.h"
Andrew Jeffery261f61a2019-03-14 09:57:28 +103017
Andrew Jeffery2b73f172018-03-01 13:06:29 +103018const std::string toc[] = {
19 "partition01=ONE,00001000,00002000,80,ECC,READONLY",
20 "partition02=TWO,00002000,00003000,80,ECC,READONLY",
21};
22
23uint8_t data[8] = {0xaa, 0x55, 0xaa, 0x66, 0x77, 0x88, 0x99, 0xab};
24
25static constexpr auto BLOCK_SIZE = 0x1000;
26static constexpr auto MEM_SIZE = BLOCK_SIZE * 2;
27static constexpr auto ERASE_SIZE = BLOCK_SIZE;
28static constexpr auto N_WINDOWS = 1;
29static constexpr auto WINDOW_SIZE = MEM_SIZE;
30static constexpr auto PNOR_SIZE = MEM_SIZE * 2;
31
32static const uint8_t get_info[] = {0x02, 0x00, 0x02, 0x00, 0x00, 0x00,
33 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
34 0x00, 0x00, 0x00, 0x00};
35
36static const uint8_t create_read_window[] = {0x04, 0x01, 0x01, 0x00, 0x02, 0x00,
37 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
38 0x00, 0x00, 0x00, 0x00};
39
40static const uint8_t response[] = {
41 0x04, 0x01, 0xfe, 0xff, 0x01, 0x00, 0x01,
42 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01,
43};
44
45int main()
46{
47 namespace test = openpower::virtual_pnor::test;
48 namespace fs = std::experimental::filesystem;
49
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070050 struct mbox_context* ctx;
Andrew Jeffery2b73f172018-03-01 13:06:29 +103051
52 system_set_reserved_size(MEM_SIZE);
53 system_set_mtd_sizes(PNOR_SIZE, ERASE_SIZE);
54
Evan Lojewskif1e547c2019-03-14 14:34:33 +103055 ctx = mbox_create_frontend_context(N_WINDOWS, WINDOW_SIZE);
56 test::VpnorRoot root(&ctx->backend, toc, BLOCK_SIZE);
Andrew Jeffery2b73f172018-03-01 13:06:29 +103057
58 int rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info));
59 assert(rc == 1);
60
61 // Request a read window that would cover both partitions. With the current
62 // behaviour, we expect to receive a reply describing a window that covers
63 // the first partition but is limited in size to exclude the second
64 // partition.
65 rc = mbox_command_dispatch(ctx, create_read_window,
66 sizeof(create_read_window));
67 assert(rc == 1);
68
69 rc = mbox_cmp(ctx, response, sizeof(response));
70 assert(rc == 0);
71
72 return 0;
73}