Blame view

drivers/rpmsg/imx_rpmsg.c 17.6 KB
69a4933fd   Richard Zhu   rpmsg: imx: add t...
1
2
3
4
  // SPDX-License-Identifier: GPL-2.0
  /*
   * Copyright 2019 NXP
   */
b2432a660   Li Yang   rpmsg: imx: inclu...
5
  #include <linux/slab.h>
69a4933fd   Richard Zhu   rpmsg: imx: add t...
6
  #include <linux/circ_buf.h>
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
7
  #include <linux/delay.h>
69a4933fd   Richard Zhu   rpmsg: imx: add t...
8
  #include <linux/err.h>
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
9
10
11
  #ifdef CONFIG_IMX_SCU
  #include <linux/firmware/imx/sci.h>
  #endif
69a4933fd   Richard Zhu   rpmsg: imx: add t...
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  #include <linux/init.h>
  #include <linux/mailbox_client.h>
  #include <linux/module.h>
  #include <linux/notifier.h>
  #include <linux/of_device.h>
  #include <linux/of_reserved_mem.h>
  #include <linux/platform_device.h>
  #include <linux/virtio_config.h>
  #include <linux/virtio_ids.h>
  #include <linux/virtio_ring.h>
  #include <linux/imx_rpmsg.h>
  #include "rpmsg_internal.h"
  
  enum imx_rpmsg_variants {
dca4eb99e   Richard Zhu   rpmsg: imx: exten...
26
  	IMX8QM,
69a4933fd   Richard Zhu   rpmsg: imx: add t...
27
  	IMX8QXP,
dca4eb99e   Richard Zhu   rpmsg: imx: exten...
28
29
30
31
32
  	IMX8MQ,
  	IMX8MM,
  	IMX7ULP,
  	IMX7D,
  	IMX6SX,
69a4933fd   Richard Zhu   rpmsg: imx: add t...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
  };
  
  struct imx_virdev {
  	struct virtio_device vdev;
  	unsigned int vring[2];
  	struct virtqueue *vq[2];
  	int base_vq_id;
  	int num_of_vqs;
  	struct imx_rpmsg_vproc *rpdev;
  };
  
  struct imx_rpmsg_vproc {
  	struct mbox_client cl;
  	struct mbox_client cl_rxdb;
  	struct mbox_chan *tx_ch;
  	struct mbox_chan *rx_ch;
  	struct mbox_chan *rxdb_ch;
  	enum imx_rpmsg_variants variant;
  	int vdev_nums;
  	int first_notify;
  	u32 flags;
  #define MAX_VDEV_NUMS  8
  	struct imx_virdev *ivdev[MAX_VDEV_NUMS];
  	struct delayed_work rpmsg_work;
  	struct circ_buf rx_buffer;
  	spinlock_t mu_lock;
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
59
  	u32 mub_partition;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
60
61
62
  	struct notifier_block proc_nb;
  	struct platform_device *pdev;
  };
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
63
64
65
66
67
68
69
  #define SC_IRQ_GROUP_REBOOTED   5U      /* Partition reboot complete */
  
  /*
   * The time consumption by remote ready is less than 1ms in the
   * evaluation. Set the max wait timeout as 50ms here.
   */
  #define REMOTE_READY_WAIT_MAX_RETRIES	500
