blob: 3bf1f37c28ecfce86c4e14fc5521b6350f24ddc3 [file] [log] [blame]
Andrew Jeffery4fe996c2018-02-27 12:16:48 +10301// SPDX-License-Identifier: Apache-2.0
2// Copyright (C) 2018 IBM Corp.
Andrew Jeffery1770ce82017-04-12 14:50:32 +09303
4#include <assert.h>
5#include <sys/mman.h>
6#include <sys/types.h>
7#include <sys/stat.h>
8#include <unistd.h>
9
10#include "mbox.h"
Andrew Jeffery457a6e52018-08-08 11:21:08 +093011#include "transport_mbox.h"
Andrew Jeffery1770ce82017-04-12 14:50:32 +093012
13#include "test/mbox.h"
14#include "test/system.h"
15
16#define FLAGS 0xc3
17
Andrew Jefferyb5685b32018-08-07 14:10:54 +093018static const uint8_t get_info[] = {
19 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00,
20 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
21};
22
Andrew Jeffery1770ce82017-04-12 14:50:32 +093023static const uint8_t command[] = {
24 0x09, 0xaa, FLAGS, 0x00, 0x00, 0x00, 0x00, 0x00,
25 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, FLAGS
26};
27
Andrew Jefferyb5685b32018-08-07 14:10:54 +093028uint8_t data[3] = { 0xaa, 0x55, 0xaa };
29
Andrew Jeffery1770ce82017-04-12 14:50:32 +093030#define MEM_SIZE 3
31#define ERASE_SIZE 1
32#define N_WINDOWS 1
33#define WINDOW_SIZE 1
34
35int main(void)
36{
37 struct mbox_context *ctx;
38 struct stat details;
39 uint8_t *map;
40 int rc;
41
42 system_set_reserved_size(MEM_SIZE);
43 system_set_mtd_sizes(MEM_SIZE, ERASE_SIZE);
44
45 ctx = mbox_create_test_context(N_WINDOWS, WINDOW_SIZE);
Andrew Jefferyb5685b32018-08-07 14:10:54 +093046 rc = mbox_set_mtd_data(ctx, data, sizeof(data));
47 assert(rc == 0);
48
49 rc = mbox_command_dispatch(ctx, get_info, sizeof(get_info));
50 assert(rc == 1);
Andrew Jeffery1770ce82017-04-12 14:50:32 +093051
52 set_bmc_events(ctx, FLAGS, SET_BMC_EVENT);
53
54 rc = mbox_command_dispatch(ctx, command, sizeof(command));
55 assert(rc == 1);
56
57 rc = fstat(ctx->fds[MBOX_FD].fd, &details);
58 assert(rc == 0);
59
Andrew Jeffery1770ce82017-04-12 14:50:32 +093060 map = mmap(NULL, details.st_size, PROT_READ, MAP_PRIVATE,
61 ctx->fds[MBOX_FD].fd, 0);
62 assert(map != MAP_FAILED);
63
Andrew Jefferyb5685b32018-08-07 14:10:54 +093064 assert(details.st_size >= 16);
65 assert(map[15] == 0xc0);
Andrew Jeffery1770ce82017-04-12 14:50:32 +093066
Andrew Jefferyb5685b32018-08-07 14:10:54 +093067 return 0;
Andrew Jeffery1770ce82017-04-12 14:50:32 +093068}