Loading...
1// SPDX-License-Identifier: GPL-2.0
2
3/* Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
4 * Copyright (C) 2018-2022 Linaro Ltd.
5 */
6
7#include <linux/types.h>
8#include <linux/string.h>
9#include <linux/slab.h>
10#include <linux/qrtr.h>
11#include <linux/soc/qcom/qmi.h>
12
13#include "ipa.h"
14#include "ipa_endpoint.h"
15#include "ipa_mem.h"
16#include "ipa_table.h"
17#include "ipa_modem.h"
18#include "ipa_qmi_msg.h"
19
20/**
21 * DOC: AP/Modem QMI Handshake
22 *
23 * The AP and modem perform a "handshake" at initialization time to ensure
24 * both sides know when everything is ready to begin operating. The AP
25 * driver (this code) uses two QMI handles (endpoints) for this; a client
26 * using a service on the modem, and server to service modem requests (and
27 * to supply an indication message from the AP). Once the handshake is
28 * complete, the AP and modem may begin IPA operation. This occurs
29 * only when the AP IPA driver, modem IPA driver, and IPA microcontroller
30 * are ready.
31 *
32 * The QMI service on the modem expects to receive an INIT_DRIVER request from
33 * the AP, which contains parameters used by the modem during initialization.
34 * The AP sends this request as soon as it is knows the modem side service
35 * is available. The modem responds to this request, and if this response
36 * contains a success result, the AP knows the modem IPA driver is ready.
37 *
38 * The modem is responsible for loading firmware on the IPA microcontroller.
39 * This occurs only during the initial modem boot. The modem sends a
40 * separate DRIVER_INIT_COMPLETE request to the AP to report that the
41 * microcontroller is ready. The AP may assume the microcontroller is
42 * ready and remain so (even if the modem reboots) once it has received
43 * and responded to this request.
44 *
45 * There is one final exchange involved in the handshake. It is required
46 * on the initial modem boot, but optional (but in practice does occur) on
47 * subsequent boots. The modem expects to receive a final INIT_COMPLETE
48 * indication message from the AP when it is about to begin its normal
49 * operation. The AP will only send this message after it has received
50 * and responded to an INDICATION_REGISTER request from the modem.
51 *
52 * So in summary:
53 * - Whenever the AP learns the modem has booted and its IPA QMI service
54 * is available, it sends an INIT_DRIVER request to the modem. The
55 * modem supplies a success response when it is ready to operate.
56 * - On the initial boot, the modem sets up the IPA microcontroller, and
57 * sends a DRIVER_INIT_COMPLETE request to the AP when this is done.
58 * - When the modem is ready to receive an INIT_COMPLETE indication from
59 * the AP, it sends an INDICATION_REGISTER request to the AP.
60 * - On the initial modem boot, everything is ready when:
61 * - AP has received a success response from its INIT_DRIVER request
62 * - AP has responded to a DRIVER_INIT_COMPLETE request
63 * - AP has responded to an INDICATION_REGISTER request from the modem
64 * - AP has sent an INIT_COMPLETE indication to the modem
65 * - On subsequent modem boots, everything is ready when:
66 * - AP has received a success response from its INIT_DRIVER request
67 * - AP has responded to a DRIVER_INIT_COMPLETE request
68 * - The INDICATION_REGISTER request and INIT_COMPLETE indication are
69 * optional for non-initial modem boots, and have no bearing on the
70 * determination of when things are "ready"
71 */
72
73#define IPA_HOST_SERVICE_SVC_ID 0x31
74#define IPA_HOST_SVC_VERS 1
75#define IPA_HOST_SERVICE_INS_ID 1
76
77#define IPA_MODEM_SERVICE_SVC_ID 0x31
78#define IPA_MODEM_SERVICE_INS_ID 2
79#define IPA_MODEM_SVC_VERS 1
80
81#define QMI_INIT_DRIVER_TIMEOUT 60000 /* A minute in milliseconds */
82
83/* Send an INIT_COMPLETE indication message to the modem */
84static void ipa_server_init_complete(struct ipa_qmi *ipa_qmi)
85{
86 struct ipa *ipa = container_of(ipa_qmi, struct ipa, qmi);
87 struct qmi_handle *qmi = &ipa_qmi->server_handle;
88 struct sockaddr_qrtr *sq = &ipa_qmi->modem_sq;
89 struct ipa_init_complete_ind ind = { };
90 int ret;
91
92 ind.status.result = QMI_RESULT_SUCCESS_V01;
93 ind.status.error = QMI_ERR_NONE_V01;
94
95 ret = qmi_send_indication(qmi, sq, IPA_QMI_INIT_COMPLETE,
96 IPA_QMI_INIT_COMPLETE_IND_SZ,
97 ipa_init_complete_ind_ei, &ind);
98 if (ret)
99 dev_err(&ipa->pdev->dev,
100 "error %d sending init complete indication\n", ret);
101 else
102 ipa_qmi->indication_sent = true;
103}
104
105/* If requested (and not already sent) send the INIT_COMPLETE indication */
106static void ipa_qmi_indication(struct ipa_qmi *ipa_qmi)
107{
108 if (!ipa_qmi->indication_requested)
109 return;
110
111 if (ipa_qmi->indication_sent)
112 return;
113
114 ipa_server_init_complete(ipa_qmi);
115}
116
117/* Determine whether everything is ready to start normal operation.
118 * We know everything (else) is ready when we know the IPA driver on
119 * the modem is ready, and the microcontroller is ready.
120 *
121 * When the modem boots (or reboots), the handshake sequence starts
122 * with the AP sending the modem an INIT_DRIVER request. Within
123 * that request, the uc_loaded flag will be zero (false) for an
124 * initial boot, non-zero (true) for a subsequent (SSR) boot.
125 */
126static void ipa_qmi_ready(struct ipa_qmi *ipa_qmi)
127{
128 struct ipa *ipa;
129 int ret;
130
131 /* We aren't ready until the modem and microcontroller are */
132 if (!ipa_qmi->modem_ready || !ipa_qmi->uc_ready)
133 return;
134
135 /* Send the indication message if it was requested */
136 ipa_qmi_indication(ipa_qmi);
137
138 /* The initial boot requires us to send the indication. */
139 if (ipa_qmi->initial_boot) {
140 if (!ipa_qmi->indication_sent)
141 return;
142
143 /* The initial modem boot completed successfully */
144 ipa_qmi->initial_boot = false;
145 }
146
147 /* We're ready. Start up normal operation */
148 ipa = container_of(ipa_qmi, struct ipa, qmi);
149 ret = ipa_modem_start(ipa);
150 if (ret)
151 dev_err(&ipa->pdev->dev, "error %d starting modem\n", ret);
152}
153
154/* All QMI clients from the modem node are gone (modem shut down or crashed). */
155static void ipa_server_bye(struct qmi_handle *qmi, unsigned int node)
156{
157 struct ipa_qmi *ipa_qmi;
158
159 ipa_qmi = container_of(qmi, struct ipa_qmi, server_handle);
160
161 /* The modem client and server go away at the same time */
162 memset(&ipa_qmi->modem_sq, 0, sizeof(ipa_qmi->modem_sq));
163
164 /* initial_boot doesn't change when modem reboots */
165 /* uc_ready doesn't change when modem reboots */
166 ipa_qmi->modem_ready = false;
167 ipa_qmi->indication_requested = false;
168 ipa_qmi->indication_sent = false;
169}
170
171static const struct qmi_ops ipa_server_ops = {
172 .bye = ipa_server_bye,
173};
174
175/* Callback function to handle an INDICATION_REGISTER request message from the
176 * modem. This informs the AP that the modem is now ready to receive the
177 * INIT_COMPLETE indication message.
178 */
179static void ipa_server_indication_register(struct qmi_handle *qmi,
180 struct sockaddr_qrtr *sq,
181 struct qmi_txn *txn,
182 const void *decoded)
183{
184 struct ipa_indication_register_rsp rsp = { };
185 struct ipa_qmi *ipa_qmi;
186 struct ipa *ipa;
187 int ret;
188
189 ipa_qmi = container_of(qmi, struct ipa_qmi, server_handle);
190 ipa = container_of(ipa_qmi, struct ipa, qmi);
191
192 rsp.rsp.result = QMI_RESULT_SUCCESS_V01;
193 rsp.rsp.error = QMI_ERR_NONE_V01;
194
195 ret = qmi_send_response(qmi, sq, txn, IPA_QMI_INDICATION_REGISTER,
196 IPA_QMI_INDICATION_REGISTER_RSP_SZ,
197 ipa_indication_register_rsp_ei, &rsp);
198 if (!ret) {
199 ipa_qmi->indication_requested = true;
200 ipa_qmi_ready(ipa_qmi); /* We might be ready now */
201 } else {
202 dev_err(&ipa->pdev->dev,
203 "error %d sending register indication response\n", ret);
204 }
205}
206
207/* Respond to a DRIVER_INIT_COMPLETE request message from the modem. */
208static void ipa_server_driver_init_complete(struct qmi_handle *qmi,
209 struct sockaddr_qrtr *sq,
210 struct qmi_txn *txn,
211 const void *decoded)
212{
213 struct ipa_driver_init_complete_rsp rsp = { };
214 struct ipa_qmi *ipa_qmi;
215 struct ipa *ipa;
216 int ret;
217
218 ipa_qmi = container_of(qmi, struct ipa_qmi, server_handle);
219 ipa = container_of(ipa_qmi, struct ipa, qmi);
220
221 rsp.rsp.result = QMI_RESULT_SUCCESS_V01;
222 rsp.rsp.error = QMI_ERR_NONE_V01;
223
224 ret = qmi_send_response(qmi, sq, txn, IPA_QMI_DRIVER_INIT_COMPLETE,
225 IPA_QMI_DRIVER_INIT_COMPLETE_RSP_SZ,
226 ipa_driver_init_complete_rsp_ei, &rsp);
227 if (!ret) {
228 ipa_qmi->uc_ready = true;
229 ipa_qmi_ready(ipa_qmi); /* We might be ready now */
230 } else {
231 dev_err(&ipa->pdev->dev,
232 "error %d sending init complete response\n", ret);
233 }
234}
235
236/* The server handles two request message types sent by the modem. */
237static const struct qmi_msg_handler ipa_server_msg_handlers[] = {
238 {
239 .type = QMI_REQUEST,
240 .msg_id = IPA_QMI_INDICATION_REGISTER,
241 .ei = ipa_indication_register_req_ei,
242 .decoded_size = IPA_QMI_INDICATION_REGISTER_REQ_SZ,
243 .fn = ipa_server_indication_register,
244 },
245 {
246 .type = QMI_REQUEST,
247 .msg_id = IPA_QMI_DRIVER_INIT_COMPLETE,
248 .ei = ipa_driver_init_complete_req_ei,
249 .decoded_size = IPA_QMI_DRIVER_INIT_COMPLETE_REQ_SZ,
250 .fn = ipa_server_driver_init_complete,
251 },
252 { },
253};
254
255/* Handle an INIT_DRIVER response message from the modem. */
256static void ipa_client_init_driver(struct qmi_handle *qmi,
257 struct sockaddr_qrtr *sq,
258 struct qmi_txn *txn, const void *decoded)
259{
260 txn->result = 0; /* IPA_QMI_INIT_DRIVER request was successful */
261 complete(&txn->completion);
262}
263
264/* The client handles one response message type sent by the modem. */
265static const struct qmi_msg_handler ipa_client_msg_handlers[] = {
266 {
267 .type = QMI_RESPONSE,
268 .msg_id = IPA_QMI_INIT_DRIVER,
269 .ei = ipa_init_modem_driver_rsp_ei,
270 .decoded_size = IPA_QMI_INIT_DRIVER_RSP_SZ,
271 .fn = ipa_client_init_driver,
272 },
273 { },
274};
275
276/* Return a pointer to an init modem driver request structure, which contains
277 * configuration parameters for the modem. The modem may be started multiple
278 * times, but generally these parameters don't change so we can reuse the
279 * request structure once it's initialized. The only exception is the
280 * skip_uc_load field, which will be set only after the microcontroller has
281 * reported it has completed its initialization.
282 */
283static const struct ipa_init_modem_driver_req *
284init_modem_driver_req(struct ipa_qmi *ipa_qmi)
285{
286 struct ipa *ipa = container_of(ipa_qmi, struct ipa, qmi);
287 u32 modem_route_count = ipa->modem_route_count;
288 static struct ipa_init_modem_driver_req req;
289 const struct ipa_mem *mem;
290
291 /* The microcontroller is initialized on the first boot */
292 req.skip_uc_load_valid = 1;
293 req.skip_uc_load = ipa->uc_loaded ? 1 : 0;
294
295 /* We only have to initialize most of it once */
296 if (req.platform_type_valid)
297 return &req;
298
299 req.platform_type_valid = 1;
300 req.platform_type = IPA_QMI_PLATFORM_TYPE_MSM_ANDROID;
301
302 mem = ipa_mem_find(ipa, IPA_MEM_MODEM_HEADER);
303 if (mem->size) {
304 req.hdr_tbl_info_valid = 1;
305 req.hdr_tbl_info.start = ipa->mem_offset + mem->offset;
306 req.hdr_tbl_info.end = req.hdr_tbl_info.start + mem->size - 1;
307 }
308
309 mem = ipa_mem_find(ipa, IPA_MEM_V4_ROUTE);
310 req.v4_route_tbl_info_valid = 1;
311 req.v4_route_tbl_info.start = ipa->mem_offset + mem->offset;
312 req.v4_route_tbl_info.end = modem_route_count - 1;
313
314 mem = ipa_mem_find(ipa, IPA_MEM_V6_ROUTE);
315 req.v6_route_tbl_info_valid = 1;
316 req.v6_route_tbl_info.start = ipa->mem_offset + mem->offset;
317 req.v6_route_tbl_info.end = modem_route_count - 1;
318
319 mem = ipa_mem_find(ipa, IPA_MEM_V4_FILTER);
320 req.v4_filter_tbl_start_valid = 1;
321 req.v4_filter_tbl_start = ipa->mem_offset + mem->offset;
322
323 mem = ipa_mem_find(ipa, IPA_MEM_V6_FILTER);
324 req.v6_filter_tbl_start_valid = 1;
325 req.v6_filter_tbl_start = ipa->mem_offset + mem->offset;
326
327 mem = ipa_mem_find(ipa, IPA_MEM_MODEM);
328 if (mem->size) {
329 req.modem_mem_info_valid = 1;
330 req.modem_mem_info.start = ipa->mem_offset + mem->offset;
331 req.modem_mem_info.size = mem->size;
332 }
333
334 req.ctrl_comm_dest_end_pt_valid = 1;
335 req.ctrl_comm_dest_end_pt =
336 ipa->name_map[IPA_ENDPOINT_AP_MODEM_RX]->endpoint_id;
337
338 /* skip_uc_load_valid and skip_uc_load are set above */
339
340 mem = ipa_mem_find(ipa, IPA_MEM_MODEM_PROC_CTX);
341 if (mem->size) {
342 req.hdr_proc_ctx_tbl_info_valid = 1;
343 req.hdr_proc_ctx_tbl_info.start =
344 ipa->mem_offset + mem->offset;
345 req.hdr_proc_ctx_tbl_info.end =
346 req.hdr_proc_ctx_tbl_info.start + mem->size - 1;
347 }
348
349 /* Nothing to report for the compression table (zip_tbl_info) */
350
351 mem = ipa_mem_find(ipa, IPA_MEM_V4_ROUTE_HASHED);
352 if (mem->size) {
353 req.v4_hash_route_tbl_info_valid = 1;
354 req.v4_hash_route_tbl_info.start =
355 ipa->mem_offset + mem->offset;
356 req.v4_hash_route_tbl_info.end = modem_route_count - 1;
357 }
358
359 mem = ipa_mem_find(ipa, IPA_MEM_V6_ROUTE_HASHED);
360 if (mem->size) {
361 req.v6_hash_route_tbl_info_valid = 1;
362 req.v6_hash_route_tbl_info.start =
363 ipa->mem_offset + mem->offset;
364 req.v6_hash_route_tbl_info.end = modem_route_count - 1;
365 }
366
367 mem = ipa_mem_find(ipa, IPA_MEM_V4_FILTER_HASHED);
368 if (mem->size) {
369 req.v4_hash_filter_tbl_start_valid = 1;
370 req.v4_hash_filter_tbl_start = ipa->mem_offset + mem->offset;
371 }
372
373 mem = ipa_mem_find(ipa, IPA_MEM_V6_FILTER_HASHED);
374 if (mem->size) {
375 req.v6_hash_filter_tbl_start_valid = 1;
376 req.v6_hash_filter_tbl_start = ipa->mem_offset + mem->offset;
377 }
378
379 /* The stats fields are only valid for IPA v4.0+ */
380 if (ipa->version >= IPA_VERSION_4_0) {
381 mem = ipa_mem_find(ipa, IPA_MEM_STATS_QUOTA_MODEM);
382 if (mem->size) {
383 req.hw_stats_quota_base_addr_valid = 1;
384 req.hw_stats_quota_base_addr =
385 ipa->mem_offset + mem->offset;
386 req.hw_stats_quota_size_valid = 1;
387 req.hw_stats_quota_size = ipa->mem_offset + mem->size;
388 }
389
390 /* If the DROP stats region is defined, include it */
391 mem = ipa_mem_find(ipa, IPA_MEM_STATS_DROP);
392 if (mem && mem->size) {
393 req.hw_stats_drop_base_addr_valid = 1;
394 req.hw_stats_drop_base_addr =
395 ipa->mem_offset + mem->offset;
396 req.hw_stats_drop_size_valid = 1;
397 req.hw_stats_drop_size = ipa->mem_offset + mem->size;
398 }
399 }
400
401 return &req;
402}
403
404/* Send an INIT_DRIVER request to the modem, and wait for it to complete. */
405static void ipa_client_init_driver_work(struct work_struct *work)
406{
407 unsigned long timeout = msecs_to_jiffies(QMI_INIT_DRIVER_TIMEOUT);
408 const struct ipa_init_modem_driver_req *req;
409 struct ipa_qmi *ipa_qmi;
410 struct qmi_handle *qmi;
411 struct qmi_txn txn;
412 struct device *dev;
413 struct ipa *ipa;
414 int ret;
415
416 ipa_qmi = container_of(work, struct ipa_qmi, init_driver_work);
417 qmi = &ipa_qmi->client_handle;
418
419 ipa = container_of(ipa_qmi, struct ipa, qmi);
420 dev = &ipa->pdev->dev;
421
422 ret = qmi_txn_init(qmi, &txn, NULL, NULL);
423 if (ret < 0) {
424 dev_err(dev, "error %d preparing init driver request\n", ret);
425 return;
426 }
427
428 /* Send the request, and if successful wait for its response */
429 req = init_modem_driver_req(ipa_qmi);
430 ret = qmi_send_request(qmi, &ipa_qmi->modem_sq, &txn,
431 IPA_QMI_INIT_DRIVER, IPA_QMI_INIT_DRIVER_REQ_SZ,
432 ipa_init_modem_driver_req_ei, req);
433 if (ret)
434 dev_err(dev, "error %d sending init driver request\n", ret);
435 else if ((ret = qmi_txn_wait(&txn, timeout)))
436 dev_err(dev, "error %d awaiting init driver response\n", ret);
437
438 if (!ret) {
439 ipa_qmi->modem_ready = true;
440 ipa_qmi_ready(ipa_qmi); /* We might be ready now */
441 } else {
442 /* If any error occurs we need to cancel the transaction */
443 qmi_txn_cancel(&txn);
444 }
445}
446
447/* The modem server is now available. We will send an INIT_DRIVER request
448 * to the modem, but can't wait for it to complete in this callback thread.
449 * Schedule a worker on the global workqueue to do that for us.
450 */
451static int
452ipa_client_new_server(struct qmi_handle *qmi, struct qmi_service *svc)
453{
454 struct ipa_qmi *ipa_qmi;
455
456 ipa_qmi = container_of(qmi, struct ipa_qmi, client_handle);
457
458 ipa_qmi->modem_sq.sq_family = AF_QIPCRTR;
459 ipa_qmi->modem_sq.sq_node = svc->node;
460 ipa_qmi->modem_sq.sq_port = svc->port;
461
462 schedule_work(&ipa_qmi->init_driver_work);
463
464 return 0;
465}
466
467static const struct qmi_ops ipa_client_ops = {
468 .new_server = ipa_client_new_server,
469};
470
471/* Set up for QMI message exchange */
472int ipa_qmi_setup(struct ipa *ipa)
473{
474 struct ipa_qmi *ipa_qmi = &ipa->qmi;
475 int ret;
476
477 ipa_qmi->initial_boot = true;
478
479 /* The server handle is used to handle the DRIVER_INIT_COMPLETE
480 * request on the first modem boot. It also receives the
481 * INDICATION_REGISTER request on the first boot and (optionally)
482 * subsequent boots. The INIT_COMPLETE indication message is
483 * sent over the server handle if requested.
484 */
485 ret = qmi_handle_init(&ipa_qmi->server_handle,
486 IPA_QMI_SERVER_MAX_RCV_SZ, &ipa_server_ops,
487 ipa_server_msg_handlers);
488 if (ret)
489 return ret;
490
491 ret = qmi_add_server(&ipa_qmi->server_handle, IPA_HOST_SERVICE_SVC_ID,
492 IPA_HOST_SVC_VERS, IPA_HOST_SERVICE_INS_ID);
493 if (ret)
494 goto err_server_handle_release;
495
496 /* The client handle is only used for sending an INIT_DRIVER request
497 * to the modem, and receiving its response message.
498 */
499 ret = qmi_handle_init(&ipa_qmi->client_handle,
500 IPA_QMI_CLIENT_MAX_RCV_SZ, &ipa_client_ops,
501 ipa_client_msg_handlers);
502 if (ret)
503 goto err_server_handle_release;
504
505 /* We need this ready before the service lookup is added */
506 INIT_WORK(&ipa_qmi->init_driver_work, ipa_client_init_driver_work);
507
508 ret = qmi_add_lookup(&ipa_qmi->client_handle, IPA_MODEM_SERVICE_SVC_ID,
509 IPA_MODEM_SVC_VERS, IPA_MODEM_SERVICE_INS_ID);
510 if (ret)
511 goto err_client_handle_release;
512
513 return 0;
514
515err_client_handle_release:
516 /* Releasing the handle also removes registered lookups */
517 qmi_handle_release(&ipa_qmi->client_handle);
518 memset(&ipa_qmi->client_handle, 0, sizeof(ipa_qmi->client_handle));
519err_server_handle_release:
520 /* Releasing the handle also removes registered services */
521 qmi_handle_release(&ipa_qmi->server_handle);
522 memset(&ipa_qmi->server_handle, 0, sizeof(ipa_qmi->server_handle));
523
524 return ret;
525}
526
527/* Tear down IPA QMI handles */
528void ipa_qmi_teardown(struct ipa *ipa)
529{
530 cancel_work_sync(&ipa->qmi.init_driver_work);
531
532 qmi_handle_release(&ipa->qmi.client_handle);
533 memset(&ipa->qmi.client_handle, 0, sizeof(ipa->qmi.client_handle));
534
535 qmi_handle_release(&ipa->qmi.server_handle);
536 memset(&ipa->qmi.server_handle, 0, sizeof(ipa->qmi.server_handle));
537}
1// SPDX-License-Identifier: GPL-2.0
2
3/* Copyright (c) 2013-2018, The Linux Foundation. All rights reserved.
4 * Copyright (C) 2018-2024 Linaro Ltd.
5 */
6
7#include <linux/qrtr.h>
8#include <linux/string.h>
9#include <linux/types.h>
10
11#include "ipa.h"
12#include "ipa_mem.h"
13#include "ipa_modem.h"
14#include "ipa_qmi_msg.h"
15
16/**
17 * DOC: AP/Modem QMI Handshake
18 *
19 * The AP and modem perform a "handshake" at initialization time to ensure
20 * both sides know when everything is ready to begin operating. The AP
21 * driver (this code) uses two QMI handles (endpoints) for this; a client
22 * using a service on the modem, and server to service modem requests (and
23 * to supply an indication message from the AP). Once the handshake is
24 * complete, the AP and modem may begin IPA operation. This occurs
25 * only when the AP IPA driver, modem IPA driver, and IPA microcontroller
26 * are ready.
27 *
28 * The QMI service on the modem expects to receive an INIT_DRIVER request from
29 * the AP, which contains parameters used by the modem during initialization.
30 * The AP sends this request as soon as it is knows the modem side service
31 * is available. The modem responds to this request, and if this response
32 * contains a success result, the AP knows the modem IPA driver is ready.
33 *
34 * The modem is responsible for loading firmware on the IPA microcontroller.
35 * This occurs only during the initial modem boot. The modem sends a
36 * separate DRIVER_INIT_COMPLETE request to the AP to report that the
37 * microcontroller is ready. The AP may assume the microcontroller is
38 * ready and remain so (even if the modem reboots) once it has received
39 * and responded to this request.
40 *
41 * There is one final exchange involved in the handshake. It is required
42 * on the initial modem boot, but optional (but in practice does occur) on
43 * subsequent boots. The modem expects to receive a final INIT_COMPLETE
44 * indication message from the AP when it is about to begin its normal
45 * operation. The AP will only send this message after it has received
46 * and responded to an INDICATION_REGISTER request from the modem.
47 *
48 * So in summary:
49 * - Whenever the AP learns the modem has booted and its IPA QMI service
50 * is available, it sends an INIT_DRIVER request to the modem. The
51 * modem supplies a success response when it is ready to operate.
52 * - On the initial boot, the modem sets up the IPA microcontroller, and
53 * sends a DRIVER_INIT_COMPLETE request to the AP when this is done.
54 * - When the modem is ready to receive an INIT_COMPLETE indication from
55 * the AP, it sends an INDICATION_REGISTER request to the AP.
56 * - On the initial modem boot, everything is ready when:
57 * - AP has received a success response from its INIT_DRIVER request
58 * - AP has responded to a DRIVER_INIT_COMPLETE request
59 * - AP has responded to an INDICATION_REGISTER request from the modem
60 * - AP has sent an INIT_COMPLETE indication to the modem
61 * - On subsequent modem boots, everything is ready when:
62 * - AP has received a success response from its INIT_DRIVER request
63 * - AP has responded to a DRIVER_INIT_COMPLETE request
64 * - The INDICATION_REGISTER request and INIT_COMPLETE indication are
65 * optional for non-initial modem boots, and have no bearing on the
66 * determination of when things are "ready"
67 */
68
69#define IPA_HOST_SERVICE_SVC_ID 0x31
70#define IPA_HOST_SVC_VERS 1
71#define IPA_HOST_SERVICE_INS_ID 1
72
73#define IPA_MODEM_SERVICE_SVC_ID 0x31
74#define IPA_MODEM_SERVICE_INS_ID 2
75#define IPA_MODEM_SVC_VERS 1
76
77#define QMI_INIT_DRIVER_TIMEOUT 60000 /* A minute in milliseconds */
78
79/* Send an INIT_COMPLETE indication message to the modem */
80static void ipa_server_init_complete(struct ipa_qmi *ipa_qmi)
81{
82 struct ipa *ipa = container_of(ipa_qmi, struct ipa, qmi);
83 struct qmi_handle *qmi = &ipa_qmi->server_handle;
84 struct sockaddr_qrtr *sq = &ipa_qmi->modem_sq;
85 struct ipa_init_complete_ind ind = { };
86 int ret;
87
88 ind.status.result = QMI_RESULT_SUCCESS_V01;
89 ind.status.error = QMI_ERR_NONE_V01;
90
91 ret = qmi_send_indication(qmi, sq, IPA_QMI_INIT_COMPLETE,
92 IPA_QMI_INIT_COMPLETE_IND_SZ,
93 ipa_init_complete_ind_ei, &ind);
94 if (ret)
95 dev_err(ipa->dev,
96 "error %d sending init complete indication\n", ret);
97 else
98 ipa_qmi->indication_sent = true;
99}
100
101/* If requested (and not already sent) send the INIT_COMPLETE indication */
102static void ipa_qmi_indication(struct ipa_qmi *ipa_qmi)
103{
104 if (!ipa_qmi->indication_requested)
105 return;
106
107 if (ipa_qmi->indication_sent)
108 return;
109
110 ipa_server_init_complete(ipa_qmi);
111}
112
113/* Determine whether everything is ready to start normal operation.
114 * We know everything (else) is ready when we know the IPA driver on
115 * the modem is ready, and the microcontroller is ready.
116 *
117 * When the modem boots (or reboots), the handshake sequence starts
118 * with the AP sending the modem an INIT_DRIVER request. Within
119 * that request, the uc_loaded flag will be zero (false) for an
120 * initial boot, non-zero (true) for a subsequent (SSR) boot.
121 */
122static void ipa_qmi_ready(struct ipa_qmi *ipa_qmi)
123{
124 struct ipa *ipa;
125 int ret;
126
127 /* We aren't ready until the modem and microcontroller are */
128 if (!ipa_qmi->modem_ready || !ipa_qmi->uc_ready)
129 return;
130
131 /* Send the indication message if it was requested */
132 ipa_qmi_indication(ipa_qmi);
133
134 /* The initial boot requires us to send the indication. */
135 if (ipa_qmi->initial_boot) {
136 if (!ipa_qmi->indication_sent)
137 return;
138
139 /* The initial modem boot completed successfully */
140 ipa_qmi->initial_boot = false;
141 }
142
143 /* We're ready. Start up normal operation */
144 ipa = container_of(ipa_qmi, struct ipa, qmi);
145 ret = ipa_modem_start(ipa);
146 if (ret)
147 dev_err(ipa->dev, "error %d starting modem\n", ret);
148}
149
150/* All QMI clients from the modem node are gone (modem shut down or crashed). */
151static void ipa_server_bye(struct qmi_handle *qmi, unsigned int node)
152{
153 struct ipa_qmi *ipa_qmi;
154
155 ipa_qmi = container_of(qmi, struct ipa_qmi, server_handle);
156
157 /* The modem client and server go away at the same time */
158 memset(&ipa_qmi->modem_sq, 0, sizeof(ipa_qmi->modem_sq));
159
160 /* initial_boot doesn't change when modem reboots */
161 /* uc_ready doesn't change when modem reboots */
162 ipa_qmi->modem_ready = false;
163 ipa_qmi->indication_requested = false;
164 ipa_qmi->indication_sent = false;
165}
166
167static const struct qmi_ops ipa_server_ops = {
168 .bye = ipa_server_bye,
169};
170
171/* Callback function to handle an INDICATION_REGISTER request message from the
172 * modem. This informs the AP that the modem is now ready to receive the
173 * INIT_COMPLETE indication message.
174 */
175static void ipa_server_indication_register(struct qmi_handle *qmi,
176 struct sockaddr_qrtr *sq,
177 struct qmi_txn *txn,
178 const void *decoded)
179{
180 struct ipa_indication_register_rsp rsp = { };
181 struct ipa_qmi *ipa_qmi;
182 struct ipa *ipa;
183 int ret;
184
185 ipa_qmi = container_of(qmi, struct ipa_qmi, server_handle);
186 ipa = container_of(ipa_qmi, struct ipa, qmi);
187
188 rsp.rsp.result = QMI_RESULT_SUCCESS_V01;
189 rsp.rsp.error = QMI_ERR_NONE_V01;
190
191 ret = qmi_send_response(qmi, sq, txn, IPA_QMI_INDICATION_REGISTER,
192 IPA_QMI_INDICATION_REGISTER_RSP_SZ,
193 ipa_indication_register_rsp_ei, &rsp);
194 if (!ret) {
195 ipa_qmi->indication_requested = true;
196 ipa_qmi_ready(ipa_qmi); /* We might be ready now */
197 } else {
198 dev_err(ipa->dev,
199 "error %d sending register indication response\n", ret);
200 }
201}
202
203/* Respond to a DRIVER_INIT_COMPLETE request message from the modem. */
204static void ipa_server_driver_init_complete(struct qmi_handle *qmi,
205 struct sockaddr_qrtr *sq,
206 struct qmi_txn *txn,
207 const void *decoded)
208{
209 struct ipa_driver_init_complete_rsp rsp = { };
210 struct ipa_qmi *ipa_qmi;
211 struct ipa *ipa;
212 int ret;
213
214 ipa_qmi = container_of(qmi, struct ipa_qmi, server_handle);
215 ipa = container_of(ipa_qmi, struct ipa, qmi);
216
217 rsp.rsp.result = QMI_RESULT_SUCCESS_V01;
218 rsp.rsp.error = QMI_ERR_NONE_V01;
219
220 ret = qmi_send_response(qmi, sq, txn, IPA_QMI_DRIVER_INIT_COMPLETE,
221 IPA_QMI_DRIVER_INIT_COMPLETE_RSP_SZ,
222 ipa_driver_init_complete_rsp_ei, &rsp);
223 if (!ret) {
224 ipa_qmi->uc_ready = true;
225 ipa_qmi_ready(ipa_qmi); /* We might be ready now */
226 } else {
227 dev_err(ipa->dev,
228 "error %d sending init complete response\n", ret);
229 }
230}
231
232/* The server handles two request message types sent by the modem. */
233static const struct qmi_msg_handler ipa_server_msg_handlers[] = {
234 {
235 .type = QMI_REQUEST,
236 .msg_id = IPA_QMI_INDICATION_REGISTER,
237 .ei = ipa_indication_register_req_ei,
238 .decoded_size = IPA_QMI_INDICATION_REGISTER_REQ_SZ,
239 .fn = ipa_server_indication_register,
240 },
241 {
242 .type = QMI_REQUEST,
243 .msg_id = IPA_QMI_DRIVER_INIT_COMPLETE,
244 .ei = ipa_driver_init_complete_req_ei,
245 .decoded_size = IPA_QMI_DRIVER_INIT_COMPLETE_REQ_SZ,
246 .fn = ipa_server_driver_init_complete,
247 },
248 { },
249};
250
251/* Handle an INIT_DRIVER response message from the modem. */
252static void ipa_client_init_driver(struct qmi_handle *qmi,
253 struct sockaddr_qrtr *sq,
254 struct qmi_txn *txn, const void *decoded)
255{
256 txn->result = 0; /* IPA_QMI_INIT_DRIVER request was successful */
257 complete(&txn->completion);
258}
259
260/* The client handles one response message type sent by the modem. */
261static const struct qmi_msg_handler ipa_client_msg_handlers[] = {
262 {
263 .type = QMI_RESPONSE,
264 .msg_id = IPA_QMI_INIT_DRIVER,
265 .ei = ipa_init_modem_driver_rsp_ei,
266 .decoded_size = IPA_QMI_INIT_DRIVER_RSP_SZ,
267 .fn = ipa_client_init_driver,
268 },
269 { },
270};
271
272/* Return a pointer to an init modem driver request structure, which contains
273 * configuration parameters for the modem. The modem may be started multiple
274 * times, but generally these parameters don't change so we can reuse the
275 * request structure once it's initialized. The only exception is the
276 * skip_uc_load field, which will be set only after the microcontroller has
277 * reported it has completed its initialization.
278 */
279static const struct ipa_init_modem_driver_req *
280init_modem_driver_req(struct ipa_qmi *ipa_qmi)
281{
282 struct ipa *ipa = container_of(ipa_qmi, struct ipa, qmi);
283 u32 modem_route_count = ipa->modem_route_count;
284 static struct ipa_init_modem_driver_req req;
285 const struct ipa_mem *mem;
286
287 /* The microcontroller is initialized on the first boot */
288 req.skip_uc_load_valid = 1;
289 req.skip_uc_load = ipa->uc_loaded ? 1 : 0;
290
291 /* We only have to initialize most of it once */
292 if (req.platform_type_valid)
293 return &req;
294
295 req.platform_type_valid = 1;
296 req.platform_type = IPA_QMI_PLATFORM_TYPE_MSM_ANDROID;
297
298 mem = ipa_mem_find(ipa, IPA_MEM_MODEM_HEADER);
299 if (mem->size) {
300 req.hdr_tbl_info_valid = 1;
301 req.hdr_tbl_info.start = ipa->mem_offset + mem->offset;
302 req.hdr_tbl_info.end = req.hdr_tbl_info.start + mem->size - 1;
303 }
304
305 mem = ipa_mem_find(ipa, IPA_MEM_V4_ROUTE);
306 req.v4_route_tbl_info_valid = 1;
307 req.v4_route_tbl_info.start = ipa->mem_offset + mem->offset;
308 req.v4_route_tbl_info.end = modem_route_count - 1;
309
310 mem = ipa_mem_find(ipa, IPA_MEM_V6_ROUTE);
311 req.v6_route_tbl_info_valid = 1;
312 req.v6_route_tbl_info.start = ipa->mem_offset + mem->offset;
313 req.v6_route_tbl_info.end = modem_route_count - 1;
314
315 mem = ipa_mem_find(ipa, IPA_MEM_V4_FILTER);
316 req.v4_filter_tbl_start_valid = 1;
317 req.v4_filter_tbl_start = ipa->mem_offset + mem->offset;
318
319 mem = ipa_mem_find(ipa, IPA_MEM_V6_FILTER);
320 req.v6_filter_tbl_start_valid = 1;
321 req.v6_filter_tbl_start = ipa->mem_offset + mem->offset;
322
323 mem = ipa_mem_find(ipa, IPA_MEM_MODEM);
324 if (mem->size) {
325 req.modem_mem_info_valid = 1;
326 req.modem_mem_info.start = ipa->mem_offset + mem->offset;
327 req.modem_mem_info.size = mem->size;
328 }
329
330 req.ctrl_comm_dest_end_pt_valid = 1;
331 req.ctrl_comm_dest_end_pt =
332 ipa->name_map[IPA_ENDPOINT_AP_MODEM_RX]->endpoint_id;
333
334 /* skip_uc_load_valid and skip_uc_load are set above */
335
336 mem = ipa_mem_find(ipa, IPA_MEM_MODEM_PROC_CTX);
337 if (mem->size) {
338 req.hdr_proc_ctx_tbl_info_valid = 1;
339 req.hdr_proc_ctx_tbl_info.start =
340 ipa->mem_offset + mem->offset;
341 req.hdr_proc_ctx_tbl_info.end =
342 req.hdr_proc_ctx_tbl_info.start + mem->size - 1;
343 }
344
345 /* Nothing to report for the compression table (zip_tbl_info) */
346
347 mem = ipa_mem_find(ipa, IPA_MEM_V4_ROUTE_HASHED);
348 if (mem->size) {
349 req.v4_hash_route_tbl_info_valid = 1;
350 req.v4_hash_route_tbl_info.start =
351 ipa->mem_offset + mem->offset;
352 req.v4_hash_route_tbl_info.end = modem_route_count - 1;
353 }
354
355 mem = ipa_mem_find(ipa, IPA_MEM_V6_ROUTE_HASHED);
356 if (mem->size) {
357 req.v6_hash_route_tbl_info_valid = 1;
358 req.v6_hash_route_tbl_info.start =
359 ipa->mem_offset + mem->offset;
360 req.v6_hash_route_tbl_info.end = modem_route_count - 1;
361 }
362
363 mem = ipa_mem_find(ipa, IPA_MEM_V4_FILTER_HASHED);
364 if (mem->size) {
365 req.v4_hash_filter_tbl_start_valid = 1;
366 req.v4_hash_filter_tbl_start = ipa->mem_offset + mem->offset;
367 }
368
369 mem = ipa_mem_find(ipa, IPA_MEM_V6_FILTER_HASHED);
370 if (mem->size) {
371 req.v6_hash_filter_tbl_start_valid = 1;
372 req.v6_hash_filter_tbl_start = ipa->mem_offset + mem->offset;
373 }
374
375 /* The stats fields are only valid for IPA v4.0+ */
376 if (ipa->version >= IPA_VERSION_4_0) {
377 mem = ipa_mem_find(ipa, IPA_MEM_STATS_QUOTA_MODEM);
378 if (mem->size) {
379 req.hw_stats_quota_base_addr_valid = 1;
380 req.hw_stats_quota_base_addr =
381 ipa->mem_offset + mem->offset;
382 req.hw_stats_quota_size_valid = 1;
383 req.hw_stats_quota_size = ipa->mem_offset + mem->size;
384 }
385
386 /* If the DROP stats region is defined, include it */
387 mem = ipa_mem_find(ipa, IPA_MEM_STATS_DROP);
388 if (mem && mem->size) {
389 req.hw_stats_drop_base_addr_valid = 1;
390 req.hw_stats_drop_base_addr =
391 ipa->mem_offset + mem->offset;
392 req.hw_stats_drop_size_valid = 1;
393 req.hw_stats_drop_size = ipa->mem_offset + mem->size;
394 }
395 }
396
397 return &req;
398}
399
400/* Send an INIT_DRIVER request to the modem, and wait for it to complete. */
401static void ipa_client_init_driver_work(struct work_struct *work)
402{
403 unsigned long timeout = msecs_to_jiffies(QMI_INIT_DRIVER_TIMEOUT);
404 const struct ipa_init_modem_driver_req *req;
405 struct ipa_qmi *ipa_qmi;
406 struct qmi_handle *qmi;
407 struct qmi_txn txn;
408 struct device *dev;
409 struct ipa *ipa;
410 int ret;
411
412 ipa_qmi = container_of(work, struct ipa_qmi, init_driver_work);
413 qmi = &ipa_qmi->client_handle;
414
415 ipa = container_of(ipa_qmi, struct ipa, qmi);
416 dev = ipa->dev;
417
418 ret = qmi_txn_init(qmi, &txn, NULL, NULL);
419 if (ret < 0) {
420 dev_err(dev, "error %d preparing init driver request\n", ret);
421 return;
422 }
423
424 /* Send the request, and if successful wait for its response */
425 req = init_modem_driver_req(ipa_qmi);
426 ret = qmi_send_request(qmi, &ipa_qmi->modem_sq, &txn,
427 IPA_QMI_INIT_DRIVER, IPA_QMI_INIT_DRIVER_REQ_SZ,
428 ipa_init_modem_driver_req_ei, req);
429 if (ret)
430 dev_err(dev, "error %d sending init driver request\n", ret);
431 else if ((ret = qmi_txn_wait(&txn, timeout)))
432 dev_err(dev, "error %d awaiting init driver response\n", ret);
433
434 if (!ret) {
435 ipa_qmi->modem_ready = true;
436 ipa_qmi_ready(ipa_qmi); /* We might be ready now */
437 } else {
438 /* If any error occurs we need to cancel the transaction */
439 qmi_txn_cancel(&txn);
440 }
441}
442
443/* The modem server is now available. We will send an INIT_DRIVER request
444 * to the modem, but can't wait for it to complete in this callback thread.
445 * Schedule a worker on the global workqueue to do that for us.
446 */
447static int
448ipa_client_new_server(struct qmi_handle *qmi, struct qmi_service *svc)
449{
450 struct ipa_qmi *ipa_qmi;
451
452 ipa_qmi = container_of(qmi, struct ipa_qmi, client_handle);
453
454 ipa_qmi->modem_sq.sq_family = AF_QIPCRTR;
455 ipa_qmi->modem_sq.sq_node = svc->node;
456 ipa_qmi->modem_sq.sq_port = svc->port;
457
458 schedule_work(&ipa_qmi->init_driver_work);
459
460 return 0;
461}
462
463static const struct qmi_ops ipa_client_ops = {
464 .new_server = ipa_client_new_server,
465};
466
467/* Set up for QMI message exchange */
468int ipa_qmi_setup(struct ipa *ipa)
469{
470 struct ipa_qmi *ipa_qmi = &ipa->qmi;
471 int ret;
472
473 ipa_qmi->initial_boot = true;
474
475 /* The server handle is used to handle the DRIVER_INIT_COMPLETE
476 * request on the first modem boot. It also receives the
477 * INDICATION_REGISTER request on the first boot and (optionally)
478 * subsequent boots. The INIT_COMPLETE indication message is
479 * sent over the server handle if requested.
480 */
481 ret = qmi_handle_init(&ipa_qmi->server_handle,
482 IPA_QMI_SERVER_MAX_RCV_SZ, &ipa_server_ops,
483 ipa_server_msg_handlers);
484 if (ret)
485 return ret;
486
487 ret = qmi_add_server(&ipa_qmi->server_handle, IPA_HOST_SERVICE_SVC_ID,
488 IPA_HOST_SVC_VERS, IPA_HOST_SERVICE_INS_ID);
489 if (ret)
490 goto err_server_handle_release;
491
492 /* The client handle is only used for sending an INIT_DRIVER request
493 * to the modem, and receiving its response message.
494 */
495 ret = qmi_handle_init(&ipa_qmi->client_handle,
496 IPA_QMI_CLIENT_MAX_RCV_SZ, &ipa_client_ops,
497 ipa_client_msg_handlers);
498 if (ret)
499 goto err_server_handle_release;
500
501 /* We need this ready before the service lookup is added */
502 INIT_WORK(&ipa_qmi->init_driver_work, ipa_client_init_driver_work);
503
504 ret = qmi_add_lookup(&ipa_qmi->client_handle, IPA_MODEM_SERVICE_SVC_ID,
505 IPA_MODEM_SVC_VERS, IPA_MODEM_SERVICE_INS_ID);
506 if (ret)
507 goto err_client_handle_release;
508
509 return 0;
510
511err_client_handle_release:
512 /* Releasing the handle also removes registered lookups */
513 qmi_handle_release(&ipa_qmi->client_handle);
514 memset(&ipa_qmi->client_handle, 0, sizeof(ipa_qmi->client_handle));
515err_server_handle_release:
516 /* Releasing the handle also removes registered services */
517 qmi_handle_release(&ipa_qmi->server_handle);
518 memset(&ipa_qmi->server_handle, 0, sizeof(ipa_qmi->server_handle));
519
520 return ret;
521}
522
523/* Tear down IPA QMI handles */
524void ipa_qmi_teardown(struct ipa *ipa)
525{
526 cancel_work_sync(&ipa->qmi.init_driver_work);
527
528 qmi_handle_release(&ipa->qmi.client_handle);
529 memset(&ipa->qmi.client_handle, 0, sizeof(ipa->qmi.client_handle));
530
531 qmi_handle_release(&ipa->qmi.server_handle);
532 memset(&ipa->qmi.server_handle, 0, sizeof(ipa->qmi.server_handle));
533}