summaryrefslogtreecommitdiff
path: root/drivers/mailbox/rk3368-mailbox.c
blob: f006a546f51fa9424cbe5b00bfffaa081f845e4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
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
280
281
282
283
284
285
286
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
/*
 * Copyright (c) 2017, Fuzhou Rockchip Electronics Co., Ltd
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 */

#include <linux/interrupt.h>
#include <linux/io.h>
#include <linux/kernel.h>
#include <linux/mailbox_controller.h>
#include <linux/module.h>
#include <linux/of_device.h>
#include <linux/platform_device.h>
#include <linux/slab.h>
#include <linux/clk.h>

#include <soc/rockchip/rk3368-mailbox.h>
#include <soc/rockchip/scpi.h>

#define MAILBOX_VERSION			"V1.00"

#define MAILBOX_A2B_INTEN		0x00
#define MAILBOX_A2B_STATUS		0x04
#define MAILBOX_A2B_CMD(x)		(0x08 + (x) * 8)
#define MAILBOX_A2B_DAT(x)		(0x0c + (x) * 8)

#define MAILBOX_B2A_INTEN		0x28
#define MAILBOX_B2A_STATUS		0x2C
#define MAILBOX_B2A_CMD(x)		(0x30 + (x) * 8)
#define MAILBOX_B2A_DAT(x)		(0x34 + (x) * 8)

#define MAILBOX_ATOMIC_LOCK(x)		(0x100 + (x) * 8)

/* A2B: 0 - 2k */
#define A2B_BUF(size, idx)		((idx) * (size))
/* B2A: 2k - 4k */
#define B2A_BUF(size, idx)		(((idx) + 4) * (size))

struct rk3368_mbox_drv_data {
	int num_chans;
};

struct rk3368_mbox_chan {
	int idx;
	struct rk3368_mbox_msg *msg;
	struct rk3368_mbox *mb;
};

struct rk3368_mbox {
	struct mbox_controller mbox;
	struct clk *pclk;
	void __iomem *mbox_base;
	/* The base address of share memory to transfer data */
	void __iomem *buf_base;
	/* The maximum size of buf for each channel */
	u32 buf_size;
	struct rk3368_mbox_chan *chans;
};

#define MBOX_CHAN_NUMS	4
int idx_map_irq[MBOX_CHAN_NUMS] = {0, 0, 0, 0};

static inline int chan_to_idx(struct rk3368_mbox *mb,
			      struct mbox_chan *chan)
{
	return (chan - mb->mbox.chans);
}

static int rk3368_mbox_send_data(struct mbox_chan *chan, void *data)
{
	struct rk3368_mbox *mb = dev_get_drvdata(chan->mbox->dev);
	struct rk3368_mbox_msg *msg = data;
	int idx = chan_to_idx(mb, chan);

	if (!msg)
		return -EINVAL;

	if ((msg->tx_size > mb->buf_size) ||
	    (msg->rx_size > mb->buf_size)) {
		dev_err(mb->mbox.dev, "Transmit size over buf size(%d)\n",
			mb->buf_size);
		return -EINVAL;
	}

	dev_dbg(mb->mbox.dev, "Chan[%d]: A2B message, cmd 0x%08x\n",
		idx, msg->cmd);

	mb->chans[idx].msg = msg;

	if (msg->tx_buf)
		memcpy(mb->buf_base + A2B_BUF(mb->buf_size, idx),
		       msg->tx_buf, msg->tx_size);

	writel_relaxed(msg->cmd, mb->mbox_base + MAILBOX_A2B_CMD(idx));
	writel_relaxed(msg->rx_size, mb->mbox_base + MAILBOX_A2B_DAT(idx));

	return 0;
}

static int rk3368_mbox_startup(struct mbox_chan *chan)
{
	return 0;
}

static void rk3368_mbox_shutdown(struct mbox_chan *chan)
{
	struct rk3368_mbox *mb = dev_get_drvdata(chan->mbox->dev);
	int idx = chan_to_idx(mb, chan);

	mb->chans[idx].msg = NULL;
}

static struct mbox_chan_ops rk3368_mbox_chan_ops = {
	.send_data	= rk3368_mbox_send_data,
	.startup	= rk3368_mbox_startup,
	.shutdown	= rk3368_mbox_shutdown,
};

static irqreturn_t rk3368_mbox_irq(int irq, void *dev_id)
{
	int idx;
	struct rk3368_mbox *mb = (struct rk3368_mbox *)dev_id;
	u32 status = readl_relaxed(mb->mbox_base + MAILBOX_B2A_STATUS);

	for (idx = 0; idx < mb->mbox.num_chans; idx++) {
		if ((status & (1 << idx)) && (irq == idx_map_irq[idx])) {
			/* Clear mbox interrupt */
			writel_relaxed(1 << idx,
				       mb->mbox_base + MAILBOX_B2A_STATUS);
			return IRQ_WAKE_THREAD;
		}
	}

	return IRQ_NONE;
}

static irqreturn_t rk3368_mbox_isr(int irq, void *dev_id)
{
	int idx;
	struct rk3368_mbox_msg *msg = NULL;
	struct rk3368_mbox *mb = (struct rk3368_mbox *)dev_id;

	for (idx = 0; idx < mb->mbox.num_chans; idx++) {
		if (irq != idx_map_irq[idx])
			continue;

		msg = mb->chans[idx].msg;
		if (!msg) {
			dev_err(mb->mbox.dev,
				"Chan[%d]: B2A message is NULL\n", idx);
			break; /* spurious */
		}

		if (msg->rx_buf)
			memcpy(msg->rx_buf,
			       mb->buf_base + B2A_BUF(mb->buf_size, idx),
			       msg->rx_size);

		mbox_chan_received_data(&mb->mbox.chans[idx], msg);

		dev_dbg(mb->mbox.dev, "Chan[%d]: B2A message, cmd 0x%08x\n",
			idx, msg->cmd);

		break;
	}

	return IRQ_HANDLED;
}

