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