hc
2024-01-05 071106ecf68c401173c58808b1cf5f68cc50d390
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/*
 * Copyright (c) 2016, NVIDIA CORPORATION.
 *
 * SPDX-License-Identifier: GPL-2.0
 */
 
#include <common.h>
#include <dm.h>
#include <mailbox.h>
#include <asm/io.h>
 
struct sandbox_mbox_test {
   struct mbox_chan chan;
};
 
int sandbox_mbox_test_get(struct udevice *dev)
{
   struct sandbox_mbox_test *sbmt = dev_get_priv(dev);
 
   return mbox_get_by_name(dev, "test", &sbmt->chan);
}
 
int sandbox_mbox_test_send(struct udevice *dev, uint32_t msg)
{
   struct sandbox_mbox_test *sbmt = dev_get_priv(dev);
 
   return mbox_send(&sbmt->chan, &msg);
}
 
int sandbox_mbox_test_recv(struct udevice *dev, uint32_t *msg)
{
   struct sandbox_mbox_test *sbmt = dev_get_priv(dev);
 
   return mbox_recv(&sbmt->chan, msg, 100);
}
 
int sandbox_mbox_test_free(struct udevice *dev)
{
   struct sandbox_mbox_test *sbmt = dev_get_priv(dev);
 
   return mbox_free(&sbmt->chan);
}
 
static const struct udevice_id sandbox_mbox_test_ids[] = {
   { .compatible = "sandbox,mbox-test" },
   { }
};
 
U_BOOT_DRIVER(sandbox_mbox_test) = {
   .name = "sandbox_mbox_test",
   .id = UCLASS_MISC,
   .of_match = sandbox_mbox_test_ids,
   .priv_auto_alloc_size = sizeof(struct sandbox_mbox_test),
};