Linux Audio

Check our new training course

Loading...
v5.9
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Texas Instruments' Message Manager Driver
  4 *
  5 * Copyright (C) 2015-2017 Texas Instruments Incorporated - https://www.ti.com/
  6 *	Nishanth Menon
  7 */
  8
  9#define pr_fmt(fmt) "%s: " fmt, __func__
 10
 11#include <linux/device.h>
 12#include <linux/interrupt.h>
 13#include <linux/io.h>
 
 14#include <linux/kernel.h>
 15#include <linux/mailbox_controller.h>
 16#include <linux/module.h>
 17#include <linux/of_device.h>
 18#include <linux/of.h>
 19#include <linux/of_irq.h>
 20#include <linux/platform_device.h>
 
 21#include <linux/soc/ti/ti-msgmgr.h>
 22
 23#define Q_DATA_OFFSET(proxy, queue, reg)	\
 24		     ((0x10000 * (proxy)) + (0x80 * (queue)) + ((reg) * 4))
 25#define Q_STATE_OFFSET(queue)			((queue) * 0x4)
 26#define Q_STATE_ENTRY_COUNT_MASK		(0xFFF000)
 27
 28#define SPROXY_THREAD_OFFSET(tid) (0x1000 * (tid))
 29#define SPROXY_THREAD_DATA_OFFSET(tid, reg) \
 30	(SPROXY_THREAD_OFFSET(tid) + ((reg) * 0x4) + 0x4)
 31
 32#define SPROXY_THREAD_STATUS_OFFSET(tid) (SPROXY_THREAD_OFFSET(tid))
 33
 34#define SPROXY_THREAD_STATUS_COUNT_MASK (0xFF)
 35
 36#define SPROXY_THREAD_CTRL_OFFSET(tid) (0x1000 + SPROXY_THREAD_OFFSET(tid))
 37#define SPROXY_THREAD_CTRL_DIR_MASK (0x1 << 31)
 38
 39/**
 40 * struct ti_msgmgr_valid_queue_desc - SoC valid queues meant for this processor
 41 * @queue_id:	Queue Number for this path
 42 * @proxy_id:	Proxy ID representing the processor in SoC
 43 * @is_tx:	Is this a receive path?
 44 */
 45struct ti_msgmgr_valid_queue_desc {
 46	u8 queue_id;
 47	u8 proxy_id;
 48	bool is_tx;
 49};
 50
 51/**
 52 * struct ti_msgmgr_desc - Description of message manager integration
 53 * @queue_count:	Number of Queues
 54 * @max_message_size:	Message size in bytes
 55 * @max_messages:	Number of messages
 56 * @data_first_reg:	First data register for proxy data region
 57 * @data_last_reg:	Last data register for proxy data region
 58 * @status_cnt_mask:	Mask for getting the status value
 59 * @status_err_mask:	Mask for getting the error value, if applicable
 60 * @tx_polled:		Do I need to use polled mechanism for tx
 61 * @tx_poll_timeout_ms: Timeout in ms if polled
 62 * @valid_queues:	List of Valid queues that the processor can access
 63 * @data_region_name:	Name of the proxy data region
 64 * @status_region_name:	Name of the proxy status region
 65 * @ctrl_region_name:	Name of the proxy control region
 66 * @num_valid_queues:	Number of valid queues
 67 * @is_sproxy:		Is this an Secure Proxy instance?
 68 *
 69 * This structure is used in of match data to describe how integration
 70 * for a specific compatible SoC is done.
 71 */
 72struct ti_msgmgr_desc {
 73	u8 queue_count;
 74	u8 max_message_size;
 75	u8 max_messages;
 76	u8 data_first_reg;
 77	u8 data_last_reg;
 78	u32 status_cnt_mask;
 79	u32 status_err_mask;
 80	bool tx_polled;
 81	int tx_poll_timeout_ms;
 82	const struct ti_msgmgr_valid_queue_desc *valid_queues;
 83	const char *data_region_name;
 84	const char *status_region_name;
 85	const char *ctrl_region_name;
 86	int num_valid_queues;
 87	bool is_sproxy;
 88};
 89
 90/**
 91 * struct ti_queue_inst - Description of a queue instance
 92 * @name:	Queue Name
 93 * @queue_id:	Queue Identifier as mapped on SoC
 94 * @proxy_id:	Proxy Identifier as mapped on SoC
 95 * @irq:	IRQ for Rx Queue
 96 * @is_tx:	'true' if transmit queue, else, 'false'
 97 * @queue_buff_start: First register of Data Buffer
 98 * @queue_buff_end: Last (or confirmation) register of Data buffer
 99 * @queue_state: Queue status register
100 * @queue_ctrl: Queue Control register
101 * @chan:	Mailbox channel
102 * @rx_buff:	Receive buffer pointer allocated at probe, max_message_size
 
103 */
104struct ti_queue_inst {
105	char name[30];
106	u8 queue_id;
107	u8 proxy_id;
108	int irq;
109	bool is_tx;
110	void __iomem *queue_buff_start;
111	void __iomem *queue_buff_end;
112	void __iomem *queue_state;
113	void __iomem *queue_ctrl;
114	struct mbox_chan *chan;
115	u32 *rx_buff;
 
116};
117
118/**
119 * struct ti_msgmgr_inst - Description of a Message Manager Instance
120 * @dev:	device pointer corresponding to the Message Manager instance
121 * @desc:	Description of the SoC integration
122 * @queue_proxy_region:	Queue proxy region where queue buffers are located
123 * @queue_state_debug_region:	Queue status register regions
124 * @queue_ctrl_region:	Queue Control register regions
125 * @num_valid_queues:	Number of valid queues defined for the processor
126 *		Note: other queues are probably reserved for other processors
127 *		in the SoC.
128 * @qinsts:	Array of valid Queue Instances for the Processor
129 * @mbox:	Mailbox Controller
130 * @chans:	Array for channels corresponding to the Queue Instances.
131 */
132struct ti_msgmgr_inst {
133	struct device *dev;
134	const struct ti_msgmgr_desc *desc;
135	void __iomem *queue_proxy_region;
136	void __iomem *queue_state_debug_region;
137	void __iomem *queue_ctrl_region;
138	u8 num_valid_queues;
139	struct ti_queue_inst *qinsts;
140	struct mbox_controller mbox;
141	struct mbox_chan *chans;
142};
143
144/**
145 * ti_msgmgr_queue_get_num_messages() - Get the number of pending messages
146 * @d:		Description of message manager
147 * @qinst:	Queue instance for which we check the number of pending messages
148 *
149 * Return: number of messages pending in the queue (0 == no pending messages)
150 */
151static inline int
152ti_msgmgr_queue_get_num_messages(const struct ti_msgmgr_desc *d,
153				 struct ti_queue_inst *qinst)
154{
155	u32 val;
156	u32 status_cnt_mask = d->status_cnt_mask;
157
158	/*
159	 * We cannot use relaxed operation here - update may happen
160	 * real-time.
161	 */
162	val = readl(qinst->queue_state) & status_cnt_mask;
163	val >>= __ffs(status_cnt_mask);
164
165	return val;
166}
167
168/**
169 * ti_msgmgr_queue_is_error() - Check to see if there is queue error
170 * @d:		Description of message manager
171 * @qinst:	Queue instance for which we check the number of pending messages
172 *
173 * Return: true if error, else false
174 */
175static inline bool ti_msgmgr_queue_is_error(const struct ti_msgmgr_desc *d,
176					    struct ti_queue_inst *qinst)
177{
178	u32 val;
179
180	/* Msgmgr has no error detection */
181	if (!d->is_sproxy)
182		return false;
183
184	/*
185	 * We cannot use relaxed operation here - update may happen
186	 * real-time.
187	 */
188	val = readl(qinst->queue_state) & d->status_err_mask;
189
190	return val ? true : false;
191}
192
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
193/**
194 * ti_msgmgr_queue_rx_interrupt() - Interrupt handler for receive Queue
195 * @irq:	Interrupt number
196 * @p:		Channel Pointer
197 *
198 * Return: -EINVAL if there is no instance
199 * IRQ_NONE if the interrupt is not ours.
200 * IRQ_HANDLED if the rx interrupt was successfully handled.
201 */
202static irqreturn_t ti_msgmgr_queue_rx_interrupt(int irq, void *p)
203{
204	struct mbox_chan *chan = p;
205	struct device *dev = chan->mbox->dev;
206	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
207	struct ti_queue_inst *qinst = chan->con_priv;
208	const struct ti_msgmgr_desc *desc;
209	int msg_count, num_words;
210	struct ti_msgmgr_message message;
211	void __iomem *data_reg;
212	u32 *word_data;
213
214	if (WARN_ON(!inst)) {
215		dev_err(dev, "no platform drv data??\n");
216		return -EINVAL;
217	}
218
219	/* Do I have an invalid interrupt source? */
220	if (qinst->is_tx) {
221		dev_err(dev, "Cannot handle rx interrupt on tx channel %s\n",
222			qinst->name);
223		return IRQ_NONE;
224	}
225
226	desc = inst->desc;
227	if (ti_msgmgr_queue_is_error(desc, qinst)) {
228		dev_err(dev, "Error on Rx channel %s\n", qinst->name);
229		return IRQ_NONE;
230	}
231
232	/* Do I actually have messages to read? */
233	msg_count = ti_msgmgr_queue_get_num_messages(desc, qinst);
234	if (!msg_count) {
235		/* Shared IRQ? */
236		dev_dbg(dev, "Spurious event - 0 pending data!\n");
237		return IRQ_NONE;
238	}
239
240	/*
241	 * I have no idea about the protocol being used to communicate with the
242	 * remote producer - 0 could be valid data, so I wont make a judgement
243	 * of how many bytes I should be reading. Let the client figure this
244	 * out.. I just read the full message and pass it on..
245	 */
246	message.len = desc->max_message_size;
247	message.buf = (u8 *)qinst->rx_buff;
248
249	/*
250	 * NOTE about register access involved here:
251	 * the hardware block is implemented with 32bit access operations and no
252	 * support for data splitting.  We don't want the hardware to misbehave
253	 * with sub 32bit access - For example: if the last register read is
254	 * split into byte wise access, it can result in the queue getting
255	 * stuck or indeterminate behavior. An out of order read operation may
256	 * result in weird data results as well.
257	 * Hence, we do not use memcpy_fromio or __ioread32_copy here, instead
258	 * we depend on readl for the purpose.
259	 *
260	 * Also note that the final register read automatically marks the
261	 * queue message as read.
262	 */
263	for (data_reg = qinst->queue_buff_start, word_data = qinst->rx_buff,
264	     num_words = (desc->max_message_size / sizeof(u32));
265	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
266		*word_data = readl(data_reg);
267
268	/*
269	 * Last register read automatically clears the IRQ if only 1 message
270	 * is pending - so send the data up the stack..
271	 * NOTE: Client is expected to be as optimal as possible, since
272	 * we invoke the handler in IRQ context.
273	 */
274	mbox_chan_received_data(chan, (void *)&message);
275
276	return IRQ_HANDLED;
277}
278
279/**
280 * ti_msgmgr_queue_peek_data() - Peek to see if there are any rx messages.
281 * @chan:	Channel Pointer
282 *
283 * Return: 'true' if there is pending rx data, 'false' if there is none.
284 */
285static bool ti_msgmgr_queue_peek_data(struct mbox_chan *chan)
286{
287	struct ti_queue_inst *qinst = chan->con_priv;
288	struct device *dev = chan->mbox->dev;
289	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
290	const struct ti_msgmgr_desc *desc = inst->desc;
291	int msg_count;
292
293	if (qinst->is_tx)
294		return false;
295
296	if (ti_msgmgr_queue_is_error(desc, qinst)) {
297		dev_err(dev, "Error on channel %s\n", qinst->name);
298		return false;
299	}
300
301	msg_count = ti_msgmgr_queue_get_num_messages(desc, qinst);
302
303	return msg_count ? true : false;
304}
305
306/**
307 * ti_msgmgr_last_tx_done() - See if all the tx messages are sent
308 * @chan:	Channel pointer
309 *
310 * Return: 'true' is no pending tx data, 'false' if there are any.
311 */
312static bool ti_msgmgr_last_tx_done(struct mbox_chan *chan)
313{
314	struct ti_queue_inst *qinst = chan->con_priv;
315	struct device *dev = chan->mbox->dev;
316	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
317	const struct ti_msgmgr_desc *desc = inst->desc;
318	int msg_count;
319
320	if (!qinst->is_tx)
321		return false;
322
323	if (ti_msgmgr_queue_is_error(desc, qinst)) {
324		dev_err(dev, "Error on channel %s\n", qinst->name);
325		return false;
326	}
327
328	msg_count = ti_msgmgr_queue_get_num_messages(desc, qinst);
329
330	if (desc->is_sproxy) {
331		/* In secure proxy, msg_count indicates how many we can send */
332		return msg_count ? true : false;
333	}
334
335	/* if we have any messages pending.. */
336	return msg_count ? false : true;
337}
338
 
 
 
 
 
 
 
 
 
 
 
339/**
340 * ti_msgmgr_send_data() - Send data
341 * @chan:	Channel Pointer
342 * @data:	ti_msgmgr_message * Message Pointer
343 *
344 * Return: 0 if all goes good, else appropriate error messages.
345 */
346static int ti_msgmgr_send_data(struct mbox_chan *chan, void *data)
347{
348	struct device *dev = chan->mbox->dev;
349	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
350	const struct ti_msgmgr_desc *desc;
351	struct ti_queue_inst *qinst = chan->con_priv;
352	int num_words, trail_bytes;
353	struct ti_msgmgr_message *message = data;
354	void __iomem *data_reg;
355	u32 *word_data;
 
356
357	if (WARN_ON(!inst)) {
358		dev_err(dev, "no platform drv data??\n");
359		return -EINVAL;
360	}
361	desc = inst->desc;
362
363	if (ti_msgmgr_queue_is_error(desc, qinst)) {
364		dev_err(dev, "Error on channel %s\n", qinst->name);
365		return false;
366	}
367
368	if (desc->max_message_size < message->len) {
369		dev_err(dev, "Queue %s message length %zu > max %d\n",
370			qinst->name, message->len, desc->max_message_size);
371		return -EINVAL;
372	}
373
374	/* NOTE: Constraints similar to rx path exists here as well */
375	for (data_reg = qinst->queue_buff_start,
376	     num_words = message->len / sizeof(u32),
377	     word_data = (u32 *)message->buf;
378	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
379		writel(*word_data, data_reg);
380
381	trail_bytes = message->len % sizeof(u32);
382	if (trail_bytes) {
383		u32 data_trail = *word_data;
384
385		/* Ensure all unused data is 0 */
386		data_trail &= 0xFFFFFFFF >> (8 * (sizeof(u32) - trail_bytes));
387		writel(data_trail, data_reg);
388		data_reg++;
389	}
 
390	/*
391	 * 'data_reg' indicates next register to write. If we did not already
392	 * write on tx complete reg(last reg), we must do so for transmit
 
 
 
393	 */
394	if (data_reg <= qinst->queue_buff_end)
395		writel(0, qinst->queue_buff_end);
 
 
396
397	return 0;
 
 
 
 
 
398}
399
400/**
401 *  ti_msgmgr_queue_rx_irq_req() - RX IRQ request
402 *  @dev:	device pointer
403 *  @d:		descriptor for ti_msgmgr
404 *  @qinst:	Queue instance
405 *  @chan:	Channel pointer
406 */
407static int ti_msgmgr_queue_rx_irq_req(struct device *dev,
408				      const struct ti_msgmgr_desc *d,
409				      struct ti_queue_inst *qinst,
410				      struct mbox_chan *chan)
411{
412	int ret = 0;
413	char of_rx_irq_name[7];
414	struct device_node *np;
415
416	snprintf(of_rx_irq_name, sizeof(of_rx_irq_name),
417		 "rx_%03d", d->is_sproxy ? qinst->proxy_id : qinst->queue_id);
418
419	/* Get the IRQ if not found */
420	if (qinst->irq < 0) {
421		np = of_node_get(dev->of_node);
422		if (!np)
423			return -ENODATA;
424		qinst->irq = of_irq_get_byname(np, of_rx_irq_name);
425		of_node_put(np);
426
427		if (qinst->irq < 0) {
428			dev_err(dev,
429				"QID %d PID %d:No IRQ[%s]: %d\n",
430				qinst->queue_id, qinst->proxy_id,
431				of_rx_irq_name, qinst->irq);
432			return qinst->irq;
433		}
434	}
435
436	/* With the expectation that the IRQ might be shared in SoC */
437	ret = request_irq(qinst->irq, ti_msgmgr_queue_rx_interrupt,
438			  IRQF_SHARED, qinst->name, chan);
439	if (ret) {
440		dev_err(dev, "Unable to get IRQ %d on %s(res=%d)\n",
441			qinst->irq, qinst->name, ret);
442	}
443
444	return ret;
445}
446
447/**
448 * ti_msgmgr_queue_startup() - Startup queue
449 * @chan:	Channel pointer
450 *
451 * Return: 0 if all goes good, else return corresponding error message
452 */
453static int ti_msgmgr_queue_startup(struct mbox_chan *chan)
454{
455	struct device *dev = chan->mbox->dev;
456	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
457	struct ti_queue_inst *qinst = chan->con_priv;
458	const struct ti_msgmgr_desc *d = inst->desc;
459	int ret;
460	int msg_count;
461
462	/*
463	 * If sproxy is starting and can send messages, we are a Tx thread,
464	 * else Rx
465	 */
466	if (d->is_sproxy) {
467		qinst->is_tx = (readl(qinst->queue_ctrl) &
468				SPROXY_THREAD_CTRL_DIR_MASK) ? false : true;
469
470		msg_count = ti_msgmgr_queue_get_num_messages(d, qinst);
471
472		if (!msg_count && qinst->is_tx) {
473			dev_err(dev, "%s: Cannot transmit with 0 credits!\n",
474				qinst->name);
475			return -EINVAL;
476		}
477	}
478
479	if (!qinst->is_tx) {
480		/* Allocate usage buffer for rx */
481		qinst->rx_buff = kzalloc(d->max_message_size, GFP_KERNEL);
482		if (!qinst->rx_buff)
483			return -ENOMEM;
484		/* Request IRQ */
485		ret = ti_msgmgr_queue_rx_irq_req(dev, d, qinst, chan);
486		if (ret) {
487			kfree(qinst->rx_buff);
488			return ret;
489		}
490	}
491
492	return 0;
493}
494
495/**
496 * ti_msgmgr_queue_shutdown() - Shutdown the queue
497 * @chan:	Channel pointer
498 */
499static void ti_msgmgr_queue_shutdown(struct mbox_chan *chan)
500{
501	struct ti_queue_inst *qinst = chan->con_priv;
502
503	if (!qinst->is_tx) {
504		free_irq(qinst->irq, chan);
505		kfree(qinst->rx_buff);
506	}
507}
508
509/**
510 * ti_msgmgr_of_xlate() - Translation of phandle to queue
511 * @mbox:	Mailbox controller
512 * @p:		phandle pointer
513 *
514 * Return: Mailbox channel corresponding to the queue, else return error
515 * pointer.
516 */
517static struct mbox_chan *ti_msgmgr_of_xlate(struct mbox_controller *mbox,
518					    const struct of_phandle_args *p)
519{
520	struct ti_msgmgr_inst *inst;
521	int req_qid, req_pid;
522	struct ti_queue_inst *qinst;
523	const struct ti_msgmgr_desc *d;
524	int i, ncells;
525
526	inst = container_of(mbox, struct ti_msgmgr_inst, mbox);
527	if (WARN_ON(!inst))
528		return ERR_PTR(-EINVAL);
529
530	d = inst->desc;
531
532	if (d->is_sproxy)
533		ncells = 1;
534	else
535		ncells = 2;
536	if (p->args_count != ncells) {
537		dev_err(inst->dev, "Invalid arguments in dt[%d]. Must be %d\n",
538			p->args_count, ncells);
539		return ERR_PTR(-EINVAL);
540	}
541	if (ncells == 1) {
542		req_qid = 0;
543		req_pid = p->args[0];
544	} else {
545		req_qid = p->args[0];
546		req_pid = p->args[1];
547	}
548
549	if (d->is_sproxy) {
550		if (req_pid >= d->num_valid_queues)
551			goto err;
552		qinst = &inst->qinsts[req_pid];
553		return qinst->chan;
554	}
555
556	for (qinst = inst->qinsts, i = 0; i < inst->num_valid_queues;
557	     i++, qinst++) {
558		if (req_qid == qinst->queue_id && req_pid == qinst->proxy_id)
559			return qinst->chan;
560	}
561
562err:
563	dev_err(inst->dev, "Queue ID %d, Proxy ID %d is wrong on %pOFn\n",
564		req_qid, req_pid, p->np);
565	return ERR_PTR(-ENOENT);
566}
567
568/**
569 * ti_msgmgr_queue_setup() - Setup data structures for each queue instance
570 * @idx:	index of the queue
571 * @dev:	pointer to the message manager device
572 * @np:		pointer to the of node
573 * @inst:	Queue instance pointer
574 * @d:		Message Manager instance description data
575 * @qd:		Queue description data
576 * @qinst:	Queue instance pointer
577 * @chan:	pointer to mailbox channel
578 *
579 * Return: 0 if all went well, else return corresponding error
580 */
581static int ti_msgmgr_queue_setup(int idx, struct device *dev,
582				 struct device_node *np,
583				 struct ti_msgmgr_inst *inst,
584				 const struct ti_msgmgr_desc *d,
585				 const struct ti_msgmgr_valid_queue_desc *qd,
586				 struct ti_queue_inst *qinst,
587				 struct mbox_chan *chan)
588{
589	char *dir;
590
591	qinst->proxy_id = qd->proxy_id;
592	qinst->queue_id = qd->queue_id;
593
594	if (qinst->queue_id > d->queue_count) {
595		dev_err(dev, "Queue Data [idx=%d] queuid %d > %d\n",
596			idx, qinst->queue_id, d->queue_count);
597		return -ERANGE;
598	}
599
600	if (d->is_sproxy) {
601		qinst->queue_buff_start = inst->queue_proxy_region +
602		    SPROXY_THREAD_DATA_OFFSET(qinst->proxy_id,
603					      d->data_first_reg);
604		qinst->queue_buff_end = inst->queue_proxy_region +
605		    SPROXY_THREAD_DATA_OFFSET(qinst->proxy_id,
606					      d->data_last_reg);
607		qinst->queue_state = inst->queue_state_debug_region +
608		    SPROXY_THREAD_STATUS_OFFSET(qinst->proxy_id);
609		qinst->queue_ctrl = inst->queue_ctrl_region +
610		    SPROXY_THREAD_CTRL_OFFSET(qinst->proxy_id);
611
612		/* XXX: DONOT read registers here!.. Some may be unusable */
613		dir = "thr";
614		snprintf(qinst->name, sizeof(qinst->name), "%s %s_%03d",
615			 dev_name(dev), dir, qinst->proxy_id);
616	} else {
617		qinst->queue_buff_start = inst->queue_proxy_region +
618		    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id,
619				  d->data_first_reg);
620		qinst->queue_buff_end = inst->queue_proxy_region +
621		    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id,
622				  d->data_last_reg);
623		qinst->queue_state =
624		    inst->queue_state_debug_region +
625		    Q_STATE_OFFSET(qinst->queue_id);
626		qinst->is_tx = qd->is_tx;
627		dir = qinst->is_tx ? "tx" : "rx";
628		snprintf(qinst->name, sizeof(qinst->name), "%s %s_%03d_%03d",
629			 dev_name(dev), dir, qinst->queue_id, qinst->proxy_id);
630	}
631
632	qinst->chan = chan;
633
634	/* Setup an error value for IRQ - Lazy allocation */
635	qinst->irq = -EINVAL;
636
637	chan->con_priv = qinst;
638
639	dev_dbg(dev, "[%d] qidx=%d pidx=%d irq=%d q_s=%p q_e = %p\n",
640		idx, qinst->queue_id, qinst->proxy_id, qinst->irq,
641		qinst->queue_buff_start, qinst->queue_buff_end);
642	return 0;
643}
644
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
645/* Queue operations */
646static const struct mbox_chan_ops ti_msgmgr_chan_ops = {
647	.startup = ti_msgmgr_queue_startup,
648	.shutdown = ti_msgmgr_queue_shutdown,
649	.peek_data = ti_msgmgr_queue_peek_data,
650	.last_tx_done = ti_msgmgr_last_tx_done,
651	.send_data = ti_msgmgr_send_data,
652};
653
654/* Keystone K2G SoC integration details */
655static const struct ti_msgmgr_valid_queue_desc k2g_valid_queues[] = {
656	{.queue_id = 0, .proxy_id = 0, .is_tx = true,},
657	{.queue_id = 1, .proxy_id = 0, .is_tx = true,},
658	{.queue_id = 2, .proxy_id = 0, .is_tx = true,},
659	{.queue_id = 3, .proxy_id = 0, .is_tx = true,},
660	{.queue_id = 5, .proxy_id = 2, .is_tx = false,},
661	{.queue_id = 56, .proxy_id = 1, .is_tx = true,},
662	{.queue_id = 57, .proxy_id = 2, .is_tx = false,},
663	{.queue_id = 58, .proxy_id = 3, .is_tx = true,},
664	{.queue_id = 59, .proxy_id = 4, .is_tx = true,},
665	{.queue_id = 60, .proxy_id = 5, .is_tx = true,},
666	{.queue_id = 61, .proxy_id = 6, .is_tx = true,},
667};
668
669static const struct ti_msgmgr_desc k2g_desc = {
670	.queue_count = 64,
671	.max_message_size = 64,
672	.max_messages = 128,
673	.data_region_name = "queue_proxy_region",
674	.status_region_name = "queue_state_debug_region",
675	.data_first_reg = 16,
676	.data_last_reg = 31,
677	.status_cnt_mask = Q_STATE_ENTRY_COUNT_MASK,
678	.tx_polled = false,
679	.valid_queues = k2g_valid_queues,
680	.num_valid_queues = ARRAY_SIZE(k2g_valid_queues),
681	.is_sproxy = false,
682};
683
684static const struct ti_msgmgr_desc am654_desc = {
685	.queue_count = 190,
686	.num_valid_queues = 190,
687	.max_message_size = 60,
688	.data_region_name = "target_data",
689	.status_region_name = "rt",
690	.ctrl_region_name = "scfg",
691	.data_first_reg = 0,
692	.data_last_reg = 14,
693	.status_cnt_mask = SPROXY_THREAD_STATUS_COUNT_MASK,
694	.tx_polled = false,
695	.is_sproxy = true,
696};
697
698static const struct of_device_id ti_msgmgr_of_match[] = {
699	{.compatible = "ti,k2g-message-manager", .data = &k2g_desc},
700	{.compatible = "ti,am654-secure-proxy", .data = &am654_desc},
701	{ /* Sentinel */ }
702};
703
704MODULE_DEVICE_TABLE(of, ti_msgmgr_of_match);
705
706static int ti_msgmgr_probe(struct platform_device *pdev)
707{
708	struct device *dev = &pdev->dev;
709	const struct of_device_id *of_id;
710	struct device_node *np;
711	struct resource *res;
712	const struct ti_msgmgr_desc *desc;
713	struct ti_msgmgr_inst *inst;
714	struct ti_queue_inst *qinst;
715	struct mbox_controller *mbox;
716	struct mbox_chan *chans;
717	int queue_count;
718	int i;
719	int ret = -EINVAL;
720	const struct ti_msgmgr_valid_queue_desc *queue_desc;
721
722	if (!dev->of_node) {
723		dev_err(dev, "no OF information\n");
724		return -EINVAL;
725	}
726	np = dev->of_node;
727
728	of_id = of_match_device(ti_msgmgr_of_match, dev);
729	if (!of_id) {
730		dev_err(dev, "OF data missing\n");
731		return -EINVAL;
732	}
733	desc = of_id->data;
734
735	inst = devm_kzalloc(dev, sizeof(*inst), GFP_KERNEL);
736	if (!inst)
737		return -ENOMEM;
738
739	inst->dev = dev;
740	inst->desc = desc;
741
742	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
743					   desc->data_region_name);
744	inst->queue_proxy_region = devm_ioremap_resource(dev, res);
745	if (IS_ERR(inst->queue_proxy_region))
746		return PTR_ERR(inst->queue_proxy_region);
747
748	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
749					   desc->status_region_name);
750	inst->queue_state_debug_region = devm_ioremap_resource(dev, res);
751	if (IS_ERR(inst->queue_state_debug_region))
752		return PTR_ERR(inst->queue_state_debug_region);
753
754	if (desc->is_sproxy) {
755		res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
756						   desc->ctrl_region_name);
757		inst->queue_ctrl_region = devm_ioremap_resource(dev, res);
758		if (IS_ERR(inst->queue_ctrl_region))
759			return PTR_ERR(inst->queue_ctrl_region);
760	}
761
762	dev_dbg(dev, "proxy region=%p, queue_state=%p\n",
763		inst->queue_proxy_region, inst->queue_state_debug_region);
764
765	queue_count = desc->num_valid_queues;
766	if (!queue_count || queue_count > desc->queue_count) {
767		dev_crit(dev, "Invalid Number of queues %d. Max %d\n",
768			 queue_count, desc->queue_count);
769		return -ERANGE;
770	}
771	inst->num_valid_queues = queue_count;
772
773	qinst = devm_kcalloc(dev, queue_count, sizeof(*qinst), GFP_KERNEL);
774	if (!qinst)
775		return -ENOMEM;
776	inst->qinsts = qinst;
777
778	chans = devm_kcalloc(dev, queue_count, sizeof(*chans), GFP_KERNEL);
779	if (!chans)
780		return -ENOMEM;
781	inst->chans = chans;
782
783	if (desc->is_sproxy) {
784		struct ti_msgmgr_valid_queue_desc sproxy_desc;
785
786		/* All proxies may be valid in Secure Proxy instance */
787		for (i = 0; i < queue_count; i++, qinst++, chans++) {
788			sproxy_desc.queue_id = 0;
789			sproxy_desc.proxy_id = i;
790			ret = ti_msgmgr_queue_setup(i, dev, np, inst,
791						    desc, &sproxy_desc, qinst,
792						    chans);
793			if (ret)
794				return ret;
795		}
796	} else {
797		/* Only Some proxies are valid in Message Manager */
798		for (i = 0, queue_desc = desc->valid_queues;
799		     i < queue_count; i++, qinst++, chans++, queue_desc++) {
800			ret = ti_msgmgr_queue_setup(i, dev, np, inst,
801						    desc, queue_desc, qinst,
802						    chans);
803			if (ret)
804				return ret;
805		}
806	}
807
808	mbox = &inst->mbox;
809	mbox->dev = dev;
810	mbox->ops = &ti_msgmgr_chan_ops;
811	mbox->chans = inst->chans;
812	mbox->num_chans = inst->num_valid_queues;
813	mbox->txdone_irq = false;
814	mbox->txdone_poll = desc->tx_polled;
815	if (desc->tx_polled)
816		mbox->txpoll_period = desc->tx_poll_timeout_ms;
817	mbox->of_xlate = ti_msgmgr_of_xlate;
818
819	platform_set_drvdata(pdev, inst);
820	ret = devm_mbox_controller_register(dev, mbox);
821	if (ret)
822		dev_err(dev, "Failed to register mbox_controller(%d)\n", ret);
823
824	return ret;
825}
826
827static struct platform_driver ti_msgmgr_driver = {
828	.probe = ti_msgmgr_probe,
829	.driver = {
830		   .name = "ti-msgmgr",
831		   .of_match_table = of_match_ptr(ti_msgmgr_of_match),
 
832	},
833};
834module_platform_driver(ti_msgmgr_driver);
835
836MODULE_LICENSE("GPL v2");
837MODULE_DESCRIPTION("TI message manager driver");
838MODULE_AUTHOR("Nishanth Menon");
839MODULE_ALIAS("platform:ti-msgmgr");
v6.8
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Texas Instruments' Message Manager Driver
  4 *
  5 * Copyright (C) 2015-2022 Texas Instruments Incorporated - https://www.ti.com/
  6 *	Nishanth Menon
  7 */
  8
  9#define pr_fmt(fmt) "%s: " fmt, __func__
 10
 11#include <linux/device.h>
 12#include <linux/interrupt.h>
 13#include <linux/io.h>
 14#include <linux/iopoll.h>
 15#include <linux/kernel.h>
 16#include <linux/mailbox_controller.h>
 17#include <linux/module.h>
 
 18#include <linux/of.h>
 19#include <linux/of_irq.h>
 20#include <linux/platform_device.h>
 21#include <linux/property.h>
 22#include <linux/soc/ti/ti-msgmgr.h>
 23
 24#define Q_DATA_OFFSET(proxy, queue, reg)	\
 25		     ((0x10000 * (proxy)) + (0x80 * (queue)) + ((reg) * 4))
 26#define Q_STATE_OFFSET(queue)			((queue) * 0x4)
 27#define Q_STATE_ENTRY_COUNT_MASK		(0xFFF000)
 28
 29#define SPROXY_THREAD_OFFSET(tid) (0x1000 * (tid))
 30#define SPROXY_THREAD_DATA_OFFSET(tid, reg) \
 31	(SPROXY_THREAD_OFFSET(tid) + ((reg) * 0x4) + 0x4)
 32
 33#define SPROXY_THREAD_STATUS_OFFSET(tid) (SPROXY_THREAD_OFFSET(tid))
 34
 35#define SPROXY_THREAD_STATUS_COUNT_MASK (0xFF)
 36
 37#define SPROXY_THREAD_CTRL_OFFSET(tid) (0x1000 + SPROXY_THREAD_OFFSET(tid))
 38#define SPROXY_THREAD_CTRL_DIR_MASK (0x1 << 31)
 39
 40/**
 41 * struct ti_msgmgr_valid_queue_desc - SoC valid queues meant for this processor
 42 * @queue_id:	Queue Number for this path
 43 * @proxy_id:	Proxy ID representing the processor in SoC
 44 * @is_tx:	Is this a receive path?
 45 */
 46struct ti_msgmgr_valid_queue_desc {
 47	u8 queue_id;
 48	u8 proxy_id;
 49	bool is_tx;
 50};
 51
 52/**
 53 * struct ti_msgmgr_desc - Description of message manager integration
 54 * @queue_count:	Number of Queues
 55 * @max_message_size:	Message size in bytes
 56 * @max_messages:	Number of messages
 57 * @data_first_reg:	First data register for proxy data region
 58 * @data_last_reg:	Last data register for proxy data region
 59 * @status_cnt_mask:	Mask for getting the status value
 60 * @status_err_mask:	Mask for getting the error value, if applicable
 61 * @tx_polled:		Do I need to use polled mechanism for tx
 62 * @tx_poll_timeout_ms: Timeout in ms if polled
 63 * @valid_queues:	List of Valid queues that the processor can access
 64 * @data_region_name:	Name of the proxy data region
 65 * @status_region_name:	Name of the proxy status region
 66 * @ctrl_region_name:	Name of the proxy control region
 67 * @num_valid_queues:	Number of valid queues
 68 * @is_sproxy:		Is this an Secure Proxy instance?
 69 *
 70 * This structure is used in of match data to describe how integration
 71 * for a specific compatible SoC is done.
 72 */
 73struct ti_msgmgr_desc {
 74	u8 queue_count;
 75	u8 max_message_size;
 76	u8 max_messages;
 77	u8 data_first_reg;
 78	u8 data_last_reg;
 79	u32 status_cnt_mask;
 80	u32 status_err_mask;
 81	bool tx_polled;
 82	int tx_poll_timeout_ms;
 83	const struct ti_msgmgr_valid_queue_desc *valid_queues;
 84	const char *data_region_name;
 85	const char *status_region_name;
 86	const char *ctrl_region_name;
 87	int num_valid_queues;
 88	bool is_sproxy;
 89};
 90
 91/**
 92 * struct ti_queue_inst - Description of a queue instance
 93 * @name:	Queue Name
 94 * @queue_id:	Queue Identifier as mapped on SoC
 95 * @proxy_id:	Proxy Identifier as mapped on SoC
 96 * @irq:	IRQ for Rx Queue
 97 * @is_tx:	'true' if transmit queue, else, 'false'
 98 * @queue_buff_start: First register of Data Buffer
 99 * @queue_buff_end: Last (or confirmation) register of Data buffer
100 * @queue_state: Queue status register
101 * @queue_ctrl: Queue Control register
102 * @chan:	Mailbox channel
103 * @rx_buff:	Receive buffer pointer allocated at probe, max_message_size
104 * @polled_rx_mode: Use polling for rx instead of interrupts
105 */
106struct ti_queue_inst {
107	char name[30];
108	u8 queue_id;
109	u8 proxy_id;
110	int irq;
111	bool is_tx;
112	void __iomem *queue_buff_start;
113	void __iomem *queue_buff_end;
114	void __iomem *queue_state;
115	void __iomem *queue_ctrl;
116	struct mbox_chan *chan;
117	u32 *rx_buff;
118	bool polled_rx_mode;
119};
120
121/**
122 * struct ti_msgmgr_inst - Description of a Message Manager Instance
123 * @dev:	device pointer corresponding to the Message Manager instance
124 * @desc:	Description of the SoC integration
125 * @queue_proxy_region:	Queue proxy region where queue buffers are located
126 * @queue_state_debug_region:	Queue status register regions
127 * @queue_ctrl_region:	Queue Control register regions
128 * @num_valid_queues:	Number of valid queues defined for the processor
129 *		Note: other queues are probably reserved for other processors
130 *		in the SoC.
131 * @qinsts:	Array of valid Queue Instances for the Processor
132 * @mbox:	Mailbox Controller
133 * @chans:	Array for channels corresponding to the Queue Instances.
134 */
135struct ti_msgmgr_inst {
136	struct device *dev;
137	const struct ti_msgmgr_desc *desc;
138	void __iomem *queue_proxy_region;
139	void __iomem *queue_state_debug_region;
140	void __iomem *queue_ctrl_region;
141	u8 num_valid_queues;
142	struct ti_queue_inst *qinsts;
143	struct mbox_controller mbox;
144	struct mbox_chan *chans;
145};
146
147/**
148 * ti_msgmgr_queue_get_num_messages() - Get the number of pending messages
149 * @d:		Description of message manager
150 * @qinst:	Queue instance for which we check the number of pending messages
151 *
152 * Return: number of messages pending in the queue (0 == no pending messages)
153 */
154static inline int
155ti_msgmgr_queue_get_num_messages(const struct ti_msgmgr_desc *d,
156				 struct ti_queue_inst *qinst)
157{
158	u32 val;
159	u32 status_cnt_mask = d->status_cnt_mask;
160
161	/*
162	 * We cannot use relaxed operation here - update may happen
163	 * real-time.
164	 */
165	val = readl(qinst->queue_state) & status_cnt_mask;
166	val >>= __ffs(status_cnt_mask);
167
168	return val;
169}
170
171/**
172 * ti_msgmgr_queue_is_error() - Check to see if there is queue error
173 * @d:		Description of message manager
174 * @qinst:	Queue instance for which we check the number of pending messages
175 *
176 * Return: true if error, else false
177 */
178static inline bool ti_msgmgr_queue_is_error(const struct ti_msgmgr_desc *d,
179					    struct ti_queue_inst *qinst)
180{
181	u32 val;
182
183	/* Msgmgr has no error detection */
184	if (!d->is_sproxy)
185		return false;
186
187	/*
188	 * We cannot use relaxed operation here - update may happen
189	 * real-time.
190	 */
191	val = readl(qinst->queue_state) & d->status_err_mask;
192
193	return val ? true : false;
194}
195
196static int ti_msgmgr_queue_rx_data(struct mbox_chan *chan, struct ti_queue_inst *qinst,
197				   const struct ti_msgmgr_desc *desc)
198{
199	int num_words;
200	struct ti_msgmgr_message message;
201	void __iomem *data_reg;
202	u32 *word_data;
203
204	/*
205	 * I have no idea about the protocol being used to communicate with the
206	 * remote producer - 0 could be valid data, so I wont make a judgement
207	 * of how many bytes I should be reading. Let the client figure this
208	 * out.. I just read the full message and pass it on..
209	 */
210	message.len = desc->max_message_size;
211	message.buf = (u8 *)qinst->rx_buff;
212
213	/*
214	 * NOTE about register access involved here:
215	 * the hardware block is implemented with 32bit access operations and no
216	 * support for data splitting.  We don't want the hardware to misbehave
217	 * with sub 32bit access - For example: if the last register read is
218	 * split into byte wise access, it can result in the queue getting
219	 * stuck or indeterminate behavior. An out of order read operation may
220	 * result in weird data results as well.
221	 * Hence, we do not use memcpy_fromio or __ioread32_copy here, instead
222	 * we depend on readl for the purpose.
223	 *
224	 * Also note that the final register read automatically marks the
225	 * queue message as read.
226	 */
227	for (data_reg = qinst->queue_buff_start, word_data = qinst->rx_buff,
228	     num_words = (desc->max_message_size / sizeof(u32));
229	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
230		*word_data = readl(data_reg);
231
232	/*
233	 * Last register read automatically clears the IRQ if only 1 message
234	 * is pending - so send the data up the stack..
235	 * NOTE: Client is expected to be as optimal as possible, since
236	 * we invoke the handler in IRQ context.
237	 */
238	mbox_chan_received_data(chan, (void *)&message);
239
240	return 0;
241}
242
243static int ti_msgmgr_queue_rx_poll_timeout(struct mbox_chan *chan, int timeout_us)
244{
245	struct device *dev = chan->mbox->dev;
246	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
247	struct ti_queue_inst *qinst = chan->con_priv;
248	const struct ti_msgmgr_desc *desc = inst->desc;
249	int msg_count;
250	int ret;
251
252	ret = readl_poll_timeout_atomic(qinst->queue_state, msg_count,
253					(msg_count & desc->status_cnt_mask),
254					10, timeout_us);
255	if (ret != 0)
256		return ret;
257
258	ti_msgmgr_queue_rx_data(chan, qinst, desc);
259
260	return 0;
261}
262
263/**
264 * ti_msgmgr_queue_rx_interrupt() - Interrupt handler for receive Queue
265 * @irq:	Interrupt number
266 * @p:		Channel Pointer
267 *
268 * Return: -EINVAL if there is no instance
269 * IRQ_NONE if the interrupt is not ours.
270 * IRQ_HANDLED if the rx interrupt was successfully handled.
271 */
272static irqreturn_t ti_msgmgr_queue_rx_interrupt(int irq, void *p)
273{
274	struct mbox_chan *chan = p;
275	struct device *dev = chan->mbox->dev;
276	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
277	struct ti_queue_inst *qinst = chan->con_priv;
278	const struct ti_msgmgr_desc *desc;
279	int msg_count;
 
 
 
280
281	if (WARN_ON(!inst)) {
282		dev_err(dev, "no platform drv data??\n");
283		return -EINVAL;
284	}
285
286	/* Do I have an invalid interrupt source? */
287	if (qinst->is_tx) {
288		dev_err(dev, "Cannot handle rx interrupt on tx channel %s\n",
289			qinst->name);
290		return IRQ_NONE;
291	}
292
293	desc = inst->desc;
294	if (ti_msgmgr_queue_is_error(desc, qinst)) {
295		dev_err(dev, "Error on Rx channel %s\n", qinst->name);
296		return IRQ_NONE;
297	}
298
299	/* Do I actually have messages to read? */
300	msg_count = ti_msgmgr_queue_get_num_messages(desc, qinst);
301	if (!msg_count) {
302		/* Shared IRQ? */
303		dev_dbg(dev, "Spurious event - 0 pending data!\n");
304		return IRQ_NONE;
305	}
306
307	ti_msgmgr_queue_rx_data(chan, qinst, desc);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
308
309	return IRQ_HANDLED;
310}
311
312/**
313 * ti_msgmgr_queue_peek_data() - Peek to see if there are any rx messages.
314 * @chan:	Channel Pointer
315 *
316 * Return: 'true' if there is pending rx data, 'false' if there is none.
317 */
318static bool ti_msgmgr_queue_peek_data(struct mbox_chan *chan)
319{
320	struct ti_queue_inst *qinst = chan->con_priv;
321	struct device *dev = chan->mbox->dev;
322	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
323	const struct ti_msgmgr_desc *desc = inst->desc;
324	int msg_count;
325
326	if (qinst->is_tx)
327		return false;
328
329	if (ti_msgmgr_queue_is_error(desc, qinst)) {
330		dev_err(dev, "Error on channel %s\n", qinst->name);
331		return false;
332	}
333
334	msg_count = ti_msgmgr_queue_get_num_messages(desc, qinst);
335
336	return msg_count ? true : false;
337}
338
339/**
340 * ti_msgmgr_last_tx_done() - See if all the tx messages are sent
341 * @chan:	Channel pointer
342 *
343 * Return: 'true' is no pending tx data, 'false' if there are any.
344 */
345static bool ti_msgmgr_last_tx_done(struct mbox_chan *chan)
346{
347	struct ti_queue_inst *qinst = chan->con_priv;
348	struct device *dev = chan->mbox->dev;
349	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
350	const struct ti_msgmgr_desc *desc = inst->desc;
351	int msg_count;
352
353	if (!qinst->is_tx)
354		return false;
355
356	if (ti_msgmgr_queue_is_error(desc, qinst)) {
357		dev_err(dev, "Error on channel %s\n", qinst->name);
358		return false;
359	}
360
361	msg_count = ti_msgmgr_queue_get_num_messages(desc, qinst);
362
363	if (desc->is_sproxy) {
364		/* In secure proxy, msg_count indicates how many we can send */
365		return msg_count ? true : false;
366	}
367
368	/* if we have any messages pending.. */
369	return msg_count ? false : true;
370}
371
372static bool ti_msgmgr_chan_has_polled_queue_rx(struct mbox_chan *chan)
373{
374	struct ti_queue_inst *qinst;
375
376	if (!chan)
377		return false;
378
379	qinst = chan->con_priv;
380	return qinst->polled_rx_mode;
381}
382
383/**
384 * ti_msgmgr_send_data() - Send data
385 * @chan:	Channel Pointer
386 * @data:	ti_msgmgr_message * Message Pointer
387 *
388 * Return: 0 if all goes good, else appropriate error messages.
389 */
390static int ti_msgmgr_send_data(struct mbox_chan *chan, void *data)
391{
392	struct device *dev = chan->mbox->dev;
393	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
394	const struct ti_msgmgr_desc *desc;
395	struct ti_queue_inst *qinst = chan->con_priv;
396	int num_words, trail_bytes;
397	struct ti_msgmgr_message *message = data;
398	void __iomem *data_reg;
399	u32 *word_data;
400	int ret = 0;
401
402	if (WARN_ON(!inst)) {
403		dev_err(dev, "no platform drv data??\n");
404		return -EINVAL;
405	}
406	desc = inst->desc;
407
408	if (ti_msgmgr_queue_is_error(desc, qinst)) {
409		dev_err(dev, "Error on channel %s\n", qinst->name);
410		return false;
411	}
412
413	if (desc->max_message_size < message->len) {
414		dev_err(dev, "Queue %s message length %zu > max %d\n",
415			qinst->name, message->len, desc->max_message_size);
416		return -EINVAL;
417	}
418
419	/* NOTE: Constraints similar to rx path exists here as well */
420	for (data_reg = qinst->queue_buff_start,
421	     num_words = message->len / sizeof(u32),
422	     word_data = (u32 *)message->buf;
423	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
424		writel(*word_data, data_reg);
425
426	trail_bytes = message->len % sizeof(u32);
427	if (trail_bytes) {
428		u32 data_trail = *word_data;
429
430		/* Ensure all unused data is 0 */
431		data_trail &= 0xFFFFFFFF >> (8 * (sizeof(u32) - trail_bytes));
432		writel(data_trail, data_reg);
433		data_reg += sizeof(u32);
434	}
435
436	/*
437	 * 'data_reg' indicates next register to write. If we did not already
438	 * write on tx complete reg(last reg), we must do so for transmit
439	 * In addition, we also need to make sure all intermediate data
440	 * registers(if any required), are reset to 0 for TISCI backward
441	 * compatibility to be maintained.
442	 */
443	while (data_reg <= qinst->queue_buff_end) {
444		writel(0, data_reg);
445		data_reg += sizeof(u32);
446	}
447
448	/* If we are in polled mode, wait for a response before proceeding */
449	if (ti_msgmgr_chan_has_polled_queue_rx(message->chan_rx))
450		ret = ti_msgmgr_queue_rx_poll_timeout(message->chan_rx,
451						      message->timeout_rx_ms * 1000);
452
453	return ret;
454}
455
456/**
457 *  ti_msgmgr_queue_rx_irq_req() - RX IRQ request
458 *  @dev:	device pointer
459 *  @d:		descriptor for ti_msgmgr
460 *  @qinst:	Queue instance
461 *  @chan:	Channel pointer
462 */
463static int ti_msgmgr_queue_rx_irq_req(struct device *dev,
464				      const struct ti_msgmgr_desc *d,
465				      struct ti_queue_inst *qinst,
466				      struct mbox_chan *chan)
467{
468	int ret = 0;
469	char of_rx_irq_name[7];
470	struct device_node *np;
471
472	snprintf(of_rx_irq_name, sizeof(of_rx_irq_name),
473		 "rx_%03d", d->is_sproxy ? qinst->proxy_id : qinst->queue_id);
474
475	/* Get the IRQ if not found */
476	if (qinst->irq < 0) {
477		np = of_node_get(dev->of_node);
478		if (!np)
479			return -ENODATA;
480		qinst->irq = of_irq_get_byname(np, of_rx_irq_name);
481		of_node_put(np);
482
483		if (qinst->irq < 0) {
484			dev_err(dev,
485				"QID %d PID %d:No IRQ[%s]: %d\n",
486				qinst->queue_id, qinst->proxy_id,
487				of_rx_irq_name, qinst->irq);
488			return qinst->irq;
489		}
490	}
491
492	/* With the expectation that the IRQ might be shared in SoC */
493	ret = request_irq(qinst->irq, ti_msgmgr_queue_rx_interrupt,
494			  IRQF_SHARED, qinst->name, chan);
495	if (ret) {
496		dev_err(dev, "Unable to get IRQ %d on %s(res=%d)\n",
497			qinst->irq, qinst->name, ret);
498	}
499
500	return ret;
501}
502
503/**
504 * ti_msgmgr_queue_startup() - Startup queue
505 * @chan:	Channel pointer
506 *
507 * Return: 0 if all goes good, else return corresponding error message
508 */
509static int ti_msgmgr_queue_startup(struct mbox_chan *chan)
510{
511	struct device *dev = chan->mbox->dev;
512	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
513	struct ti_queue_inst *qinst = chan->con_priv;
514	const struct ti_msgmgr_desc *d = inst->desc;
515	int ret;
516	int msg_count;
517
518	/*
519	 * If sproxy is starting and can send messages, we are a Tx thread,
520	 * else Rx
521	 */
522	if (d->is_sproxy) {
523		qinst->is_tx = (readl(qinst->queue_ctrl) &
524				SPROXY_THREAD_CTRL_DIR_MASK) ? false : true;
525
526		msg_count = ti_msgmgr_queue_get_num_messages(d, qinst);
527
528		if (!msg_count && qinst->is_tx) {
529			dev_err(dev, "%s: Cannot transmit with 0 credits!\n",
530				qinst->name);
531			return -EINVAL;
532		}
533	}
534
535	if (!qinst->is_tx) {
536		/* Allocate usage buffer for rx */
537		qinst->rx_buff = kzalloc(d->max_message_size, GFP_KERNEL);
538		if (!qinst->rx_buff)
539			return -ENOMEM;
540		/* Request IRQ */
541		ret = ti_msgmgr_queue_rx_irq_req(dev, d, qinst, chan);
542		if (ret) {
543			kfree(qinst->rx_buff);
544			return ret;
545		}
546	}
547
548	return 0;
549}
550
551/**
552 * ti_msgmgr_queue_shutdown() - Shutdown the queue
553 * @chan:	Channel pointer
554 */
555static void ti_msgmgr_queue_shutdown(struct mbox_chan *chan)
556{
557	struct ti_queue_inst *qinst = chan->con_priv;
558
559	if (!qinst->is_tx) {
560		free_irq(qinst->irq, chan);
561		kfree(qinst->rx_buff);
562	}
563}
564
565/**
566 * ti_msgmgr_of_xlate() - Translation of phandle to queue
567 * @mbox:	Mailbox controller
568 * @p:		phandle pointer
569 *
570 * Return: Mailbox channel corresponding to the queue, else return error
571 * pointer.
572 */
573static struct mbox_chan *ti_msgmgr_of_xlate(struct mbox_controller *mbox,
574					    const struct of_phandle_args *p)
575{
576	struct ti_msgmgr_inst *inst;
577	int req_qid, req_pid;
578	struct ti_queue_inst *qinst;
579	const struct ti_msgmgr_desc *d;
580	int i, ncells;
581
582	inst = container_of(mbox, struct ti_msgmgr_inst, mbox);
583	if (WARN_ON(!inst))
584		return ERR_PTR(-EINVAL);
585
586	d = inst->desc;
587
588	if (d->is_sproxy)
589		ncells = 1;
590	else
591		ncells = 2;
592	if (p->args_count != ncells) {
593		dev_err(inst->dev, "Invalid arguments in dt[%d]. Must be %d\n",
594			p->args_count, ncells);
595		return ERR_PTR(-EINVAL);
596	}
597	if (ncells == 1) {
598		req_qid = 0;
599		req_pid = p->args[0];
600	} else {
601		req_qid = p->args[0];
602		req_pid = p->args[1];
603	}
604
605	if (d->is_sproxy) {
606		if (req_pid >= d->num_valid_queues)
607			goto err;
608		qinst = &inst->qinsts[req_pid];
609		return qinst->chan;
610	}
611
612	for (qinst = inst->qinsts, i = 0; i < inst->num_valid_queues;
613	     i++, qinst++) {
614		if (req_qid == qinst->queue_id && req_pid == qinst->proxy_id)
615			return qinst->chan;
616	}
617
618err:
619	dev_err(inst->dev, "Queue ID %d, Proxy ID %d is wrong on %pOFn\n",
620		req_qid, req_pid, p->np);
621	return ERR_PTR(-ENOENT);
622}
623
624/**
625 * ti_msgmgr_queue_setup() - Setup data structures for each queue instance
626 * @idx:	index of the queue
627 * @dev:	pointer to the message manager device
628 * @np:		pointer to the of node
629 * @inst:	Queue instance pointer
630 * @d:		Message Manager instance description data
631 * @qd:		Queue description data
632 * @qinst:	Queue instance pointer
633 * @chan:	pointer to mailbox channel
634 *
635 * Return: 0 if all went well, else return corresponding error
636 */
637static int ti_msgmgr_queue_setup(int idx, struct device *dev,
638				 struct device_node *np,
639				 struct ti_msgmgr_inst *inst,
640				 const struct ti_msgmgr_desc *d,
641				 const struct ti_msgmgr_valid_queue_desc *qd,
642				 struct ti_queue_inst *qinst,
643				 struct mbox_chan *chan)
644{
645	char *dir;
646
647	qinst->proxy_id = qd->proxy_id;
648	qinst->queue_id = qd->queue_id;
649
650	if (qinst->queue_id > d->queue_count) {
651		dev_err(dev, "Queue Data [idx=%d] queuid %d > %d\n",
652			idx, qinst->queue_id, d->queue_count);
653		return -ERANGE;
654	}
655
656	if (d->is_sproxy) {
657		qinst->queue_buff_start = inst->queue_proxy_region +
658		    SPROXY_THREAD_DATA_OFFSET(qinst->proxy_id,
659					      d->data_first_reg);
660		qinst->queue_buff_end = inst->queue_proxy_region +
661		    SPROXY_THREAD_DATA_OFFSET(qinst->proxy_id,
662					      d->data_last_reg);
663		qinst->queue_state = inst->queue_state_debug_region +
664		    SPROXY_THREAD_STATUS_OFFSET(qinst->proxy_id);
665		qinst->queue_ctrl = inst->queue_ctrl_region +
666		    SPROXY_THREAD_CTRL_OFFSET(qinst->proxy_id);
667
668		/* XXX: DONOT read registers here!.. Some may be unusable */
669		dir = "thr";
670		snprintf(qinst->name, sizeof(qinst->name), "%s %s_%03d",
671			 dev_name(dev), dir, qinst->proxy_id);
672	} else {
673		qinst->queue_buff_start = inst->queue_proxy_region +
674		    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id,
675				  d->data_first_reg);
676		qinst->queue_buff_end = inst->queue_proxy_region +
677		    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id,
678				  d->data_last_reg);
679		qinst->queue_state =
680		    inst->queue_state_debug_region +
681		    Q_STATE_OFFSET(qinst->queue_id);
682		qinst->is_tx = qd->is_tx;
683		dir = qinst->is_tx ? "tx" : "rx";
684		snprintf(qinst->name, sizeof(qinst->name), "%s %s_%03d_%03d",
685			 dev_name(dev), dir, qinst->queue_id, qinst->proxy_id);
686	}
687
688	qinst->chan = chan;
689
690	/* Setup an error value for IRQ - Lazy allocation */
691	qinst->irq = -EINVAL;
692
693	chan->con_priv = qinst;
694
695	dev_dbg(dev, "[%d] qidx=%d pidx=%d irq=%d q_s=%p q_e = %p\n",
696		idx, qinst->queue_id, qinst->proxy_id, qinst->irq,
697		qinst->queue_buff_start, qinst->queue_buff_end);
698	return 0;
699}
700
701static int ti_msgmgr_queue_rx_set_polled_mode(struct ti_queue_inst *qinst, bool enable)
702{
703	if (enable) {
704		disable_irq(qinst->irq);
705		qinst->polled_rx_mode = true;
706	} else {
707		enable_irq(qinst->irq);
708		qinst->polled_rx_mode = false;
709	}
710
711	return 0;
712}
713
714static int ti_msgmgr_suspend(struct device *dev)
715{
716	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
717	struct ti_queue_inst *qinst;
718	int i;
719
720	/*
721	 * We must switch operation to polled mode now as drivers and the genpd
722	 * layer may make late TI SCI calls to change clock and device states
723	 * from the noirq phase of suspend.
724	 */
725	for (qinst = inst->qinsts, i = 0; i < inst->num_valid_queues; qinst++, i++) {
726		if (!qinst->is_tx)
727			ti_msgmgr_queue_rx_set_polled_mode(qinst, true);
728	}
729
730	return 0;
731}
732
733static int ti_msgmgr_resume(struct device *dev)
734{
735	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
736	struct ti_queue_inst *qinst;
737	int i;
738
739	for (qinst = inst->qinsts, i = 0; i < inst->num_valid_queues; qinst++, i++) {
740		if (!qinst->is_tx)
741			ti_msgmgr_queue_rx_set_polled_mode(qinst, false);
742	}
743
744	return 0;
745}
746
747static DEFINE_SIMPLE_DEV_PM_OPS(ti_msgmgr_pm_ops, ti_msgmgr_suspend, ti_msgmgr_resume);
748
749/* Queue operations */
750static const struct mbox_chan_ops ti_msgmgr_chan_ops = {
751	.startup = ti_msgmgr_queue_startup,
752	.shutdown = ti_msgmgr_queue_shutdown,
753	.peek_data = ti_msgmgr_queue_peek_data,
754	.last_tx_done = ti_msgmgr_last_tx_done,
755	.send_data = ti_msgmgr_send_data,
756};
757
758/* Keystone K2G SoC integration details */
759static const struct ti_msgmgr_valid_queue_desc k2g_valid_queues[] = {
760	{.queue_id = 0, .proxy_id = 0, .is_tx = true,},
761	{.queue_id = 1, .proxy_id = 0, .is_tx = true,},
762	{.queue_id = 2, .proxy_id = 0, .is_tx = true,},
763	{.queue_id = 3, .proxy_id = 0, .is_tx = true,},
764	{.queue_id = 5, .proxy_id = 2, .is_tx = false,},
765	{.queue_id = 56, .proxy_id = 1, .is_tx = true,},
766	{.queue_id = 57, .proxy_id = 2, .is_tx = false,},
767	{.queue_id = 58, .proxy_id = 3, .is_tx = true,},
768	{.queue_id = 59, .proxy_id = 4, .is_tx = true,},
769	{.queue_id = 60, .proxy_id = 5, .is_tx = true,},
770	{.queue_id = 61, .proxy_id = 6, .is_tx = true,},
771};
772
773static const struct ti_msgmgr_desc k2g_desc = {
774	.queue_count = 64,
775	.max_message_size = 64,
776	.max_messages = 128,
777	.data_region_name = "queue_proxy_region",
778	.status_region_name = "queue_state_debug_region",
779	.data_first_reg = 16,
780	.data_last_reg = 31,
781	.status_cnt_mask = Q_STATE_ENTRY_COUNT_MASK,
782	.tx_polled = false,
783	.valid_queues = k2g_valid_queues,
784	.num_valid_queues = ARRAY_SIZE(k2g_valid_queues),
785	.is_sproxy = false,
786};
787
788static const struct ti_msgmgr_desc am654_desc = {
789	.queue_count = 190,
790	.num_valid_queues = 190,
791	.max_message_size = 60,
792	.data_region_name = "target_data",
793	.status_region_name = "rt",
794	.ctrl_region_name = "scfg",
795	.data_first_reg = 0,
796	.data_last_reg = 14,
797	.status_cnt_mask = SPROXY_THREAD_STATUS_COUNT_MASK,
798	.tx_polled = false,
799	.is_sproxy = true,
800};
801
802static const struct of_device_id ti_msgmgr_of_match[] = {
803	{.compatible = "ti,k2g-message-manager", .data = &k2g_desc},
804	{.compatible = "ti,am654-secure-proxy", .data = &am654_desc},
805	{ /* Sentinel */ }
806};
807
808MODULE_DEVICE_TABLE(of, ti_msgmgr_of_match);
809
810static int ti_msgmgr_probe(struct platform_device *pdev)
811{
812	struct device *dev = &pdev->dev;
 
813	struct device_node *np;
 
814	const struct ti_msgmgr_desc *desc;
815	struct ti_msgmgr_inst *inst;
816	struct ti_queue_inst *qinst;
817	struct mbox_controller *mbox;
818	struct mbox_chan *chans;
819	int queue_count;
820	int i;
821	int ret = -EINVAL;
822	const struct ti_msgmgr_valid_queue_desc *queue_desc;
823
824	if (!dev->of_node) {
825		dev_err(dev, "no OF information\n");
826		return -EINVAL;
827	}
828	np = dev->of_node;
829
 
 
 
 
 
 
 
830	inst = devm_kzalloc(dev, sizeof(*inst), GFP_KERNEL);
831	if (!inst)
832		return -ENOMEM;
833
834	inst->dev = dev;
835	inst->desc = desc = device_get_match_data(dev);
836
837	inst->queue_proxy_region =
838		devm_platform_ioremap_resource_byname(pdev, desc->data_region_name);
 
839	if (IS_ERR(inst->queue_proxy_region))
840		return PTR_ERR(inst->queue_proxy_region);
841
842	inst->queue_state_debug_region =
843		devm_platform_ioremap_resource_byname(pdev, desc->status_region_name);
 
844	if (IS_ERR(inst->queue_state_debug_region))
845		return PTR_ERR(inst->queue_state_debug_region);
846
847	if (desc->is_sproxy) {
848		inst->queue_ctrl_region =
849			devm_platform_ioremap_resource_byname(pdev, desc->ctrl_region_name);
 
850		if (IS_ERR(inst->queue_ctrl_region))
851			return PTR_ERR(inst->queue_ctrl_region);
852	}
853
854	dev_dbg(dev, "proxy region=%p, queue_state=%p\n",
855		inst->queue_proxy_region, inst->queue_state_debug_region);
856
857	queue_count = desc->num_valid_queues;
858	if (!queue_count || queue_count > desc->queue_count) {
859		dev_crit(dev, "Invalid Number of queues %d. Max %d\n",
860			 queue_count, desc->queue_count);
861		return -ERANGE;
862	}
863	inst->num_valid_queues = queue_count;
864
865	qinst = devm_kcalloc(dev, queue_count, sizeof(*qinst), GFP_KERNEL);
866	if (!qinst)
867		return -ENOMEM;
868	inst->qinsts = qinst;
869
870	chans = devm_kcalloc(dev, queue_count, sizeof(*chans), GFP_KERNEL);
871	if (!chans)
872		return -ENOMEM;
873	inst->chans = chans;
874
875	if (desc->is_sproxy) {
876		struct ti_msgmgr_valid_queue_desc sproxy_desc;
877
878		/* All proxies may be valid in Secure Proxy instance */
879		for (i = 0; i < queue_count; i++, qinst++, chans++) {
880			sproxy_desc.queue_id = 0;
881			sproxy_desc.proxy_id = i;
882			ret = ti_msgmgr_queue_setup(i, dev, np, inst,
883						    desc, &sproxy_desc, qinst,
884						    chans);
885			if (ret)
886				return ret;
887		}
888	} else {
889		/* Only Some proxies are valid in Message Manager */
890		for (i = 0, queue_desc = desc->valid_queues;
891		     i < queue_count; i++, qinst++, chans++, queue_desc++) {
892			ret = ti_msgmgr_queue_setup(i, dev, np, inst,
893						    desc, queue_desc, qinst,
894						    chans);
895			if (ret)
896				return ret;
897		}
898	}
899
900	mbox = &inst->mbox;
901	mbox->dev = dev;
902	mbox->ops = &ti_msgmgr_chan_ops;
903	mbox->chans = inst->chans;
904	mbox->num_chans = inst->num_valid_queues;
905	mbox->txdone_irq = false;
906	mbox->txdone_poll = desc->tx_polled;
907	if (desc->tx_polled)
908		mbox->txpoll_period = desc->tx_poll_timeout_ms;
909	mbox->of_xlate = ti_msgmgr_of_xlate;
910
911	platform_set_drvdata(pdev, inst);
912	ret = devm_mbox_controller_register(dev, mbox);
913	if (ret)
914		dev_err(dev, "Failed to register mbox_controller(%d)\n", ret);
915
916	return ret;
917}
918
919static struct platform_driver ti_msgmgr_driver = {
920	.probe = ti_msgmgr_probe,
921	.driver = {
922		   .name = "ti-msgmgr",
923		   .of_match_table = of_match_ptr(ti_msgmgr_of_match),
924		   .pm = &ti_msgmgr_pm_ops,
925	},
926};
927module_platform_driver(ti_msgmgr_driver);
928
929MODULE_LICENSE("GPL v2");
930MODULE_DESCRIPTION("TI message manager driver");
931MODULE_AUTHOR("Nishanth Menon");
932MODULE_ALIAS("platform:ti-msgmgr");