]> Git Repo - J-u-boot.git/blob - drivers/mailbox/mailbox-uclass.c
Merge tag 'dm-pull-6feb20' of https://gitlab.denx.de/u-boot/custodians/u-boot-dm
[J-u-boot.git] / drivers / mailbox / mailbox-uclass.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  * Copyright (c) 2016, NVIDIA CORPORATION.
4  */
5
6 #include <common.h>
7 #include <dm.h>
8 #include <mailbox.h>
9 #include <mailbox-uclass.h>
10 #include <malloc.h>
11 #include <time.h>
12
13 static inline struct mbox_ops *mbox_dev_ops(struct udevice *dev)
14 {
15         return (struct mbox_ops *)dev->driver->ops;
16 }
17
18 static int mbox_of_xlate_default(struct mbox_chan *chan,
19                                  struct ofnode_phandle_args *args)
20 {
21         debug("%s(chan=%p)\n", __func__, chan);
22
23         if (args->args_count != 1) {
24                 debug("Invaild args_count: %d\n", args->args_count);
25                 return -EINVAL;
26         }
27
28         chan->id = args->args[0];
29
30         return 0;
31 }
32
33 int mbox_get_by_index(struct udevice *dev, int index, struct mbox_chan *chan)
34 {
35         struct ofnode_phandle_args args;
36         int ret;
37         struct udevice *dev_mbox;
38         struct mbox_ops *ops;
39
40         debug("%s(dev=%p, index=%d, chan=%p)\n", __func__, dev, index, chan);
41
42         ret = dev_read_phandle_with_args(dev, "mboxes", "#mbox-cells", 0, index,
43                                          &args);
44         if (ret) {
45                 debug("%s: dev_read_phandle_with_args failed: %d\n", __func__,
46                       ret);
47                 return ret;
48         }
49
50         ret = uclass_get_device_by_ofnode(UCLASS_MAILBOX, args.node, &dev_mbox);
51         if (ret) {
52                 debug("%s: uclass_get_device_by_of_offset failed: %d\n",
53                       __func__, ret);
54
55                 /* Test with parent node */
56                 ret = uclass_get_device_by_ofnode(UCLASS_MAILBOX,
57                                                   ofnode_get_parent(args.node),
58                                                   &dev_mbox);
59                 if (ret) {
60                         debug("%s: mbox node from parent failed: %d\n",
61                               __func__, ret);
62                         return ret;
63                 };
64         }
65         ops = mbox_dev_ops(dev_mbox);
66
67         chan->dev = dev_mbox;
68         if (ops->of_xlate)
69                 ret = ops->of_xlate(chan, &args);
70         else
71                 ret = mbox_of_xlate_default(chan, &args);
72         if (ret) {
73                 debug("of_xlate() failed: %d\n", ret);
74                 return ret;
75         }
76
77         if (ops->request)
78                 ret = ops->request(chan);
79         if (ret) {
80                 debug("ops->request() failed: %d\n", ret);
81                 return ret;
82         }
83
84         return 0;
85 }
86
87 int mbox_get_by_name(struct udevice *dev, const char *name,
88                      struct mbox_chan *chan)
89 {
90         int index;
91
92         debug("%s(dev=%p, name=%s, chan=%p)\n", __func__, dev, name, chan);
93
94         index = dev_read_stringlist_search(dev, "mbox-names", name);
95         if (index < 0) {
96                 debug("fdt_stringlist_search() failed: %d\n", index);
97                 return index;
98         }
99
100         return mbox_get_by_index(dev, index, chan);
101 }
102
103 int mbox_free(struct mbox_chan *chan)
104 {
105         struct mbox_ops *ops = mbox_dev_ops(chan->dev);
106
107         debug("%s(chan=%p)\n", __func__, chan);
108
109         if (ops->rfree)
110                 return ops->rfree(chan);
111
112         return 0;
113 }
114
115 int mbox_send(struct mbox_chan *chan, const void *data)
116 {
117         struct mbox_ops *ops = mbox_dev_ops(chan->dev);
118
119         debug("%s(chan=%p, data=%p)\n", __func__, chan, data);
120
121         return ops->send(chan, data);
122 }
123
124 int mbox_recv(struct mbox_chan *chan, void *data, ulong timeout_us)
125 {
126         struct mbox_ops *ops = mbox_dev_ops(chan->dev);
127         ulong start_time;
128         int ret;
129
130         debug("%s(chan=%p, data=%p, timeout_us=%ld)\n", __func__, chan, data,
131               timeout_us);
132
133         start_time = timer_get_us();
134         /*
135          * Account for partial us ticks, but if timeout_us is 0, ensure we
136          * still don't wait at all.
137          */
138         if (timeout_us)
139                 timeout_us++;
140
141         for (;;) {
142                 ret = ops->recv(chan, data);
143                 if (ret != -ENODATA)
144                         return ret;
145                 if ((timer_get_us() - start_time) >= timeout_us)
146                         return -ETIMEDOUT;
147         }
148 }
149
150 UCLASS_DRIVER(mailbox) = {
151         .id             = UCLASS_MAILBOX,
152         .name           = "mailbox",
153 };
This page took 0.035078 seconds and 4 git commands to generate.