blob: 0d3b2671ccdd3678b6f4e7d4c822814c53fc4807 [file] [log] [blame]
Andrew Jeffery5bfc9862018-03-02 09:13:31 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
3
4#include "config.h"
Andrew Jeffery5bfc9862018-03-02 09:13:31 +10305
Andrew Jeffery5bfc9862018-03-02 09:13:31 +10306extern "C" {
Andrew Jeffery261f61a2019-03-14 09:57:28 +10307#include "common.h"
Andrew Jeffery5bfc9862018-03-02 09:13:31 +10308#include "test/mbox.h"
9#include "test/system.h"
10}
11
Andrew Jeffery30bcf842018-03-26 12:13:20 +103012#include "vpnor/test/tmpd.hpp"
Andrew Jeffery5bfc9862018-03-02 09:13:31 +103013
Andrew Jeffery261f61a2019-03-14 09:57:28 +103014#include <cassert>
15
Andrew Jefferyf4bc3352019-03-18 12:09:48 +103016#include "vpnor/backend.h"
Andrew Jeffery261f61a2019-03-14 09:57:28 +103017
Andrew Jeffery5bfc9862018-03-02 09:13:31 +103018static constexpr auto BLOCK_SIZE = 0x1000;
19static constexpr auto ERASE_SIZE = BLOCK_SIZE;
20static constexpr auto PART_SIZE = BLOCK_SIZE * 4;
21static constexpr auto PATCH_SIZE = PART_SIZE / 2;
22static constexpr auto N_WINDOWS = 2;
23static constexpr auto WINDOW_SIZE = PART_SIZE * 8;
24static constexpr auto MEM_SIZE = WINDOW_SIZE * N_WINDOWS;
25static constexpr auto PNOR_SIZE = MEM_SIZE * 2;
26
27const std::string toc[] = {
28 "partition01=ONE,00001000,00005000,80,ECC,READONLY",
29};
30
31static const uint8_t get_info[] = {0x02, 0x00, 0x02, 0x00, 0x00, 0x00,
32 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
33 0x00, 0x00, 0x00, 0x00};
34
35static const uint8_t create_read_window[] = {0x04, 0x01, 0x01, 0x00, 0x04, 0x00,
36 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
37 0x00, 0x00, 0x00, 0x00};
38
39static const uint8_t response[] = {0x04, 0x01, 0xc0, 0xff, 0x04, 0x00, 0x01,
40 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01};
41
42int main()
43{
44 namespace test = openpower::virtual_pnor::test;
45
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070046 struct mbox_context* ctx;
Andrew Jeffery5bfc9862018-03-02 09:13:31 +103047
48 system_set_reserved_size(MEM_SIZE);
49 system_set_mtd_sizes(PNOR_SIZE, ERASE_SIZE);
Evan Lojewskif1e547c2019-03-14 14:34:33 +103050 ctx = mbox_create_frontend_context(N_WINDOWS, WINDOW_SIZE);
51 test::VpnorRoot root(&ctx->backend, toc, BLOCK_SIZE);
Andrew Jeffery5bfc9862018-03-02 09:13:31 +103052
53 // PATCH_SIZE is smaller than the size of the partition we defined. This
54 // test ensures that mboxd will behave correctly when we request an offset
55 // that is beyond the size of the backing file, but is in the set of valid
56 // offsets for the partition as defined by the ToC.
57 std::vector<uint8_t> patch(PATCH_SIZE, 0xff);
58 root.patch("ONE", patch.data(), patch.size());
59
Andrew Jeffery5bfc9862018-03-02 09:13:31 +103060 int rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info));
61 assert(rc == 1);
62
63 rc = mbox_command_dispatch(ctx, create_read_window,
64 sizeof(create_read_window));
65 assert(rc == 1);
66
67 rc = mbox_cmp(ctx, response, sizeof(response));
68 assert(rc == 0);
69
70 return 0;
71}