Linux Audio

Check our new training course

Loading...
v4.17
  1// SPDX-License-Identifier: GPL-2.0
  2/*
  3 * Texas Instruments' Message Manager Driver
  4 *
  5 * Copyright (C) 2015-2017 Texas Instruments Incorporated - http://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/**
 29 * struct ti_msgmgr_valid_queue_desc - SoC valid queues meant for this processor
 30 * @queue_id:	Queue Number for this path
 31 * @proxy_id:	Proxy ID representing the processor in SoC
 32 * @is_tx:	Is this a receive path?
 33 */
 34struct ti_msgmgr_valid_queue_desc {
 35	u8 queue_id;
 36	u8 proxy_id;
 37	bool is_tx;
 38};
 39
 40/**
 41 * struct ti_msgmgr_desc - Description of message manager integration
 42 * @queue_count:	Number of Queues
 43 * @max_message_size:	Message size in bytes
 44 * @max_messages:	Number of messages
 45 * @q_slices:		Number of queue engines
 46 * @q_proxies:		Number of queue proxies per page
 47 * @data_first_reg:	First data register for proxy data region
 48 * @data_last_reg:	Last data register for proxy data region
 49 * @tx_polled:		Do I need to use polled mechanism for tx
 50 * @tx_poll_timeout_ms: Timeout in ms if polled
 51 * @valid_queues:	List of Valid queues that the processor can access
 52 * @num_valid_queues:	Number of valid queues
 53 *
 54 * This structure is used in of match data to describe how integration
 55 * for a specific compatible SoC is done.
 56 */
 57struct ti_msgmgr_desc {
 58	u8 queue_count;
 59	u8 max_message_size;
 60	u8 max_messages;
 61	u8 q_slices;
 62	u8 q_proxies;
 63	u8 data_first_reg;
 64	u8 data_last_reg;
 65	bool tx_polled;
 66	int tx_poll_timeout_ms;
 67	const struct ti_msgmgr_valid_queue_desc *valid_queues;
 68	int num_valid_queues;
 69};
 70
 71/**
 72 * struct ti_queue_inst - Description of a queue instance
 73 * @name:	Queue Name
 74 * @queue_id:	Queue Identifier as mapped on SoC
 75 * @proxy_id:	Proxy Identifier as mapped on SoC
 76 * @irq:	IRQ for Rx Queue
 77 * @is_tx:	'true' if transmit queue, else, 'false'
 78 * @queue_buff_start: First register of Data Buffer
 79 * @queue_buff_end: Last (or confirmation) register of Data buffer
 80 * @queue_state: Queue status register
 81 * @chan:	Mailbox channel
 82 * @rx_buff:	Receive buffer pointer allocated at probe, max_message_size
 83 */
 84struct ti_queue_inst {
 85	char name[30];
 86	u8 queue_id;
 87	u8 proxy_id;
 88	int irq;
 89	bool is_tx;
 90	void __iomem *queue_buff_start;
 91	void __iomem *queue_buff_end;
 92	void __iomem *queue_state;
 93	struct mbox_chan *chan;
 94	u32 *rx_buff;
 95};
 96
 97/**
 98 * struct ti_msgmgr_inst - Description of a Message Manager Instance
 99 * @dev:	device pointer corresponding to the Message Manager instance
100 * @desc:	Description of the SoC integration
101 * @queue_proxy_region:	Queue proxy region where queue buffers are located
102 * @queue_state_debug_region:	Queue status register regions
103 * @num_valid_queues:	Number of valid queues defined for the processor
104 *		Note: other queues are probably reserved for other processors
105 *		in the SoC.
106 * @qinsts:	Array of valid Queue Instances for the Processor
107 * @mbox:	Mailbox Controller
108 * @chans:	Array for channels corresponding to the Queue Instances.
109 */
110struct ti_msgmgr_inst {
111	struct device *dev;
112	const struct ti_msgmgr_desc *desc;
113	void __iomem *queue_proxy_region;
114	void __iomem *queue_state_debug_region;
115	u8 num_valid_queues;
116	struct ti_queue_inst *qinsts;
117	struct mbox_controller mbox;
118	struct mbox_chan *chans;
119};
120
121/**
122 * ti_msgmgr_queue_get_num_messages() - Get the number of pending messages
123 * @qinst:	Queue instance for which we check the number of pending messages
124 *
125 * Return: number of messages pending in the queue (0 == no pending messages)
126 */
127static inline int ti_msgmgr_queue_get_num_messages(struct ti_queue_inst *qinst)
128{
129	u32 val;
130
131	/*
132	 * We cannot use relaxed operation here - update may happen
133	 * real-time.
134	 */
135	val = readl(qinst->queue_state) & Q_STATE_ENTRY_COUNT_MASK;
136	val >>= __ffs(Q_STATE_ENTRY_COUNT_MASK);
137
138	return val;
139}
140
141/**
142 * ti_msgmgr_queue_rx_interrupt() - Interrupt handler for receive Queue
143 * @irq:	Interrupt number
144 * @p:		Channel Pointer
145 *
146 * Return: -EINVAL if there is no instance
147 * IRQ_NONE if the interrupt is not ours.
148 * IRQ_HANDLED if the rx interrupt was successfully handled.
149 */
150static irqreturn_t ti_msgmgr_queue_rx_interrupt(int irq, void *p)
151{
152	struct mbox_chan *chan = p;
153	struct device *dev = chan->mbox->dev;
154	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
155	struct ti_queue_inst *qinst = chan->con_priv;
156	const struct ti_msgmgr_desc *desc;
157	int msg_count, num_words;
158	struct ti_msgmgr_message message;
159	void __iomem *data_reg;
160	u32 *word_data;
161
162	if (WARN_ON(!inst)) {
163		dev_err(dev, "no platform drv data??\n");
164		return -EINVAL;
165	}
166
167	/* Do I have an invalid interrupt source? */
168	if (qinst->is_tx) {
169		dev_err(dev, "Cannot handle rx interrupt on tx channel %s\n",
170			qinst->name);
171		return IRQ_NONE;
172	}
173
174	/* Do I actually have messages to read? */
175	msg_count = ti_msgmgr_queue_get_num_messages(qinst);
176	if (!msg_count) {
177		/* Shared IRQ? */
178		dev_dbg(dev, "Spurious event - 0 pending data!\n");
179		return IRQ_NONE;
180	}
181
182	/*
183	 * I have no idea about the protocol being used to communicate with the
184	 * remote producer - 0 could be valid data, so I wont make a judgement
185	 * of how many bytes I should be reading. Let the client figure this
186	 * out.. I just read the full message and pass it on..
187	 */
188	desc = inst->desc;
189	message.len = desc->max_message_size;
190	message.buf = (u8 *)qinst->rx_buff;
191
192	/*
193	 * NOTE about register access involved here:
194	 * the hardware block is implemented with 32bit access operations and no
195	 * support for data splitting.  We don't want the hardware to misbehave
196	 * with sub 32bit access - For example: if the last register read is
197	 * split into byte wise access, it can result in the queue getting
198	 * stuck or indeterminate behavior. An out of order read operation may
199	 * result in weird data results as well.
200	 * Hence, we do not use memcpy_fromio or __ioread32_copy here, instead
201	 * we depend on readl for the purpose.
202	 *
203	 * Also note that the final register read automatically marks the
204	 * queue message as read.
205	 */
206	for (data_reg = qinst->queue_buff_start, word_data = qinst->rx_buff,
207	     num_words = (desc->max_message_size / sizeof(u32));
208	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
209		*word_data = readl(data_reg);
210
211	/*
212	 * Last register read automatically clears the IRQ if only 1 message
213	 * is pending - so send the data up the stack..
214	 * NOTE: Client is expected to be as optimal as possible, since
215	 * we invoke the handler in IRQ context.
216	 */
217	mbox_chan_received_data(chan, (void *)&message);
218
219	return IRQ_HANDLED;
220}
221
222/**
223 * ti_msgmgr_queue_peek_data() - Peek to see if there are any rx messages.
224 * @chan:	Channel Pointer
225 *
226 * Return: 'true' if there is pending rx data, 'false' if there is none.
227 */
228static bool ti_msgmgr_queue_peek_data(struct mbox_chan *chan)
229{
230	struct ti_queue_inst *qinst = chan->con_priv;
231	int msg_count;
232
233	if (qinst->is_tx)
234		return false;
235
236	msg_count = ti_msgmgr_queue_get_num_messages(qinst);
237
238	return msg_count ? true : false;
239}
240
241/**
242 * ti_msgmgr_last_tx_done() - See if all the tx messages are sent
243 * @chan:	Channel pointer
244 *
245 * Return: 'true' is no pending tx data, 'false' if there are any.
246 */
247static bool ti_msgmgr_last_tx_done(struct mbox_chan *chan)
248{
249	struct ti_queue_inst *qinst = chan->con_priv;
250	int msg_count;
251
252	if (!qinst->is_tx)
253		return false;
254
255	msg_count = ti_msgmgr_queue_get_num_messages(qinst);
256
257	/* if we have any messages pending.. */
258	return msg_count ? false : true;
259}
260
261/**
262 * ti_msgmgr_send_data() - Send data
263 * @chan:	Channel Pointer
264 * @data:	ti_msgmgr_message * Message Pointer
265 *
266 * Return: 0 if all goes good, else appropriate error messages.
267 */
268static int ti_msgmgr_send_data(struct mbox_chan *chan, void *data)
269{
270	struct device *dev = chan->mbox->dev;
271	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
272	const struct ti_msgmgr_desc *desc;
273	struct ti_queue_inst *qinst = chan->con_priv;
274	int num_words, trail_bytes;
275	struct ti_msgmgr_message *message = data;
276	void __iomem *data_reg;
277	u32 *word_data;
278
279	if (WARN_ON(!inst)) {
280		dev_err(dev, "no platform drv data??\n");
281		return -EINVAL;
282	}
283	desc = inst->desc;
284
285	if (desc->max_message_size < message->len) {
286		dev_err(dev, "Queue %s message length %zu > max %d\n",
287			qinst->name, message->len, desc->max_message_size);
288		return -EINVAL;
289	}
290
291	/* NOTE: Constraints similar to rx path exists here as well */
292	for (data_reg = qinst->queue_buff_start,
293	     num_words = message->len / sizeof(u32),
294	     word_data = (u32 *)message->buf;
295	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
296		writel(*word_data, data_reg);
297
298	trail_bytes = message->len % sizeof(u32);
299	if (trail_bytes) {
300		u32 data_trail = *word_data;
301
302		/* Ensure all unused data is 0 */
303		data_trail &= 0xFFFFFFFF >> (8 * (sizeof(u32) - trail_bytes));
304		writel(data_trail, data_reg);
305		data_reg++;
306	}
307	/*
308	 * 'data_reg' indicates next register to write. If we did not already
309	 * write on tx complete reg(last reg), we must do so for transmit
310	 */
311	if (data_reg <= qinst->queue_buff_end)
312		writel(0, qinst->queue_buff_end);
313
314	return 0;
315}
316
317/**
318 * ti_msgmgr_queue_startup() - Startup queue
319 * @chan:	Channel pointer
320 *
321 * Return: 0 if all goes good, else return corresponding error message
322 */
323static int ti_msgmgr_queue_startup(struct mbox_chan *chan)
324{
325	struct ti_queue_inst *qinst = chan->con_priv;
326	struct device *dev = chan->mbox->dev;
327	int ret;
328
329	if (!qinst->is_tx) {
330		/*
331		 * With the expectation that the IRQ might be shared in SoC
332		 */
333		ret = request_irq(qinst->irq, ti_msgmgr_queue_rx_interrupt,
334				  IRQF_SHARED, qinst->name, chan);
335		if (ret) {
336			dev_err(dev, "Unable to get IRQ %d on %s(res=%d)\n",
337				qinst->irq, qinst->name, ret);
338			return ret;
339		}
340	}
341
342	return 0;
343}
344
345/**
346 * ti_msgmgr_queue_shutdown() - Shutdown the queue
347 * @chan:	Channel pointer
348 */
349static void ti_msgmgr_queue_shutdown(struct mbox_chan *chan)
350{
351	struct ti_queue_inst *qinst = chan->con_priv;
352
353	if (!qinst->is_tx)
354		free_irq(qinst->irq, chan);
355}
356
357/**
358 * ti_msgmgr_of_xlate() - Translation of phandle to queue
359 * @mbox:	Mailbox controller
360 * @p:		phandle pointer
361 *
362 * Return: Mailbox channel corresponding to the queue, else return error
363 * pointer.
364 */
365static struct mbox_chan *ti_msgmgr_of_xlate(struct mbox_controller *mbox,
366					    const struct of_phandle_args *p)
367{
368	struct ti_msgmgr_inst *inst;
369	int req_qid, req_pid;
370	struct ti_queue_inst *qinst;
371	int i;
372
373	inst = container_of(mbox, struct ti_msgmgr_inst, mbox);
374	if (WARN_ON(!inst))
375		return ERR_PTR(-EINVAL);
376
377	/* #mbox-cells is 2 */
378	if (p->args_count != 2) {
379		dev_err(inst->dev, "Invalid arguments in dt[%d] instead of 2\n",
380			p->args_count);
381		return ERR_PTR(-EINVAL);
382	}
383	req_qid = p->args[0];
384	req_pid = p->args[1];
385
386	for (qinst = inst->qinsts, i = 0; i < inst->num_valid_queues;
387	     i++, qinst++) {
388		if (req_qid == qinst->queue_id && req_pid == qinst->proxy_id)
389			return qinst->chan;
390	}
391
392	dev_err(inst->dev, "Queue ID %d, Proxy ID %d is wrong on %s\n",
393		req_qid, req_pid, p->np->name);
394	return ERR_PTR(-ENOENT);
395}
396
397/**
398 * ti_msgmgr_queue_setup() - Setup data structures for each queue instance
399 * @idx:	index of the queue
400 * @dev:	pointer to the message manager device
401 * @np:		pointer to the of node
402 * @inst:	Queue instance pointer
403 * @d:		Message Manager instance description data
404 * @qd:		Queue description data
405 * @qinst:	Queue instance pointer
406 * @chan:	pointer to mailbox channel
407 *
408 * Return: 0 if all went well, else return corresponding error
409 */
410static int ti_msgmgr_queue_setup(int idx, struct device *dev,
411				 struct device_node *np,
412				 struct ti_msgmgr_inst *inst,
413				 const struct ti_msgmgr_desc *d,
414				 const struct ti_msgmgr_valid_queue_desc *qd,
415				 struct ti_queue_inst *qinst,
416				 struct mbox_chan *chan)
417{
418	qinst->proxy_id = qd->proxy_id;
419	qinst->queue_id = qd->queue_id;
420
421	if (qinst->queue_id > d->queue_count) {
422		dev_err(dev, "Queue Data [idx=%d] queuid %d > %d\n",
423			idx, qinst->queue_id, d->queue_count);
424		return -ERANGE;
425	}
426
427	qinst->is_tx = qd->is_tx;
428	snprintf(qinst->name, sizeof(qinst->name), "%s %s_%03d_%03d",
429		 dev_name(dev), qinst->is_tx ? "tx" : "rx", qinst->queue_id,
430		 qinst->proxy_id);
431
432	if (!qinst->is_tx) {
433		char of_rx_irq_name[7];
434
435		snprintf(of_rx_irq_name, sizeof(of_rx_irq_name),
436			 "rx_%03d", qinst->queue_id);
437
438		qinst->irq = of_irq_get_byname(np, of_rx_irq_name);
439		if (qinst->irq < 0) {
440			dev_crit(dev,
441				 "[%d]QID %d PID %d:No IRQ[%s]: %d\n",
442				 idx, qinst->queue_id, qinst->proxy_id,
443				 of_rx_irq_name, qinst->irq);
444			return qinst->irq;
445		}
446		/* Allocate usage buffer for rx */
447		qinst->rx_buff = devm_kzalloc(dev,
448					      d->max_message_size, GFP_KERNEL);
449		if (!qinst->rx_buff)
450			return -ENOMEM;
451	}
452
453	qinst->queue_buff_start = inst->queue_proxy_region +
454	    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id, d->data_first_reg);
455	qinst->queue_buff_end = inst->queue_proxy_region +
456	    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id, d->data_last_reg);
457	qinst->queue_state = inst->queue_state_debug_region +
458	    Q_STATE_OFFSET(qinst->queue_id);
459	qinst->chan = chan;
460
461	chan->con_priv = qinst;
462
463	dev_dbg(dev, "[%d] qidx=%d pidx=%d irq=%d q_s=%p q_e = %p\n",
464		idx, qinst->queue_id, qinst->proxy_id, qinst->irq,
465		qinst->queue_buff_start, qinst->queue_buff_end);
466	return 0;
467}
468
469/* Queue operations */
470static const struct mbox_chan_ops ti_msgmgr_chan_ops = {
471	.startup = ti_msgmgr_queue_startup,
472	.shutdown = ti_msgmgr_queue_shutdown,
473	.peek_data = ti_msgmgr_queue_peek_data,
474	.last_tx_done = ti_msgmgr_last_tx_done,
475	.send_data = ti_msgmgr_send_data,
476};
477
478/* Keystone K2G SoC integration details */
479static const struct ti_msgmgr_valid_queue_desc k2g_valid_queues[] = {
480	{.queue_id = 0, .proxy_id = 0, .is_tx = true,},
481	{.queue_id = 1, .proxy_id = 0, .is_tx = true,},
482	{.queue_id = 2, .proxy_id = 0, .is_tx = true,},
483	{.queue_id = 3, .proxy_id = 0, .is_tx = true,},
484	{.queue_id = 5, .proxy_id = 2, .is_tx = false,},
485	{.queue_id = 56, .proxy_id = 1, .is_tx = true,},
486	{.queue_id = 57, .proxy_id = 2, .is_tx = false,},
487	{.queue_id = 58, .proxy_id = 3, .is_tx = true,},
488	{.queue_id = 59, .proxy_id = 4, .is_tx = true,},
489	{.queue_id = 60, .proxy_id = 5, .is_tx = true,},
490	{.queue_id = 61, .proxy_id = 6, .is_tx = true,},
491};
492
493static const struct ti_msgmgr_desc k2g_desc = {
494	.queue_count = 64,
495	.max_message_size = 64,
496	.max_messages = 128,
497	.q_slices = 1,
498	.q_proxies = 1,
499	.data_first_reg = 16,
500	.data_last_reg = 31,
501	.tx_polled = false,
502	.valid_queues = k2g_valid_queues,
503	.num_valid_queues = ARRAY_SIZE(k2g_valid_queues),
504};
505
506static const struct of_device_id ti_msgmgr_of_match[] = {
507	{.compatible = "ti,k2g-message-manager", .data = &k2g_desc},
508	{ /* Sentinel */ }
509};
510MODULE_DEVICE_TABLE(of, ti_msgmgr_of_match);
511
512static int ti_msgmgr_probe(struct platform_device *pdev)
513{
514	struct device *dev = &pdev->dev;
515	const struct of_device_id *of_id;
516	struct device_node *np;
517	struct resource *res;
518	const struct ti_msgmgr_desc *desc;
519	struct ti_msgmgr_inst *inst;
520	struct ti_queue_inst *qinst;
521	struct mbox_controller *mbox;
522	struct mbox_chan *chans;
523	int queue_count;
524	int i;
525	int ret = -EINVAL;
526	const struct ti_msgmgr_valid_queue_desc *queue_desc;
527
528	if (!dev->of_node) {
529		dev_err(dev, "no OF information\n");
530		return -EINVAL;
531	}
532	np = dev->of_node;
533
534	of_id = of_match_device(ti_msgmgr_of_match, dev);
535	if (!of_id) {
536		dev_err(dev, "OF data missing\n");
537		return -EINVAL;
538	}
539	desc = of_id->data;
540
541	inst = devm_kzalloc(dev, sizeof(*inst), GFP_KERNEL);
542	if (!inst)
543		return -ENOMEM;
544
545	inst->dev = dev;
546	inst->desc = desc;
547
548	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
549					   "queue_proxy_region");
550	inst->queue_proxy_region = devm_ioremap_resource(dev, res);
551	if (IS_ERR(inst->queue_proxy_region))
552		return PTR_ERR(inst->queue_proxy_region);
553
554	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
555					   "queue_state_debug_region");
556	inst->queue_state_debug_region = devm_ioremap_resource(dev, res);
557	if (IS_ERR(inst->queue_state_debug_region))
558		return PTR_ERR(inst->queue_state_debug_region);
559
560	dev_dbg(dev, "proxy region=%p, queue_state=%p\n",
561		inst->queue_proxy_region, inst->queue_state_debug_region);
562
563	queue_count = desc->num_valid_queues;
564	if (!queue_count || queue_count > desc->queue_count) {
565		dev_crit(dev, "Invalid Number of queues %d. Max %d\n",
566			 queue_count, desc->queue_count);
567		return -ERANGE;
568	}
569	inst->num_valid_queues = queue_count;
570
571	qinst = devm_kzalloc(dev, sizeof(*qinst) * queue_count, GFP_KERNEL);
572	if (!qinst)
573		return -ENOMEM;
574	inst->qinsts = qinst;
575
576	chans = devm_kzalloc(dev, sizeof(*chans) * queue_count, GFP_KERNEL);
577	if (!chans)
578		return -ENOMEM;
579	inst->chans = chans;
580
581	for (i = 0, queue_desc = desc->valid_queues;
582	     i < queue_count; i++, qinst++, chans++, queue_desc++) {
583		ret = ti_msgmgr_queue_setup(i, dev, np, inst,
584					    desc, queue_desc, qinst, chans);
585		if (ret)
586			return ret;
587	}
588
589	mbox = &inst->mbox;
590	mbox->dev = dev;
591	mbox->ops = &ti_msgmgr_chan_ops;
592	mbox->chans = inst->chans;
593	mbox->num_chans = inst->num_valid_queues;
594	mbox->txdone_irq = false;
595	mbox->txdone_poll = desc->tx_polled;
596	if (desc->tx_polled)
597		mbox->txpoll_period = desc->tx_poll_timeout_ms;
598	mbox->of_xlate = ti_msgmgr_of_xlate;
599
600	platform_set_drvdata(pdev, inst);
601	ret = mbox_controller_register(mbox);
602	if (ret)
603		dev_err(dev, "Failed to register mbox_controller(%d)\n", ret);
604
605	return ret;
606}
607
608static int ti_msgmgr_remove(struct platform_device *pdev)
609{
610	struct ti_msgmgr_inst *inst;
611
612	inst = platform_get_drvdata(pdev);
613	mbox_controller_unregister(&inst->mbox);
614
615	return 0;
616}
617
618static struct platform_driver ti_msgmgr_driver = {
619	.probe = ti_msgmgr_probe,
620	.remove = ti_msgmgr_remove,
621	.driver = {
622		   .name = "ti-msgmgr",
623		   .of_match_table = of_match_ptr(ti_msgmgr_of_match),
624	},
625};
626module_platform_driver(ti_msgmgr_driver);
627
628MODULE_LICENSE("GPL v2");
629MODULE_DESCRIPTION("TI message manager driver");
630MODULE_AUTHOR("Nishanth Menon");
631MODULE_ALIAS("platform:ti-msgmgr");
v4.6
 
  1/*
  2 * Texas Instruments' Message Manager Driver
  3 *
  4 * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
  5 *	Nishanth Menon
  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 * This program is distributed "as is" WITHOUT ANY WARRANTY of any
 12 * kind, whether express or implied; without even the implied warranty
 13 * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 14 * GNU General Public License for more details.
 15 */
 16
 17#define pr_fmt(fmt) "%s: " fmt, __func__
 18
 19#include <linux/device.h>
 20#include <linux/interrupt.h>
 21#include <linux/io.h>
 22#include <linux/kernel.h>
 23#include <linux/mailbox_controller.h>
 24#include <linux/module.h>
 25#include <linux/of_device.h>
 26#include <linux/of.h>
 27#include <linux/of_irq.h>
 28#include <linux/platform_device.h>
 29#include <linux/soc/ti/ti-msgmgr.h>
 30
 31#define Q_DATA_OFFSET(proxy, queue, reg)	\
 32		     ((0x10000 * (proxy)) + (0x80 * (queue)) + ((reg) * 4))
 33#define Q_STATE_OFFSET(queue)			((queue) * 0x4)
 34#define Q_STATE_ENTRY_COUNT_MASK		(0xFFF000)
 35
 36/**
 37 * struct ti_msgmgr_valid_queue_desc - SoC valid queues meant for this processor
 38 * @queue_id:	Queue Number for this path
 39 * @proxy_id:	Proxy ID representing the processor in SoC
 40 * @is_tx:	Is this a receive path?
 41 */
 42struct ti_msgmgr_valid_queue_desc {
 43	u8 queue_id;
 44	u8 proxy_id;
 45	bool is_tx;
 46};
 47
 48/**
 49 * struct ti_msgmgr_desc - Description of message manager integration
 50 * @queue_count:	Number of Queues
 51 * @max_message_size:	Message size in bytes
 52 * @max_messages:	Number of messages
 53 * @q_slices:		Number of queue engines
 54 * @q_proxies:		Number of queue proxies per page
 55 * @data_first_reg:	First data register for proxy data region
 56 * @data_last_reg:	Last data register for proxy data region
 57 * @tx_polled:		Do I need to use polled mechanism for tx
 58 * @tx_poll_timeout_ms: Timeout in ms if polled
 59 * @valid_queues:	List of Valid queues that the processor can access
 60 * @num_valid_queues:	Number of valid queues
 61 *
 62 * This structure is used in of match data to describe how integration
 63 * for a specific compatible SoC is done.
 64 */
 65struct ti_msgmgr_desc {
 66	u8 queue_count;
 67	u8 max_message_size;
 68	u8 max_messages;
 69	u8 q_slices;
 70	u8 q_proxies;
 71	u8 data_first_reg;
 72	u8 data_last_reg;
 73	bool tx_polled;
 74	int tx_poll_timeout_ms;
 75	const struct ti_msgmgr_valid_queue_desc *valid_queues;
 76	int num_valid_queues;
 77};
 78
 79/**
 80 * struct ti_queue_inst - Description of a queue instance
 81 * @name:	Queue Name
 82 * @queue_id:	Queue Identifier as mapped on SoC
 83 * @proxy_id:	Proxy Identifier as mapped on SoC
 84 * @irq:	IRQ for Rx Queue
 85 * @is_tx:	'true' if transmit queue, else, 'false'
 86 * @queue_buff_start: First register of Data Buffer
 87 * @queue_buff_end: Last (or confirmation) register of Data buffer
 88 * @queue_state: Queue status register
 89 * @chan:	Mailbox channel
 90 * @rx_buff:	Receive buffer pointer allocated at probe, max_message_size
 91 */
 92struct ti_queue_inst {
 93	char name[30];
 94	u8 queue_id;
 95	u8 proxy_id;
 96	int irq;
 97	bool is_tx;
 98	void __iomem *queue_buff_start;
 99	void __iomem *queue_buff_end;
100	void __iomem *queue_state;
101	struct mbox_chan *chan;
102	u32 *rx_buff;
103};
104
105/**
106 * struct ti_msgmgr_inst - Description of a Message Manager Instance
107 * @dev:	device pointer corresponding to the Message Manager instance
108 * @desc:	Description of the SoC integration
109 * @queue_proxy_region:	Queue proxy region where queue buffers are located
110 * @queue_state_debug_region:	Queue status register regions
111 * @num_valid_queues:	Number of valid queues defined for the processor
112 *		Note: other queues are probably reserved for other processors
113 *		in the SoC.
114 * @qinsts:	Array of valid Queue Instances for the Processor
115 * @mbox:	Mailbox Controller
116 * @chans:	Array for channels corresponding to the Queue Instances.
117 */
118struct ti_msgmgr_inst {
119	struct device *dev;
120	const struct ti_msgmgr_desc *desc;
121	void __iomem *queue_proxy_region;
122	void __iomem *queue_state_debug_region;
123	u8 num_valid_queues;
124	struct ti_queue_inst *qinsts;
125	struct mbox_controller mbox;
126	struct mbox_chan *chans;
127};
128
129/**
130 * ti_msgmgr_queue_get_num_messages() - Get the number of pending messages
131 * @qinst:	Queue instance for which we check the number of pending messages
132 *
133 * Return: number of messages pending in the queue (0 == no pending messages)
134 */
135static inline int ti_msgmgr_queue_get_num_messages(struct ti_queue_inst *qinst)
136{
137	u32 val;
138
139	/*
140	 * We cannot use relaxed operation here - update may happen
141	 * real-time.
142	 */
143	val = readl(qinst->queue_state) & Q_STATE_ENTRY_COUNT_MASK;
144	val >>= __ffs(Q_STATE_ENTRY_COUNT_MASK);
145
146	return val;
147}
148
149/**
150 * ti_msgmgr_queue_rx_interrupt() - Interrupt handler for receive Queue
151 * @irq:	Interrupt number
152 * @p:		Channel Pointer
153 *
154 * Return: -EINVAL if there is no instance
155 * IRQ_NONE if the interrupt is not ours.
156 * IRQ_HANDLED if the rx interrupt was successfully handled.
157 */
158static irqreturn_t ti_msgmgr_queue_rx_interrupt(int irq, void *p)
159{
160	struct mbox_chan *chan = p;
161	struct device *dev = chan->mbox->dev;
162	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
163	struct ti_queue_inst *qinst = chan->con_priv;
164	const struct ti_msgmgr_desc *desc;
165	int msg_count, num_words;
166	struct ti_msgmgr_message message;
167	void __iomem *data_reg;
168	u32 *word_data;
169
170	if (WARN_ON(!inst)) {
171		dev_err(dev, "no platform drv data??\n");
172		return -EINVAL;
173	}
174
175	/* Do I have an invalid interrupt source? */
176	if (qinst->is_tx) {
177		dev_err(dev, "Cannot handle rx interrupt on tx channel %s\n",
178			qinst->name);
179		return IRQ_NONE;
180	}
181
182	/* Do I actually have messages to read? */
183	msg_count = ti_msgmgr_queue_get_num_messages(qinst);
184	if (!msg_count) {
185		/* Shared IRQ? */
186		dev_dbg(dev, "Spurious event - 0 pending data!\n");
187		return IRQ_NONE;
188	}
189
190	/*
191	 * I have no idea about the protocol being used to communicate with the
192	 * remote producer - 0 could be valid data, so I wont make a judgement
193	 * of how many bytes I should be reading. Let the client figure this
194	 * out.. I just read the full message and pass it on..
195	 */
196	desc = inst->desc;
197	message.len = desc->max_message_size;
198	message.buf = (u8 *)qinst->rx_buff;
199
200	/*
201	 * NOTE about register access involved here:
202	 * the hardware block is implemented with 32bit access operations and no
203	 * support for data splitting.  We don't want the hardware to misbehave
204	 * with sub 32bit access - For example: if the last register read is
205	 * split into byte wise access, it can result in the queue getting
206	 * stuck or indeterminate behavior. An out of order read operation may
207	 * result in weird data results as well.
208	 * Hence, we do not use memcpy_fromio or __ioread32_copy here, instead
209	 * we depend on readl for the purpose.
210	 *
211	 * Also note that the final register read automatically marks the
212	 * queue message as read.
213	 */
214	for (data_reg = qinst->queue_buff_start, word_data = qinst->rx_buff,
215	     num_words = (desc->max_message_size / sizeof(u32));
216	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
217		*word_data = readl(data_reg);
218
219	/*
220	 * Last register read automatically clears the IRQ if only 1 message
221	 * is pending - so send the data up the stack..
222	 * NOTE: Client is expected to be as optimal as possible, since
223	 * we invoke the handler in IRQ context.
224	 */
225	mbox_chan_received_data(chan, (void *)&message);
226
227	return IRQ_HANDLED;
228}
229
230/**
231 * ti_msgmgr_queue_peek_data() - Peek to see if there are any rx messages.
232 * @chan:	Channel Pointer
233 *
234 * Return: 'true' if there is pending rx data, 'false' if there is none.
235 */
236static bool ti_msgmgr_queue_peek_data(struct mbox_chan *chan)
237{
238	struct ti_queue_inst *qinst = chan->con_priv;
239	int msg_count;
240
241	if (qinst->is_tx)
242		return false;
243
244	msg_count = ti_msgmgr_queue_get_num_messages(qinst);
245
246	return msg_count ? true : false;
247}
248
249/**
250 * ti_msgmgr_last_tx_done() - See if all the tx messages are sent
251 * @chan:	Channel pointer
252 *
253 * Return: 'true' is no pending tx data, 'false' if there are any.
254 */
255static bool ti_msgmgr_last_tx_done(struct mbox_chan *chan)
256{
257	struct ti_queue_inst *qinst = chan->con_priv;
258	int msg_count;
259
260	if (!qinst->is_tx)
261		return false;
262
263	msg_count = ti_msgmgr_queue_get_num_messages(qinst);
264
265	/* if we have any messages pending.. */
266	return msg_count ? false : true;
267}
268
269/**
270 * ti_msgmgr_send_data() - Send data
271 * @chan:	Channel Pointer
272 * @data:	ti_msgmgr_message * Message Pointer
273 *
274 * Return: 0 if all goes good, else appropriate error messages.
275 */
276static int ti_msgmgr_send_data(struct mbox_chan *chan, void *data)
277{
278	struct device *dev = chan->mbox->dev;
279	struct ti_msgmgr_inst *inst = dev_get_drvdata(dev);
280	const struct ti_msgmgr_desc *desc;
281	struct ti_queue_inst *qinst = chan->con_priv;
282	int num_words, trail_bytes;
283	struct ti_msgmgr_message *message = data;
284	void __iomem *data_reg;
285	u32 *word_data;
286
287	if (WARN_ON(!inst)) {
288		dev_err(dev, "no platform drv data??\n");
289		return -EINVAL;
290	}
291	desc = inst->desc;
292
293	if (desc->max_message_size < message->len) {
294		dev_err(dev, "Queue %s message length %d > max %d\n",
295			qinst->name, message->len, desc->max_message_size);
296		return -EINVAL;
297	}
298
299	/* NOTE: Constraints similar to rx path exists here as well */
300	for (data_reg = qinst->queue_buff_start,
301	     num_words = message->len / sizeof(u32),
302	     word_data = (u32 *)message->buf;
303	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
304		writel(*word_data, data_reg);
305
306	trail_bytes = message->len % sizeof(u32);
307	if (trail_bytes) {
308		u32 data_trail = *word_data;
309
310		/* Ensure all unused data is 0 */
311		data_trail &= 0xFFFFFFFF >> (8 * (sizeof(u32) - trail_bytes));
312		writel(data_trail, data_reg);
313		data_reg++;
314	}
315	/*
316	 * 'data_reg' indicates next register to write. If we did not already
317	 * write on tx complete reg(last reg), we must do so for transmit
318	 */
319	if (data_reg <= qinst->queue_buff_end)
320		writel(0, qinst->queue_buff_end);
321
322	return 0;
323}
324
325/**
326 * ti_msgmgr_queue_startup() - Startup queue
327 * @chan:	Channel pointer
328 *
329 * Return: 0 if all goes good, else return corresponding error message
330 */
331static int ti_msgmgr_queue_startup(struct mbox_chan *chan)
332{
333	struct ti_queue_inst *qinst = chan->con_priv;
334	struct device *dev = chan->mbox->dev;
335	int ret;
336
337	if (!qinst->is_tx) {
338		/*
339		 * With the expectation that the IRQ might be shared in SoC
340		 */
341		ret = request_irq(qinst->irq, ti_msgmgr_queue_rx_interrupt,
342				  IRQF_SHARED, qinst->name, chan);
343		if (ret) {
344			dev_err(dev, "Unable to get IRQ %d on %s(res=%d)\n",
345				qinst->irq, qinst->name, ret);
346			return ret;
347		}
348	}
349
350	return 0;
351}
352
353/**
354 * ti_msgmgr_queue_shutdown() - Shutdown the queue
355 * @chan:	Channel pointer
356 */
357static void ti_msgmgr_queue_shutdown(struct mbox_chan *chan)
358{
359	struct ti_queue_inst *qinst = chan->con_priv;
360
361	if (!qinst->is_tx)
362		free_irq(qinst->irq, chan);
363}
364
365/**
366 * ti_msgmgr_of_xlate() - Translation of phandle to queue
367 * @mbox:	Mailbox controller
368 * @p:		phandle pointer
369 *
370 * Return: Mailbox channel corresponding to the queue, else return error
371 * pointer.
372 */
373static struct mbox_chan *ti_msgmgr_of_xlate(struct mbox_controller *mbox,
374					    const struct of_phandle_args *p)
375{
376	struct ti_msgmgr_inst *inst;
377	int req_qid, req_pid;
378	struct ti_queue_inst *qinst;
379	int i;
380
381	inst = container_of(mbox, struct ti_msgmgr_inst, mbox);
382	if (WARN_ON(!inst))
383		return ERR_PTR(-EINVAL);
384
385	/* #mbox-cells is 2 */
386	if (p->args_count != 2) {
387		dev_err(inst->dev, "Invalid arguments in dt[%d] instead of 2\n",
388			p->args_count);
389		return ERR_PTR(-EINVAL);
390	}
391	req_qid = p->args[0];
392	req_pid = p->args[1];
393
394	for (qinst = inst->qinsts, i = 0; i < inst->num_valid_queues;
395	     i++, qinst++) {
396		if (req_qid == qinst->queue_id && req_pid == qinst->proxy_id)
397			return qinst->chan;
398	}
399
400	dev_err(inst->dev, "Queue ID %d, Proxy ID %d is wrong on %s\n",
401		req_qid, req_pid, p->np->name);
402	return ERR_PTR(-ENOENT);
403}
404
405/**
406 * ti_msgmgr_queue_setup() - Setup data structures for each queue instance
407 * @idx:	index of the queue
408 * @dev:	pointer to the message manager device
409 * @np:		pointer to the of node
410 * @inst:	Queue instance pointer
411 * @d:		Message Manager instance description data
412 * @qd:		Queue description data
413 * @qinst:	Queue instance pointer
414 * @chan:	pointer to mailbox channel
415 *
416 * Return: 0 if all went well, else return corresponding error
417 */
418static int ti_msgmgr_queue_setup(int idx, struct device *dev,
419				 struct device_node *np,
420				 struct ti_msgmgr_inst *inst,
421				 const struct ti_msgmgr_desc *d,
422				 const struct ti_msgmgr_valid_queue_desc *qd,
423				 struct ti_queue_inst *qinst,
424				 struct mbox_chan *chan)
425{
426	qinst->proxy_id = qd->proxy_id;
427	qinst->queue_id = qd->queue_id;
428
429	if (qinst->queue_id > d->queue_count) {
430		dev_err(dev, "Queue Data [idx=%d] queuid %d > %d\n",
431			idx, qinst->queue_id, d->queue_count);
432		return -ERANGE;
433	}
434
435	qinst->is_tx = qd->is_tx;
436	snprintf(qinst->name, sizeof(qinst->name), "%s %s_%03d_%03d",
437		 dev_name(dev), qinst->is_tx ? "tx" : "rx", qinst->queue_id,
438		 qinst->proxy_id);
439
440	if (!qinst->is_tx) {
441		char of_rx_irq_name[7];
442
443		snprintf(of_rx_irq_name, sizeof(of_rx_irq_name),
444			 "rx_%03d", qinst->queue_id);
445
446		qinst->irq = of_irq_get_byname(np, of_rx_irq_name);
447		if (qinst->irq < 0) {
448			dev_crit(dev,
449				 "[%d]QID %d PID %d:No IRQ[%s]: %d\n",
450				 idx, qinst->queue_id, qinst->proxy_id,
451				 of_rx_irq_name, qinst->irq);
452			return qinst->irq;
453		}
454		/* Allocate usage buffer for rx */
455		qinst->rx_buff = devm_kzalloc(dev,
456					      d->max_message_size, GFP_KERNEL);
457		if (!qinst->rx_buff)
458			return -ENOMEM;
459	}
460
461	qinst->queue_buff_start = inst->queue_proxy_region +
462	    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id, d->data_first_reg);
463	qinst->queue_buff_end = inst->queue_proxy_region +
464	    Q_DATA_OFFSET(qinst->proxy_id, qinst->queue_id, d->data_last_reg);
465	qinst->queue_state = inst->queue_state_debug_region +
466	    Q_STATE_OFFSET(qinst->queue_id);
467	qinst->chan = chan;
468
469	chan->con_priv = qinst;
470
471	dev_dbg(dev, "[%d] qidx=%d pidx=%d irq=%d q_s=%p q_e = %p\n",
472		idx, qinst->queue_id, qinst->proxy_id, qinst->irq,
473		qinst->queue_buff_start, qinst->queue_buff_end);
474	return 0;
475}
476
477/* Queue operations */
478static const struct mbox_chan_ops ti_msgmgr_chan_ops = {
479	.startup = ti_msgmgr_queue_startup,
480	.shutdown = ti_msgmgr_queue_shutdown,
481	.peek_data = ti_msgmgr_queue_peek_data,
482	.last_tx_done = ti_msgmgr_last_tx_done,
483	.send_data = ti_msgmgr_send_data,
484};
485
486/* Keystone K2G SoC integration details */
487static const struct ti_msgmgr_valid_queue_desc k2g_valid_queues[] = {
488	{.queue_id = 0, .proxy_id = 0, .is_tx = true,},
489	{.queue_id = 1, .proxy_id = 0, .is_tx = true,},
490	{.queue_id = 2, .proxy_id = 0, .is_tx = true,},
491	{.queue_id = 3, .proxy_id = 0, .is_tx = true,},
492	{.queue_id = 5, .proxy_id = 2, .is_tx = false,},
493	{.queue_id = 56, .proxy_id = 1, .is_tx = true,},
494	{.queue_id = 57, .proxy_id = 2, .is_tx = false,},
495	{.queue_id = 58, .proxy_id = 3, .is_tx = true,},
496	{.queue_id = 59, .proxy_id = 4, .is_tx = true,},
497	{.queue_id = 60, .proxy_id = 5, .is_tx = true,},
498	{.queue_id = 61, .proxy_id = 6, .is_tx = true,},
499};
500
501static const struct ti_msgmgr_desc k2g_desc = {
502	.queue_count = 64,
503	.max_message_size = 64,
504	.max_messages = 128,
505	.q_slices = 1,
506	.q_proxies = 1,
507	.data_first_reg = 16,
508	.data_last_reg = 31,
509	.tx_polled = false,
510	.valid_queues = k2g_valid_queues,
511	.num_valid_queues = ARRAY_SIZE(k2g_valid_queues),
512};
513
514static const struct of_device_id ti_msgmgr_of_match[] = {
515	{.compatible = "ti,k2g-message-manager", .data = &k2g_desc},
516	{ /* Sentinel */ }
517};
518MODULE_DEVICE_TABLE(of, ti_msgmgr_of_match);
519
520static int ti_msgmgr_probe(struct platform_device *pdev)
521{
522	struct device *dev = &pdev->dev;
523	const struct of_device_id *of_id;
524	struct device_node *np;
525	struct resource *res;
526	const struct ti_msgmgr_desc *desc;
527	struct ti_msgmgr_inst *inst;
528	struct ti_queue_inst *qinst;
529	struct mbox_controller *mbox;
530	struct mbox_chan *chans;
531	int queue_count;
532	int i;
533	int ret = -EINVAL;
534	const struct ti_msgmgr_valid_queue_desc *queue_desc;
535
536	if (!dev->of_node) {
537		dev_err(dev, "no OF information\n");
538		return -EINVAL;
539	}
540	np = dev->of_node;
541
542	of_id = of_match_device(ti_msgmgr_of_match, dev);
543	if (!of_id) {
544		dev_err(dev, "OF data missing\n");
545		return -EINVAL;
546	}
547	desc = of_id->data;
548
549	inst = devm_kzalloc(dev, sizeof(*inst), GFP_KERNEL);
550	if (!inst)
551		return -ENOMEM;
552
553	inst->dev = dev;
554	inst->desc = desc;
555
556	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
557					   "queue_proxy_region");
558	inst->queue_proxy_region = devm_ioremap_resource(dev, res);
559	if (IS_ERR(inst->queue_proxy_region))
560		return PTR_ERR(inst->queue_proxy_region);
561
562	res = platform_get_resource_byname(pdev, IORESOURCE_MEM,
563					   "queue_state_debug_region");
564	inst->queue_state_debug_region = devm_ioremap_resource(dev, res);
565	if (IS_ERR(inst->queue_state_debug_region))
566		return PTR_ERR(inst->queue_state_debug_region);
567
568	dev_dbg(dev, "proxy region=%p, queue_state=%p\n",
569		inst->queue_proxy_region, inst->queue_state_debug_region);
570
571	queue_count = desc->num_valid_queues;
572	if (!queue_count || queue_count > desc->queue_count) {
573		dev_crit(dev, "Invalid Number of queues %d. Max %d\n",
574			 queue_count, desc->queue_count);
575		return -ERANGE;
576	}
577	inst->num_valid_queues = queue_count;
578
579	qinst = devm_kzalloc(dev, sizeof(*qinst) * queue_count, GFP_KERNEL);
580	if (!qinst)
581		return -ENOMEM;
582	inst->qinsts = qinst;
583
584	chans = devm_kzalloc(dev, sizeof(*chans) * queue_count, GFP_KERNEL);
585	if (!chans)
586		return -ENOMEM;
587	inst->chans = chans;
588
589	for (i = 0, queue_desc = desc->valid_queues;
590	     i < queue_count; i++, qinst++, chans++, queue_desc++) {
591		ret = ti_msgmgr_queue_setup(i, dev, np, inst,
592					    desc, queue_desc, qinst, chans);
593		if (ret)
594			return ret;
595	}
596
597	mbox = &inst->mbox;
598	mbox->dev = dev;
599	mbox->ops = &ti_msgmgr_chan_ops;
600	mbox->chans = inst->chans;
601	mbox->num_chans = inst->num_valid_queues;
602	mbox->txdone_irq = false;
603	mbox->txdone_poll = desc->tx_polled;
604	if (desc->tx_polled)
605		mbox->txpoll_period = desc->tx_poll_timeout_ms;
606	mbox->of_xlate = ti_msgmgr_of_xlate;
607
608	platform_set_drvdata(pdev, inst);
609	ret = mbox_controller_register(mbox);
610	if (ret)
611		dev_err(dev, "Failed to register mbox_controller(%d)\n", ret);
612
613	return ret;
614}
615
616static int ti_msgmgr_remove(struct platform_device *pdev)
617{
618	struct ti_msgmgr_inst *inst;
619
620	inst = platform_get_drvdata(pdev);
621	mbox_controller_unregister(&inst->mbox);
622
623	return 0;
624}
625
626static struct platform_driver ti_msgmgr_driver = {
627	.probe = ti_msgmgr_probe,
628	.remove = ti_msgmgr_remove,
629	.driver = {
630		   .name = "ti-msgmgr",
631		   .of_match_table = of_match_ptr(ti_msgmgr_of_match),
632	},
633};
634module_platform_driver(ti_msgmgr_driver);
635
636MODULE_LICENSE("GPL v2");
637MODULE_DESCRIPTION("TI message manager driver");
638MODULE_AUTHOR("Nishanth Menon");
639MODULE_ALIAS("platform:ti-msgmgr");