mailbox: Introduce framework for mailbox
[firefly-linux-kernel-4.4.55.git] / drivers / mailbox / mailbox.c
1 /*
2  * Mailbox: Common code for Mailbox controllers and users
3  *
4  * Copyright (C) 2013-2014 Linaro Ltd.
5  * Author: Jassi Brar <jassisinghbrar@gmail.com>
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License version 2 as
9  * published by the Free Software Foundation.
10  */
11
12 #include <linux/interrupt.h>
13 #include <linux/spinlock.h>
14 #include <linux/mutex.h>
15 #include <linux/delay.h>
16 #include <linux/slab.h>
17 #include <linux/err.h>
18 #include <linux/module.h>
19 #include <linux/device.h>
20 #include <linux/bitops.h>
21 #include <linux/mailbox_client.h>
22 #include <linux/mailbox_controller.h>
23
24 #define TXDONE_BY_IRQ   BIT(0) /* controller has remote RTR irq */
25 #define TXDONE_BY_POLL  BIT(1) /* controller can read status of last TX */
26 #define TXDONE_BY_ACK   BIT(2) /* S/W ACK recevied by Client ticks the TX */
27
28 static LIST_HEAD(mbox_cons);
29 static DEFINE_MUTEX(con_mutex);
30
31 static int add_to_rbuf(struct mbox_chan *chan, void *mssg)
32 {
33         int idx;
34         unsigned long flags;
35
36         spin_lock_irqsave(&chan->lock, flags);
37
38         /* See if there is any space left */
39         if (chan->msg_count == MBOX_TX_QUEUE_LEN) {
40                 spin_unlock_irqrestore(&chan->lock, flags);
41                 return -ENOBUFS;
42         }
43
44         idx = chan->msg_free;
45         chan->msg_data[idx] = mssg;
46         chan->msg_count++;
47
48         if (idx == MBOX_TX_QUEUE_LEN - 1)
49                 chan->msg_free = 0;
50         else
51                 chan->msg_free++;
52
53         spin_unlock_irqrestore(&chan->lock, flags);
54
55         return idx;
56 }
57
58 static void msg_submit(struct mbox_chan *chan)
59 {
60         unsigned count, idx;
61         unsigned long flags;
62         void *data;
63         int err;
64
65         spin_lock_irqsave(&chan->lock, flags);
66
67         if (!chan->msg_count || chan->active_req)
68                 goto exit;
69
70         count = chan->msg_count;
71         idx = chan->msg_free;
72         if (idx >= count)
73                 idx -= count;
74         else
75                 idx += MBOX_TX_QUEUE_LEN - count;
76
77         data = chan->msg_data[idx];
78
79         /* Try to submit a message to the MBOX controller */
80         err = chan->mbox->ops->send_data(chan, data);
81         if (!err) {
82                 chan->active_req = data;
83                 chan->msg_count--;
84         }
85 exit:
86         spin_unlock_irqrestore(&chan->lock, flags);
87 }
88
89 static void tx_tick(struct mbox_chan *chan, int r)
90 {
91         unsigned long flags;
92         void *mssg;
93
94         spin_lock_irqsave(&chan->lock, flags);
95         mssg = chan->active_req;
96         chan->active_req = NULL;
97         spin_unlock_irqrestore(&chan->lock, flags);
98
99         /* Submit next message */
100         msg_submit(chan);
101
102         /* Notify the client */
103         if (mssg && chan->cl->tx_done)
104                 chan->cl->tx_done(chan->cl, mssg, r);
105
106         if (chan->cl->tx_block)
107                 complete(&chan->tx_complete);
108 }
109
110 static void poll_txdone(unsigned long data)
111 {
112         struct mbox_controller *mbox = (struct mbox_controller *)data;
113         bool txdone, resched = false;
114         int i;
115
116         for (i = 0; i < mbox->num_chans; i++) {
117                 struct mbox_chan *chan = &mbox->chans[i];
118
119                 if (chan->active_req && chan->cl) {
120                         resched = true;
121                         txdone = chan->mbox->ops->last_tx_done(chan);
122                         if (txdone)
123                                 tx_tick(chan, 0);
124                 }
125         }
126
127         if (resched)
128                 mod_timer(&mbox->poll, jiffies +
129                                 msecs_to_jiffies(mbox->period));
130 }
131
132 /**
133  * mbox_chan_received_data - A way for controller driver to push data
134  *                              received from remote to the upper layer.
135  * @chan: Pointer to the mailbox channel on which RX happened.
136  * @mssg: Client specific message typecasted as void *
137  *
138  * After startup and before shutdown any data received on the chan
139  * is passed on to the API via atomic mbox_chan_received_data().
140  * The controller should ACK the RX only after this call returns.
141  */
142 void mbox_chan_received_data(struct mbox_chan *chan, void *mssg)
143 {
144         /* No buffering the received data */
145         if (chan->cl->rx_callback)
146                 chan->cl->rx_callback(chan->cl, mssg);
147 }
148 EXPORT_SYMBOL_GPL(mbox_chan_received_data);
149
150 /**
151  * mbox_chan_txdone - A way for controller driver to notify the
152  *                      framework that the last TX has completed.
153  * @chan: Pointer to the mailbox chan on which TX happened.
154  * @r: Status of last TX - OK or ERROR
155  *
156  * The controller that has IRQ for TX ACK calls this atomic API
157  * to tick the TX state machine. It works only if txdone_irq
158  * is set by the controller.
159  */
160 void mbox_chan_txdone(struct mbox_chan *chan, int r)
161 {
162         if (unlikely(!(chan->txdone_method & TXDONE_BY_IRQ))) {
163                 dev_err(chan->mbox->dev,
164                        "Controller can't run the TX ticker\n");
165                 return;
166         }
167
168         tx_tick(chan, r);
169 }
170 EXPORT_SYMBOL_GPL(mbox_chan_txdone);
171
172 /**
173  * mbox_client_txdone - The way for a client to run the TX state machine.
174  * @chan: Mailbox channel assigned to this client.
175  * @r: Success status of last transmission.
176  *
177  * The client/protocol had received some 'ACK' packet and it notifies
178  * the API that the last packet was sent successfully. This only works
179  * if the controller can't sense TX-Done.
180  */
181 void mbox_client_txdone(struct mbox_chan *chan, int r)
182 {
183         if (unlikely(!(chan->txdone_method & TXDONE_BY_ACK))) {
184                 dev_err(chan->mbox->dev, "Client can't run the TX ticker\n");
185                 return;
186         }
187
188         tx_tick(chan, r);
189 }
190 EXPORT_SYMBOL_GPL(mbox_client_txdone);
191
192 /**
193  * mbox_client_peek_data - A way for client driver to pull data
194  *                      received from remote by the controller.
195  * @chan: Mailbox channel assigned to this client.
196  *
197  * A poke to controller driver for any received data.
198  * The data is actually passed onto client via the
199  * mbox_chan_received_data()
200  * The call can be made from atomic context, so the controller's
201  * implementation of peek_data() must not sleep.
202  *
203  * Return: True, if controller has, and is going to push after this,
204  *          some data.
205  *         False, if controller doesn't have any data to be read.
206  */
207 bool mbox_client_peek_data(struct mbox_chan *chan)
208 {
209         if (chan->mbox->ops->peek_data)
210                 return chan->mbox->ops->peek_data(chan);
211
212         return false;
213 }
214 EXPORT_SYMBOL_GPL(mbox_client_peek_data);
215
216 /**
217  * mbox_send_message -  For client to submit a message to be
218  *                              sent to the remote.
219  * @chan: Mailbox channel assigned to this client.
220  * @mssg: Client specific message typecasted.
221  *
222  * For client to submit data to the controller destined for a remote
223  * processor. If the client had set 'tx_block', the call will return
224  * either when the remote receives the data or when 'tx_tout' millisecs
225  * run out.
226  *  In non-blocking mode, the requests are buffered by the API and a
227  * non-negative token is returned for each queued request. If the request
228  * is not queued, a negative token is returned. Upon failure or successful
229  * TX, the API calls 'tx_done' from atomic context, from which the client
230  * could submit yet another request.
231  * The pointer to message should be preserved until it is sent
232  * over the chan, i.e, tx_done() is made.
233  * This function could be called from atomic context as it simply
234  * queues the data and returns a token against the request.
235  *
236  * Return: Non-negative integer for successful submission (non-blocking mode)
237  *      or transmission over chan (blocking mode).
238  *      Negative value denotes failure.
239  */
240 int mbox_send_message(struct mbox_chan *chan, void *mssg)
241 {
242         int t;
243
244         if (!chan || !chan->cl)
245                 return -EINVAL;
246
247         t = add_to_rbuf(chan, mssg);
248         if (t < 0) {
249                 dev_err(chan->mbox->dev, "Try increasing MBOX_TX_QUEUE_LEN\n");
250                 return t;
251         }
252
253         msg_submit(chan);
254
255         INIT_COMPLETION(chan->tx_complete);
256
257         if (chan->txdone_method == TXDONE_BY_POLL)
258                 poll_txdone((unsigned long)chan->mbox);
259
260         if (chan->cl->tx_block && chan->active_req) {
261                 unsigned long wait;
262                 int ret;
263
264                 if (!chan->cl->tx_tout) /* wait forever */
265                         wait = msecs_to_jiffies(3600000);
266                 else
267                         wait = msecs_to_jiffies(chan->cl->tx_tout);
268
269                 ret = wait_for_completion_timeout(&chan->tx_complete, wait);
270                 if (ret == 0) {
271                         t = -EIO;
272                         tx_tick(chan, -EIO);
273                 }
274         }
275
276         return t;
277 }
278 EXPORT_SYMBOL_GPL(mbox_send_message);
279
280 /**
281  * mbox_request_channel - Request a mailbox channel.
282  * @cl: Identity of the client requesting the channel.
283  * @index: Index of mailbox specifier in 'mboxes' property.
284  *
285  * The Client specifies its requirements and capabilities while asking for
286  * a mailbox channel. It can't be called from atomic context.
287  * The channel is exclusively allocated and can't be used by another
288  * client before the owner calls mbox_free_channel.
289  * After assignment, any packet received on this channel will be
290  * handed over to the client via the 'rx_callback'.
291  * The framework holds reference to the client, so the mbox_client
292  * structure shouldn't be modified until the mbox_free_channel returns.
293  *
294  * Return: Pointer to the channel assigned to the client if successful.
295  *              ERR_PTR for request failure.
296  */
297 struct mbox_chan *mbox_request_channel(struct mbox_client *cl, int index)
298 {
299         struct device *dev = cl->dev;
300         struct mbox_controller *mbox;
301         struct of_phandle_args spec;
302         struct mbox_chan *chan;
303         unsigned long flags;
304         int ret;
305
306         if (!dev || !dev->of_node) {
307                 pr_debug("%s: No owner device node\n", __func__);
308                 return ERR_PTR(-ENODEV);
309         }
310
311         mutex_lock(&con_mutex);
312
313         if (of_parse_phandle_with_args(dev->of_node, "mboxes",
314                                        "#mbox-cells", index, &spec)) {
315                 dev_dbg(dev, "%s: can't parse \"mboxes\" property\n", __func__);
316                 mutex_unlock(&con_mutex);
317                 return ERR_PTR(-ENODEV);
318         }
319
320         chan = NULL;
321         list_for_each_entry(mbox, &mbox_cons, node)
322                 if (mbox->dev->of_node == spec.np) {
323                         chan = mbox->of_xlate(mbox, &spec);
324                         break;
325                 }
326
327         of_node_put(spec.np);
328
329         if (!chan || chan->cl || !try_module_get(mbox->dev->driver->owner)) {
330                 dev_dbg(dev, "%s: mailbox not free\n", __func__);
331                 mutex_unlock(&con_mutex);
332                 return ERR_PTR(-EBUSY);
333         }
334
335         spin_lock_irqsave(&chan->lock, flags);
336         chan->msg_free = 0;
337         chan->msg_count = 0;
338         chan->active_req = NULL;
339         chan->cl = cl;
340         init_completion(&chan->tx_complete);
341
342         if (chan->txdone_method == TXDONE_BY_POLL && cl->knows_txdone)
343                 chan->txdone_method |= TXDONE_BY_ACK;
344
345         spin_unlock_irqrestore(&chan->lock, flags);
346
347         ret = chan->mbox->ops->startup(chan);
348         if (ret) {
349                 dev_err(dev, "Unable to startup the chan (%d)\n", ret);
350                 mbox_free_channel(chan);
351                 chan = ERR_PTR(ret);
352         }
353
354         mutex_unlock(&con_mutex);
355         return chan;
356 }
357 EXPORT_SYMBOL_GPL(mbox_request_channel);
358
359 /**
360  * mbox_free_channel - The client relinquishes control of a mailbox
361  *                      channel by this call.
362  * @chan: The mailbox channel to be freed.
363  */
364 void mbox_free_channel(struct mbox_chan *chan)
365 {
366         unsigned long flags;
367
368         if (!chan || !chan->cl)
369                 return;
370
371         chan->mbox->ops->shutdown(chan);
372
373         /* The queued TX requests are simply aborted, no callbacks are made */
374         spin_lock_irqsave(&chan->lock, flags);
375         chan->cl = NULL;
376         chan->active_req = NULL;
377         if (chan->txdone_method == (TXDONE_BY_POLL | TXDONE_BY_ACK))
378                 chan->txdone_method = TXDONE_BY_POLL;
379
380         module_put(chan->mbox->dev->driver->owner);
381         spin_unlock_irqrestore(&chan->lock, flags);
382 }
383 EXPORT_SYMBOL_GPL(mbox_free_channel);
384
385 static struct mbox_chan *
386 of_mbox_index_xlate(struct mbox_controller *mbox,
387                     const struct of_phandle_args *sp)
388 {
389         int ind = sp->args[0];
390
391         if (ind >= mbox->num_chans)
392                 return NULL;
393
394         return &mbox->chans[ind];
395 }
396
397 /**
398  * mbox_controller_register - Register the mailbox controller
399  * @mbox:       Pointer to the mailbox controller.
400  *
401  * The controller driver registers its communication channels
402  */
403 int mbox_controller_register(struct mbox_controller *mbox)
404 {
405         int i, txdone;
406
407         /* Sanity check */
408         if (!mbox || !mbox->dev || !mbox->ops || !mbox->num_chans)
409                 return -EINVAL;
410
411         if (mbox->txdone_irq)
412                 txdone = TXDONE_BY_IRQ;
413         else if (mbox->txdone_poll)
414                 txdone = TXDONE_BY_POLL;
415         else /* It has to be ACK then */
416                 txdone = TXDONE_BY_ACK;
417
418         if (txdone == TXDONE_BY_POLL) {
419                 mbox->poll.function = &poll_txdone;
420                 mbox->poll.data = (unsigned long)mbox;
421                 init_timer(&mbox->poll);
422         }
423
424         for (i = 0; i < mbox->num_chans; i++) {
425                 struct mbox_chan *chan = &mbox->chans[i];
426
427                 chan->cl = NULL;
428                 chan->mbox = mbox;
429                 chan->txdone_method = txdone;
430                 spin_lock_init(&chan->lock);
431         }
432
433         if (!mbox->of_xlate)
434                 mbox->of_xlate = of_mbox_index_xlate;
435
436         mutex_lock(&con_mutex);
437         list_add_tail(&mbox->node, &mbox_cons);
438         mutex_unlock(&con_mutex);
439
440         return 0;
441 }
442 EXPORT_SYMBOL_GPL(mbox_controller_register);
443
444 /**
445  * mbox_controller_unregister - Unregister the mailbox controller
446  * @mbox:       Pointer to the mailbox controller.
447  */
448 void mbox_controller_unregister(struct mbox_controller *mbox)
449 {
450         int i;
451
452         if (!mbox)
453                 return;
454
455         mutex_lock(&con_mutex);
456
457         list_del(&mbox->node);
458
459         for (i = 0; i < mbox->num_chans; i++)
460                 mbox_free_channel(&mbox->chans[i]);
461
462         if (mbox->txdone_poll)
463                 del_timer_sync(&mbox->poll);
464
465         mutex_unlock(&con_mutex);
466 }
467 EXPORT_SYMBOL_GPL(mbox_controller_unregister);