blob: 9083ee2fffeab293978c657a17fbf61991a4c743 [file] [log] [blame]
Andrew Jeffery730e3b02018-02-23 18:09:22 +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 Jeffery730e3b02018-02-23 18:09:22 +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 Jeffery730e3b02018-02-23 18:09:22 +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 Jeffery730e3b02018-02-23 18:09:22 +103018const std::string toc[] = {
19 "partition01=HBB,00002000,00003000,80,ECC,READONLY",
20};
21
22static constexpr auto BLOCK_SIZE = 4096;
23static constexpr auto MEM_SIZE = BLOCK_SIZE * 2;
24static constexpr auto ERASE_SIZE = BLOCK_SIZE;
25static constexpr auto N_WINDOWS = 1;
26static constexpr auto WINDOW_SIZE = BLOCK_SIZE;
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/* Request access below the specified partition */
33static const uint8_t create_read_window[] = {0x04, 0x01, 0x01, 0x00, 0x01, 0x00,
34 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
35 0x00, 0x00, 0x00, 0x00};
36
37int main()
38{
39 namespace test = openpower::virtual_pnor::test;
40
William A. Kennington IIId5f1d402018-10-11 13:55:04 -070041 struct mbox_context* ctx;
Andrew Jeffery730e3b02018-02-23 18:09:22 +103042 int rc;
43
44 system_set_reserved_size(MEM_SIZE);
45 system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE);
46
Evan Lojewskif1e547c2019-03-14 14:34:33 +103047 ctx = mbox_create_frontend_context(N_WINDOWS, WINDOW_SIZE);
48 test::VpnorRoot root(&ctx->backend, toc, BLOCK_SIZE);
Andrew Jeffery730e3b02018-02-23 18:09:22 +103049
50 rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info));
51 assert(rc == 1);
52
53 rc = mbox_command_dispatch(ctx, create_read_window,
54 sizeof(create_read_window));
Evan Lojewskif1e547c2019-03-14 14:34:33 +103055
Andrew Jeffery730e3b02018-02-23 18:09:22 +103056 return !(rc == 1);
57}