blob: 499e9a67f6ac31e0590d9871a5e3d17deb34569e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0 */
Stephen Warren62f2c902016-05-16 17:41:37 -06002/*
3 * Copyright (c) 2016, NVIDIA CORPORATION.
Stephen Warren62f2c902016-05-16 17:41:37 -06004 */
5
6#ifndef __SANDBOX_MBOX_H
7#define __SANDBOX_MBOX_H
8
Stephen Warren62f2c902016-05-16 17:41:37 -06009#define SANDBOX_MBOX_PING_XOR 0x12345678
10
11struct udevice;
12
13int sandbox_mbox_test_get(struct udevice *dev);
14int sandbox_mbox_test_send(struct udevice *dev, uint32_t msg);
15int sandbox_mbox_test_recv(struct udevice *dev, uint32_t *msg);
16int sandbox_mbox_test_free(struct udevice *dev);
17
18#endif