blob: 6c7f6c40087bb45bdbed76dc27d3d1d26ba01f7e [file] [log] [blame]
Jassi Brar2b6d83e2014-06-12 22:31:19 +05301/*
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
Ashwin Chaugule86c22f82014-11-12 19:59:38 -050024#include "mailbox.h"
Jassi Brar2b6d83e2014-06-12 22:31:19 +053025
26static LIST_HEAD(mbox_cons);
27static DEFINE_MUTEX(con_mutex);
28
29static int add_to_rbuf(struct mbox_chan *chan, void *mssg)
30{
31 int idx;
32 unsigned long flags;
33
34 spin_lock_irqsave(&chan->lock, flags);
35
36 /* See if there is any space left */
37 if (chan->msg_count == MBOX_TX_QUEUE_LEN) {
38 spin_unlock_irqrestore(&chan->lock, flags);
39 return -ENOBUFS;
40 }
41
42 idx = chan->msg_free;
43 chan->msg_data[idx] = mssg;
44 chan->msg_count++;
45
46 if (idx == MBOX_TX_QUEUE_LEN - 1)
47 chan->msg_free = 0;
48 else
49 chan->msg_free++;
50
51 spin_unlock_irqrestore(&chan->lock, flags);
52
53 return idx;
54}
55
56static void msg_submit(struct mbox_chan *chan)
57{
58 unsigned count, idx;
59 unsigned long flags;
60 void *data;
Andrew Bresticker52a49302014-10-30 13:01:07 -070061 int err = -EBUSY;
Jassi Brar2b6d83e2014-06-12 22:31:19 +053062
63 spin_lock_irqsave(&chan->lock, flags);
64
65 if (!chan->msg_count || chan->active_req)
66 goto exit;
67
68 count = chan->msg_count;
69 idx = chan->msg_free;
70 if (idx >= count)
71 idx -= count;
72 else
73 idx += MBOX_TX_QUEUE_LEN - count;
74
75 data = chan->msg_data[idx];
76
Sudeep Holla97b0c7b2014-11-11 18:33:01 +000077 if (chan->cl->tx_prepare)
78 chan->cl->tx_prepare(chan->cl, data);
Jassi Brar2b6d83e2014-06-12 22:31:19 +053079 /* 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 }
85exit:
86 spin_unlock_irqrestore(&chan->lock, flags);
Andrew Bresticker52a49302014-10-30 13:01:07 -070087
Jassi Brar01340df2014-12-12 15:22:49 +053088 if (!err && (chan->txdone_method & TXDONE_BY_POLL))
Sudeep Holla0cc67942015-07-31 11:48:05 +010089 /* kick start the timer immediately to avoid delays */
90 hrtimer_start(&chan->mbox->poll_hrt, ktime_set(0, 0),
91 HRTIMER_MODE_REL);
Jassi Brar2b6d83e2014-06-12 22:31:19 +053092}
93
94static void tx_tick(struct mbox_chan *chan, int r)
95{
96 unsigned long flags;
97 void *mssg;
98
99 spin_lock_irqsave(&chan->lock, flags);
100 mssg = chan->active_req;
101 chan->active_req = NULL;
102 spin_unlock_irqrestore(&chan->lock, flags);
103
104 /* Submit next message */
105 msg_submit(chan);
106
107 /* Notify the client */
108 if (mssg && chan->cl->tx_done)
109 chan->cl->tx_done(chan->cl, mssg, r);
110
111 if (chan->cl->tx_block)
112 complete(&chan->tx_complete);
113}
114
Sudeep Holla0cc67942015-07-31 11:48:05 +0100115static enum hrtimer_restart txdone_hrtimer(struct hrtimer *hrtimer)
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530116{
Sudeep Holla0cc67942015-07-31 11:48:05 +0100117 struct mbox_controller *mbox =
118 container_of(hrtimer, struct mbox_controller, poll_hrt);
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530119 bool txdone, resched = false;
120 int i;
121
122 for (i = 0; i < mbox->num_chans; i++) {
123 struct mbox_chan *chan = &mbox->chans[i];
124
125 if (chan->active_req && chan->cl) {
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530126 txdone = chan->mbox->ops->last_tx_done(chan);
127 if (txdone)
128 tx_tick(chan, 0);
Andrew Bresticker52a49302014-10-30 13:01:07 -0700129 else
130 resched = true;
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530131 }
132 }
133
Sudeep Holla0cc67942015-07-31 11:48:05 +0100134 if (resched) {
135 hrtimer_forward_now(hrtimer, ms_to_ktime(mbox->txpoll_period));
136 return HRTIMER_RESTART;
137 }
138 return HRTIMER_NORESTART;
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530139}
140
141/**
142 * mbox_chan_received_data - A way for controller driver to push data
143 * received from remote to the upper layer.
144 * @chan: Pointer to the mailbox channel on which RX happened.
145 * @mssg: Client specific message typecasted as void *
146 *
147 * After startup and before shutdown any data received on the chan
148 * is passed on to the API via atomic mbox_chan_received_data().
149 * The controller should ACK the RX only after this call returns.
150 */
151void mbox_chan_received_data(struct mbox_chan *chan, void *mssg)
152{
153 /* No buffering the received data */
154 if (chan->cl->rx_callback)
155 chan->cl->rx_callback(chan->cl, mssg);
156}
157EXPORT_SYMBOL_GPL(mbox_chan_received_data);
158
159/**
160 * mbox_chan_txdone - A way for controller driver to notify the
161 * framework that the last TX has completed.
162 * @chan: Pointer to the mailbox chan on which TX happened.
163 * @r: Status of last TX - OK or ERROR
164 *
165 * The controller that has IRQ for TX ACK calls this atomic API
166 * to tick the TX state machine. It works only if txdone_irq
167 * is set by the controller.
168 */
169void mbox_chan_txdone(struct mbox_chan *chan, int r)
170{
171 if (unlikely(!(chan->txdone_method & TXDONE_BY_IRQ))) {
172 dev_err(chan->mbox->dev,
173 "Controller can't run the TX ticker\n");
174 return;
175 }
176
177 tx_tick(chan, r);
178}
179EXPORT_SYMBOL_GPL(mbox_chan_txdone);
180
181/**
182 * mbox_client_txdone - The way for a client to run the TX state machine.
183 * @chan: Mailbox channel assigned to this client.
184 * @r: Success status of last transmission.
185 *
186 * The client/protocol had received some 'ACK' packet and it notifies
187 * the API that the last packet was sent successfully. This only works
188 * if the controller can't sense TX-Done.
189 */
190void mbox_client_txdone(struct mbox_chan *chan, int r)
191{
192 if (unlikely(!(chan->txdone_method & TXDONE_BY_ACK))) {
193 dev_err(chan->mbox->dev, "Client can't run the TX ticker\n");
194 return;
195 }
196
197 tx_tick(chan, r);
198}
199EXPORT_SYMBOL_GPL(mbox_client_txdone);
200
201/**
202 * mbox_client_peek_data - A way for client driver to pull data
203 * received from remote by the controller.
204 * @chan: Mailbox channel assigned to this client.
205 *
206 * A poke to controller driver for any received data.
207 * The data is actually passed onto client via the
208 * mbox_chan_received_data()
209 * The call can be made from atomic context, so the controller's
210 * implementation of peek_data() must not sleep.
211 *
212 * Return: True, if controller has, and is going to push after this,
213 * some data.
214 * False, if controller doesn't have any data to be read.
215 */
216bool mbox_client_peek_data(struct mbox_chan *chan)
217{
218 if (chan->mbox->ops->peek_data)
219 return chan->mbox->ops->peek_data(chan);
220
221 return false;
222}
223EXPORT_SYMBOL_GPL(mbox_client_peek_data);
224
225/**
226 * mbox_send_message - For client to submit a message to be
227 * sent to the remote.
228 * @chan: Mailbox channel assigned to this client.
229 * @mssg: Client specific message typecasted.
230 *
231 * For client to submit data to the controller destined for a remote
232 * processor. If the client had set 'tx_block', the call will return
233 * either when the remote receives the data or when 'tx_tout' millisecs
234 * run out.
235 * In non-blocking mode, the requests are buffered by the API and a
236 * non-negative token is returned for each queued request. If the request
237 * is not queued, a negative token is returned. Upon failure or successful
238 * TX, the API calls 'tx_done' from atomic context, from which the client
239 * could submit yet another request.
240 * The pointer to message should be preserved until it is sent
241 * over the chan, i.e, tx_done() is made.
242 * This function could be called from atomic context as it simply
243 * queues the data and returns a token against the request.
244 *
245 * Return: Non-negative integer for successful submission (non-blocking mode)
246 * or transmission over chan (blocking mode).
247 * Negative value denotes failure.
248 */
249int mbox_send_message(struct mbox_chan *chan, void *mssg)
250{
251 int t;
252
253 if (!chan || !chan->cl)
254 return -EINVAL;
255
256 t = add_to_rbuf(chan, mssg);
257 if (t < 0) {
258 dev_err(chan->mbox->dev, "Try increasing MBOX_TX_QUEUE_LEN\n");
259 return t;
260 }
261
262 msg_submit(chan);
263
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530264 if (chan->cl->tx_block && chan->active_req) {
265 unsigned long wait;
266 int ret;
267
268 if (!chan->cl->tx_tout) /* wait forever */
269 wait = msecs_to_jiffies(3600000);
270 else
271 wait = msecs_to_jiffies(chan->cl->tx_tout);
272
273 ret = wait_for_completion_timeout(&chan->tx_complete, wait);
274 if (ret == 0) {
275 t = -EIO;
276 tx_tick(chan, -EIO);
277 }
278 }
279
280 return t;
281}
282EXPORT_SYMBOL_GPL(mbox_send_message);
283
Lina Iyerc525b8d2016-08-22 13:19:26 -0600284/**
285 * mbox_send_controller_data- For client to submit a message to be
286 * sent only to the controller.
287 * @chan: Mailbox channel assigned to this client.
288 * @mssg: Client specific message typecasted.
289 *
290 * For client to submit data to the controller. There is no ACK expected
291 * from the controller. This request is not buffered in the mailbox framework.
292 *
293 * Return: Non-negative integer for successful submission (non-blocking mode)
294 * or transmission over chan (blocking mode).
295 * Negative value denotes failure.
296 */
297int mbox_send_controller_data(struct mbox_chan *chan, void *mssg)
298{
299 unsigned long flags;
300 int err;
301
302 if (!chan || !chan->cl)
303 return -EINVAL;
304
305 spin_lock_irqsave(&chan->lock, flags);
306 err = chan->mbox->ops->send_controller_data(chan, mssg);
307 spin_unlock_irqrestore(&chan->lock, flags);
308
309 return err;
310}
311EXPORT_SYMBOL(mbox_send_controller_data);
Lina Iyerfc86e1a2016-05-26 11:14:41 -0600312
313bool mbox_controller_is_idle(struct mbox_chan *chan)
314{
315 if (!chan || !chan->cl || !chan->mbox->is_idle)
316 return false;
317
318 return chan->mbox->is_idle(chan->mbox);
319}
320EXPORT_SYMBOL(mbox_controller_is_idle);
321
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530322/**
323 * mbox_request_channel - Request a mailbox channel.
324 * @cl: Identity of the client requesting the channel.
325 * @index: Index of mailbox specifier in 'mboxes' property.
326 *
327 * The Client specifies its requirements and capabilities while asking for
328 * a mailbox channel. It can't be called from atomic context.
329 * The channel is exclusively allocated and can't be used by another
330 * client before the owner calls mbox_free_channel.
331 * After assignment, any packet received on this channel will be
332 * handed over to the client via the 'rx_callback'.
333 * The framework holds reference to the client, so the mbox_client
334 * structure shouldn't be modified until the mbox_free_channel returns.
335 *
336 * Return: Pointer to the channel assigned to the client if successful.
337 * ERR_PTR for request failure.
338 */
339struct mbox_chan *mbox_request_channel(struct mbox_client *cl, int index)
340{
341 struct device *dev = cl->dev;
342 struct mbox_controller *mbox;
343 struct of_phandle_args spec;
344 struct mbox_chan *chan;
345 unsigned long flags;
346 int ret;
347
348 if (!dev || !dev->of_node) {
349 pr_debug("%s: No owner device node\n", __func__);
350 return ERR_PTR(-ENODEV);
351 }
352
353 mutex_lock(&con_mutex);
354
355 if (of_parse_phandle_with_args(dev->of_node, "mboxes",
356 "#mbox-cells", index, &spec)) {
357 dev_dbg(dev, "%s: can't parse \"mboxes\" property\n", __func__);
358 mutex_unlock(&con_mutex);
359 return ERR_PTR(-ENODEV);
360 }
361
Benson Leung2d805fc2015-05-04 10:36:36 -0700362 chan = ERR_PTR(-EPROBE_DEFER);
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530363 list_for_each_entry(mbox, &mbox_cons, node)
364 if (mbox->dev->of_node == spec.np) {
365 chan = mbox->of_xlate(mbox, &spec);
366 break;
367 }
368
369 of_node_put(spec.np);
370
Benson Leung2d805fc2015-05-04 10:36:36 -0700371 if (IS_ERR(chan)) {
372 mutex_unlock(&con_mutex);
373 return chan;
374 }
375
376 if (chan->cl || !try_module_get(mbox->dev->driver->owner)) {
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530377 dev_dbg(dev, "%s: mailbox not free\n", __func__);
378 mutex_unlock(&con_mutex);
379 return ERR_PTR(-EBUSY);
380 }
381
382 spin_lock_irqsave(&chan->lock, flags);
383 chan->msg_free = 0;
384 chan->msg_count = 0;
385 chan->active_req = NULL;
386 chan->cl = cl;
387 init_completion(&chan->tx_complete);
388
389 if (chan->txdone_method == TXDONE_BY_POLL && cl->knows_txdone)
390 chan->txdone_method |= TXDONE_BY_ACK;
391
392 spin_unlock_irqrestore(&chan->lock, flags);
393
394 ret = chan->mbox->ops->startup(chan);
395 if (ret) {
396 dev_err(dev, "Unable to startup the chan (%d)\n", ret);
397 mbox_free_channel(chan);
398 chan = ERR_PTR(ret);
399 }
400
401 mutex_unlock(&con_mutex);
402 return chan;
403}
404EXPORT_SYMBOL_GPL(mbox_request_channel);
405
Lee Jonesdfabde22015-05-11 17:08:50 +0100406struct mbox_chan *mbox_request_channel_byname(struct mbox_client *cl,
407 const char *name)
408{
409 struct device_node *np = cl->dev->of_node;
410 struct property *prop;
411 const char *mbox_name;
412 int index = 0;
413
414 if (!np) {
415 dev_err(cl->dev, "%s() currently only supports DT\n", __func__);
Lee Jones0c44d782016-03-23 14:43:43 +0000416 return ERR_PTR(-EINVAL);
Lee Jonesdfabde22015-05-11 17:08:50 +0100417 }
418
419 if (!of_get_property(np, "mbox-names", NULL)) {
420 dev_err(cl->dev,
421 "%s() requires an \"mbox-names\" property\n", __func__);
Lee Jones0c44d782016-03-23 14:43:43 +0000422 return ERR_PTR(-EINVAL);
Lee Jonesdfabde22015-05-11 17:08:50 +0100423 }
424
425 of_property_for_each_string(np, "mbox-names", prop, mbox_name) {
426 if (!strncmp(name, mbox_name, strlen(name)))
427 break;
428 index++;
429 }
430
431 return mbox_request_channel(cl, index);
432}
433EXPORT_SYMBOL_GPL(mbox_request_channel_byname);
434
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530435/**
436 * mbox_free_channel - The client relinquishes control of a mailbox
437 * channel by this call.
438 * @chan: The mailbox channel to be freed.
439 */
440void mbox_free_channel(struct mbox_chan *chan)
441{
442 unsigned long flags;
443
444 if (!chan || !chan->cl)
445 return;
446
447 chan->mbox->ops->shutdown(chan);
448
449 /* The queued TX requests are simply aborted, no callbacks are made */
450 spin_lock_irqsave(&chan->lock, flags);
451 chan->cl = NULL;
452 chan->active_req = NULL;
453 if (chan->txdone_method == (TXDONE_BY_POLL | TXDONE_BY_ACK))
454 chan->txdone_method = TXDONE_BY_POLL;
455
456 module_put(chan->mbox->dev->driver->owner);
457 spin_unlock_irqrestore(&chan->lock, flags);
458}
459EXPORT_SYMBOL_GPL(mbox_free_channel);
460
461static struct mbox_chan *
462of_mbox_index_xlate(struct mbox_controller *mbox,
463 const struct of_phandle_args *sp)
464{
465 int ind = sp->args[0];
466
467 if (ind >= mbox->num_chans)
Benson Leung2d805fc2015-05-04 10:36:36 -0700468 return ERR_PTR(-EINVAL);
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530469
470 return &mbox->chans[ind];
471}
472
473/**
474 * mbox_controller_register - Register the mailbox controller
475 * @mbox: Pointer to the mailbox controller.
476 *
477 * The controller driver registers its communication channels
478 */
479int mbox_controller_register(struct mbox_controller *mbox)
480{
481 int i, txdone;
482
483 /* Sanity check */
484 if (!mbox || !mbox->dev || !mbox->ops || !mbox->num_chans)
485 return -EINVAL;
486
487 if (mbox->txdone_irq)
488 txdone = TXDONE_BY_IRQ;
489 else if (mbox->txdone_poll)
490 txdone = TXDONE_BY_POLL;
491 else /* It has to be ACK then */
492 txdone = TXDONE_BY_ACK;
493
494 if (txdone == TXDONE_BY_POLL) {
Sudeep Holla0cc67942015-07-31 11:48:05 +0100495 hrtimer_init(&mbox->poll_hrt, CLOCK_MONOTONIC,
496 HRTIMER_MODE_REL);
497 mbox->poll_hrt.function = txdone_hrtimer;
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530498 }
499
500 for (i = 0; i < mbox->num_chans; i++) {
501 struct mbox_chan *chan = &mbox->chans[i];
502
503 chan->cl = NULL;
504 chan->mbox = mbox;
505 chan->txdone_method = txdone;
506 spin_lock_init(&chan->lock);
507 }
508
509 if (!mbox->of_xlate)
510 mbox->of_xlate = of_mbox_index_xlate;
511
512 mutex_lock(&con_mutex);
513 list_add_tail(&mbox->node, &mbox_cons);
514 mutex_unlock(&con_mutex);
515
516 return 0;
517}
518EXPORT_SYMBOL_GPL(mbox_controller_register);
519
520/**
521 * mbox_controller_unregister - Unregister the mailbox controller
522 * @mbox: Pointer to the mailbox controller.
523 */
524void mbox_controller_unregister(struct mbox_controller *mbox)
525{
526 int i;
527
528 if (!mbox)
529 return;
530
531 mutex_lock(&con_mutex);
532
533 list_del(&mbox->node);
534
535 for (i = 0; i < mbox->num_chans; i++)
536 mbox_free_channel(&mbox->chans[i]);
537
538 if (mbox->txdone_poll)
Sudeep Holla0cc67942015-07-31 11:48:05 +0100539 hrtimer_cancel(&mbox->poll_hrt);
Jassi Brar2b6d83e2014-06-12 22:31:19 +0530540
541 mutex_unlock(&con_mutex);
542}
543EXPORT_SYMBOL_GPL(mbox_controller_unregister);