static const struct rk3368_mbox_drv_data rk3368_drv_data = {
	.num_chans = 4,
};

static const struct of_device_id rk3368_mbox_of_match[] = {
	{
		.compatible = "rockchip,rk3368-mbox-legacy",
		.data = &rk3368_drv_data,
	},
	{ },
};
MODULE_DEVICE_TABLE(of, rockchp_mbox_of_match);

#ifdef CONFIG_PM
static int rk3368_mbox_suspend(struct platform_device *pdev,
			       pm_message_t state)
{
	struct rk3368_mbox *mb = platform_get_drvdata(pdev);

	if (scpi_sys_set_mcu_state_suspend())
		dev_err(mb->mbox.dev, "scpi_sys_set_mcu_state_suspend timeout.\n");
	return 0;
}

static int rk3368_mbox_resume(struct platform_device *pdev)
{
	struct rk3368_mbox *mb = platform_get_drvdata(pdev);

	writel_relaxed((1 << mb->mbox.num_chans) - 1,
		       mb->mbox_base + MAILBOX_B2A_INTEN);

	if (scpi_sys_set_mcu_state_resume())
		dev_err(mb->mbox.dev, "scpi_sys_set_mcu_state_resume timeout.\n");
	return 0;
}
#endif /* CONFIG_PM */

static int rk3368_mbox_probe(struct platform_device *pdev)
{
	struct rk3368_mbox *mb;
	const struct of_device_id *match;
	const struct rk3368_mbox_drv_data *drv_data;
	struct resource *res;
	int ret, irq, i;

	dev_info(&pdev->dev, "rk3368-mailbox initialized, version: %s\n",
		 MAILBOX_VERSION);

	if (!pdev->dev.of_node)
		return -ENODEV;

	match = of_match_node(rk3368_mbox_of_match, pdev->dev.of_node);
	drv_data = (const struct rk3368_mbox_drv_data *)match->data;

	mb = devm_kzalloc(&pdev->dev, sizeof(*mb), GFP_KERNEL);
	if (!mb)
		return -ENOMEM;

	mb->chans = devm_kcalloc(&pdev->dev, drv_data->num_chans,
				 sizeof(*mb->chans), GFP_KERNEL);
	if (!mb->chans)
		return -ENOMEM;

	mb->mbox.chans = devm_kcalloc(&pdev->dev, drv_data->num_chans,
				      sizeof(*mb->mbox.chans), GFP_KERNEL);
	if (!mb->mbox.chans)
		return -ENOMEM;

	platform_set_drvdata(pdev, mb);

	mb->mbox.dev = &pdev->dev;
	mb->mbox.num_chans = drv_data->num_chans;
	mb->mbox.ops = &rk3368_mbox_chan_ops;
	mb->mbox.txdone_irq = true;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	if (!res)
		return -ENODEV;

	mb->mbox_base = devm_ioremap_resource(&pdev->dev, res);
	if (!mb->mbox_base)
		return -ENOMEM;

	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	if (!res)
		return -ENODEV;

	/* Each channel has two buffers for A2B and B2A */
	mb->buf_size = resource_size(res) / (drv_data->num_chans * 2);
	mb->buf_base = devm_ioremap_resource(&pdev->dev, res);
	if (!mb->buf_base)
		return -ENOMEM;

	mb->pclk = devm_clk_get(&pdev->dev, "pclk_mailbox");
	if (IS_ERR(mb->pclk)) {
		ret = PTR_ERR(mb->pclk);
		dev_err(&pdev->dev, "failed to get pclk_mailbox clock: %d\n",
			ret);
		return ret;
	}

	ret = clk_prepare_enable(mb->pclk);
	if (ret) {
		dev_err(&pdev->dev, "failed to enable pclk: %d\n", ret);
		return ret;
	}

	for (i = 0; i < mb->mbox.num_chans; i++) {
		irq = platform_get_irq(pdev, i);
		if (irq < 0)
			return irq;

		ret = devm_request_threaded_irq(&pdev->dev, irq,
						rk3368_mbox_irq,
						rk3368_mbox_isr, IRQF_ONESHOT,
						dev_name(&pdev->dev), mb);
		if (ret < 0)
			return ret;

		mb->chans[i].idx = i;
		mb->chans[i].mb = mb;
		mb->chans[i].msg = NULL;
		idx_map_irq[i] = irq;
	}

	/* Enable all B2A interrupts */
	writel_relaxed((1 << mb->mbox.num_chans) - 1,
		       mb->mbox_base + MAILBOX_B2A_INTEN);

	ret = mbox_controller_register(&mb->mbox);
	if (ret < 0)
		dev_err(&pdev->dev, "Failed to register mailbox: %d\n", ret);

	return ret;
}

static int rk3368_mbox_remove(struct platform_device *pdev)
{
	struct rk3368_mbox *mb = platform_get_drvdata(pdev);

	mbox_controller_unregister(&mb->mbox);

	return 0;
}

static struct platform_driver rk3368_mbox_driver = {
	.probe	= rk3368_mbox_probe,
	.remove	= rk3368_mbox_remove,
#ifdef CONFIG_PM
	.suspend = rk3368_mbox_suspend,
	.resume	= rk3368_mbox_resume,
#endif /* CONFIG_PM */
	.driver = {
		.name = "rk3368-mailbox",
		.of_match_table = of_match_ptr(rk3368_mbox_of_match),
	},
};

static int __init rk3368_mbox_init(void)
{
	return platform_driver_register(&rk3368_mbox_driver);
}
subsys_initcall(rk3368_mbox_init);