69a4933fd   Richard Zhu   rpmsg: imx: add t...
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
  #define RPMSG_NUM_BUFS		(512)
  #define RPMSG_BUF_SIZE		(512)
  #define RPMSG_BUFS_SPACE	(RPMSG_NUM_BUFS * RPMSG_BUF_SIZE)
  #define RPMSG_VRING_ALIGN	(4096)
  #define RPMSG_RING_SIZE	((DIV_ROUND_UP(vring_size(RPMSG_NUM_BUFS / 2, \
  				RPMSG_VRING_ALIGN), PAGE_SIZE)) * PAGE_SIZE)
  
  #define to_imx_virdev(vd) container_of(vd, struct imx_virdev, vdev)
  
  /*
   * 1: indicated that remote processor is ready from re-initialization.
   * Clear this bit after the RPMSG restore is finished at master side.
   */
  #define REMOTE_IS_READY			BIT(0)
  /* 1: Use reserved memory region as DMA pool */
  #define SPECIFIC_DMA_POOL		BIT(1)
  
  struct imx_rpmsg_vq_info {
  	__u16 num;	/* number of entries in the virtio_ring */
  	__u16 vq_id;	/* a globaly unique index of this virtqueue */
27bea1137   Richard Zhu   rpmsg: imx: enabl...
90
  	__u32 mmsg;	/* the mailbox msg transferred on the virtqueue */
69a4933fd   Richard Zhu   rpmsg: imx: add t...
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
  	void *addr;	/* address where we mapped the virtio ring */
  	struct imx_rpmsg_vproc *rpdev;
  };
  
  static u64 imx_rpmsg_get_features(struct virtio_device *vdev)
  {
  	/* VIRTIO_RPMSG_F_NS has been made private */
  	return 1 << 0;
  }
  
  static int imx_rpmsg_finalize_features(struct virtio_device *vdev)
  {
  	/* Give virtio_ring a chance to accept features */
  	vring_transport_features(vdev);
  	return 0;
  }
  
  /* kick the remote processor, and let it know which virtqueue to poke at */
  static bool imx_rpmsg_notify(struct virtqueue *vq)
  {
  	int ret;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
112
113
  	struct imx_rpmsg_vq_info *rpvq = vq->priv;
  	struct imx_rpmsg_vproc *rpdev = rpvq->rpdev;
27bea1137   Richard Zhu   rpmsg: imx: enabl...
114
  	rpvq->mmsg = rpvq->vq_id << 16;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  	/*
  	 * Send the index of the triggered virtqueue as the mu payload.
  	 * Use the timeout MU send message here.
  	 * Since that M4 core may not be loaded, and the first MSG may
  	 * not be handled by M4 when multi-vdev is enabled.
  	 * To make sure that the message wound't be discarded when M4
  	 * is running normally or in the suspend mode. Only use
  	 * the timeout mechanism by the first notify when the vdev is
  	 * registered.
  	 * ~14ms is required by M4 ready to process the MU message from
  	 * cold boot. Set the wait time 20ms here.
  	 */
  	if (unlikely(rpdev->first_notify > 0)) {
  		rpdev->first_notify--;
  		rpdev->cl.tx_tout = 20;
27bea1137   Richard Zhu   rpmsg: imx: enabl...
130
  		ret = mbox_send_message(rpdev->tx_ch, &rpvq->mmsg);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
131
132
133
134
  		if (ret < 0)
  			return false;
  	} else {
  		rpdev->cl.tx_tout = 0;
27bea1137   Richard Zhu   rpmsg: imx: enabl...
135
  		ret = mbox_send_message(rpdev->tx_ch, &rpvq->mmsg);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
136
137
138
  		if (ret < 0)
  			return false;
  	}
69a4933fd   Richard Zhu   rpmsg: imx: add t...
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
  
  	return true;
  }
  
  static struct virtqueue *rp_find_vq(struct virtio_device *vdev,
  				    unsigned int index,
  				    void (*callback)(struct virtqueue *vq),
  				    const char *name,
  				    bool ctx)
  {
  	struct imx_virdev *virdev = to_imx_virdev(vdev);
  	struct imx_rpmsg_vproc *rpdev = virdev->rpdev;
  	struct platform_device *pdev = rpdev->pdev;
  	struct device *dev = &pdev->dev;
  	struct imx_rpmsg_vq_info *rpvq;
  	struct virtqueue *vq;
  	int err;
  
  	rpvq = kmalloc(sizeof(*rpvq), GFP_KERNEL);
  	if (!rpvq)
  		return ERR_PTR(-ENOMEM);
  
  	/* ioremap'ing normal memory, so we cast away sparse's complaints */
1b0cec0c8   Li Yang   rpmsg: imx: remov...
162
  	rpvq->addr = (__force void *) ioremap(virdev->vring[index],
69a4933fd   Richard Zhu   rpmsg: imx: add t...
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
  							RPMSG_RING_SIZE);
  	if (!rpvq->addr) {
  		err = -ENOMEM;
  		goto free_rpvq;
  	}
  
  	memset_io(rpvq->addr, 0, RPMSG_RING_SIZE);
  
  	dev_dbg(dev, "vring%d: phys 0x%x, virt 0x%p
  ",
  			index, virdev->vring[index], rpvq->addr);
  
  	vq = vring_new_virtqueue(index, RPMSG_NUM_BUFS / 2, RPMSG_VRING_ALIGN,
  			vdev, true, ctx,
  			rpvq->addr,
  			imx_rpmsg_notify, callback,
  			name);
  	if (!vq) {
  		dev_err(dev, "vring_new_virtqueue failed
  ");
  		err = -ENOMEM;
  		goto unmap_vring;
  	}
  
  	virdev->vq[index] = vq;
  	vq->priv = rpvq;
  	/* system-wide unique id for this virtqueue */
  	rpvq->vq_id = virdev->base_vq_id + index;
  	rpvq->rpdev = rpdev;
  
  	return vq;
  
  unmap_vring:
  	/* iounmap normal memory, so make sparse happy */
  	iounmap((__force void __iomem *) rpvq->addr);
  free_rpvq:
  	kfree(rpvq);
  	return ERR_PTR(err);
  }
  
  static void imx_rpmsg_del_vqs(struct virtio_device *vdev)
  {
  	struct virtqueue *vq, *n;
  
  	list_for_each_entry_safe(vq, n, &vdev->vqs, list) {
  		struct imx_rpmsg_vq_info *rpvq = vq->priv;
  
  		iounmap(rpvq->addr);
  		vring_del_virtqueue(vq);
  		kfree(rpvq);
  	}
  }
  
  static int imx_rpmsg_find_vqs(struct virtio_device *vdev, unsigned int nvqs,
  		       struct virtqueue *vqs[],
  		       vq_callback_t *callbacks[],
  		       const char * const names[],
  		       const bool *ctx,
  		       struct irq_affinity *desc)
  {
  	struct imx_virdev *virdev = to_imx_virdev(vdev);
  	int i, err;
  
  	/* we maintain two virtqueues per remote processor (for RX and TX) */
  	if (nvqs != 2)
  		return -EINVAL;
  
  	for (i = 0; i < nvqs; ++i) {
  		vqs[i] = rp_find_vq(vdev, i, callbacks[i], names[i],
  				ctx ? ctx[i] : false);
  		if (IS_ERR(vqs[i])) {
  			err = PTR_ERR(vqs[i]);
  			goto error;
  		}
  	}
  
  	virdev->num_of_vqs = nvqs;
  	return 0;
  
  error:
  	imx_rpmsg_del_vqs(vdev);
  	return err;
  }
  
  static void imx_rpmsg_reset(struct virtio_device *vdev)
  {
  	dev_dbg(&vdev->dev, "reset !
  ");
  }
  
  static u8 imx_rpmsg_get_status(struct virtio_device *vdev)
  {
  	return 0;
  }
  
  static void imx_rpmsg_set_status(struct virtio_device *vdev, u8 status)
  {
  	dev_dbg(&vdev->dev, "%s new status: %d
  ", __func__, status);
  }
  
  static void imx_rpmsg_vproc_release(struct device *dev)
  {
  	/* this handler is provided so driver core doesn't yell at us */
  }
  
  static struct virtio_config_ops imx_rpmsg_config_ops = {
  	.get_features	= imx_rpmsg_get_features,
  	.finalize_features = imx_rpmsg_finalize_features,
  	.find_vqs	= imx_rpmsg_find_vqs,
  	.del_vqs	= imx_rpmsg_del_vqs,
  	.reset		= imx_rpmsg_reset,
  	.set_status	= imx_rpmsg_set_status,
  	.get_status	= imx_rpmsg_get_status,
  };
  
  static const struct of_device_id imx_rpmsg_dt_ids[] = {
dca4eb99e   Richard Zhu   rpmsg: imx: exten...
280
  	{ .compatible = "fsl,imx8qm-rpmsg", .data = (void *)IMX8QM, },
69a4933fd   Richard Zhu   rpmsg: imx: add t...
281
  	{ .compatible = "fsl,imx8qxp-rpmsg", .data = (void *)IMX8QXP, },
dca4eb99e   Richard Zhu   rpmsg: imx: exten...
282
283
284
285
286
  	{ .compatible = "fsl,imx8mq-rpmsg", .data = (void *)IMX8MQ, },
  	{ .compatible = "fsl,imx8mm-rpmsg", .data = (void *)IMX8MM, },
  	{ .compatible = "fsl,imx7ulp-rpmsg", .data = (void *)IMX7ULP, },
  	{ .compatible = "fsl,imx7d-rpmsg", .data = (void *)IMX7D, },
  	{ .compatible = "fsl,imx6sx-rpmsg", .data = (void *)IMX6SX, },
69a4933fd   Richard Zhu   rpmsg: imx: add t...
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
  	{ /* sentinel */ }
  };
  MODULE_DEVICE_TABLE(of, imx_rpmsg_dt_ids);
  
  static int set_vring_phy_buf(struct platform_device *pdev,
  		       struct imx_rpmsg_vproc *rpdev, int vdev_nums)
  {
  	struct resource *res;
  	resource_size_t size;
  	unsigned int start, end;
  	int i, ret = 0;
  
  	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
  	if (res) {
  		size = resource_size(res);
  		start = res->start;
  		end = res->start + size;
  		for (i = 0; i < vdev_nums; i++) {
  			rpdev->ivdev[i] = kzalloc(sizeof(struct imx_virdev),
  							GFP_KERNEL);
  			if (!rpdev->ivdev[i])
  				return -ENOMEM;
  
  			rpdev->ivdev[i]->vring[0] = start;
  			rpdev->ivdev[i]->vring[1] = start + 0x8000;
  			start += 0x10000;
  			if (start > end) {
  				dev_err(&pdev->dev,
  					"Too small memory size %x!
  ",
  					(u32)size);
  				ret = -EINVAL;
  				break;
  			}
  		}
  	} else {
  		return -ENOMEM;
  	}
  
  	return ret;
  }
  
  static void rpmsg_work_handler(struct work_struct *work)
  {
  	u32 message;
  	unsigned long flags;
  	struct imx_virdev *virdev;
  	struct delayed_work *dwork = to_delayed_work(work);
  	struct imx_rpmsg_vproc *rpdev = container_of(dwork,
  			struct imx_rpmsg_vproc, rpmsg_work);
  	struct circ_buf *cb = &rpdev->rx_buffer;
  	struct platform_device *pdev = rpdev->pdev;
  	struct device *dev = &pdev->dev;
  
  	spin_lock_irqsave(&rpdev->mu_lock, flags);
  	/* handle all incoming mu message */
  	while (CIRC_CNT(cb->head, cb->tail, PAGE_SIZE)) {
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
344
345
346
347
  		message = cb->buf[cb->tail];
  		message |= (cb->buf[cb->tail + 1] << 8);
  		message |= (cb->buf[cb->tail + 2] << 16);
  		message |= (cb->buf[cb->tail + 3] << 24);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
348
  		spin_unlock_irqrestore(&rpdev->mu_lock, flags);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
  		virdev = rpdev->ivdev[(message >> 16) / 2];
  
  		dev_dbg(dev, "%s msg: 0x%x
  ", __func__, message);
  		message = message >> 16;
  		message -= virdev->base_vq_id;
  
  		/*
  		 * Currently both PENDING_MSG and explicit-virtqueue-index
  		 * messaging are supported.
  		 * Whatever approach is taken, at this point message contains
  		 * the index of the vring which was just triggered.
  		 */
  		if (message  < virdev->num_of_vqs)
  			vring_interrupt(message, virdev->vq[message]);
  		spin_lock_irqsave(&rpdev->mu_lock, flags);
  		cb->tail = CIRC_ADD(cb->tail, PAGE_SIZE, 4);
  	}
  	spin_unlock_irqrestore(&rpdev->mu_lock, flags);
  }
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
  #ifdef CONFIG_IMX_SCU
  void imx_rpmsg_restore(struct imx_rpmsg_vproc *rpdev)
  {
  	int i;
  	int vdev_nums = rpdev->vdev_nums;
  
  	for (i = 0; i < vdev_nums; i++) {
  		unregister_virtio_device(&rpdev->ivdev[i]->vdev);
  		kfree(rpdev->ivdev[i]);
  	}
  
  	/* Make a double check that remote processor is ready or not */
  	for (i = 0; i < REMOTE_READY_WAIT_MAX_RETRIES; i++) {
  		if (rpdev->flags & REMOTE_IS_READY)
  			break;
  		udelay(100);
  	}
  	if (unlikely((rpdev->flags & REMOTE_IS_READY) == 0)) {
27bea1137   Richard Zhu   rpmsg: imx: enabl...
387
388
  		pr_info("Wait for remote ready timeout, use first_notify.
  ");
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
389
390
  		/*
  		 * In order to make the codes to be robust and back compatible.
27bea1137   Richard Zhu   rpmsg: imx: enabl...
391
392
393
  		 * When wait remote ready timeout, re-initialize the
  		 * first_notify to send the first kick-off message when
  		 * register the vdev.
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
  		 */
  		rpdev->first_notify = rpdev->vdev_nums;
  	}
  
  	/* Allocate and setup ivdev again to register virtio devices */
  	if (set_vring_phy_buf(rpdev->pdev, rpdev, rpdev->vdev_nums))
  		pr_err("No vring buffer.
  ");
  
  	for (i = 0; i < vdev_nums; i++) {
  		rpdev->ivdev[i]->vdev.id.device = VIRTIO_ID_RPMSG;
  		rpdev->ivdev[i]->vdev.config = &imx_rpmsg_config_ops;
  		rpdev->ivdev[i]->vdev.dev.parent = &rpdev->pdev->dev;
  		rpdev->ivdev[i]->vdev.dev.release = imx_rpmsg_vproc_release;
  		rpdev->ivdev[i]->base_vq_id = i * 2;
  		rpdev->ivdev[i]->rpdev = rpdev;
  
  		if (register_virtio_device(&rpdev->ivdev[i]->vdev))
  			pr_err("%s failed to register rpdev.
  ", __func__);
  	}
  }
69a4933fd   Richard Zhu   rpmsg: imx: add t...
416
417
418
  static int imx_rpmsg_partition_notify(struct notifier_block *nb,
  				      unsigned long event, void *group)
  {
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
419
420
421
422
423
424
425
426
427
428
429
430
  	struct imx_rpmsg_vproc *rpdev;
  
  	rpdev = container_of(nb, struct imx_rpmsg_vproc, proc_nb);
  
  	/* Ignore other irqs */
  	if (!((event & BIT(rpdev->mub_partition)) &&
  		(*(u8 *)group == SC_IRQ_GROUP_REBOOTED)))
  		return 0;
  
  	imx_rpmsg_restore(rpdev);
  	pr_info("Patition%d reset!
  ", rpdev->mub_partition);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
431
432
  	return 0;
  }
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
433
  #endif
69a4933fd   Richard Zhu   rpmsg: imx: add t...
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
  
  static void imx_rpmsg_rxdb_callback(struct mbox_client *c, void *msg)
  {
  	unsigned long flags;
  	struct imx_rpmsg_vproc *rpdev = container_of(c,
  			struct imx_rpmsg_vproc, cl);
  
  	spin_lock_irqsave(&rpdev->mu_lock, flags);
  	rpdev->flags |= REMOTE_IS_READY;
  	spin_unlock_irqrestore(&rpdev->mu_lock, flags);
  }
  
  static int imx_rpmsg_rxdb_channel_init(struct imx_rpmsg_vproc *rpdev)
  {
  	struct platform_device *pdev = rpdev->pdev;
  	struct device *dev = &pdev->dev;
  	struct mbox_client *cl;
  	int ret = 0;
  
  	cl = &rpdev->cl_rxdb;
  	cl->dev = dev;
  	cl->rx_callback = imx_rpmsg_rxdb_callback;
  
  	/*
  	 * RX door bell is used to receive the ready signal from remote
  	 * after the partition reset of A core.
  	 */
  	rpdev->rxdb_ch = mbox_request_channel_byname(cl, "rxdb");
  	if (IS_ERR(rpdev->rxdb_ch)) {
  		ret = PTR_ERR(rpdev->rxdb_ch);
27bea1137   Richard Zhu   rpmsg: imx: enabl...
464
465
  		dev_dbg(cl->dev, "failed to request mbox chan rxdb, ret %d
  ",
69a4933fd   Richard Zhu   rpmsg: imx: add t...
466
467
468
469
470
471
472
473
474
475
  			ret);
  		return ret;
  	}
  
  	return ret;
  }
  
  static void imx_rpmsg_rx_callback(struct mbox_client *c, void *msg)
  {
  	int buf_space;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
476
477
478
479
  	u32 *data = msg;
  	struct imx_rpmsg_vproc *rpdev = container_of(c,
  			struct imx_rpmsg_vproc, cl);
  	struct circ_buf *cb = &rpdev->rx_buffer;
27bea1137   Richard Zhu   rpmsg: imx: enabl...
480
  	spin_lock(&rpdev->mu_lock);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
481
  	buf_space = CIRC_SPACE(cb->head, cb->tail, PAGE_SIZE);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
482
483
484
  	if (unlikely(!buf_space)) {
  		dev_err(c->dev, "RPMSG RX overflow!
  ");
27bea1137   Richard Zhu   rpmsg: imx: enabl...
485
  		spin_unlock(&rpdev->mu_lock);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
486
487
  		return;
  	}
27bea1137   Richard Zhu   rpmsg: imx: enabl...
488
489
490
491
  	cb->buf[cb->head] = (u8) *data;
  	cb->buf[cb->head + 1] = (u8) (*data >> 8);
  	cb->buf[cb->head + 2] = (u8) (*data >> 16);
  	cb->buf[cb->head + 3] = (u8) (*data >> 24);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
492
  	cb->head = CIRC_ADD(cb->head, PAGE_SIZE, 4);
27bea1137   Richard Zhu   rpmsg: imx: enabl...
493
  	spin_unlock(&rpdev->mu_lock);
69a4933fd   Richard Zhu   rpmsg: imx: add t...
494
495
496
  
  	schedule_delayed_work(&(rpdev->rpmsg_work), 0);
  }
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
497
498
499
500
501
502
503
504
505
  static int imx_rpmsg_xtr_channel_init(struct imx_rpmsg_vproc *rpdev)
  {
  	struct platform_device *pdev = rpdev->pdev;
  	struct device *dev = &pdev->dev;
  	struct mbox_client *cl;
  	int ret = 0;
  
  	cl = &rpdev->cl;
  	cl->dev = dev;
27bea1137   Richard Zhu   rpmsg: imx: enabl...
506
  	cl->tx_block = true;
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
507
508
509
510
511
512
513
  	cl->tx_tout = 20;
  	cl->knows_txdone = false;
  	cl->rx_callback = imx_rpmsg_rx_callback;
  
  	rpdev->tx_ch = mbox_request_channel_byname(cl, "tx");
  	if (IS_ERR(rpdev->tx_ch)) {
  		ret = PTR_ERR(rpdev->tx_ch);
27bea1137   Richard Zhu   rpmsg: imx: enabl...
514
515
  		dev_dbg(cl->dev, "failed to request mbox tx chan, ret %d
  ",
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
516
517
518
519
520
521
  			ret);
  		goto err_out;
  	}
  	rpdev->rx_ch = mbox_request_channel_byname(cl, "rx");
  	if (IS_ERR(rpdev->rx_ch)) {
  		ret = PTR_ERR(rpdev->rx_ch);
27bea1137   Richard Zhu   rpmsg: imx: enabl...
522
523
  		dev_dbg(cl->dev, "failed to request mbox rx chan, ret %d
  ",
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
524
525
526
527
528
529
530
531
532
533
534
535
536
537
  			ret);
  		goto err_out;
  	}
  
  	return ret;
  
  err_out:
  	if (!IS_ERR(rpdev->tx_ch))
  		mbox_free_channel(rpdev->tx_ch);
  	if (!IS_ERR(rpdev->rx_ch))
  		mbox_free_channel(rpdev->rx_ch);
  
  	return ret;
  }
69a4933fd   Richard Zhu   rpmsg: imx: add t...
538
539
540
541
542
543
544
  static int imx_rpmsg_probe(struct platform_device *pdev)
  {
  	int j, ret = 0;
  	char *buf;
  	struct device *dev = &pdev->dev;
  	struct device_node *np = pdev->dev.of_node;
  	struct imx_rpmsg_vproc *rpdev;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
545
546
547
548
549
550
551
552
  
  	buf = devm_kzalloc(dev, PAGE_SIZE, GFP_KERNEL);
  	if (!buf)
  		return -ENOMEM;
  
  	rpdev = devm_kzalloc(dev, sizeof(*rpdev), GFP_KERNEL);
  	if (!rpdev)
  		return -ENOMEM;
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
553
  	rpdev->pdev = pdev;
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
554
  #ifdef CONFIG_IMX_SCU
69a4933fd   Richard Zhu   rpmsg: imx: add t...
555
  	rpdev->proc_nb.notifier_call = imx_rpmsg_partition_notify;
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
556
  #endif
69a4933fd   Richard Zhu   rpmsg: imx: add t...
557
558
559
560
  	rpdev->variant = (enum imx_rpmsg_variants)of_device_get_match_data(dev);
  	rpdev->rx_buffer.buf = buf;
  	rpdev->rx_buffer.head = 0;
  	rpdev->rx_buffer.tail = 0;
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
561
562
563
564
  	/* Initialize the RX/TX channels. */
  	ret = imx_rpmsg_xtr_channel_init(rpdev);
  	if (ret)
  		return ret;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
  
  	spin_lock_init(&rpdev->mu_lock);
  	INIT_DELAYED_WORK(&(rpdev->rpmsg_work), rpmsg_work_handler);
  	ret = of_property_read_u32(np, "vdev-nums", &rpdev->vdev_nums);
  	if (ret)
  		rpdev->vdev_nums = 1;
  	if (rpdev->vdev_nums > MAX_VDEV_NUMS) {
  		dev_err(dev, "vdev-nums exceed the max %d
  ", MAX_VDEV_NUMS);
  		ret = -EINVAL;
  		goto err_chl;
  	}
  	rpdev->first_notify = rpdev->vdev_nums;
  
  	ret = set_vring_phy_buf(pdev, rpdev, rpdev->vdev_nums);
  	if (ret) {
  		dev_err(dev, "No vring buffer.
  ");
  		ret = -ENOMEM;
  		goto err_chl;
  	}
  	if (of_reserved_mem_device_init(dev)) {
  		dev_dbg(dev, "dev doesn't have specific DMA pool.
  ");
  		rpdev->flags &= (~SPECIFIC_DMA_POOL);
  	} else {
  		rpdev->flags |= SPECIFIC_DMA_POOL;
  	}
  
  	for (j = 0; j < rpdev->vdev_nums; j++) {
  		dev_dbg(dev, "%s rpdev vdev%d: vring0 0x%x, vring1 0x%x
  ",
  			 __func__, rpdev->vdev_nums,
  			 rpdev->ivdev[j]->vring[0],
  			 rpdev->ivdev[j]->vring[1]);
  		rpdev->ivdev[j]->vdev.id.device = VIRTIO_ID_RPMSG;
  		rpdev->ivdev[j]->vdev.config = &imx_rpmsg_config_ops;
69a4933fd   Richard Zhu   rpmsg: imx: add t...
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
  		rpdev->ivdev[j]->vdev.dev.parent = &pdev->dev;
  		rpdev->ivdev[j]->vdev.dev.release = imx_rpmsg_vproc_release;
  		rpdev->ivdev[j]->base_vq_id = j * 2;
  		rpdev->ivdev[j]->rpdev = rpdev;
  
  		ret = register_virtio_device(&rpdev->ivdev[j]->vdev);
  		if (ret) {
  			dev_err(dev, "%s failed to register rpdev: %d
  ",
  					__func__, ret);
  			goto err_out;
  		}
  	}
  	/* Initialize the RX doorbell channel. */
  	ret = imx_rpmsg_rxdb_channel_init(rpdev);
  	if (ret)
  		goto err_out;
d08f787e4   Richard Zhu   rpmsg: imx: bug f...
619
  	platform_set_drvdata(pdev, rpdev);
3b3c92c72   Robin Gong   rpmsg: imx_rpmsg:...
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
  #ifdef CONFIG_IMX_SCU
  	if (rpdev->variant == IMX8QXP || rpdev->variant == IMX8QM) {
  		/* Get muB partition id and enable irq in SCFW then */
  		if (of_property_read_u32(np, "mub-partition",
  					&rpdev->mub_partition))
  			rpdev->mub_partition = 3; /* default partition 3 */
  
  		ret = imx_scu_irq_group_enable(SC_IRQ_GROUP_REBOOTED,
  					      BIT(rpdev->mub_partition),
  					      true);
  		if (ret) {
  			dev_warn(&pdev->dev, "Enable irq failed.
  ");
  			return ret;
  		}
  
  		ret = imx_scu_irq_register_notifier(&rpdev->proc_nb);
  		if (ret) {
  			imx_scu_irq_group_enable(SC_IRQ_GROUP_REBOOTED,
  						BIT(rpdev->mub_partition),
  						false);
  			dev_warn(&pdev->dev, "reqister scu notifier failed.
  ");
  			return ret;
  		}
  	}
  #endif
69a4933fd   Richard Zhu   rpmsg: imx: add t...
647
648
649
650
651
652
  	return ret;
  
  err_out:
  	if (rpdev->flags & SPECIFIC_DMA_POOL)
  		of_reserved_mem_device_release(dev);
  err_chl:
69a4933fd   Richard Zhu   rpmsg: imx: add t...
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
  	if (!IS_ERR(rpdev->tx_ch))
  		mbox_free_channel(rpdev->tx_ch);
  	if (!IS_ERR(rpdev->rx_ch))
  		mbox_free_channel(rpdev->rx_ch);
  	return ret;
  }
  
  static struct platform_driver imx_rpmsg_driver = {
  	.driver = {
  		   .owner = THIS_MODULE,
  		   .name = "imx-rpmsg",
  		   .of_match_table = imx_rpmsg_dt_ids,
  		   },
  	.probe = imx_rpmsg_probe,
  };
  
  static int __init imx_rpmsg_init(void)
  {
  	int ret;
  
  	ret = platform_driver_register(&imx_rpmsg_driver);
  	if (ret)
  		pr_err("Unable to initialize rpmsg driver
  ");
  	else
  		pr_info("imx rpmsg driver is registered.
  ");
  
  	return ret;
  }
  
  MODULE_DESCRIPTION("iMX remote processor messaging virtio device");
  MODULE_LICENSE("GPL v2");
  arch_initcall(imx_rpmsg_init);