Loading...
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 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 | // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2016, Linaro Ltd. * Copyright (c) 2015, Sony Mobile Communications Inc. */ #include <linux/firmware.h> #include <linux/module.h> #include <linux/slab.h> #include <linux/io.h> #include <linux/of.h> #include <linux/of_platform.h> #include <linux/platform_device.h> #include <linux/rpmsg.h> #include <linux/soc/qcom/wcnss_ctrl.h> #define WCNSS_REQUEST_TIMEOUT (5 * HZ) #define WCNSS_CBC_TIMEOUT (10 * HZ) #define WCNSS_ACK_DONE_BOOTING 1 #define WCNSS_ACK_COLD_BOOTING 2 #define NV_FRAGMENT_SIZE 3072 #define NVBIN_FILE "wlan/prima/WCNSS_qcom_wlan_nv.bin" /** * struct wcnss_ctrl - driver context * @dev: device handle * @channel: SMD channel handle * @ack: completion for outstanding requests * @cbc: completion for cbc complete indication * @ack_status: status of the outstanding request * @probe_work: worker for uploading nv binary */ struct wcnss_ctrl { struct device *dev; struct rpmsg_endpoint *channel; struct completion ack; struct completion cbc; int ack_status; struct work_struct probe_work; }; /* message types */ enum { WCNSS_VERSION_REQ = 0x01000000, WCNSS_VERSION_RESP, WCNSS_DOWNLOAD_NV_REQ, WCNSS_DOWNLOAD_NV_RESP, WCNSS_UPLOAD_CAL_REQ, WCNSS_UPLOAD_CAL_RESP, WCNSS_DOWNLOAD_CAL_REQ, WCNSS_DOWNLOAD_CAL_RESP, WCNSS_VBAT_LEVEL_IND, WCNSS_BUILD_VERSION_REQ, WCNSS_BUILD_VERSION_RESP, WCNSS_PM_CONFIG_REQ, WCNSS_CBC_COMPLETE_IND, }; /** * struct wcnss_msg_hdr - common packet header for requests and responses * @type: packet message type * @len: total length of the packet, including this header */ struct wcnss_msg_hdr { u32 type; u32 len; } __packed; /* * struct wcnss_version_resp - version request response */ struct wcnss_version_resp { struct wcnss_msg_hdr hdr; u8 major; u8 minor; u8 version; u8 revision; } __packed; /** * struct wcnss_download_nv_req - firmware fragment request * @hdr: common packet wcnss_msg_hdr header * @seq: sequence number of this fragment * @last: boolean indicator of this being the last fragment of the binary * @frag_size: length of this fragment * @fragment: fragment data */ struct wcnss_download_nv_req { struct wcnss_msg_hdr hdr; u16 seq; u16 last; u32 frag_size; u8 fragment[]; } __packed; /** * struct wcnss_download_nv_resp - firmware download response * @hdr: common packet wcnss_msg_hdr header * @status: boolean to indicate success of the download */ struct wcnss_download_nv_resp { struct wcnss_msg_hdr hdr; u8 status; } __packed; /** * wcnss_ctrl_smd_callback() - handler from SMD responses * @rpdev: remote processor message device pointer * @data: pointer to the incoming data packet * @count: size of the incoming data packet * @priv: unused * @addr: unused * * Handles any incoming packets from the remote WCNSS_CTRL service. */ static int wcnss_ctrl_smd_callback(struct rpmsg_device *rpdev, void *data, int count, void *priv, u32 addr) { struct wcnss_ctrl *wcnss = dev_get_drvdata(&rpdev->dev); const struct wcnss_download_nv_resp *nvresp; const struct wcnss_version_resp *version; const struct wcnss_msg_hdr *hdr = data; switch (hdr->type) { case WCNSS_VERSION_RESP: if (count != sizeof(*version)) { dev_err(wcnss->dev, "invalid size of version response\n"); break; } version = data; dev_info(wcnss->dev, "WCNSS Version %d.%d %d.%d\n", version->major, version->minor, version->version, version->revision); complete(&wcnss->ack); break; case WCNSS_DOWNLOAD_NV_RESP: if (count != sizeof(*nvresp)) { dev_err(wcnss->dev, "invalid size of download response\n"); break; } nvresp = data; wcnss->ack_status = nvresp->status; complete(&wcnss->ack); break; case WCNSS_CBC_COMPLETE_IND: dev_dbg(wcnss->dev, "cold boot complete\n"); complete(&wcnss->cbc); break; default: dev_info(wcnss->dev, "unknown message type %d\n", hdr->type); break; } return 0; } /** * wcnss_request_version() - send a version request to WCNSS * @wcnss: wcnss ctrl driver context */ static int wcnss_request_version(struct wcnss_ctrl *wcnss) { struct wcnss_msg_hdr msg; int ret; msg.type = WCNSS_VERSION_REQ; msg.len = sizeof(msg); ret = rpmsg_send(wcnss->channel, &msg, sizeof(msg)); if (ret < 0) return ret; ret = wait_for_completion_timeout(&wcnss->ack, WCNSS_CBC_TIMEOUT); if (!ret) { dev_err(wcnss->dev, "timeout waiting for version response\n"); return -ETIMEDOUT; } return 0; } /** * wcnss_download_nv() - send nv binary to WCNSS * @wcnss: wcnss_ctrl state handle * @expect_cbc: indicator to caller that an cbc event is expected * * Returns 0 on success. Negative errno on failure. */ static int wcnss_download_nv(struct wcnss_ctrl *wcnss, bool *expect_cbc) { struct wcnss_download_nv_req *req; const struct firmware *fw; struct device *dev = wcnss->dev; const char *nvbin = NVBIN_FILE; const void *data; ssize_t left; int ret; req = kzalloc(sizeof(*req) + NV_FRAGMENT_SIZE, GFP_KERNEL); if (!req) return -ENOMEM; ret = of_property_read_string(dev->of_node, "firmware-name", &nvbin); if (ret < 0 && ret != -EINVAL) goto free_req; ret = request_firmware(&fw, nvbin, dev); if (ret < 0) { dev_err(dev, "Failed to load nv file %s: %d\n", nvbin, ret); goto free_req; } data = fw->data; left = fw->size; req->hdr.type = WCNSS_DOWNLOAD_NV_REQ; req->hdr.len = sizeof(*req) + NV_FRAGMENT_SIZE; req->last = 0; req->frag_size = NV_FRAGMENT_SIZE; req->seq = 0; do { if (left <= NV_FRAGMENT_SIZE) { req->last = 1; req->frag_size = left; req->hdr.len = sizeof(*req) + left; } memcpy(req->fragment, data, req->frag_size); ret = rpmsg_send(wcnss->channel, req, req->hdr.len); if (ret < 0) { dev_err(dev, "failed to send smd packet\n"); goto release_fw; } /* Increment for next fragment */ req->seq++; data += NV_FRAGMENT_SIZE; left -= NV_FRAGMENT_SIZE; } while (left > 0); ret = wait_for_completion_timeout(&wcnss->ack, WCNSS_REQUEST_TIMEOUT); if (!ret) { dev_err(dev, "timeout waiting for nv upload ack\n"); ret = -ETIMEDOUT; } else { *expect_cbc = wcnss->ack_status == WCNSS_ACK_COLD_BOOTING; ret = 0; } release_fw: release_firmware(fw); free_req: kfree(req); return ret; } /** * qcom_wcnss_open_channel() - open additional SMD channel to WCNSS * @wcnss: wcnss handle, retrieved from drvdata * @name: SMD channel name * @cb: callback to handle incoming data on the channel * @priv: private data for use in the call-back */ struct rpmsg_endpoint *qcom_wcnss_open_channel(void *wcnss, const char *name, rpmsg_rx_cb_t cb, void *priv) { struct rpmsg_channel_info chinfo; struct wcnss_ctrl *_wcnss = wcnss; strscpy(chinfo.name, name, sizeof(chinfo.name)); chinfo.src = RPMSG_ADDR_ANY; chinfo.dst = RPMSG_ADDR_ANY; return rpmsg_create_ept(_wcnss->channel->rpdev, cb, priv, chinfo); } EXPORT_SYMBOL(qcom_wcnss_open_channel); static void wcnss_async_probe(struct work_struct *work) { struct wcnss_ctrl *wcnss = container_of(work, struct wcnss_ctrl, probe_work); bool expect_cbc; int ret; ret = wcnss_request_version(wcnss); if (ret < 0) return; ret = wcnss_download_nv(wcnss, &expect_cbc); if (ret < 0) return; /* Wait for pending cold boot completion if indicated by the nv downloader */ if (expect_cbc) { ret = wait_for_completion_timeout(&wcnss->cbc, WCNSS_REQUEST_TIMEOUT); if (!ret) dev_err(wcnss->dev, "expected cold boot completion\n"); } of_platform_populate(wcnss->dev->of_node, NULL, NULL, wcnss->dev); } static int wcnss_ctrl_probe(struct rpmsg_device *rpdev) { struct wcnss_ctrl *wcnss; wcnss = devm_kzalloc(&rpdev->dev, sizeof(*wcnss), GFP_KERNEL); if (!wcnss) return -ENOMEM; wcnss->dev = &rpdev->dev; wcnss->channel = rpdev->ept; init_completion(&wcnss->ack); init_completion(&wcnss->cbc); INIT_WORK(&wcnss->probe_work, wcnss_async_probe); dev_set_drvdata(&rpdev->dev, wcnss); schedule_work(&wcnss->probe_work); return 0; } static void wcnss_ctrl_remove(struct rpmsg_device *rpdev) { struct wcnss_ctrl *wcnss = dev_get_drvdata(&rpdev->dev); cancel_work_sync(&wcnss->probe_work); of_platform_depopulate(&rpdev->dev); } static const struct of_device_id wcnss_ctrl_of_match[] = { { .compatible = "qcom,wcnss", }, {} }; MODULE_DEVICE_TABLE(of, wcnss_ctrl_of_match); static struct rpmsg_driver wcnss_ctrl_driver = { .probe = wcnss_ctrl_probe, .remove = wcnss_ctrl_remove, .callback = wcnss_ctrl_smd_callback, .drv = { .name = "qcom_wcnss_ctrl", .owner = THIS_MODULE, .of_match_table = wcnss_ctrl_of_match, }, }; module_rpmsg_driver(wcnss_ctrl_driver); MODULE_DESCRIPTION("Qualcomm WCNSS control driver"); MODULE_LICENSE("GPL v2"); |