1 // SPDX-License-Identifier: GPL-2.0
3 * ISH-TP client driver for ISH firmware loading
5 * Copyright (c) 2019, Intel Corporation.
8 #include <linux/firmware.h>
9 #include <linux/module.h>
10 #include <linux/pci.h>
11 #include <linux/intel-ish-client-if.h>
12 #include <linux/property.h>
13 #include <asm/cacheflush.h>
15 /* Number of times we attempt to load the firmware before giving up */
16 #define MAX_LOAD_ATTEMPTS 3
18 /* ISH TX/RX ring buffer pool size */
19 #define LOADER_CL_RX_RING_SIZE 1
20 #define LOADER_CL_TX_RING_SIZE 1
23 * ISH Shim firmware loader reserves 4 Kb buffer in SRAM. The buffer is
24 * used to temporarily hold the data transferred from host to Shim
25 * firmware loader. Reason for the odd size of 3968 bytes? Each IPC
26 * transfer is 128 bytes (= 4 bytes header + 124 bytes payload). So the
27 * 4 Kb buffer can hold maximum of 32 IPC transfers, which means we can
28 * have a max payload of 3968 bytes (= 32 x 124 payload).
30 #define LOADER_SHIM_IPC_BUF_SIZE 3968
33 * enum ish_loader_commands - ISH loader host commands.
34 * LOADER_CMD_XFER_QUERY Query the Shim firmware loader for
36 * LOADER_CMD_XFER_FRAGMENT Transfer one firmware image fragment at a
37 * time. The command may be executed
38 * multiple times until the entire firmware
39 * image is downloaded to SRAM.
40 * LOADER_CMD_START Start executing the main firmware.
42 enum ish_loader_commands
{
43 LOADER_CMD_XFER_QUERY
= 0,
44 LOADER_CMD_XFER_FRAGMENT
,
48 /* Command bit mask */
49 #define CMD_MASK GENMASK(6, 0)
50 #define IS_RESPONSE BIT(7)
53 * ISH firmware max delay for one transmit failure is 1 Hz,
54 * and firmware will retry 2 times, so 3 Hz is used for timeout.
56 #define ISHTP_SEND_TIMEOUT (3 * HZ)
59 * Loader transfer modes:
61 * LOADER_XFER_MODE_ISHTP mode uses the existing ISH-TP mechanism to
62 * transfer data. This may use IPC or DMA if supported in firmware.
63 * The buffer size is limited to 4 Kb by the IPC/ISH-TP protocol for
64 * both IPC & DMA (legacy).
66 * LOADER_XFER_MODE_DIRECT_DMA - firmware loading is a bit different
67 * from the sensor data streaming. Here we download a large (300+ Kb)
68 * image directly to ISH SRAM memory. There is limited benefit of
69 * DMA'ing 300 Kb image in 4 Kb chucks limit. Hence, we introduce
70 * this "direct dma" mode, where we do not use ISH-TP for DMA, but
71 * instead manage the DMA directly in kernel driver and Shim firmware
72 * loader (allocate buffer, break in chucks and transfer). This allows
73 * to overcome 4 Kb limit, and optimize the data flow path in firmware.
75 #define LOADER_XFER_MODE_DIRECT_DMA BIT(0)
76 #define LOADER_XFER_MODE_ISHTP BIT(1)
78 /* ISH Transport Loader client unique GUID */
79 static const guid_t loader_ishtp_guid
=
80 GUID_INIT(0xc804d06a, 0x55bd, 0x4ea7,
81 0xad, 0xed, 0x1e, 0x31, 0x22, 0x8c, 0x76, 0xdc);
83 #define FILENAME_SIZE 256
86 * The firmware loading latency will be minimum if we can DMA the
87 * entire ISH firmware image in one go. This requires that we allocate
88 * a large DMA buffer in kernel, which could be problematic on some
89 * platforms. So here we limit the DMA buffer size via a module_param.
90 * We default to 4 pages, but a customer can set it to higher limit if
91 * deemed appropriate for his platform.
93 static int dma_buf_size_limit
= 4 * PAGE_SIZE
;
96 * struct loader_msg_hdr - Header for ISH Loader commands.
97 * @command: LOADER_CMD* commands. Bit 7 is the response.
98 * @status: Command response status. Non 0, is error
101 * This structure is used as header for every command/data sent/received
102 * between Host driver and ISH Shim firmware loader.
104 struct loader_msg_hdr
{
110 struct loader_xfer_query
{
111 struct loader_msg_hdr hdr
;
115 struct ish_fw_version
{
122 union loader_version
{
132 struct loader_capability
{
133 u32 max_fw_image_size
;
135 u32 max_dma_buf_size
; /* only for dma mode, multiples of cacheline */
138 struct shim_fw_info
{
139 struct ish_fw_version ish_fw_version
;
140 u32 protocol_version
;
141 union loader_version ldr_version
;
142 struct loader_capability ldr_capability
;
145 struct loader_xfer_query_response
{
146 struct loader_msg_hdr hdr
;
147 struct shim_fw_info fw_info
;
150 struct loader_xfer_fragment
{
151 struct loader_msg_hdr hdr
;
158 struct loader_xfer_ipc_fragment
{
159 struct loader_xfer_fragment fragment
;
160 u8 data
[] ____cacheline_aligned
; /* variable length payload here */
163 struct loader_xfer_dma_fragment
{
164 struct loader_xfer_fragment fragment
;
168 struct loader_start
{
169 struct loader_msg_hdr hdr
;
173 * struct response_info - Encapsulate firmware response related
174 * information for passing between function
175 * loader_cl_send() and process_recv() callback.
176 * @data Copy the data received from firmware here.
177 * @max_size Max size allocated for the @data buffer. If the
178 * received data exceeds this value, we log an
180 * @size Actual size of data received from firmware.
181 * @error Returns 0 for success, negative error code for a
182 * failure in function process_recv().
183 * @received Set to true on receiving a valid firmware
184 * response to host command
185 * @wait_queue Wait queue for Host firmware loading where the
186 * client sends message to ISH firmware and waits
189 struct response_info
{
195 wait_queue_head_t wait_queue
;
199 * struct ishtp_cl_data - Encapsulate per ISH-TP Client Data.
200 * @work_ishtp_reset: Work queue for reset handling.
201 * @work_fw_load: Work queue for host firmware loading.
202 * @flag_retry Flag for indicating host firmware loading should
204 * @retry_count Count the number of retries.
206 * This structure is used to store data per client.
208 struct ishtp_cl_data
{
209 struct ishtp_cl
*loader_ishtp_cl
;
210 struct ishtp_cl_device
*cl_device
;
213 * Used for passing firmware response information between
214 * loader_cl_send() and process_recv() callback.
216 struct response_info response
;
218 struct work_struct work_ishtp_reset
;
219 struct work_struct work_fw_load
;
222 * In certain failure scenrios, it makes sense to reset the ISH
223 * subsystem and retry Host firmware loading (e.g. bad message
224 * packet, ENOMEM, etc.). On the other hand, failures due to
225 * protocol mismatch, etc., are not recoverable. We do not
228 * If set, the flag indicates that we should re-try the
229 * particular failure.
235 #define IPC_FRAGMENT_DATA_PREAMBLE \
236 offsetof(struct loader_xfer_ipc_fragment, data)
238 #define cl_data_to_dev(client_data) ishtp_device((client_data)->cl_device)
241 * get_firmware_variant() - Gets the filename of firmware image to be
242 * loaded based on platform variant.
243 * @client_data Client data instance.
244 * @filename Returns firmware filename.
246 * Queries the firmware-name device property string.
248 * Return: 0 for success, negative error code for failure.
250 static int get_firmware_variant(struct ishtp_cl_data
*client_data
,
255 struct device
*devc
= ishtp_get_pci_device(client_data
->cl_device
);
257 rv
= device_property_read_string(devc
, "firmware-name", &val
);
260 "Error: ISH firmware-name device property required\n");
263 return snprintf(filename
, FILENAME_SIZE
, "intel/%s", val
);
267 * loader_cl_send() Send message from host to firmware
268 * @client_data: Client data instance
269 * @out_msg Message buffer to be sent to firmware
270 * @out_size Size of out going message
271 * @in_msg Message buffer where the incoming data copied.
272 * This buffer is allocated by calling
273 * @in_size Max size of incoming message
275 * Return: Number of bytes copied in the in_msg on success, negative
276 * error code on failure.
278 static int loader_cl_send(struct ishtp_cl_data
*client_data
,
279 u8
*out_msg
, size_t out_size
,
280 u8
*in_msg
, size_t in_size
)
283 struct loader_msg_hdr
*out_hdr
= (struct loader_msg_hdr
*)out_msg
;
284 struct ishtp_cl
*loader_ishtp_cl
= client_data
->loader_ishtp_cl
;
286 dev_dbg(cl_data_to_dev(client_data
),
287 "%s: command=%02lx is_response=%u status=%02x\n",
289 out_hdr
->command
& CMD_MASK
,
290 out_hdr
->command
& IS_RESPONSE
? 1 : 0,
293 /* Setup in coming buffer & size */
294 client_data
->response
.data
= in_msg
;
295 client_data
->response
.max_size
= in_size
;
296 client_data
->response
.error
= 0;
297 client_data
->response
.received
= false;
299 rv
= ishtp_cl_send(loader_ishtp_cl
, out_msg
, out_size
);
301 dev_err(cl_data_to_dev(client_data
),
302 "ishtp_cl_send error %d\n", rv
);
306 wait_event_interruptible_timeout(client_data
->response
.wait_queue
,
307 client_data
->response
.received
,
309 if (!client_data
->response
.received
) {
310 dev_err(cl_data_to_dev(client_data
),
311 "Timed out for response to command=%02lx",
312 out_hdr
->command
& CMD_MASK
);
316 if (client_data
->response
.error
< 0)
317 return client_data
->response
.error
;
319 return client_data
->response
.size
;
323 * process_recv() - Receive and parse incoming packet
324 * @loader_ishtp_cl: Client instance to get stats
325 * @rb_in_proc: ISH received message buffer
327 * Parse the incoming packet. If it is a response packet then it will
328 * update received and wake up the caller waiting to for the response.
330 static void process_recv(struct ishtp_cl
*loader_ishtp_cl
,
331 struct ishtp_cl_rb
*rb_in_proc
)
333 struct loader_msg_hdr
*hdr
;
334 size_t data_len
= rb_in_proc
->buf_idx
;
335 struct ishtp_cl_data
*client_data
=
336 ishtp_get_client_data(loader_ishtp_cl
);
339 if (!client_data
->response
.data
) {
340 dev_err(cl_data_to_dev(client_data
),
341 "Receiving buffer is null. Should be allocated by calling function\n");
342 client_data
->response
.error
= -EINVAL
;
346 if (client_data
->response
.received
) {
347 dev_err(cl_data_to_dev(client_data
),
348 "Previous firmware message not yet processed\n");
349 client_data
->response
.error
= -EINVAL
;
353 * All firmware messages have a header. Check buffer size
354 * before accessing elements inside.
356 if (!rb_in_proc
->buffer
.data
) {
357 dev_warn(cl_data_to_dev(client_data
),
358 "rb_in_proc->buffer.data returned null");
359 client_data
->response
.error
= -EBADMSG
;
363 if (data_len
< sizeof(struct loader_msg_hdr
)) {
364 dev_err(cl_data_to_dev(client_data
),
365 "data size %zu is less than header %zu\n",
366 data_len
, sizeof(struct loader_msg_hdr
));
367 client_data
->response
.error
= -EMSGSIZE
;
371 hdr
= (struct loader_msg_hdr
*)rb_in_proc
->buffer
.data
;
373 dev_dbg(cl_data_to_dev(client_data
),
374 "%s: command=%02lx is_response=%u status=%02x\n",
376 hdr
->command
& CMD_MASK
,
377 hdr
->command
& IS_RESPONSE
? 1 : 0,
380 if (((hdr
->command
& CMD_MASK
) != LOADER_CMD_XFER_QUERY
) &&
381 ((hdr
->command
& CMD_MASK
) != LOADER_CMD_XFER_FRAGMENT
) &&
382 ((hdr
->command
& CMD_MASK
) != LOADER_CMD_START
)) {
383 dev_err(cl_data_to_dev(client_data
),
384 "Invalid command=%02lx\n",
385 hdr
->command
& CMD_MASK
);
386 client_data
->response
.error
= -EPROTO
;
390 if (data_len
> client_data
->response
.max_size
) {
391 dev_err(cl_data_to_dev(client_data
),
392 "Received buffer size %zu is larger than allocated buffer %zu\n",
393 data_len
, client_data
->response
.max_size
);
394 client_data
->response
.error
= -EMSGSIZE
;
398 /* We expect only "response" messages from firmware */
399 if (!(hdr
->command
& IS_RESPONSE
)) {
400 dev_err(cl_data_to_dev(client_data
),
401 "Invalid response to command\n");
402 client_data
->response
.error
= -EIO
;
407 dev_err(cl_data_to_dev(client_data
),
408 "Loader returned status %d\n",
410 client_data
->response
.error
= -EIO
;
414 /* Update the actual received buffer size */
415 client_data
->response
.size
= data_len
;
418 * Copy the buffer received in firmware response for the
421 memcpy(client_data
->response
.data
,
422 rb_in_proc
->buffer
.data
, data_len
);
424 /* Set flag before waking up the caller */
425 client_data
->response
.received
= true;
428 /* Free the buffer */
429 ishtp_cl_io_rb_recycle(rb_in_proc
);
432 /* Wake the calling thread */
433 wake_up_interruptible(&client_data
->response
.wait_queue
);
437 * loader_cl_event_cb() - bus driver callback for incoming message
438 * @device: Pointer to the ishtp client device for which this
439 * message is targeted
441 * Remove the packet from the list and process the message by calling
444 static void loader_cl_event_cb(struct ishtp_cl_device
*cl_device
)
446 struct ishtp_cl_rb
*rb_in_proc
;
447 struct ishtp_cl
*loader_ishtp_cl
= ishtp_get_drvdata(cl_device
);
449 while ((rb_in_proc
= ishtp_cl_rx_get_rb(loader_ishtp_cl
)) != NULL
) {
450 /* Process the data packet from firmware */
451 process_recv(loader_ishtp_cl
, rb_in_proc
);
456 * ish_query_loader_prop() - Query ISH Shim firmware loader
457 * @client_data: Client data instance
458 * @fw: Poiner to firmware data struct in host memory
459 * @fw_info: Loader firmware properties
461 * This function queries the ISH Shim firmware loader for capabilities.
463 * Return: 0 for success, negative error code for failure.
465 static int ish_query_loader_prop(struct ishtp_cl_data
*client_data
,
466 const struct firmware
*fw
,
467 struct shim_fw_info
*fw_info
)
470 struct loader_xfer_query ldr_xfer_query
;
471 struct loader_xfer_query_response ldr_xfer_query_resp
;
473 memset(&ldr_xfer_query
, 0, sizeof(ldr_xfer_query
));
474 ldr_xfer_query
.hdr
.command
= LOADER_CMD_XFER_QUERY
;
475 ldr_xfer_query
.image_size
= fw
->size
;
476 rv
= loader_cl_send(client_data
,
477 (u8
*)&ldr_xfer_query
,
478 sizeof(ldr_xfer_query
),
479 (u8
*)&ldr_xfer_query_resp
,
480 sizeof(ldr_xfer_query_resp
));
482 client_data
->flag_retry
= true;
486 /* On success, the return value is the received buffer size */
487 if (rv
!= sizeof(struct loader_xfer_query_response
)) {
488 dev_err(cl_data_to_dev(client_data
),
489 "data size %d is not equal to size of loader_xfer_query_response %zu\n",
490 rv
, sizeof(struct loader_xfer_query_response
));
491 client_data
->flag_retry
= true;
495 /* Save fw_info for use outside this function */
496 *fw_info
= ldr_xfer_query_resp
.fw_info
;
498 /* Loader firmware properties */
499 dev_dbg(cl_data_to_dev(client_data
),
500 "ish_fw_version: major=%d minor=%d hotfix=%d build=%d protocol_version=0x%x loader_version=%d\n",
501 fw_info
->ish_fw_version
.major
,
502 fw_info
->ish_fw_version
.minor
,
503 fw_info
->ish_fw_version
.hotfix
,
504 fw_info
->ish_fw_version
.build
,
505 fw_info
->protocol_version
,
506 fw_info
->ldr_version
.value
);
508 dev_dbg(cl_data_to_dev(client_data
),
509 "loader_capability: max_fw_image_size=0x%x xfer_mode=%d max_dma_buf_size=0x%x dma_buf_size_limit=0x%x\n",
510 fw_info
->ldr_capability
.max_fw_image_size
,
511 fw_info
->ldr_capability
.xfer_mode
,
512 fw_info
->ldr_capability
.max_dma_buf_size
,
516 if (fw_info
->ldr_capability
.max_fw_image_size
< fw
->size
) {
517 dev_err(cl_data_to_dev(client_data
),
518 "ISH firmware size %zu is greater than Shim firmware loader max supported %d\n",
520 fw_info
->ldr_capability
.max_fw_image_size
);
524 /* For DMA the buffer size should be multiple of cacheline size */
525 if ((fw_info
->ldr_capability
.xfer_mode
& LOADER_XFER_MODE_DIRECT_DMA
) &&
526 (fw_info
->ldr_capability
.max_dma_buf_size
% L1_CACHE_BYTES
)) {
527 dev_err(cl_data_to_dev(client_data
),
528 "Shim firmware loader buffer size %d should be multiple of cacheline\n",
529 fw_info
->ldr_capability
.max_dma_buf_size
);
537 * ish_fw_xfer_ishtp() Loads ISH firmware using ishtp interface
538 * @client_data: Client data instance
539 * @fw: Pointer to firmware data struct in host memory
541 * This function uses ISH-TP to transfer ISH firmware from host to
542 * ISH SRAM. Lower layers may use IPC or DMA depending on firmware
545 * Return: 0 for success, negative error code for failure.
547 static int ish_fw_xfer_ishtp(struct ishtp_cl_data
*client_data
,
548 const struct firmware
*fw
)
551 u32 fragment_offset
, fragment_size
, payload_max_size
;
552 struct loader_xfer_ipc_fragment
*ldr_xfer_ipc_frag
;
553 struct loader_msg_hdr ldr_xfer_ipc_ack
;
556 LOADER_SHIM_IPC_BUF_SIZE
- IPC_FRAGMENT_DATA_PREAMBLE
;
558 ldr_xfer_ipc_frag
= kzalloc(LOADER_SHIM_IPC_BUF_SIZE
, GFP_KERNEL
);
559 if (!ldr_xfer_ipc_frag
) {
560 client_data
->flag_retry
= true;
564 ldr_xfer_ipc_frag
->fragment
.hdr
.command
= LOADER_CMD_XFER_FRAGMENT
;
565 ldr_xfer_ipc_frag
->fragment
.xfer_mode
= LOADER_XFER_MODE_ISHTP
;
567 /* Break the firmware image into fragments and send as ISH-TP payload */
569 while (fragment_offset
< fw
->size
) {
570 if (fragment_offset
+ payload_max_size
< fw
->size
) {
571 fragment_size
= payload_max_size
;
572 ldr_xfer_ipc_frag
->fragment
.is_last
= 0;
574 fragment_size
= fw
->size
- fragment_offset
;
575 ldr_xfer_ipc_frag
->fragment
.is_last
= 1;
578 ldr_xfer_ipc_frag
->fragment
.offset
= fragment_offset
;
579 ldr_xfer_ipc_frag
->fragment
.size
= fragment_size
;
580 memcpy(ldr_xfer_ipc_frag
->data
,
581 &fw
->data
[fragment_offset
],
584 dev_dbg(cl_data_to_dev(client_data
),
585 "xfer_mode=ipc offset=0x%08x size=0x%08x is_last=%d\n",
586 ldr_xfer_ipc_frag
->fragment
.offset
,
587 ldr_xfer_ipc_frag
->fragment
.size
,
588 ldr_xfer_ipc_frag
->fragment
.is_last
);
590 rv
= loader_cl_send(client_data
,
591 (u8
*)ldr_xfer_ipc_frag
,
592 IPC_FRAGMENT_DATA_PREAMBLE
+ fragment_size
,
593 (u8
*)&ldr_xfer_ipc_ack
,
594 sizeof(ldr_xfer_ipc_ack
));
596 client_data
->flag_retry
= true;
597 goto end_err_resp_buf_release
;
600 fragment_offset
+= fragment_size
;
603 kfree(ldr_xfer_ipc_frag
);
606 end_err_resp_buf_release
:
607 /* Free ISH buffer if not done already, in error case */
608 kfree(ldr_xfer_ipc_frag
);
613 * ish_fw_xfer_direct_dma() - Loads ISH firmware using direct dma
614 * @client_data: Client data instance
615 * @fw: Pointer to firmware data struct in host memory
616 * @fw_info: Loader firmware properties
618 * Host firmware load is a unique case where we need to download
619 * a large firmware image (200+ Kb). This function implements
620 * direct DMA transfer in kernel and ISH firmware. This allows
621 * us to overcome the ISH-TP 4 Kb limit, and allows us to DMA
622 * directly to ISH UMA at location of choice.
623 * Function depends on corresponding support in ISH firmware.
625 * Return: 0 for success, negative error code for failure.
627 static int ish_fw_xfer_direct_dma(struct ishtp_cl_data
*client_data
,
628 const struct firmware
*fw
,
629 const struct shim_fw_info fw_info
)
633 dma_addr_t dma_buf_phy
;
634 u32 fragment_offset
, fragment_size
, payload_max_size
;
635 struct loader_msg_hdr ldr_xfer_dma_frag_ack
;
636 struct loader_xfer_dma_fragment ldr_xfer_dma_frag
;
637 struct device
*devc
= ishtp_get_pci_device(client_data
->cl_device
);
638 u32 shim_fw_buf_size
=
639 fw_info
.ldr_capability
.max_dma_buf_size
;
642 * payload_max_size should be set to minimum of
643 * (1) Size of firmware to be loaded,
644 * (2) Max DMA buffer size supported by Shim firmware,
645 * (3) DMA buffer size limit set by boot_param dma_buf_size_limit.
647 payload_max_size
= min3(fw
->size
,
648 (size_t)shim_fw_buf_size
,
649 (size_t)dma_buf_size_limit
);
652 * Buffer size should be multiple of cacheline size
653 * if it's not, select the previous cacheline boundary.
655 payload_max_size
&= ~(L1_CACHE_BYTES
- 1);
657 dma_buf
= kmalloc(payload_max_size
, GFP_KERNEL
| GFP_DMA32
);
659 client_data
->flag_retry
= true;
663 dma_buf_phy
= dma_map_single(devc
, dma_buf
, payload_max_size
,
665 if (dma_mapping_error(devc
, dma_buf_phy
)) {
666 dev_err(cl_data_to_dev(client_data
), "DMA map failed\n");
667 client_data
->flag_retry
= true;
669 goto end_err_dma_buf_release
;
672 ldr_xfer_dma_frag
.fragment
.hdr
.command
= LOADER_CMD_XFER_FRAGMENT
;
673 ldr_xfer_dma_frag
.fragment
.xfer_mode
= LOADER_XFER_MODE_DIRECT_DMA
;
674 ldr_xfer_dma_frag
.ddr_phys_addr
= (u64
)dma_buf_phy
;
676 /* Send the firmware image in chucks of payload_max_size */
678 while (fragment_offset
< fw
->size
) {
679 if (fragment_offset
+ payload_max_size
< fw
->size
) {
680 fragment_size
= payload_max_size
;
681 ldr_xfer_dma_frag
.fragment
.is_last
= 0;
683 fragment_size
= fw
->size
- fragment_offset
;
684 ldr_xfer_dma_frag
.fragment
.is_last
= 1;
687 ldr_xfer_dma_frag
.fragment
.offset
= fragment_offset
;
688 ldr_xfer_dma_frag
.fragment
.size
= fragment_size
;
689 memcpy(dma_buf
, &fw
->data
[fragment_offset
], fragment_size
);
691 dma_sync_single_for_device(devc
, dma_buf_phy
,
696 * Flush cache here because the dma_sync_single_for_device()
697 * does not do for x86.
699 clflush_cache_range(dma_buf
, payload_max_size
);
701 dev_dbg(cl_data_to_dev(client_data
),
702 "xfer_mode=dma offset=0x%08x size=0x%x is_last=%d ddr_phys_addr=0x%016llx\n",
703 ldr_xfer_dma_frag
.fragment
.offset
,
704 ldr_xfer_dma_frag
.fragment
.size
,
705 ldr_xfer_dma_frag
.fragment
.is_last
,
706 ldr_xfer_dma_frag
.ddr_phys_addr
);
708 rv
= loader_cl_send(client_data
,
709 (u8
*)&ldr_xfer_dma_frag
,
710 sizeof(ldr_xfer_dma_frag
),
711 (u8
*)&ldr_xfer_dma_frag_ack
,
712 sizeof(ldr_xfer_dma_frag_ack
));
714 client_data
->flag_retry
= true;
715 goto end_err_resp_buf_release
;
718 fragment_offset
+= fragment_size
;
721 dma_unmap_single(devc
, dma_buf_phy
, payload_max_size
, DMA_TO_DEVICE
);
725 end_err_resp_buf_release
:
726 /* Free ISH buffer if not done already, in error case */
727 dma_unmap_single(devc
, dma_buf_phy
, payload_max_size
, DMA_TO_DEVICE
);
728 end_err_dma_buf_release
:
734 * ish_fw_start() Start executing ISH main firmware
735 * @client_data: client data instance
737 * This function sends message to Shim firmware loader to start
738 * the execution of ISH main firmware.
740 * Return: 0 for success, negative error code for failure.
742 static int ish_fw_start(struct ishtp_cl_data
*client_data
)
744 struct loader_start ldr_start
;
745 struct loader_msg_hdr ldr_start_ack
;
747 memset(&ldr_start
, 0, sizeof(ldr_start
));
748 ldr_start
.hdr
.command
= LOADER_CMD_START
;
749 return loader_cl_send(client_data
,
752 (u8
*)&ldr_start_ack
,
753 sizeof(ldr_start_ack
));
757 * load_fw_from_host() Loads ISH firmware from host
758 * @client_data: Client data instance
760 * This function loads the ISH firmware to ISH SRAM and starts execution
762 * Return: 0 for success, negative error code for failure.
764 static int load_fw_from_host(struct ishtp_cl_data
*client_data
)
769 const struct firmware
*fw
;
770 struct shim_fw_info fw_info
;
771 struct ishtp_cl
*loader_ishtp_cl
= client_data
->loader_ishtp_cl
;
773 client_data
->flag_retry
= false;
775 filename
= kzalloc(FILENAME_SIZE
, GFP_KERNEL
);
777 client_data
->flag_retry
= true;
782 /* Get filename of the ISH firmware to be loaded */
783 rv
= get_firmware_variant(client_data
, filename
);
785 goto end_err_filename_buf_release
;
787 rv
= request_firmware(&fw
, filename
, cl_data_to_dev(client_data
));
789 goto end_err_filename_buf_release
;
791 /* Step 1: Query Shim firmware loader properties */
793 rv
= ish_query_loader_prop(client_data
, fw
, &fw_info
);
795 goto end_err_fw_release
;
797 /* Step 2: Send the main firmware image to be loaded, to ISH SRAM */
799 xfer_mode
= fw_info
.ldr_capability
.xfer_mode
;
800 if (xfer_mode
& LOADER_XFER_MODE_DIRECT_DMA
) {
801 rv
= ish_fw_xfer_direct_dma(client_data
, fw
, fw_info
);
802 } else if (xfer_mode
& LOADER_XFER_MODE_ISHTP
) {
803 rv
= ish_fw_xfer_ishtp(client_data
, fw
);
805 dev_err(cl_data_to_dev(client_data
),
806 "No transfer mode selected in firmware\n");
810 goto end_err_fw_release
;
812 /* Step 3: Start ISH main firmware exeuction */
814 rv
= ish_fw_start(client_data
);
816 goto end_err_fw_release
;
818 release_firmware(fw
);
819 dev_info(cl_data_to_dev(client_data
), "ISH firmware %s loaded\n",
825 release_firmware(fw
);
826 end_err_filename_buf_release
:
829 /* Keep a count of retries, and give up after 3 attempts */
830 if (client_data
->flag_retry
&&
831 client_data
->retry_count
++ < MAX_LOAD_ATTEMPTS
) {
832 dev_warn(cl_data_to_dev(client_data
),
833 "ISH host firmware load failed %d. Resetting ISH, and trying again..\n",
835 ish_hw_reset(ishtp_get_ishtp_device(loader_ishtp_cl
));
837 dev_err(cl_data_to_dev(client_data
),
838 "ISH host firmware load failed %d\n", rv
);
843 static void load_fw_from_host_handler(struct work_struct
*work
)
845 struct ishtp_cl_data
*client_data
;
847 client_data
= container_of(work
, struct ishtp_cl_data
,
849 load_fw_from_host(client_data
);
853 * loader_init() - Init function for ISH-TP client
854 * @loader_ishtp_cl: ISH-TP client instance
855 * @reset: true if called for init after reset
857 * Return: 0 for success, negative error code for failure
859 static int loader_init(struct ishtp_cl
*loader_ishtp_cl
, int reset
)
862 struct ishtp_fw_client
*fw_client
;
863 struct ishtp_cl_data
*client_data
=
864 ishtp_get_client_data(loader_ishtp_cl
);
866 dev_dbg(cl_data_to_dev(client_data
), "reset flag: %d\n", reset
);
868 rv
= ishtp_cl_link(loader_ishtp_cl
);
870 dev_err(cl_data_to_dev(client_data
), "ishtp_cl_link failed\n");
874 /* Connect to firmware client */
875 ishtp_set_tx_ring_size(loader_ishtp_cl
, LOADER_CL_TX_RING_SIZE
);
876 ishtp_set_rx_ring_size(loader_ishtp_cl
, LOADER_CL_RX_RING_SIZE
);
879 ishtp_fw_cl_get_client(ishtp_get_ishtp_device(loader_ishtp_cl
),
882 dev_err(cl_data_to_dev(client_data
),
883 "ISH client uuid not found\n");
888 ishtp_cl_set_fw_client_id(loader_ishtp_cl
,
889 ishtp_get_fw_client_id(fw_client
));
890 ishtp_set_connection_state(loader_ishtp_cl
, ISHTP_CL_CONNECTING
);
892 rv
= ishtp_cl_connect(loader_ishtp_cl
);
894 dev_err(cl_data_to_dev(client_data
), "Client connect fail\n");
898 dev_dbg(cl_data_to_dev(client_data
), "Client connected\n");
900 ishtp_register_event_cb(client_data
->cl_device
, loader_cl_event_cb
);
905 ishtp_cl_unlink(loader_ishtp_cl
);
909 static void loader_deinit(struct ishtp_cl
*loader_ishtp_cl
)
911 ishtp_set_connection_state(loader_ishtp_cl
, ISHTP_CL_DISCONNECTING
);
912 ishtp_cl_disconnect(loader_ishtp_cl
);
913 ishtp_cl_unlink(loader_ishtp_cl
);
914 ishtp_cl_flush_queues(loader_ishtp_cl
);
916 /* Disband and free all Tx and Rx client-level rings */
917 ishtp_cl_free(loader_ishtp_cl
);
920 static void reset_handler(struct work_struct
*work
)
923 struct ishtp_cl_data
*client_data
;
924 struct ishtp_cl
*loader_ishtp_cl
;
925 struct ishtp_cl_device
*cl_device
;
927 client_data
= container_of(work
, struct ishtp_cl_data
,
930 loader_ishtp_cl
= client_data
->loader_ishtp_cl
;
931 cl_device
= client_data
->cl_device
;
933 /* Unlink, flush queues & start again */
934 ishtp_cl_unlink(loader_ishtp_cl
);
935 ishtp_cl_flush_queues(loader_ishtp_cl
);
936 ishtp_cl_free(loader_ishtp_cl
);
938 loader_ishtp_cl
= ishtp_cl_allocate(cl_device
);
939 if (!loader_ishtp_cl
)
942 ishtp_set_drvdata(cl_device
, loader_ishtp_cl
);
943 ishtp_set_client_data(loader_ishtp_cl
, client_data
);
944 client_data
->loader_ishtp_cl
= loader_ishtp_cl
;
945 client_data
->cl_device
= cl_device
;
947 rv
= loader_init(loader_ishtp_cl
, 1);
949 dev_err(ishtp_device(cl_device
), "Reset Failed\n");
953 /* ISH firmware loading from host */
954 load_fw_from_host(client_data
);
958 * loader_ishtp_cl_probe() - ISH-TP client driver probe
959 * @cl_device: ISH-TP client device instance
961 * This function gets called on device create on ISH-TP bus
963 * Return: 0 for success, negative error code for failure
965 static int loader_ishtp_cl_probe(struct ishtp_cl_device
*cl_device
)
967 struct ishtp_cl
*loader_ishtp_cl
;
968 struct ishtp_cl_data
*client_data
;
971 client_data
= devm_kzalloc(ishtp_device(cl_device
),
972 sizeof(*client_data
),
977 loader_ishtp_cl
= ishtp_cl_allocate(cl_device
);
978 if (!loader_ishtp_cl
)
981 ishtp_set_drvdata(cl_device
, loader_ishtp_cl
);
982 ishtp_set_client_data(loader_ishtp_cl
, client_data
);
983 client_data
->loader_ishtp_cl
= loader_ishtp_cl
;
984 client_data
->cl_device
= cl_device
;
986 init_waitqueue_head(&client_data
->response
.wait_queue
);
988 INIT_WORK(&client_data
->work_ishtp_reset
,
990 INIT_WORK(&client_data
->work_fw_load
,
991 load_fw_from_host_handler
);
993 rv
= loader_init(loader_ishtp_cl
, 0);
995 ishtp_cl_free(loader_ishtp_cl
);
998 ishtp_get_device(cl_device
);
1000 client_data
->retry_count
= 0;
1002 /* ISH firmware loading from host */
1003 schedule_work(&client_data
->work_fw_load
);
1009 * loader_ishtp_cl_remove() - ISH-TP client driver remove
1010 * @cl_device: ISH-TP client device instance
1012 * This function gets called on device remove on ISH-TP bus
1016 static int loader_ishtp_cl_remove(struct ishtp_cl_device
*cl_device
)
1018 struct ishtp_cl_data
*client_data
;
1019 struct ishtp_cl
*loader_ishtp_cl
= ishtp_get_drvdata(cl_device
);
1021 client_data
= ishtp_get_client_data(loader_ishtp_cl
);
1024 * The sequence of the following two cancel_work_sync() is
1025 * important. The work_fw_load can in turn schedue
1026 * work_ishtp_reset, so first cancel work_fw_load then
1027 * cancel work_ishtp_reset.
1029 cancel_work_sync(&client_data
->work_fw_load
);
1030 cancel_work_sync(&client_data
->work_ishtp_reset
);
1031 loader_deinit(loader_ishtp_cl
);
1032 ishtp_put_device(cl_device
);
1038 * loader_ishtp_cl_reset() - ISH-TP client driver reset
1039 * @cl_device: ISH-TP client device instance
1041 * This function gets called on device reset on ISH-TP bus
1045 static int loader_ishtp_cl_reset(struct ishtp_cl_device
*cl_device
)
1047 struct ishtp_cl_data
*client_data
;
1048 struct ishtp_cl
*loader_ishtp_cl
= ishtp_get_drvdata(cl_device
);
1050 client_data
= ishtp_get_client_data(loader_ishtp_cl
);
1052 schedule_work(&client_data
->work_ishtp_reset
);
1057 static struct ishtp_cl_driver loader_ishtp_cl_driver
= {
1058 .name
= "ish-loader",
1059 .guid
= &loader_ishtp_guid
,
1060 .probe
= loader_ishtp_cl_probe
,
1061 .remove
= loader_ishtp_cl_remove
,
1062 .reset
= loader_ishtp_cl_reset
,
1065 static int __init
ish_loader_init(void)
1067 return ishtp_cl_driver_register(&loader_ishtp_cl_driver
, THIS_MODULE
);
1070 static void __exit
ish_loader_exit(void)
1072 ishtp_cl_driver_unregister(&loader_ishtp_cl_driver
);
1075 late_initcall(ish_loader_init
);
1076 module_exit(ish_loader_exit
);
1078 module_param(dma_buf_size_limit
, int, 0644);
1079 MODULE_PARM_DESC(dma_buf_size_limit
, "Limit the DMA buf size to this value in bytes");
1081 MODULE_DESCRIPTION("ISH ISH-TP Host firmware Loader Client Driver");
1082 MODULE_AUTHOR("Rushikesh S Kadam <rushikesh.s.kadam@intel.com>");
1084 MODULE_LICENSE("GPL v2");
1085 MODULE_ALIAS("ishtp:*");