1 // SPDX-License-Identifier: GPL-2.0
3 * Qualcomm Peripheral Image Loader for Q6V5
5 * Copyright (C) 2016-2018 Linaro Ltd.
6 * Copyright (C) 2014 Sony Mobile Communications AB
7 * Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
9 #include <linux/kernel.h>
10 #include <linux/platform_device.h>
11 #include <linux/interrupt.h>
12 #include <linux/module.h>
13 #include <linux/soc/qcom/smem.h>
14 #include <linux/soc/qcom/smem_state.h>
15 #include <linux/remoteproc.h>
16 #include "qcom_q6v5.h"
19 * qcom_q6v5_prepare() - reinitialize the qcom_q6v5 context before start
20 * @q6v5: reference to qcom_q6v5 context to be reinitialized
22 * Return: 0 on success, negative errno on failure
24 int qcom_q6v5_prepare(struct qcom_q6v5
*q6v5
)
26 reinit_completion(&q6v5
->start_done
);
27 reinit_completion(&q6v5
->stop_done
);
30 q6v5
->handover_issued
= false;
32 enable_irq(q6v5
->handover_irq
);
36 EXPORT_SYMBOL_GPL(qcom_q6v5_prepare
);
39 * qcom_q6v5_unprepare() - unprepare the qcom_q6v5 context after stop
40 * @q6v5: reference to qcom_q6v5 context to be unprepared
42 * Return: 0 on success, 1 if handover hasn't yet been called
44 int qcom_q6v5_unprepare(struct qcom_q6v5
*q6v5
)
46 disable_irq(q6v5
->handover_irq
);
48 return !q6v5
->handover_issued
;
50 EXPORT_SYMBOL_GPL(qcom_q6v5_unprepare
);
52 static irqreturn_t
q6v5_wdog_interrupt(int irq
, void *data
)
54 struct qcom_q6v5
*q6v5
= data
;
58 /* Sometimes the stop triggers a watchdog rather than a stop-ack */
60 complete(&q6v5
->stop_done
);
64 msg
= qcom_smem_get(QCOM_SMEM_HOST_ANY
, q6v5
->crash_reason
, &len
);
65 if (!IS_ERR(msg
) && len
> 0 && msg
[0])
66 dev_err(q6v5
->dev
, "watchdog received: %s\n", msg
);
68 dev_err(q6v5
->dev
, "watchdog without message\n");
70 rproc_report_crash(q6v5
->rproc
, RPROC_WATCHDOG
);
75 static irqreturn_t
q6v5_fatal_interrupt(int irq
, void *data
)
77 struct qcom_q6v5
*q6v5
= data
;
81 msg
= qcom_smem_get(QCOM_SMEM_HOST_ANY
, q6v5
->crash_reason
, &len
);
82 if (!IS_ERR(msg
) && len
> 0 && msg
[0])
83 dev_err(q6v5
->dev
, "fatal error received: %s\n", msg
);
85 dev_err(q6v5
->dev
, "fatal error without message\n");
87 q6v5
->running
= false;
88 rproc_report_crash(q6v5
->rproc
, RPROC_FATAL_ERROR
);
93 static irqreturn_t
q6v5_ready_interrupt(int irq
, void *data
)
95 struct qcom_q6v5
*q6v5
= data
;
97 complete(&q6v5
->start_done
);
103 * qcom_q6v5_wait_for_start() - wait for remote processor start signal
104 * @q6v5: reference to qcom_q6v5 context
105 * @timeout: timeout to wait for the event, in jiffies
107 * qcom_q6v5_unprepare() should not be called when this function fails.
109 * Return: 0 on success, -ETIMEDOUT on timeout
111 int qcom_q6v5_wait_for_start(struct qcom_q6v5
*q6v5
, int timeout
)
115 ret
= wait_for_completion_timeout(&q6v5
->start_done
, timeout
);
117 disable_irq(q6v5
->handover_irq
);
119 return !ret
? -ETIMEDOUT
: 0;
121 EXPORT_SYMBOL_GPL(qcom_q6v5_wait_for_start
);
123 static irqreturn_t
q6v5_handover_interrupt(int irq
, void *data
)
125 struct qcom_q6v5
*q6v5
= data
;
128 q6v5
->handover(q6v5
);
130 q6v5
->handover_issued
= true;
135 static irqreturn_t
q6v5_stop_interrupt(int irq
, void *data
)
137 struct qcom_q6v5
*q6v5
= data
;
139 complete(&q6v5
->stop_done
);
145 * qcom_q6v5_request_stop() - request the remote processor to stop
146 * @q6v5: reference to qcom_q6v5 context
148 * Return: 0 on success, negative errno on failure
150 int qcom_q6v5_request_stop(struct qcom_q6v5
*q6v5
)
154 qcom_smem_state_update_bits(q6v5
->state
,
155 BIT(q6v5
->stop_bit
), BIT(q6v5
->stop_bit
));
157 ret
= wait_for_completion_timeout(&q6v5
->stop_done
, 5 * HZ
);
159 qcom_smem_state_update_bits(q6v5
->state
, BIT(q6v5
->stop_bit
), 0);
161 return ret
== 0 ? -ETIMEDOUT
: 0;
163 EXPORT_SYMBOL_GPL(qcom_q6v5_request_stop
);
166 * qcom_q6v5_init() - initializer of the q6v5 common struct
167 * @q6v5: handle to be initialized
168 * @pdev: platform_device reference for acquiring resources
169 * @rproc: associated remoteproc instance
170 * @crash_reason: SMEM id for crash reason string, or 0 if none
171 * @handover: function to be called when proxy resources should be released
173 * Return: 0 on success, negative errno on failure
175 int qcom_q6v5_init(struct qcom_q6v5
*q6v5
, struct platform_device
*pdev
,
176 struct rproc
*rproc
, int crash_reason
,
177 void (*handover
)(struct qcom_q6v5
*q6v5
))
182 q6v5
->dev
= &pdev
->dev
;
183 q6v5
->crash_reason
= crash_reason
;
184 q6v5
->handover
= handover
;
186 init_completion(&q6v5
->start_done
);
187 init_completion(&q6v5
->stop_done
);
189 q6v5
->wdog_irq
= platform_get_irq_byname(pdev
, "wdog");
190 if (q6v5
->wdog_irq
< 0) {
191 if (q6v5
->wdog_irq
!= -EPROBE_DEFER
)
193 "failed to retrieve wdog IRQ: %d\n",
195 return q6v5
->wdog_irq
;
198 ret
= devm_request_threaded_irq(&pdev
->dev
, q6v5
->wdog_irq
,
199 NULL
, q6v5_wdog_interrupt
,
200 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
203 dev_err(&pdev
->dev
, "failed to acquire wdog IRQ\n");
207 q6v5
->fatal_irq
= platform_get_irq_byname(pdev
, "fatal");
208 if (q6v5
->fatal_irq
< 0) {
209 if (q6v5
->fatal_irq
!= -EPROBE_DEFER
)
211 "failed to retrieve fatal IRQ: %d\n",
213 return q6v5
->fatal_irq
;
216 ret
= devm_request_threaded_irq(&pdev
->dev
, q6v5
->fatal_irq
,
217 NULL
, q6v5_fatal_interrupt
,
218 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
221 dev_err(&pdev
->dev
, "failed to acquire fatal IRQ\n");
225 q6v5
->ready_irq
= platform_get_irq_byname(pdev
, "ready");
226 if (q6v5
->ready_irq
< 0) {
227 if (q6v5
->ready_irq
!= -EPROBE_DEFER
)
229 "failed to retrieve ready IRQ: %d\n",
231 return q6v5
->ready_irq
;
234 ret
= devm_request_threaded_irq(&pdev
->dev
, q6v5
->ready_irq
,
235 NULL
, q6v5_ready_interrupt
,
236 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
239 dev_err(&pdev
->dev
, "failed to acquire ready IRQ\n");
243 q6v5
->handover_irq
= platform_get_irq_byname(pdev
, "handover");
244 if (q6v5
->handover_irq
< 0) {
245 if (q6v5
->handover_irq
!= -EPROBE_DEFER
)
247 "failed to retrieve handover IRQ: %d\n",
249 return q6v5
->handover_irq
;
252 ret
= devm_request_threaded_irq(&pdev
->dev
, q6v5
->handover_irq
,
253 NULL
, q6v5_handover_interrupt
,
254 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
255 "q6v5 handover", q6v5
);
257 dev_err(&pdev
->dev
, "failed to acquire handover IRQ\n");
260 disable_irq(q6v5
->handover_irq
);
262 q6v5
->stop_irq
= platform_get_irq_byname(pdev
, "stop-ack");
263 if (q6v5
->stop_irq
< 0) {
264 if (q6v5
->stop_irq
!= -EPROBE_DEFER
)
266 "failed to retrieve stop-ack IRQ: %d\n",
268 return q6v5
->stop_irq
;
271 ret
= devm_request_threaded_irq(&pdev
->dev
, q6v5
->stop_irq
,
272 NULL
, q6v5_stop_interrupt
,
273 IRQF_TRIGGER_RISING
| IRQF_ONESHOT
,
276 dev_err(&pdev
->dev
, "failed to acquire stop-ack IRQ\n");
280 q6v5
->state
= qcom_smem_state_get(&pdev
->dev
, "stop", &q6v5
->stop_bit
);
281 if (IS_ERR(q6v5
->state
)) {
282 dev_err(&pdev
->dev
, "failed to acquire stop state\n");
283 return PTR_ERR(q6v5
->state
);
288 EXPORT_SYMBOL_GPL(qcom_q6v5_init
);
290 MODULE_LICENSE("GPL v2");
291 MODULE_DESCRIPTION("Qualcomm Peripheral Image Loader for Q6V5");