1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (c) 2019, Linaro Ltd
5 #include <linux/clk-provider.h>
6 #include <linux/interrupt.h>
8 #include <linux/mailbox_client.h>
9 #include <linux/module.h>
10 #include <linux/of_platform.h>
11 #include <linux/platform_device.h>
12 #include <linux/thermal.h>
13 #include <linux/slab.h>
14 #include <linux/soc/qcom/qcom_aoss.h>
16 #define QMP_DESC_MAGIC 0x0
17 #define QMP_DESC_VERSION 0x4
18 #define QMP_DESC_FEATURES 0x8
20 /* AOP-side offsets */
21 #define QMP_DESC_UCORE_LINK_STATE 0xc
22 #define QMP_DESC_UCORE_LINK_STATE_ACK 0x10
23 #define QMP_DESC_UCORE_CH_STATE 0x14
24 #define QMP_DESC_UCORE_CH_STATE_ACK 0x18
25 #define QMP_DESC_UCORE_MBOX_SIZE 0x1c
26 #define QMP_DESC_UCORE_MBOX_OFFSET 0x20
28 /* Linux-side offsets */
29 #define QMP_DESC_MCORE_LINK_STATE 0x24
30 #define QMP_DESC_MCORE_LINK_STATE_ACK 0x28
31 #define QMP_DESC_MCORE_CH_STATE 0x2c
32 #define QMP_DESC_MCORE_CH_STATE_ACK 0x30
33 #define QMP_DESC_MCORE_MBOX_SIZE 0x34
34 #define QMP_DESC_MCORE_MBOX_OFFSET 0x38
36 #define QMP_STATE_UP GENMASK(15, 0)
37 #define QMP_STATE_DOWN GENMASK(31, 16)
39 #define QMP_MAGIC 0x4d41494c /* mail */
42 /* 64 bytes is enough to store the requests and provides padding to 4 bytes */
43 #define QMP_MSG_LEN 64
45 #define QMP_NUM_COOLING_RESOURCES 2
47 static bool qmp_cdev_max_state = 1;
49 struct qmp_cooling_device {
50 struct thermal_cooling_device *cdev;
57 * struct qmp - driver state for QMP implementation
58 * @msgram: iomem referencing the message RAM used for communication
59 * @dev: reference to QMP device
60 * @mbox_client: mailbox client used to ring the doorbell on transmit
61 * @mbox_chan: mailbox channel used to ring the doorbell on transmit
62 * @offset: offset within @msgram where messages should be written
63 * @size: maximum size of the messages to be transmitted
64 * @event: wait_queue for synchronization with the IRQ
65 * @tx_lock: provides synchronization between multiple callers of qmp_send()
66 * @qdss_clk: QDSS clock hw struct
67 * @cooling_devs: thermal cooling devices
73 struct mbox_client mbox_client;
74 struct mbox_chan *mbox_chan;
79 wait_queue_head_t event;
83 struct clk_hw qdss_clk;
84 struct qmp_cooling_device *cooling_devs;
87 static void qmp_kick(struct qmp *qmp)
89 mbox_send_message(qmp->mbox_chan, NULL);
90 mbox_client_txdone(qmp->mbox_chan, 0);
93 static bool qmp_magic_valid(struct qmp *qmp)
95 return readl(qmp->msgram + QMP_DESC_MAGIC) == QMP_MAGIC;
98 static bool qmp_link_acked(struct qmp *qmp)
100 return readl(qmp->msgram + QMP_DESC_MCORE_LINK_STATE_ACK) == QMP_STATE_UP;
103 static bool qmp_mcore_channel_acked(struct qmp *qmp)
105 return readl(qmp->msgram + QMP_DESC_MCORE_CH_STATE_ACK) == QMP_STATE_UP;
108 static bool qmp_ucore_channel_up(struct qmp *qmp)
110 return readl(qmp->msgram + QMP_DESC_UCORE_CH_STATE) == QMP_STATE_UP;
113 static int qmp_open(struct qmp *qmp)
118 if (!qmp_magic_valid(qmp)) {
119 dev_err(qmp->dev, "QMP magic doesn't match\n");
123 val = readl(qmp->msgram + QMP_DESC_VERSION);
124 if (val != QMP_VERSION) {
125 dev_err(qmp->dev, "unsupported QMP version %d\n", val);
129 qmp->offset = readl(qmp->msgram + QMP_DESC_MCORE_MBOX_OFFSET);
130 qmp->size = readl(qmp->msgram + QMP_DESC_MCORE_MBOX_SIZE);
132 dev_err(qmp->dev, "invalid mailbox size\n");
136 /* Ack remote core's link state */
137 val = readl(qmp->msgram + QMP_DESC_UCORE_LINK_STATE);
138 writel(val, qmp->msgram + QMP_DESC_UCORE_LINK_STATE_ACK);
140 /* Set local core's link state to up */
141 writel(QMP_STATE_UP, qmp->msgram + QMP_DESC_MCORE_LINK_STATE);
145 ret = wait_event_timeout(qmp->event, qmp_link_acked(qmp), HZ);
147 dev_err(qmp->dev, "ucore didn't ack link\n");
148 goto timeout_close_link;
151 writel(QMP_STATE_UP, qmp->msgram + QMP_DESC_MCORE_CH_STATE);
155 ret = wait_event_timeout(qmp->event, qmp_ucore_channel_up(qmp), HZ);
157 dev_err(qmp->dev, "ucore didn't open channel\n");
158 goto timeout_close_channel;
161 /* Ack remote core's channel state */
162 writel(QMP_STATE_UP, qmp->msgram + QMP_DESC_UCORE_CH_STATE_ACK);
166 ret = wait_event_timeout(qmp->event, qmp_mcore_channel_acked(qmp), HZ);
168 dev_err(qmp->dev, "ucore didn't ack channel\n");
169 goto timeout_close_channel;
174 timeout_close_channel:
175 writel(QMP_STATE_DOWN, qmp->msgram + QMP_DESC_MCORE_CH_STATE);
178 writel(QMP_STATE_DOWN, qmp->msgram + QMP_DESC_MCORE_LINK_STATE);
184 static void qmp_close(struct qmp *qmp)
186 writel(QMP_STATE_DOWN, qmp->msgram + QMP_DESC_MCORE_CH_STATE);
187 writel(QMP_STATE_DOWN, qmp->msgram + QMP_DESC_MCORE_LINK_STATE);
191 static irqreturn_t qmp_intr(int irq, void *data)
193 struct qmp *qmp = data;
195 wake_up_all(&qmp->event);
200 static bool qmp_message_empty(struct qmp *qmp)
202 return readl(qmp->msgram + qmp->offset) == 0;
206 * qmp_send() - send a message to the AOSS
208 * @fmt: format string for message to be sent
209 * @...: arguments for the format string
211 * Transmit message to AOSS and wait for the AOSS to acknowledge the message.
212 * data must not be longer than the mailbox size. Access is synchronized by
213 * this implementation.
215 * Return: 0 on success, negative errno on failure
217 int qmp_send(struct qmp *qmp, const char *fmt, ...)
219 char buf[QMP_MSG_LEN];
225 if (WARN_ON(IS_ERR_OR_NULL(qmp) || !fmt))
228 memset(buf, 0, sizeof(buf));
230 len = vsnprintf(buf, sizeof(buf), fmt, args);
233 if (WARN_ON(len >= sizeof(buf)))
236 mutex_lock(&qmp->tx_lock);
238 /* The message RAM only implements 32-bit accesses */
239 __iowrite32_copy(qmp->msgram + qmp->offset + sizeof(u32),
240 buf, sizeof(buf) / sizeof(u32));
241 writel(sizeof(buf), qmp->msgram + qmp->offset);
243 /* Read back length to confirm data written in message RAM */
244 readl(qmp->msgram + qmp->offset);
247 time_left = wait_event_interruptible_timeout(qmp->event,
248 qmp_message_empty(qmp), HZ);
250 dev_err(qmp->dev, "ucore did not ack channel\n");
253 /* Clear message from buffer */
254 writel(0, qmp->msgram + qmp->offset);
259 mutex_unlock(&qmp->tx_lock);
263 EXPORT_SYMBOL_GPL(qmp_send);
265 static int qmp_qdss_clk_prepare(struct clk_hw *hw)
267 static const char *buf = "{class: clock, res: qdss, val: 1}";
268 struct qmp *qmp = container_of(hw, struct qmp, qdss_clk);
270 return qmp_send(qmp, buf);
273 static void qmp_qdss_clk_unprepare(struct clk_hw *hw)
275 static const char *buf = "{class: clock, res: qdss, val: 0}";
276 struct qmp *qmp = container_of(hw, struct qmp, qdss_clk);
281 static const struct clk_ops qmp_qdss_clk_ops = {
282 .prepare = qmp_qdss_clk_prepare,
283 .unprepare = qmp_qdss_clk_unprepare,
286 static int qmp_qdss_clk_add(struct qmp *qmp)
288 static const struct clk_init_data qdss_init = {
289 .ops = &qmp_qdss_clk_ops,
294 qmp->qdss_clk.init = &qdss_init;
295 ret = clk_hw_register(qmp->dev, &qmp->qdss_clk);
297 dev_err(qmp->dev, "failed to register qdss clock\n");
301 ret = of_clk_add_hw_provider(qmp->dev->of_node, of_clk_hw_simple_get,
304 dev_err(qmp->dev, "unable to register of clk hw provider\n");
305 clk_hw_unregister(&qmp->qdss_clk);
311 static void qmp_qdss_clk_remove(struct qmp *qmp)
313 of_clk_del_provider(qmp->dev->of_node);
314 clk_hw_unregister(&qmp->qdss_clk);
317 static int qmp_cdev_get_max_state(struct thermal_cooling_device *cdev,
318 unsigned long *state)
320 *state = qmp_cdev_max_state;
324 static int qmp_cdev_get_cur_state(struct thermal_cooling_device *cdev,
325 unsigned long *state)
327 struct qmp_cooling_device *qmp_cdev = cdev->devdata;
329 *state = qmp_cdev->state;
333 static int qmp_cdev_set_cur_state(struct thermal_cooling_device *cdev,
336 struct qmp_cooling_device *qmp_cdev = cdev->devdata;
340 /* Normalize state */
341 cdev_state = !!state;
343 if (qmp_cdev->state == state)
346 ret = qmp_send(qmp_cdev->qmp, "{class: volt_flr, event:zero_temp, res:%s, value:%s}",
347 qmp_cdev->name, cdev_state ? "on" : "off");
349 qmp_cdev->state = cdev_state;
354 static const struct thermal_cooling_device_ops qmp_cooling_device_ops = {
355 .get_max_state = qmp_cdev_get_max_state,
356 .get_cur_state = qmp_cdev_get_cur_state,
357 .set_cur_state = qmp_cdev_set_cur_state,
360 static int qmp_cooling_device_add(struct qmp *qmp,
361 struct qmp_cooling_device *qmp_cdev,
362 struct device_node *node)
364 char *cdev_name = (char *)node->name;
367 qmp_cdev->state = !qmp_cdev_max_state;
368 qmp_cdev->name = cdev_name;
369 qmp_cdev->cdev = devm_thermal_of_cooling_device_register
372 qmp_cdev, &qmp_cooling_device_ops);
374 if (IS_ERR(qmp_cdev->cdev))
375 dev_err(qmp->dev, "unable to register %s cooling device\n",
378 return PTR_ERR_OR_ZERO(qmp_cdev->cdev);
381 static int qmp_cooling_devices_register(struct qmp *qmp)
383 struct device_node *np, *child;
387 np = qmp->dev->of_node;
389 qmp->cooling_devs = devm_kcalloc(qmp->dev, QMP_NUM_COOLING_RESOURCES,
390 sizeof(*qmp->cooling_devs),
393 if (!qmp->cooling_devs)
396 for_each_available_child_of_node(np, child) {
397 if (!of_property_present(child, "#cooling-cells"))
399 ret = qmp_cooling_device_add(qmp, &qmp->cooling_devs[count++],
408 devm_kfree(qmp->dev, qmp->cooling_devs);
414 thermal_cooling_device_unregister
415 (qmp->cooling_devs[count].cdev);
416 devm_kfree(qmp->dev, qmp->cooling_devs);
421 static void qmp_cooling_devices_remove(struct qmp *qmp)
425 for (i = 0; i < QMP_NUM_COOLING_RESOURCES; i++)
426 thermal_cooling_device_unregister(qmp->cooling_devs[i].cdev);
430 * qmp_get() - get a qmp handle from a device
431 * @dev: client device pointer
433 * Return: handle to qmp device on success, ERR_PTR() on failure
435 struct qmp *qmp_get(struct device *dev)
437 struct platform_device *pdev;
438 struct device_node *np;
441 if (!dev || !dev->of_node)
442 return ERR_PTR(-EINVAL);
444 np = of_parse_phandle(dev->of_node, "qcom,qmp", 0);
446 return ERR_PTR(-ENODEV);
448 pdev = of_find_device_by_node(np);
451 return ERR_PTR(-EINVAL);
453 qmp = platform_get_drvdata(pdev);
456 put_device(&pdev->dev);
457 return ERR_PTR(-EPROBE_DEFER);
461 EXPORT_SYMBOL_GPL(qmp_get);
464 * qmp_put() - release a qmp handle
465 * @qmp: qmp handle obtained from qmp_get()
467 void qmp_put(struct qmp *qmp)
470 * Match get_device() inside of_find_device_by_node() in
473 if (!IS_ERR_OR_NULL(qmp))
474 put_device(qmp->dev);
476 EXPORT_SYMBOL_GPL(qmp_put);
478 static int qmp_probe(struct platform_device *pdev)
484 qmp = devm_kzalloc(&pdev->dev, sizeof(*qmp), GFP_KERNEL);
488 qmp->dev = &pdev->dev;
489 init_waitqueue_head(&qmp->event);
490 mutex_init(&qmp->tx_lock);
492 qmp->msgram = devm_platform_ioremap_resource(pdev, 0);
493 if (IS_ERR(qmp->msgram))
494 return PTR_ERR(qmp->msgram);
496 qmp->mbox_client.dev = &pdev->dev;
497 qmp->mbox_client.knows_txdone = true;
498 qmp->mbox_chan = mbox_request_channel(&qmp->mbox_client, 0);
499 if (IS_ERR(qmp->mbox_chan)) {
500 dev_err(&pdev->dev, "failed to acquire ipc mailbox\n");
501 return PTR_ERR(qmp->mbox_chan);
504 irq = platform_get_irq(pdev, 0);
505 ret = devm_request_irq(&pdev->dev, irq, qmp_intr, 0,
508 dev_err(&pdev->dev, "failed to request interrupt\n");
516 ret = qmp_qdss_clk_add(qmp);
520 ret = qmp_cooling_devices_register(qmp);
522 dev_err(&pdev->dev, "failed to register aoss cooling devices\n");
524 platform_set_drvdata(pdev, qmp);
531 mbox_free_channel(qmp->mbox_chan);
536 static void qmp_remove(struct platform_device *pdev)
538 struct qmp *qmp = platform_get_drvdata(pdev);
540 qmp_qdss_clk_remove(qmp);
541 qmp_cooling_devices_remove(qmp);
544 mbox_free_channel(qmp->mbox_chan);
547 static const struct of_device_id qmp_dt_match[] = {
548 { .compatible = "qcom,sc7180-aoss-qmp", },
549 { .compatible = "qcom,sc7280-aoss-qmp", },
550 { .compatible = "qcom,sdm845-aoss-qmp", },
551 { .compatible = "qcom,sm8150-aoss-qmp", },
552 { .compatible = "qcom,sm8250-aoss-qmp", },
553 { .compatible = "qcom,sm8350-aoss-qmp", },
554 { .compatible = "qcom,aoss-qmp", },
557 MODULE_DEVICE_TABLE(of, qmp_dt_match);
559 static struct platform_driver qmp_driver = {
561 .name = "qcom_aoss_qmp",
562 .of_match_table = qmp_dt_match,
563 .suppress_bind_attrs = true,
566 .remove_new = qmp_remove,
568 module_platform_driver(qmp_driver);
570 MODULE_DESCRIPTION("Qualcomm AOSS QMP driver");
571 MODULE_LICENSE("GPL v2");