xref: /linux/sound/soc/sof/intel/hda-loader.c (revision 13a45b9484e58317c95046e5478c0b1d67df8816)
1 // SPDX-License-Identifier: (GPL-2.0-only OR BSD-3-Clause)
2 //
3 // This file is provided under a dual BSD/GPLv2 license.  When using or
4 // redistributing this file, you may do so under either license.
5 //
6 // Copyright(c) 2018 Intel Corporation. All rights reserved.
7 //
8 // Authors: Liam Girdwood <liam.r.girdwood@linux.intel.com>
9 //	    Ranjani Sridharan <ranjani.sridharan@linux.intel.com>
10 //	    Rander Wang <rander.wang@intel.com>
11 //          Keyon Jie <yang.jie@linux.intel.com>
12 //
13 
14 /*
15  * Hardware interface for HDA DSP code loader
16  */
17 
18 #include <linux/firmware.h>
19 #include <sound/hdaudio_ext.h>
20 #include <sound/hda_register.h>
21 #include <sound/sof.h>
22 #include "ext_manifest.h"
23 #include "../ops.h"
24 #include "../sof-priv.h"
25 #include "hda.h"
26 
27 static void hda_ssp_set_cbp_cfp(struct snd_sof_dev *sdev)
28 {
29 	struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
30 	const struct sof_intel_dsp_desc *chip = hda->desc;
31 	int i;
32 
33 	/* DSP is powered up, set all SSPs to clock consumer/codec provider mode */
34 	for (i = 0; i < chip->ssp_count; i++) {
35 		snd_sof_dsp_update_bits_unlocked(sdev, HDA_DSP_BAR,
36 						 chip->ssp_base_offset
37 						 + i * SSP_DEV_MEM_SIZE
38 						 + SSP_SSC1_OFFSET,
39 						 SSP_SET_CBP_CFP,
40 						 SSP_SET_CBP_CFP);
41 	}
42 }
43 
44 struct hdac_ext_stream *hda_cl_stream_prepare(struct snd_sof_dev *sdev, unsigned int format,
45 					      unsigned int size, struct snd_dma_buffer *dmab,
46 					      int direction)
47 {
48 	struct hdac_ext_stream *hext_stream;
49 	struct hdac_stream *hstream;
50 	struct pci_dev *pci = to_pci_dev(sdev->dev);
51 	int ret;
52 
53 	hext_stream = hda_dsp_stream_get(sdev, direction, 0);
54 
55 	if (!hext_stream) {
56 		dev_err(sdev->dev, "error: no stream available\n");
57 		return ERR_PTR(-ENODEV);
58 	}
59 	hstream = &hext_stream->hstream;
60 	hstream->substream = NULL;
61 
62 	/* allocate DMA buffer */
63 	ret = snd_dma_alloc_pages(SNDRV_DMA_TYPE_DEV_SG, &pci->dev, size, dmab);
64 	if (ret < 0) {
65 		dev_err(sdev->dev, "error: memory alloc failed: %d\n", ret);
66 		goto out_put;
67 	}
68 
69 	hstream->period_bytes = 0;/* initialize period_bytes */
70 	hstream->format_val = format;
71 	hstream->bufsize = size;
72 
73 	if (direction == SNDRV_PCM_STREAM_CAPTURE) {
74 		ret = hda_dsp_iccmax_stream_hw_params(sdev, hext_stream, dmab, NULL);
75 		if (ret < 0) {
76 			dev_err(sdev->dev, "error: iccmax stream prepare failed: %d\n", ret);
77 			goto out_free;
78 		}
79 	} else {
80 		ret = hda_dsp_stream_hw_params(sdev, hext_stream, dmab, NULL);
81 		if (ret < 0) {
82 			dev_err(sdev->dev, "error: hdac prepare failed: %d\n", ret);
83 			goto out_free;
84 		}
85 		hda_dsp_stream_spib_config(sdev, hext_stream, HDA_DSP_SPIB_ENABLE, size);
86 	}
87 
88 	return hext_stream;
89 
90 out_free:
91 	snd_dma_free_pages(dmab);
92 out_put:
93 	hda_dsp_stream_put(sdev, direction, hstream->stream_tag);
94 	return ERR_PTR(ret);
95 }
96 
97 /*
98  * first boot sequence has some extra steps.
99  * power on all host managed cores and only unstall/run the boot core to boot the
100  * DSP then turn off all non boot cores (if any) is powered on.
101  */
102 int cl_dsp_init(struct snd_sof_dev *sdev, int stream_tag, bool imr_boot)
103 {
104 	struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
105 	const struct sof_intel_dsp_desc *chip = hda->desc;
106 	unsigned int status, target_status;
107 	u32 flags, ipc_hdr, j;
108 	unsigned long mask;
109 	char *dump_msg;
110 	int ret;
111 
112 	/* step 1: power up corex */
113 	ret = hda_dsp_core_power_up(sdev, chip->host_managed_cores_mask);
114 	if (ret < 0) {
115 		if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS)
116 			dev_err(sdev->dev, "error: dsp core 0/1 power up failed\n");
117 		goto err;
118 	}
119 
120 	hda_ssp_set_cbp_cfp(sdev);
121 
122 	/* step 2: Send ROM_CONTROL command (stream_tag is ignored for IMR boot) */
123 	ipc_hdr = chip->ipc_req_mask | HDA_DSP_ROM_IPC_CONTROL;
124 	if (!imr_boot)
125 		ipc_hdr |= HDA_DSP_ROM_IPC_PURGE_FW | ((stream_tag - 1) << 9);
126 
127 	snd_sof_dsp_write(sdev, HDA_DSP_BAR, chip->ipc_req, ipc_hdr);
128 
129 	/* step 3: unset core 0 reset state & unstall/run core 0 */
130 	ret = hda_dsp_core_run(sdev, chip->init_core_mask);
131 	if (ret < 0) {
132 		if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS)
133 			dev_err(sdev->dev,
134 				"error: dsp core start failed %d\n", ret);
135 		ret = -EIO;
136 		goto err;
137 	}
138 
139 	/* step 4: wait for IPC DONE bit from ROM */
140 	ret = snd_sof_dsp_read_poll_timeout(sdev, HDA_DSP_BAR,
141 					    chip->ipc_ack, status,
142 					    ((status & chip->ipc_ack_mask)
143 						    == chip->ipc_ack_mask),
144 					    HDA_DSP_REG_POLL_INTERVAL_US,
145 					    HDA_DSP_INIT_TIMEOUT_US);
146 
147 	if (ret < 0) {
148 		if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS)
149 			dev_err(sdev->dev,
150 				"error: %s: timeout for HIPCIE done\n",
151 				__func__);
152 		goto err;
153 	}
154 
155 	/* set DONE bit to clear the reply IPC message */
156 	snd_sof_dsp_update_bits_forced(sdev, HDA_DSP_BAR,
157 				       chip->ipc_ack,
158 				       chip->ipc_ack_mask,
159 				       chip->ipc_ack_mask);
160 
161 	/* step 5: power down cores that are no longer needed */
162 	ret = hda_dsp_core_reset_power_down(sdev, chip->host_managed_cores_mask &
163 					   ~(chip->init_core_mask));
164 	if (ret < 0) {
165 		if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS)
166 			dev_err(sdev->dev,
167 				"error: dsp core x power down failed\n");
168 		goto err;
169 	}
170 
171 	/* step 6: enable IPC interrupts */
172 	hda_dsp_ipc_int_enable(sdev);
173 
174 	/*
175 	 * step 7:
176 	 * - Cold/Full boot: wait for ROM init to proceed to download the firmware
177 	 * - IMR boot: wait for ROM firmware entered (firmware booted up from IMR)
178 	 */
179 	if (imr_boot)
180 		target_status = HDA_DSP_ROM_FW_ENTERED;
181 	else
182 		target_status = HDA_DSP_ROM_INIT;
183 
184 	ret = snd_sof_dsp_read_poll_timeout(sdev, HDA_DSP_BAR,
185 					chip->rom_status_reg, status,
186 					((status & HDA_DSP_ROM_STS_MASK)
187 						== target_status),
188 					HDA_DSP_REG_POLL_INTERVAL_US,
189 					chip->rom_init_timeout *
190 					USEC_PER_MSEC);
191 	if (!ret) {
192 		/* set enabled cores mask and increment ref count for cores in init_core_mask */
193 		sdev->enabled_cores_mask |= chip->init_core_mask;
194 		mask = sdev->enabled_cores_mask;
195 		for_each_set_bit(j, &mask, SOF_MAX_DSP_NUM_CORES)
196 			sdev->dsp_core_ref_count[j]++;
197 		return 0;
198 	}
199 
200 	if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS)
201 		dev_err(sdev->dev,
202 			"%s: timeout with rom_status_reg (%#x) read\n",
203 			__func__, chip->rom_status_reg);
204 
205 err:
206 	flags = SOF_DBG_DUMP_PCI | SOF_DBG_DUMP_MBOX | SOF_DBG_DUMP_OPTIONAL;
207 
208 	/* after max boot attempts make sure that the dump is printed */
209 	if (hda->boot_iteration == HDA_FW_BOOT_ATTEMPTS)
210 		flags &= ~SOF_DBG_DUMP_OPTIONAL;
211 
212 	dump_msg = kasprintf(GFP_KERNEL, "Boot iteration failed: %d/%d",
213 			     hda->boot_iteration, HDA_FW_BOOT_ATTEMPTS);
214 	snd_sof_dsp_dbg_dump(sdev, dump_msg, flags);
215 	hda_dsp_core_reset_power_down(sdev, chip->host_managed_cores_mask);
216 
217 	kfree(dump_msg);
218 	return ret;
219 }
220 
221 static int cl_trigger(struct snd_sof_dev *sdev,
222 		      struct hdac_ext_stream *hext_stream, int cmd)
223 {
224 	struct hdac_stream *hstream = &hext_stream->hstream;
225 	int sd_offset = SOF_STREAM_SD_OFFSET(hstream);
226 
227 	/* code loader is special case that reuses stream ops */
228 	switch (cmd) {
229 	case SNDRV_PCM_TRIGGER_START:
230 		snd_sof_dsp_update_bits(sdev, HDA_DSP_HDA_BAR, SOF_HDA_INTCTL,
231 					1 << hstream->index,
232 					1 << hstream->index);
233 
234 		snd_sof_dsp_update_bits(sdev, HDA_DSP_HDA_BAR,
235 					sd_offset,
236 					SOF_HDA_SD_CTL_DMA_START |
237 					SOF_HDA_CL_DMA_SD_INT_MASK,
238 					SOF_HDA_SD_CTL_DMA_START |
239 					SOF_HDA_CL_DMA_SD_INT_MASK);
240 
241 		hstream->running = true;
242 		return 0;
243 	default:
244 		return hda_dsp_stream_trigger(sdev, hext_stream, cmd);
245 	}
246 }
247 
248 int hda_cl_cleanup(struct snd_sof_dev *sdev, struct snd_dma_buffer *dmab,
249 		   struct hdac_ext_stream *hext_stream)
250 {
251 	struct hdac_stream *hstream = &hext_stream->hstream;
252 	int sd_offset = SOF_STREAM_SD_OFFSET(hstream);
253 	int ret = 0;
254 
255 	if (hstream->direction == SNDRV_PCM_STREAM_PLAYBACK)
256 		ret = hda_dsp_stream_spib_config(sdev, hext_stream, HDA_DSP_SPIB_DISABLE, 0);
257 	else
258 		snd_sof_dsp_update_bits(sdev, HDA_DSP_HDA_BAR, sd_offset,
259 					SOF_HDA_SD_CTL_DMA_START, 0);
260 
261 	hda_dsp_stream_put(sdev, hstream->direction, hstream->stream_tag);
262 	hstream->running = 0;
263 	hstream->substream = NULL;
264 
265 	/* reset BDL address */
266 	snd_sof_dsp_write(sdev, HDA_DSP_HDA_BAR,
267 			  sd_offset + SOF_HDA_ADSP_REG_CL_SD_BDLPL, 0);
268 	snd_sof_dsp_write(sdev, HDA_DSP_HDA_BAR,
269 			  sd_offset + SOF_HDA_ADSP_REG_CL_SD_BDLPU, 0);
270 
271 	snd_sof_dsp_write(sdev, HDA_DSP_HDA_BAR, sd_offset, 0);
272 	snd_dma_free_pages(dmab);
273 	dmab->area = NULL;
274 	hstream->bufsize = 0;
275 	hstream->format_val = 0;
276 
277 	return ret;
278 }
279 
280 int hda_cl_copy_fw(struct snd_sof_dev *sdev, struct hdac_ext_stream *hext_stream)
281 {
282 	struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
283 	const struct sof_intel_dsp_desc *chip = hda->desc;
284 	unsigned int reg;
285 	int ret, status;
286 
287 	ret = cl_trigger(sdev, hext_stream, SNDRV_PCM_TRIGGER_START);
288 	if (ret < 0) {
289 		dev_err(sdev->dev, "error: DMA trigger start failed\n");
290 		return ret;
291 	}
292 
293 	status = snd_sof_dsp_read_poll_timeout(sdev, HDA_DSP_BAR,
294 					chip->rom_status_reg, reg,
295 					((reg & HDA_DSP_ROM_STS_MASK)
296 						== HDA_DSP_ROM_FW_ENTERED),
297 					HDA_DSP_REG_POLL_INTERVAL_US,
298 					HDA_DSP_BASEFW_TIMEOUT_US);
299 
300 	/*
301 	 * even in case of errors we still need to stop the DMAs,
302 	 * but we return the initial error should the DMA stop also fail
303 	 */
304 
305 	if (status < 0) {
306 		dev_err(sdev->dev,
307 			"%s: timeout with rom_status_reg (%#x) read\n",
308 			__func__, chip->rom_status_reg);
309 	}
310 
311 	ret = cl_trigger(sdev, hext_stream, SNDRV_PCM_TRIGGER_STOP);
312 	if (ret < 0) {
313 		dev_err(sdev->dev, "error: DMA trigger stop failed\n");
314 		if (!status)
315 			status = ret;
316 	}
317 
318 	return status;
319 }
320 
321 int hda_dsp_cl_boot_firmware_iccmax(struct snd_sof_dev *sdev)
322 {
323 	struct snd_sof_pdata *plat_data = sdev->pdata;
324 	struct hdac_ext_stream *iccmax_stream;
325 	struct hdac_bus *bus = sof_to_bus(sdev);
326 	struct firmware stripped_firmware;
327 	struct snd_dma_buffer dmab_bdl;
328 	int ret, ret1;
329 	u8 original_gb;
330 
331 	/* save the original LTRP guardband value */
332 	original_gb = snd_hdac_chip_readb(bus, VS_LTRP) & HDA_VS_INTEL_LTRP_GB_MASK;
333 
334 	if (plat_data->fw->size <= plat_data->fw_offset) {
335 		dev_err(sdev->dev, "error: firmware size must be greater than firmware offset\n");
336 		return -EINVAL;
337 	}
338 
339 	stripped_firmware.size = plat_data->fw->size - plat_data->fw_offset;
340 
341 	/* prepare capture stream for ICCMAX */
342 	iccmax_stream = hda_cl_stream_prepare(sdev, HDA_CL_STREAM_FORMAT, stripped_firmware.size,
343 					      &dmab_bdl, SNDRV_PCM_STREAM_CAPTURE);
344 	if (IS_ERR(iccmax_stream)) {
345 		dev_err(sdev->dev, "error: dma prepare for ICCMAX stream failed\n");
346 		return PTR_ERR(iccmax_stream);
347 	}
348 
349 	ret = hda_dsp_cl_boot_firmware(sdev);
350 
351 	/*
352 	 * Perform iccmax stream cleanup. This should be done even if firmware loading fails.
353 	 * If the cleanup also fails, we return the initial error
354 	 */
355 	ret1 = hda_cl_cleanup(sdev, &dmab_bdl, iccmax_stream);
356 	if (ret1 < 0) {
357 		dev_err(sdev->dev, "error: ICCMAX stream cleanup failed\n");
358 
359 		/* set return value to indicate cleanup failure */
360 		if (!ret)
361 			ret = ret1;
362 	}
363 
364 	/* restore the original guardband value after FW boot */
365 	snd_hdac_chip_updateb(bus, VS_LTRP, HDA_VS_INTEL_LTRP_GB_MASK, original_gb);
366 
367 	return ret;
368 }
369 
370 static int hda_dsp_boot_imr(struct snd_sof_dev *sdev)
371 {
372 	const struct sof_intel_dsp_desc *chip_info;
373 	int ret;
374 
375 	chip_info = get_chip_info(sdev->pdata);
376 	if (chip_info->cl_init)
377 		ret = chip_info->cl_init(sdev, 0, true);
378 	else
379 		ret = -EINVAL;
380 
381 	if (!ret)
382 		hda_sdw_process_wakeen(sdev);
383 
384 	return ret;
385 }
386 
387 int hda_dsp_cl_boot_firmware(struct snd_sof_dev *sdev)
388 {
389 	struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
390 	struct snd_sof_pdata *plat_data = sdev->pdata;
391 	const struct sof_dev_desc *desc = plat_data->desc;
392 	const struct sof_intel_dsp_desc *chip_info;
393 	struct hdac_ext_stream *hext_stream;
394 	struct firmware stripped_firmware;
395 	struct snd_dma_buffer dmab;
396 	int ret, ret1, i;
397 
398 	if (sdev->system_suspend_target < SOF_SUSPEND_S4 &&
399 	    hda->imrboot_supported && !sdev->first_boot) {
400 		dev_dbg(sdev->dev, "IMR restore supported, booting from IMR directly\n");
401 		hda->boot_iteration = 0;
402 		ret = hda_dsp_boot_imr(sdev);
403 		if (!ret)
404 			return 0;
405 
406 		dev_warn(sdev->dev, "IMR restore failed, trying to cold boot\n");
407 	}
408 
409 	chip_info = desc->chip_info;
410 
411 	if (plat_data->fw->size <= plat_data->fw_offset) {
412 		dev_err(sdev->dev, "error: firmware size must be greater than firmware offset\n");
413 		return -EINVAL;
414 	}
415 
416 	stripped_firmware.data = plat_data->fw->data + plat_data->fw_offset;
417 	stripped_firmware.size = plat_data->fw->size - plat_data->fw_offset;
418 
419 	/* init for booting wait */
420 	init_waitqueue_head(&sdev->boot_wait);
421 
422 	/* prepare DMA for code loader stream */
423 	hext_stream = hda_cl_stream_prepare(sdev, HDA_CL_STREAM_FORMAT,
424 					    stripped_firmware.size,
425 					    &dmab, SNDRV_PCM_STREAM_PLAYBACK);
426 	if (IS_ERR(hext_stream)) {
427 		dev_err(sdev->dev, "error: dma prepare for fw loading failed\n");
428 		return PTR_ERR(hext_stream);
429 	}
430 
431 	memcpy(dmab.area, stripped_firmware.data,
432 	       stripped_firmware.size);
433 
434 	/* try ROM init a few times before giving up */
435 	for (i = 0; i < HDA_FW_BOOT_ATTEMPTS; i++) {
436 		dev_dbg(sdev->dev,
437 			"Attempting iteration %d of Core En/ROM load...\n", i);
438 
439 		hda->boot_iteration = i + 1;
440 		if (chip_info->cl_init)
441 			ret = chip_info->cl_init(sdev, hext_stream->hstream.stream_tag, false);
442 		else
443 			ret = -EINVAL;
444 
445 		/* don't retry anymore if successful */
446 		if (!ret)
447 			break;
448 	}
449 
450 	if (i == HDA_FW_BOOT_ATTEMPTS) {
451 		dev_err(sdev->dev, "error: dsp init failed after %d attempts with err: %d\n",
452 			i, ret);
453 		goto cleanup;
454 	}
455 
456 	/*
457 	 * When a SoundWire link is in clock stop state, a Slave
458 	 * device may trigger in-band wakes for events such as jack
459 	 * insertion or acoustic event detection. This event will lead
460 	 * to a WAKEEN interrupt, handled by the PCI device and routed
461 	 * to PME if the PCI device is in D3. The resume function in
462 	 * audio PCI driver will be invoked by ACPI for PME event and
463 	 * initialize the device and process WAKEEN interrupt.
464 	 *
465 	 * The WAKEEN interrupt should be processed ASAP to prevent an
466 	 * interrupt flood, otherwise other interrupts, such IPC,
467 	 * cannot work normally.  The WAKEEN is handled after the ROM
468 	 * is initialized successfully, which ensures power rails are
469 	 * enabled before accessing the SoundWire SHIM registers
470 	 */
471 	if (!sdev->first_boot)
472 		hda_sdw_process_wakeen(sdev);
473 
474 	/*
475 	 * Set the boot_iteration to the last attempt, indicating that the
476 	 * DSP ROM has been initialized and from this point there will be no
477 	 * retry done to boot.
478 	 *
479 	 * Continue with code loading and firmware boot
480 	 */
481 	hda->boot_iteration = HDA_FW_BOOT_ATTEMPTS;
482 	ret = hda_cl_copy_fw(sdev, hext_stream);
483 	if (!ret)
484 		dev_dbg(sdev->dev, "Firmware download successful, booting...\n");
485 	else
486 		snd_sof_dsp_dbg_dump(sdev, "Firmware download failed",
487 				     SOF_DBG_DUMP_PCI | SOF_DBG_DUMP_MBOX);
488 
489 cleanup:
490 	/*
491 	 * Perform codeloader stream cleanup.
492 	 * This should be done even if firmware loading fails.
493 	 * If the cleanup also fails, we return the initial error
494 	 */
495 	ret1 = hda_cl_cleanup(sdev, &dmab, hext_stream);
496 	if (ret1 < 0) {
497 		dev_err(sdev->dev, "error: Code loader DSP cleanup failed\n");
498 
499 		/* set return value to indicate cleanup failure */
500 		if (!ret)
501 			ret = ret1;
502 	}
503 
504 	/*
505 	 * return primary core id if both fw copy
506 	 * and stream clean up are successful
507 	 */
508 	if (!ret)
509 		return chip_info->init_core_mask;
510 
511 	/* disable DSP */
512 	snd_sof_dsp_update_bits(sdev, HDA_DSP_PP_BAR,
513 				SOF_HDA_REG_PP_PPCTL,
514 				SOF_HDA_PPCTL_GPROCEN, 0);
515 	return ret;
516 }
517 
518 /* pre fw run operations */
519 int hda_dsp_pre_fw_run(struct snd_sof_dev *sdev)
520 {
521 	/* disable clock gating and power gating */
522 	return hda_dsp_ctrl_clock_power_gating(sdev, false);
523 }
524 
525 /* post fw run operations */
526 int hda_dsp_post_fw_run(struct snd_sof_dev *sdev)
527 {
528 	int ret;
529 
530 	if (sdev->first_boot) {
531 		struct sof_intel_hda_dev *hdev = sdev->pdata->hw_pdata;
532 
533 		ret = hda_sdw_startup(sdev);
534 		if (ret < 0) {
535 			dev_err(sdev->dev,
536 				"error: could not startup SoundWire links\n");
537 			return ret;
538 		}
539 
540 		/* Check if IMR boot is usable */
541 		if (!sof_debug_check_flag(SOF_DBG_IGNORE_D3_PERSISTENT) &&
542 		    (sdev->fw_ready.flags & SOF_IPC_INFO_D3_PERSISTENT ||
543 		     sdev->pdata->ipc_type == SOF_INTEL_IPC4))
544 			hdev->imrboot_supported = true;
545 	}
546 
547 	hda_sdw_int_enable(sdev, true);
548 
549 	/* re-enable clock gating and power gating */
550 	return hda_dsp_ctrl_clock_power_gating(sdev, true);
551 }
552 
553 int hda_dsp_ext_man_get_cavs_config_data(struct snd_sof_dev *sdev,
554 					 const struct sof_ext_man_elem_header *hdr)
555 {
556 	const struct sof_ext_man_cavs_config_data *config_data =
557 		container_of(hdr, struct sof_ext_man_cavs_config_data, hdr);
558 	struct sof_intel_hda_dev *hda = sdev->pdata->hw_pdata;
559 	int i, elem_num;
560 
561 	/* calculate total number of config data elements */
562 	elem_num = (hdr->size - sizeof(struct sof_ext_man_elem_header))
563 		   / sizeof(struct sof_config_elem);
564 	if (elem_num <= 0) {
565 		dev_err(sdev->dev, "cavs config data is inconsistent: %d\n", elem_num);
566 		return -EINVAL;
567 	}
568 
569 	for (i = 0; i < elem_num; i++)
570 		switch (config_data->elems[i].token) {
571 		case SOF_EXT_MAN_CAVS_CONFIG_EMPTY:
572 			/* skip empty token */
573 			break;
574 		case SOF_EXT_MAN_CAVS_CONFIG_CAVS_LPRO:
575 			hda->clk_config_lpro = config_data->elems[i].value;
576 			dev_dbg(sdev->dev, "FW clock config: %s\n",
577 				hda->clk_config_lpro ? "LPRO" : "HPRO");
578 			break;
579 		case SOF_EXT_MAN_CAVS_CONFIG_OUTBOX_SIZE:
580 		case SOF_EXT_MAN_CAVS_CONFIG_INBOX_SIZE:
581 			/* These elements are defined but not being used yet. No warn is required */
582 			break;
583 		default:
584 			dev_info(sdev->dev, "unsupported token type: %d\n",
585 				 config_data->elems[i].token);
586 		}
587 
588 	return 0;
589 }
590