blob: 2d7b7d03e522b1c5a13b429011e6cb00523cdfcc [file] [log] [blame]
Stephen Warren8961b522016-05-16 17:41:37 -06001/*
2 * Copyright (c) 2016, NVIDIA CORPORATION.
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7#ifndef __SANDBOX_MBOX_H
8#define __SANDBOX_MBOX_H
9
10#include <common.h>
11
12#define SANDBOX_MBOX_PING_XOR 0x12345678
13
14struct udevice;
15
16int sandbox_mbox_test_get(struct udevice *dev);
17int sandbox_mbox_test_send(struct udevice *dev, uint32_t msg);
18int sandbox_mbox_test_recv(struct udevice *dev, uint32_t *msg);
19int sandbox_mbox_test_free(struct udevice *dev);
20
21#endif