2 * Copyright (c) 2016, Linaro Ltd.
3 * Copyright (c) 2015, Sony Mobile Communications Inc.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 and
7 * only version 2 as published by the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 #include <linux/firmware.h>
15 #include <linux/module.h>
16 #include <linux/slab.h>
17 #include <linux/soc/qcom/smd.h>
19 #include <linux/of_platform.h>
20 #include <linux/platform_device.h>
21 #include <linux/soc/qcom/wcnss_ctrl.h>
23 #define WCNSS_REQUEST_TIMEOUT (5 * HZ)
24 #define WCNSS_CBC_TIMEOUT (10 * HZ)
26 #define WCNSS_ACK_DONE_BOOTING 1
27 #define WCNSS_ACK_COLD_BOOTING 2
29 #define NV_FRAGMENT_SIZE 3072
30 #define NVBIN_FILE "wlan/prima/WCNSS_qcom_wlan_nv.bin"
33 * struct wcnss_ctrl - driver context
35 * @channel: SMD channel handle
36 * @ack: completion for outstanding requests
37 * @cbc: completion for cbc complete indication
38 * @ack_status: status of the outstanding request
39 * @probe_work: worker for uploading nv binary
43 struct qcom_smd_channel
*channel
;
45 struct completion ack
;
46 struct completion cbc
;
49 struct work_struct probe_work
;
54 WCNSS_VERSION_REQ
= 0x01000000,
56 WCNSS_DOWNLOAD_NV_REQ
,
57 WCNSS_DOWNLOAD_NV_RESP
,
59 WCNSS_UPLOAD_CAL_RESP
,
60 WCNSS_DOWNLOAD_CAL_REQ
,
61 WCNSS_DOWNLOAD_CAL_RESP
,
63 WCNSS_BUILD_VERSION_REQ
,
64 WCNSS_BUILD_VERSION_RESP
,
66 WCNSS_CBC_COMPLETE_IND
,
70 * struct wcnss_msg_hdr - common packet header for requests and responses
71 * @type: packet message type
72 * @len: total length of the packet, including this header
74 struct wcnss_msg_hdr
{
80 * struct wcnss_version_resp - version request response
81 * @hdr: common packet wcnss_msg_hdr header
83 struct wcnss_version_resp
{
84 struct wcnss_msg_hdr hdr
;
92 * struct wcnss_download_nv_req - firmware fragment request
93 * @hdr: common packet wcnss_msg_hdr header
94 * @seq: sequence number of this fragment
95 * @last: boolean indicator of this being the last fragment of the binary
96 * @frag_size: length of this fragment
97 * @fragment: fragment data
99 struct wcnss_download_nv_req
{
100 struct wcnss_msg_hdr hdr
;
108 * struct wcnss_download_nv_resp - firmware download response
109 * @hdr: common packet wcnss_msg_hdr header
110 * @status: boolean to indicate success of the download
112 struct wcnss_download_nv_resp
{
113 struct wcnss_msg_hdr hdr
;
118 * wcnss_ctrl_smd_callback() - handler from SMD responses
119 * @channel: smd channel handle
120 * @data: pointer to the incoming data packet
121 * @count: size of the incoming data packet
123 * Handles any incoming packets from the remote WCNSS_CTRL service.
125 static int wcnss_ctrl_smd_callback(struct qcom_smd_channel
*channel
,
129 struct wcnss_ctrl
*wcnss
= qcom_smd_get_drvdata(channel
);
130 const struct wcnss_download_nv_resp
*nvresp
;
131 const struct wcnss_version_resp
*version
;
132 const struct wcnss_msg_hdr
*hdr
= data
;
135 case WCNSS_VERSION_RESP
:
136 if (count
!= sizeof(*version
)) {
138 "invalid size of version response\n");
143 dev_info(wcnss
->dev
, "WCNSS Version %d.%d %d.%d\n",
144 version
->major
, version
->minor
,
145 version
->version
, version
->revision
);
147 complete(&wcnss
->ack
);
149 case WCNSS_DOWNLOAD_NV_RESP
:
150 if (count
!= sizeof(*nvresp
)) {
152 "invalid size of download response\n");
157 wcnss
->ack_status
= nvresp
->status
;
158 complete(&wcnss
->ack
);
160 case WCNSS_CBC_COMPLETE_IND
:
161 dev_dbg(wcnss
->dev
, "cold boot complete\n");
162 complete(&wcnss
->cbc
);
165 dev_info(wcnss
->dev
, "unknown message type %d\n", hdr
->type
);
173 * wcnss_request_version() - send a version request to WCNSS
174 * @wcnss: wcnss ctrl driver context
176 static int wcnss_request_version(struct wcnss_ctrl
*wcnss
)
178 struct wcnss_msg_hdr msg
;
181 msg
.type
= WCNSS_VERSION_REQ
;
182 msg
.len
= sizeof(msg
);
183 ret
= qcom_smd_send(wcnss
->channel
, &msg
, sizeof(msg
));
187 ret
= wait_for_completion_timeout(&wcnss
->ack
, WCNSS_CBC_TIMEOUT
);
189 dev_err(wcnss
->dev
, "timeout waiting for version response\n");
197 * wcnss_download_nv() - send nv binary to WCNSS
198 * @wcnss: wcnss_ctrl state handle
199 * @expect_cbc: indicator to caller that an cbc event is expected
201 * Returns 0 on success. Negative errno on failure.
203 static int wcnss_download_nv(struct wcnss_ctrl
*wcnss
, bool *expect_cbc
)
205 struct wcnss_download_nv_req
*req
;
206 const struct firmware
*fw
;
211 req
= kzalloc(sizeof(*req
) + NV_FRAGMENT_SIZE
, GFP_KERNEL
);
215 ret
= request_firmware(&fw
, NVBIN_FILE
, wcnss
->dev
);
217 dev_err(wcnss
->dev
, "Failed to load nv file %s: %d\n",
225 req
->hdr
.type
= WCNSS_DOWNLOAD_NV_REQ
;
226 req
->hdr
.len
= sizeof(*req
) + NV_FRAGMENT_SIZE
;
229 req
->frag_size
= NV_FRAGMENT_SIZE
;
233 if (left
<= NV_FRAGMENT_SIZE
) {
235 req
->frag_size
= left
;
236 req
->hdr
.len
= sizeof(*req
) + left
;
239 memcpy(req
->fragment
, data
, req
->frag_size
);
241 ret
= qcom_smd_send(wcnss
->channel
, req
, req
->hdr
.len
);
243 dev_err(wcnss
->dev
, "failed to send smd packet\n");
247 /* Increment for next fragment */
250 data
+= req
->hdr
.len
;
251 left
-= NV_FRAGMENT_SIZE
;
254 ret
= wait_for_completion_timeout(&wcnss
->ack
, WCNSS_REQUEST_TIMEOUT
);
256 dev_err(wcnss
->dev
, "timeout waiting for nv upload ack\n");
259 *expect_cbc
= wcnss
->ack_status
== WCNSS_ACK_COLD_BOOTING
;
264 release_firmware(fw
);
272 * qcom_wcnss_open_channel() - open additional SMD channel to WCNSS
273 * @wcnss: wcnss handle, retrieved from drvdata
274 * @name: SMD channel name
275 * @cb: callback to handle incoming data on the channel
277 struct qcom_smd_channel
*qcom_wcnss_open_channel(void *wcnss
, const char *name
, qcom_smd_cb_t cb
)
279 struct wcnss_ctrl
*_wcnss
= wcnss
;
281 return qcom_smd_open_channel(_wcnss
->channel
, name
, cb
);
283 EXPORT_SYMBOL(qcom_wcnss_open_channel
);
285 static void wcnss_async_probe(struct work_struct
*work
)
287 struct wcnss_ctrl
*wcnss
= container_of(work
, struct wcnss_ctrl
, probe_work
);
291 ret
= wcnss_request_version(wcnss
);
295 ret
= wcnss_download_nv(wcnss
, &expect_cbc
);
299 /* Wait for pending cold boot completion if indicated by the nv downloader */
301 ret
= wait_for_completion_timeout(&wcnss
->cbc
, WCNSS_REQUEST_TIMEOUT
);
303 dev_err(wcnss
->dev
, "expected cold boot completion\n");
306 of_platform_populate(wcnss
->dev
->of_node
, NULL
, NULL
, wcnss
->dev
);
309 static int wcnss_ctrl_probe(struct qcom_smd_device
*sdev
)
311 struct wcnss_ctrl
*wcnss
;
313 wcnss
= devm_kzalloc(&sdev
->dev
, sizeof(*wcnss
), GFP_KERNEL
);
317 wcnss
->dev
= &sdev
->dev
;
318 wcnss
->channel
= sdev
->channel
;
320 init_completion(&wcnss
->ack
);
321 init_completion(&wcnss
->cbc
);
322 INIT_WORK(&wcnss
->probe_work
, wcnss_async_probe
);
324 qcom_smd_set_drvdata(sdev
->channel
, wcnss
);
325 dev_set_drvdata(&sdev
->dev
, wcnss
);
327 schedule_work(&wcnss
->probe_work
);
332 static void wcnss_ctrl_remove(struct qcom_smd_device
*sdev
)
334 struct wcnss_ctrl
*wcnss
= qcom_smd_get_drvdata(sdev
->channel
);
336 cancel_work_sync(&wcnss
->probe_work
);
337 of_platform_depopulate(&sdev
->dev
);
340 static const struct of_device_id wcnss_ctrl_of_match
[] = {
341 { .compatible
= "qcom,wcnss", },
345 static struct qcom_smd_driver wcnss_ctrl_driver
= {
346 .probe
= wcnss_ctrl_probe
,
347 .remove
= wcnss_ctrl_remove
,
348 .callback
= wcnss_ctrl_smd_callback
,
350 .name
= "qcom_wcnss_ctrl",
351 .owner
= THIS_MODULE
,
352 .of_match_table
= wcnss_ctrl_of_match
,
356 module_qcom_smd_driver(wcnss_ctrl_driver
);
358 MODULE_DESCRIPTION("Qualcomm WCNSS control driver");
359 MODULE_LICENSE("GPL v2");