Lines Matching +full:dsp +full:- +full:ctrl
1 // SPDX-License-Identifier: GPL-2.0-only
3 * wm_adsp.c -- Wolfson ADSP support
35 dev_crit(_dsp->cs_dsp.dev, "%s: " fmt, _dsp->cs_dsp.name, ##__VA_ARGS__)
37 dev_err(_dsp->cs_dsp.dev, "%s: " fmt, _dsp->cs_dsp.name, ##__VA_ARGS__)
39 dev_warn(_dsp->cs_dsp.dev, "%s: " fmt, _dsp->cs_dsp.name, ##__VA_ARGS__)
41 dev_info(_dsp->cs_dsp.dev, "%s: " fmt, _dsp->cs_dsp.name, ##__VA_ARGS__)
43 dev_dbg(_dsp->cs_dsp.dev, "%s: " fmt, _dsp->cs_dsp.name, ##__VA_ARGS__)
46 adsp_err(_obj->dsp, "%s: " fmt, _obj->name ? _obj->name : "legacy", \
49 adsp_dbg(_obj->dsp, "%s: " fmt, _obj->name ? _obj->name : "legacy", \
80 [WM_ADSP_FW_CTRL] = "Voice Ctrl",
127 __be32 buf1_size; /* Size of buf1 area in DSP words */
129 __be32 buf1_buf2_size; /* Size of buf1+buf2 in DSP words */
131 __be32 buf_total_size; /* Size of buf1+buf2+buf3 in DSP words */
133 __be32 irq_count; /* bits 1-31 count IRQ assertions */
150 struct wm_adsp *dsp; member
167 struct wm_adsp *dsp; member
199 static int wm_adsp_buffer_init(struct wm_adsp *dsp);
200 static int wm_adsp_buffer_free(struct wm_adsp *dsp);
279 [WM_ADSP_FW_MBC_VSS] = { .file = "mbc-vss" },
282 [WM_ADSP_FW_TX_SPK] = { .file = "tx-spk" },
284 [WM_ADSP_FW_RX_ANC] = { .file = "rx-anc" },
286 .file = "ctrl",
300 .file = "spk-prot",
305 [WM_ADSP_FW_SPK_CALI] = { .file = "spk-cali" },
306 [WM_ADSP_FW_SPK_DIAG] = { .file = "spk-diag" },
321 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; in wm_adsp_fw_get()
322 struct wm_adsp *dsp = snd_soc_component_get_drvdata(component); in wm_adsp_fw_get() local
324 ucontrol->value.enumerated.item[0] = dsp[e->shift_l].fw; in wm_adsp_fw_get()
334 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value; in wm_adsp_fw_put()
335 struct wm_adsp *dsp = snd_soc_component_get_drvdata(component); in wm_adsp_fw_put() local
338 if (ucontrol->value.enumerated.item[0] == dsp[e->shift_l].fw) in wm_adsp_fw_put()
341 if (ucontrol->value.enumerated.item[0] >= WM_ADSP_NUM_FW) in wm_adsp_fw_put()
342 return -EINVAL; in wm_adsp_fw_put()
344 mutex_lock(&dsp[e->shift_l].cs_dsp.pwr_lock); in wm_adsp_fw_put()
346 if (dsp[e->shift_l].cs_dsp.booted || !list_empty(&dsp[e->shift_l].compr_list)) in wm_adsp_fw_put()
347 ret = -EBUSY; in wm_adsp_fw_put()
349 dsp[e->shift_l].fw = ucontrol->value.enumerated.item[0]; in wm_adsp_fw_put()
351 mutex_unlock(&dsp[e->shift_l].cs_dsp.pwr_lock); in wm_adsp_fw_put()
377 (struct soc_bytes_ext *)kctl->private_value; in wm_coeff_info()
379 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_coeff_info()
381 switch (cs_ctl->type) { in wm_coeff_info()
383 uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER; in wm_coeff_info()
384 uinfo->value.integer.min = CS_DSP_ACKED_CTL_MIN_VALUE; in wm_coeff_info()
385 uinfo->value.integer.max = CS_DSP_ACKED_CTL_MAX_VALUE; in wm_coeff_info()
386 uinfo->value.integer.step = 1; in wm_coeff_info()
387 uinfo->count = 1; in wm_coeff_info()
390 uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES; in wm_coeff_info()
391 uinfo->count = cs_ctl->len; in wm_coeff_info()
402 (struct soc_bytes_ext *)kctl->private_value; in wm_coeff_put()
404 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_coeff_put()
405 char *p = ucontrol->value.bytes.data; in wm_coeff_put()
408 mutex_lock(&cs_ctl->dsp->pwr_lock); in wm_coeff_put()
409 ret = cs_dsp_coeff_write_ctrl(cs_ctl, 0, p, cs_ctl->len); in wm_coeff_put()
410 mutex_unlock(&cs_ctl->dsp->pwr_lock); in wm_coeff_put()
419 (struct soc_bytes_ext *)kctl->private_value; in wm_coeff_tlv_put()
421 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_coeff_tlv_put()
427 return -ENOMEM; in wm_coeff_tlv_put()
430 ret = -EFAULT; in wm_coeff_tlv_put()
432 mutex_lock(&cs_ctl->dsp->pwr_lock); in wm_coeff_tlv_put()
434 mutex_unlock(&cs_ctl->dsp->pwr_lock); in wm_coeff_tlv_put()
445 (struct soc_bytes_ext *)kctl->private_value; in wm_coeff_put_acked()
447 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_coeff_put_acked()
448 unsigned int val = ucontrol->value.integer.value[0]; in wm_coeff_put_acked()
454 mutex_lock(&cs_ctl->dsp->pwr_lock); in wm_coeff_put_acked()
456 if (cs_ctl->enabled) in wm_coeff_put_acked()
459 ret = -EPERM; in wm_coeff_put_acked()
461 mutex_unlock(&cs_ctl->dsp->pwr_lock); in wm_coeff_put_acked()
473 (struct soc_bytes_ext *)kctl->private_value; in wm_coeff_get()
475 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_coeff_get()
476 char *p = ucontrol->value.bytes.data; in wm_coeff_get()
479 mutex_lock(&cs_ctl->dsp->pwr_lock); in wm_coeff_get()
480 ret = cs_dsp_coeff_read_ctrl(cs_ctl, 0, p, cs_ctl->len); in wm_coeff_get()
481 mutex_unlock(&cs_ctl->dsp->pwr_lock); in wm_coeff_get()
490 (struct soc_bytes_ext *)kctl->private_value; in wm_coeff_tlv_get()
492 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_coeff_tlv_get()
495 mutex_lock(&cs_ctl->dsp->pwr_lock); in wm_coeff_tlv_get()
497 ret = cs_dsp_coeff_read_ctrl(cs_ctl, 0, cs_ctl->cache, size); in wm_coeff_tlv_get()
499 if (!ret && copy_to_user(bytes, cs_ctl->cache, size)) in wm_coeff_tlv_get()
500 ret = -EFAULT; in wm_coeff_tlv_get()
502 mutex_unlock(&cs_ctl->dsp->pwr_lock); in wm_coeff_tlv_get()
512 * user-side assumptions that all controls are readable and that a in wm_coeff_get_acked()
517 ucontrol->value.integer.value[0] = 0; in wm_coeff_get_acked()
558 struct cs_dsp_coeff_ctl *cs_ctl = ctl->cs_ctl; in wm_adsp_ctl_work()
559 struct wm_adsp *dsp = container_of(cs_ctl->dsp, in wm_adsp_ctl_work() local
568 kcontrol->name = ctl->name; in wm_adsp_ctl_work()
569 kcontrol->info = wm_coeff_info; in wm_adsp_ctl_work()
570 kcontrol->iface = SNDRV_CTL_ELEM_IFACE_MIXER; in wm_adsp_ctl_work()
571 kcontrol->tlv.c = snd_soc_bytes_tlv_callback; in wm_adsp_ctl_work()
572 kcontrol->private_value = (unsigned long)&ctl->bytes_ext; in wm_adsp_ctl_work()
573 kcontrol->access = wmfw_convert_flags(cs_ctl->flags, cs_ctl->len); in wm_adsp_ctl_work()
575 switch (cs_ctl->type) { in wm_adsp_ctl_work()
577 kcontrol->get = wm_coeff_get_acked; in wm_adsp_ctl_work()
578 kcontrol->put = wm_coeff_put_acked; in wm_adsp_ctl_work()
581 if (kcontrol->access & SNDRV_CTL_ELEM_ACCESS_TLV_CALLBACK) { in wm_adsp_ctl_work()
582 ctl->bytes_ext.max = cs_ctl->len; in wm_adsp_ctl_work()
583 ctl->bytes_ext.get = wm_coeff_tlv_get; in wm_adsp_ctl_work()
584 ctl->bytes_ext.put = wm_coeff_tlv_put; in wm_adsp_ctl_work()
586 kcontrol->get = wm_coeff_get; in wm_adsp_ctl_work()
587 kcontrol->put = wm_coeff_put; in wm_adsp_ctl_work()
592 snd_soc_add_component_controls(dsp->component, kcontrol, 1); in wm_adsp_ctl_work()
599 struct wm_adsp *dsp = container_of(cs_ctl->dsp, struct wm_adsp, cs_dsp); in wm_adsp_control_add() local
600 struct cs_dsp *cs_dsp = &dsp->cs_dsp; in wm_adsp_control_add()
606 if (cs_ctl->flags & WMFW_CTL_FLAG_SYS) in wm_adsp_control_add()
609 region_name = cs_dsp_mem_region_name(cs_ctl->alg_region.type); in wm_adsp_control_add()
611 adsp_err(dsp, "Unknown region type: %d\n", cs_ctl->alg_region.type); in wm_adsp_control_add()
612 return -EINVAL; in wm_adsp_control_add()
615 switch (cs_dsp->fw_ver) { in wm_adsp_control_add()
619 "%s %s %x", cs_dsp->name, region_name, in wm_adsp_control_add()
620 cs_ctl->alg_region.alg); in wm_adsp_control_add()
624 "%s%c %.12s %x", cs_dsp->name, *region_name, in wm_adsp_control_add()
625 wm_adsp_fw_text[dsp->fw], cs_ctl->alg_region.alg); in wm_adsp_control_add()
629 "%s %.12s %x", cs_dsp->name, in wm_adsp_control_add()
630 wm_adsp_fw_text[dsp->fw], cs_ctl->alg_region.alg); in wm_adsp_control_add()
634 if (cs_ctl->subname) { in wm_adsp_control_add()
635 int avail = SNDRV_CTL_ELEM_ID_NAME_MAXLEN - ret - 2; in wm_adsp_control_add()
638 if (dsp->component->name_prefix) in wm_adsp_control_add()
639 avail -= strlen(dsp->component->name_prefix) + 1; in wm_adsp_control_add()
642 if (cs_ctl->subname_len > avail) in wm_adsp_control_add()
643 skip = cs_ctl->subname_len - avail; in wm_adsp_control_add()
645 snprintf(name + ret, SNDRV_CTL_ELEM_ID_NAME_MAXLEN - ret, in wm_adsp_control_add()
646 " %.*s", cs_ctl->subname_len - skip, cs_ctl->subname + skip); in wm_adsp_control_add()
651 return -ENOMEM; in wm_adsp_control_add()
652 ctl->cs_ctl = cs_ctl; in wm_adsp_control_add()
654 ctl->name = kmemdup(name, strlen(name) + 1, GFP_KERNEL); in wm_adsp_control_add()
655 if (!ctl->name) { in wm_adsp_control_add()
656 ret = -ENOMEM; in wm_adsp_control_add()
660 cs_ctl->priv = ctl; in wm_adsp_control_add()
662 INIT_WORK(&ctl->work, wm_adsp_ctl_work); in wm_adsp_control_add()
663 schedule_work(&ctl->work); in wm_adsp_control_add()
675 struct wm_coeff_ctl *ctl = cs_ctl->priv; in wm_adsp_control_remove()
677 cancel_work_sync(&ctl->work); in wm_adsp_control_remove()
679 kfree(ctl->name); in wm_adsp_control_remove()
683 int wm_adsp_write_ctl(struct wm_adsp *dsp, const char *name, int type, in wm_adsp_write_ctl() argument
690 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_write_ctl()
691 cs_ctl = cs_dsp_get_ctl(&dsp->cs_dsp, name, type, alg); in wm_adsp_write_ctl()
693 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_write_ctl()
698 if (ret == 0 || (cs_ctl->flags & WMFW_CTL_FLAG_SYS)) in wm_adsp_write_ctl()
701 ctl = cs_ctl->priv; in wm_adsp_write_ctl()
703 return snd_soc_component_notify_control(dsp->component, ctl->name); in wm_adsp_write_ctl()
707 int wm_adsp_read_ctl(struct wm_adsp *dsp, const char *name, int type, in wm_adsp_read_ctl() argument
712 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_read_ctl()
713 ret = cs_dsp_coeff_read_ctrl(cs_dsp_get_ctl(&dsp->cs_dsp, name, type, alg), in wm_adsp_read_ctl()
715 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_read_ctl()
721 static void wm_adsp_release_firmware_files(struct wm_adsp *dsp, in wm_adsp_release_firmware_files() argument
736 static int wm_adsp_request_firmware_file(struct wm_adsp *dsp, in wm_adsp_request_firmware_file() argument
742 struct cs_dsp *cs_dsp = &dsp->cs_dsp; in wm_adsp_request_firmware_file()
747 if (dsp->fwf_name) in wm_adsp_request_firmware_file()
748 fwf = dsp->fwf_name; in wm_adsp_request_firmware_file()
750 fwf = dsp->cs_dsp.name; in wm_adsp_request_firmware_file()
753 *filename = kasprintf(GFP_KERNEL, "%s%s-%s-%s-%s-%s.%s", dir, dsp->part, in wm_adsp_request_firmware_file()
754 fwf, wm_adsp_fw[dsp->fw].file, system_name, in wm_adsp_request_firmware_file()
757 *filename = kasprintf(GFP_KERNEL, "%s%s-%s-%s-%s.%s", dir, dsp->part, in wm_adsp_request_firmware_file()
758 fwf, wm_adsp_fw[dsp->fw].file, system_name, in wm_adsp_request_firmware_file()
761 *filename = kasprintf(GFP_KERNEL, "%s%s-%s-%s.%s", dir, dsp->part, fwf, in wm_adsp_request_firmware_file()
762 wm_adsp_fw[dsp->fw].file, filetype); in wm_adsp_request_firmware_file()
765 return -ENOMEM; in wm_adsp_request_firmware_file()
768 * Make sure that filename is lower-case and any non alpha-numeric in wm_adsp_request_firmware_file()
778 *s = '-'; in wm_adsp_request_firmware_file()
782 ret = firmware_request_nowarn(firmware, *filename, cs_dsp->dev); in wm_adsp_request_firmware_file()
784 adsp_dbg(dsp, "Failed to request '%s'\n", *filename); in wm_adsp_request_firmware_file()
788 adsp_dbg(dsp, "Found '%s'\n", *filename); in wm_adsp_request_firmware_file()
795 static int wm_adsp_request_firmware_files(struct wm_adsp *dsp, in wm_adsp_request_firmware_files() argument
801 const char *system_name = dsp->system_name; in wm_adsp_request_firmware_files()
802 const char *asoc_component_prefix = dsp->component->name_prefix; in wm_adsp_request_firmware_files()
806 if (!wm_adsp_request_firmware_file(dsp, wmfw_firmware, wmfw_filename, in wm_adsp_request_firmware_files()
809 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
817 if (!wm_adsp_request_firmware_file(dsp, wmfw_firmware, wmfw_filename, in wm_adsp_request_firmware_files()
821 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
826 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
833 if (!wm_adsp_request_firmware_file(dsp, wmfw_firmware, wmfw_filename, in wm_adsp_request_firmware_files()
835 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
840 ret = wm_adsp_request_firmware_file(dsp, wmfw_firmware, wmfw_filename, in wm_adsp_request_firmware_files()
843 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
848 if (dsp->wmfw_optional) { in wm_adsp_request_firmware_files()
851 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
856 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
862 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
866 wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, in wm_adsp_request_firmware_files()
872 adsp_err(dsp, "Failed to request firmware <%s>%s-%s-%s<-%s<%s>>.wmfw\n", in wm_adsp_request_firmware_files()
873 cirrus_dir, dsp->part, in wm_adsp_request_firmware_files()
874 dsp->fwf_name ? dsp->fwf_name : dsp->cs_dsp.name, in wm_adsp_request_firmware_files()
875 wm_adsp_fw[dsp->fw].file, system_name, asoc_component_prefix); in wm_adsp_request_firmware_files()
877 return -ENOENT; in wm_adsp_request_firmware_files()
880 static int wm_adsp_common_init(struct wm_adsp *dsp) in wm_adsp_common_init() argument
882 INIT_LIST_HEAD(&dsp->compr_list); in wm_adsp_common_init()
883 INIT_LIST_HEAD(&dsp->buffer_list); in wm_adsp_common_init()
888 int wm_adsp1_init(struct wm_adsp *dsp) in wm_adsp1_init() argument
892 dsp->cs_dsp.client_ops = &wm_adsp1_client_ops; in wm_adsp1_init()
894 ret = cs_dsp_adsp1_init(&dsp->cs_dsp); in wm_adsp1_init()
898 return wm_adsp_common_init(dsp); in wm_adsp1_init()
906 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); in wm_adsp1_event()
908 struct wm_adsp *dsp = &dsps[w->shift]; in wm_adsp1_event() local
915 dsp->component = component; in wm_adsp1_event()
919 ret = wm_adsp_request_firmware_files(dsp, in wm_adsp1_event()
925 ret = cs_dsp_adsp1_power_up(&dsp->cs_dsp, in wm_adsp1_event()
928 wm_adsp_fw_text[dsp->fw]); in wm_adsp1_event()
930 wm_adsp_release_firmware_files(dsp, in wm_adsp1_event()
935 cs_dsp_adsp1_power_down(&dsp->cs_dsp); in wm_adsp1_event()
947 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); in wm_adsp2_set_dspclk()
949 struct wm_adsp *dsp = &dsps[w->shift]; in wm_adsp2_set_dspclk() local
951 return cs_dsp_set_dspclk(&dsp->cs_dsp, freq); in wm_adsp2_set_dspclk()
961 (struct soc_mixer_control *)kcontrol->private_value; in wm_adsp2_preloader_get()
962 struct wm_adsp *dsp = &dsps[mc->shift - 1]; in wm_adsp2_preloader_get() local
964 ucontrol->value.integer.value[0] = dsp->preloaded; in wm_adsp2_preloader_get()
977 (struct soc_mixer_control *)kcontrol->private_value; in wm_adsp2_preloader_put()
978 struct wm_adsp *dsp = &dsps[mc->shift - 1]; in wm_adsp2_preloader_put() local
981 if (dsp->preloaded == ucontrol->value.integer.value[0]) in wm_adsp2_preloader_put()
984 snprintf(preload, ARRAY_SIZE(preload), "%s Preload", dsp->cs_dsp.name); in wm_adsp2_preloader_put()
986 if (ucontrol->value.integer.value[0] || dsp->toggle_preload) in wm_adsp2_preloader_put()
993 flush_work(&dsp->boot_work); in wm_adsp2_preloader_put()
995 dsp->preloaded = ucontrol->value.integer.value[0]; in wm_adsp2_preloader_put()
997 if (dsp->toggle_preload) { in wm_adsp2_preloader_put()
1006 int wm_adsp_power_up(struct wm_adsp *dsp, bool load_firmware) in wm_adsp_power_up() argument
1015 ret = wm_adsp_request_firmware_files(dsp, in wm_adsp_power_up()
1022 ret = cs_dsp_power_up(&dsp->cs_dsp, in wm_adsp_power_up()
1025 wm_adsp_fw_text[dsp->fw]); in wm_adsp_power_up()
1027 wm_adsp_release_firmware_files(dsp, in wm_adsp_power_up()
1035 void wm_adsp_power_down(struct wm_adsp *dsp) in wm_adsp_power_down() argument
1037 cs_dsp_power_down(&dsp->cs_dsp); in wm_adsp_power_down()
1043 struct wm_adsp *dsp = container_of(work, in wm_adsp_boot_work() local
1047 wm_adsp_power_up(dsp, true); in wm_adsp_boot_work()
1053 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); in wm_adsp_early_event()
1055 struct wm_adsp *dsp = &dsps[w->shift]; in wm_adsp_early_event() local
1059 queue_work(system_unbound_wq, &dsp->boot_work); in wm_adsp_early_event()
1062 wm_adsp_power_down(dsp); in wm_adsp_early_event()
1074 struct wm_adsp *dsp = container_of(cs_dsp, struct wm_adsp, cs_dsp); in wm_adsp_pre_run() local
1076 if (!dsp->pre_run) in wm_adsp_pre_run()
1079 return (*dsp->pre_run)(dsp); in wm_adsp_pre_run()
1084 struct wm_adsp *dsp = container_of(cs_dsp, struct wm_adsp, cs_dsp); in wm_adsp_event_post_run() local
1086 if (wm_adsp_fw[dsp->fw].num_caps != 0) in wm_adsp_event_post_run()
1087 return wm_adsp_buffer_init(dsp); in wm_adsp_event_post_run()
1094 struct wm_adsp *dsp = container_of(cs_dsp, struct wm_adsp, cs_dsp); in wm_adsp_event_post_stop() local
1096 if (wm_adsp_fw[dsp->fw].num_caps != 0) in wm_adsp_event_post_stop()
1097 wm_adsp_buffer_free(dsp); in wm_adsp_event_post_stop()
1099 dsp->fatal_error = false; in wm_adsp_event_post_stop()
1105 struct snd_soc_component *component = snd_soc_dapm_to_component(w->dapm); in wm_adsp_event()
1107 struct wm_adsp *dsp = &dsps[w->shift]; in wm_adsp_event() local
1112 flush_work(&dsp->boot_work); in wm_adsp_event()
1113 ret = cs_dsp_run(&dsp->cs_dsp); in wm_adsp_event()
1116 cs_dsp_stop(&dsp->cs_dsp); in wm_adsp_event()
1126 int wm_adsp2_component_probe(struct wm_adsp *dsp, struct snd_soc_component *component) in wm_adsp2_component_probe() argument
1130 if (!dsp->cs_dsp.no_core_startstop) { in wm_adsp2_component_probe()
1131 snprintf(preload, ARRAY_SIZE(preload), "%s Preload", dsp->cs_dsp.name); in wm_adsp2_component_probe()
1135 cs_dsp_init_debugfs(&dsp->cs_dsp, component->debugfs_root); in wm_adsp2_component_probe()
1137 dsp->component = component; in wm_adsp2_component_probe()
1143 int wm_adsp2_component_remove(struct wm_adsp *dsp, struct snd_soc_component *component) in wm_adsp2_component_remove() argument
1145 cs_dsp_cleanup_debugfs(&dsp->cs_dsp); in wm_adsp2_component_remove()
1151 int wm_adsp2_init(struct wm_adsp *dsp) in wm_adsp2_init() argument
1155 INIT_WORK(&dsp->boot_work, wm_adsp_boot_work); in wm_adsp2_init()
1157 dsp->sys_config_size = sizeof(struct wm_adsp_system_config_xm_hdr); in wm_adsp2_init()
1158 dsp->cs_dsp.client_ops = &wm_adsp2_client_ops; in wm_adsp2_init()
1160 ret = cs_dsp_adsp2_init(&dsp->cs_dsp); in wm_adsp2_init()
1164 return wm_adsp_common_init(dsp); in wm_adsp2_init()
1168 int wm_halo_init(struct wm_adsp *dsp) in wm_halo_init() argument
1172 INIT_WORK(&dsp->boot_work, wm_adsp_boot_work); in wm_halo_init()
1174 dsp->sys_config_size = sizeof(struct wm_halo_system_config_xm_hdr); in wm_halo_init()
1175 dsp->cs_dsp.client_ops = &wm_adsp2_client_ops; in wm_halo_init()
1177 ret = cs_dsp_halo_init(&dsp->cs_dsp); in wm_halo_init()
1181 return wm_adsp_common_init(dsp); in wm_halo_init()
1185 void wm_adsp2_remove(struct wm_adsp *dsp) in wm_adsp2_remove() argument
1187 cs_dsp_remove(&dsp->cs_dsp); in wm_adsp2_remove()
1193 return compr->buf != NULL; in wm_adsp_compr_attached()
1200 if (compr->dsp->fatal_error) in wm_adsp_compr_attach()
1201 return -EINVAL; in wm_adsp_compr_attach()
1203 list_for_each_entry(tmp, &compr->dsp->buffer_list, list) { in wm_adsp_compr_attach()
1204 if (!tmp->name || !strcmp(compr->name, tmp->name)) { in wm_adsp_compr_attach()
1211 return -EINVAL; in wm_adsp_compr_attach()
1213 compr->buf = buf; in wm_adsp_compr_attach()
1214 buf->compr = compr; in wm_adsp_compr_attach()
1225 if (compr->stream) in wm_adsp_compr_detach()
1226 snd_compr_fragment_elapsed(compr->stream); in wm_adsp_compr_detach()
1229 compr->buf->compr = NULL; in wm_adsp_compr_detach()
1230 compr->buf = NULL; in wm_adsp_compr_detach()
1234 int wm_adsp_compr_open(struct wm_adsp *dsp, struct snd_compr_stream *stream) in wm_adsp_compr_open() argument
1237 struct snd_soc_pcm_runtime *rtd = stream->private_data; in wm_adsp_compr_open()
1240 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_open()
1242 if (wm_adsp_fw[dsp->fw].num_caps == 0) { in wm_adsp_compr_open()
1243 adsp_err(dsp, "%s: Firmware does not support compressed API\n", in wm_adsp_compr_open()
1244 asoc_rtd_to_codec(rtd, 0)->name); in wm_adsp_compr_open()
1245 ret = -ENXIO; in wm_adsp_compr_open()
1249 if (wm_adsp_fw[dsp->fw].compr_direction != stream->direction) { in wm_adsp_compr_open()
1250 adsp_err(dsp, "%s: Firmware does not support stream direction\n", in wm_adsp_compr_open()
1251 asoc_rtd_to_codec(rtd, 0)->name); in wm_adsp_compr_open()
1252 ret = -EINVAL; in wm_adsp_compr_open()
1256 list_for_each_entry(tmp, &dsp->compr_list, list) { in wm_adsp_compr_open()
1257 if (!strcmp(tmp->name, asoc_rtd_to_codec(rtd, 0)->name)) { in wm_adsp_compr_open()
1258 adsp_err(dsp, "%s: Only a single stream supported per dai\n", in wm_adsp_compr_open()
1259 asoc_rtd_to_codec(rtd, 0)->name); in wm_adsp_compr_open()
1260 ret = -EBUSY; in wm_adsp_compr_open()
1267 ret = -ENOMEM; in wm_adsp_compr_open()
1271 compr->dsp = dsp; in wm_adsp_compr_open()
1272 compr->stream = stream; in wm_adsp_compr_open()
1273 compr->name = asoc_rtd_to_codec(rtd, 0)->name; in wm_adsp_compr_open()
1275 list_add_tail(&compr->list, &dsp->compr_list); in wm_adsp_compr_open()
1277 stream->runtime->private_data = compr; in wm_adsp_compr_open()
1280 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_open()
1289 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_free()
1290 struct wm_adsp *dsp = compr->dsp; in wm_adsp_compr_free() local
1292 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_free()
1295 list_del(&compr->list); in wm_adsp_compr_free()
1297 kfree(compr->raw_buf); in wm_adsp_compr_free()
1300 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_free()
1309 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_check_params()
1310 struct wm_adsp *dsp = compr->dsp; in wm_adsp_compr_check_params() local
1315 if (params->buffer.fragment_size < WM_ADSP_MIN_FRAGMENT_SIZE || in wm_adsp_compr_check_params()
1316 params->buffer.fragment_size > WM_ADSP_MAX_FRAGMENT_SIZE || in wm_adsp_compr_check_params()
1317 params->buffer.fragments < WM_ADSP_MIN_FRAGMENTS || in wm_adsp_compr_check_params()
1318 params->buffer.fragments > WM_ADSP_MAX_FRAGMENTS || in wm_adsp_compr_check_params()
1319 params->buffer.fragment_size % CS_DSP_DATA_WORD_SIZE) { in wm_adsp_compr_check_params()
1321 params->buffer.fragment_size, in wm_adsp_compr_check_params()
1322 params->buffer.fragments); in wm_adsp_compr_check_params()
1324 return -EINVAL; in wm_adsp_compr_check_params()
1327 for (i = 0; i < wm_adsp_fw[dsp->fw].num_caps; i++) { in wm_adsp_compr_check_params()
1328 caps = &wm_adsp_fw[dsp->fw].caps[i]; in wm_adsp_compr_check_params()
1329 desc = &caps->desc; in wm_adsp_compr_check_params()
1331 if (caps->id != params->codec.id) in wm_adsp_compr_check_params()
1334 if (stream->direction == SND_COMPRESS_PLAYBACK) { in wm_adsp_compr_check_params()
1335 if (desc->max_ch < params->codec.ch_out) in wm_adsp_compr_check_params()
1338 if (desc->max_ch < params->codec.ch_in) in wm_adsp_compr_check_params()
1342 if (!(desc->formats & (1 << params->codec.format))) in wm_adsp_compr_check_params()
1345 for (j = 0; j < desc->num_sample_rates; ++j) in wm_adsp_compr_check_params()
1346 if (desc->sample_rates[j] == params->codec.sample_rate) in wm_adsp_compr_check_params()
1351 params->codec.id, params->codec.ch_in, params->codec.ch_out, in wm_adsp_compr_check_params()
1352 params->codec.sample_rate, params->codec.format); in wm_adsp_compr_check_params()
1353 return -EINVAL; in wm_adsp_compr_check_params()
1358 return compr->size.fragment_size / CS_DSP_DATA_WORD_SIZE; in wm_adsp_compr_frag_words()
1365 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_set_params()
1373 compr->size = params->buffer; in wm_adsp_compr_set_params()
1376 compr->size.fragment_size, compr->size.fragments); in wm_adsp_compr_set_params()
1378 size = wm_adsp_compr_frag_words(compr) * sizeof(*compr->raw_buf); in wm_adsp_compr_set_params()
1379 compr->raw_buf = kmalloc(size, GFP_DMA | GFP_KERNEL); in wm_adsp_compr_set_params()
1380 if (!compr->raw_buf) in wm_adsp_compr_set_params()
1381 return -ENOMEM; in wm_adsp_compr_set_params()
1383 compr->sample_rate = params->codec.sample_rate; in wm_adsp_compr_set_params()
1393 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_get_caps()
1394 int fw = compr->dsp->fw; in wm_adsp_compr_get_caps()
1399 caps->codecs[i] = wm_adsp_fw[fw].caps[i].id; in wm_adsp_compr_get_caps()
1401 caps->num_codecs = i; in wm_adsp_compr_get_caps()
1402 caps->direction = wm_adsp_fw[fw].compr_direction; in wm_adsp_compr_get_caps()
1404 caps->min_fragment_size = WM_ADSP_MIN_FRAGMENT_SIZE; in wm_adsp_compr_get_caps()
1405 caps->max_fragment_size = WM_ADSP_MAX_FRAGMENT_SIZE; in wm_adsp_compr_get_caps()
1406 caps->min_fragments = WM_ADSP_MIN_FRAGMENTS; in wm_adsp_compr_get_caps()
1407 caps->max_fragments = WM_ADSP_MAX_FRAGMENTS; in wm_adsp_compr_get_caps()
1417 return cs_dsp_read_data_word(&buf->dsp->cs_dsp, buf->host_buf_mem_type, in wm_adsp_buffer_read()
1418 buf->host_buf_ptr + field_offset, data); in wm_adsp_buffer_read()
1424 return cs_dsp_write_data_word(&buf->dsp->cs_dsp, buf->host_buf_mem_type, in wm_adsp_buffer_write()
1425 buf->host_buf_ptr + field_offset, in wm_adsp_buffer_write()
1431 const struct wm_adsp_fw_caps *caps = wm_adsp_fw[buf->dsp->fw].caps; in wm_adsp_buffer_populate()
1436 buf->regions = kcalloc(caps->num_regions, sizeof(*buf->regions), in wm_adsp_buffer_populate()
1438 if (!buf->regions) in wm_adsp_buffer_populate()
1439 return -ENOMEM; in wm_adsp_buffer_populate()
1441 for (i = 0; i < caps->num_regions; ++i) { in wm_adsp_buffer_populate()
1442 region = &buf->regions[i]; in wm_adsp_buffer_populate()
1444 region->offset = offset; in wm_adsp_buffer_populate()
1445 region->mem_type = caps->region_defs[i].mem_type; in wm_adsp_buffer_populate()
1447 ret = wm_adsp_buffer_read(buf, caps->region_defs[i].base_offset, in wm_adsp_buffer_populate()
1448 ®ion->base_addr); in wm_adsp_buffer_populate()
1452 ret = wm_adsp_buffer_read(buf, caps->region_defs[i].size_offset, in wm_adsp_buffer_populate()
1457 region->cumulative_size = offset; in wm_adsp_buffer_populate()
1461 i, region->mem_type, region->base_addr, in wm_adsp_buffer_populate()
1462 region->offset, region->cumulative_size); in wm_adsp_buffer_populate()
1468 kfree(buf->regions); in wm_adsp_buffer_populate()
1474 buf->irq_count = 0xFFFFFFFF; in wm_adsp_buffer_clear()
1475 buf->read_index = -1; in wm_adsp_buffer_clear()
1476 buf->avail = 0; in wm_adsp_buffer_clear()
1479 static struct wm_adsp_compr_buf *wm_adsp_buffer_alloc(struct wm_adsp *dsp) in wm_adsp_buffer_alloc() argument
1487 buf->dsp = dsp; in wm_adsp_buffer_alloc()
1494 static int wm_adsp_buffer_parse_legacy(struct wm_adsp *dsp) in wm_adsp_buffer_parse_legacy() argument
1501 alg_region = cs_dsp_find_alg_region(&dsp->cs_dsp, WMFW_ADSP2_XM, dsp->cs_dsp.fw_id); in wm_adsp_buffer_parse_legacy()
1503 adsp_err(dsp, "No algorithm region found\n"); in wm_adsp_buffer_parse_legacy()
1504 return -EINVAL; in wm_adsp_buffer_parse_legacy()
1507 xmalg = dsp->sys_config_size / sizeof(__be32); in wm_adsp_buffer_parse_legacy()
1509 addr = alg_region->base + xmalg + ALG_XM_FIELD(magic); in wm_adsp_buffer_parse_legacy()
1510 ret = cs_dsp_read_data_word(&dsp->cs_dsp, WMFW_ADSP2_XM, addr, &magic); in wm_adsp_buffer_parse_legacy()
1515 return -ENODEV; in wm_adsp_buffer_parse_legacy()
1517 buf = wm_adsp_buffer_alloc(dsp); in wm_adsp_buffer_parse_legacy()
1519 return -ENOMEM; in wm_adsp_buffer_parse_legacy()
1521 addr = alg_region->base + xmalg + ALG_XM_FIELD(host_buf_ptr); in wm_adsp_buffer_parse_legacy()
1523 ret = cs_dsp_read_data_word(&dsp->cs_dsp, WMFW_ADSP2_XM, addr, in wm_adsp_buffer_parse_legacy()
1524 &buf->host_buf_ptr); in wm_adsp_buffer_parse_legacy()
1528 if (buf->host_buf_ptr) in wm_adsp_buffer_parse_legacy()
1534 if (!buf->host_buf_ptr) { in wm_adsp_buffer_parse_legacy()
1535 ret = -EIO; in wm_adsp_buffer_parse_legacy()
1539 buf->host_buf_mem_type = WMFW_ADSP2_XM; in wm_adsp_buffer_parse_legacy()
1545 list_add_tail(&buf->list, &dsp->buffer_list); in wm_adsp_buffer_parse_legacy()
1547 compr_dbg(buf, "legacy host_buf_ptr=%x\n", buf->host_buf_ptr); in wm_adsp_buffer_parse_legacy()
1561 struct wm_adsp *dsp = container_of(cs_ctl->dsp, struct wm_adsp, cs_dsp); in wm_adsp_buffer_parse_coeff() local
1567 min(cs_ctl->len, sizeof(coeff_v1))); in wm_adsp_buffer_parse_coeff()
1578 adsp_err(dsp, "Failed to acquire host buffer\n"); in wm_adsp_buffer_parse_coeff()
1579 return -EIO; in wm_adsp_buffer_parse_coeff()
1582 buf = wm_adsp_buffer_alloc(dsp); in wm_adsp_buffer_parse_coeff()
1584 return -ENOMEM; in wm_adsp_buffer_parse_coeff()
1586 buf->host_buf_mem_type = cs_ctl->alg_region.type; in wm_adsp_buffer_parse_coeff()
1587 buf->host_buf_ptr = be32_to_cpu(coeff_v1.host_buf_ptr); in wm_adsp_buffer_parse_coeff()
1597 if (cs_ctl->len == 4) in wm_adsp_buffer_parse_coeff()
1604 adsp_err(dsp, in wm_adsp_buffer_parse_coeff()
1607 ret = -EINVAL; in wm_adsp_buffer_parse_coeff()
1613 buf->name = kasprintf(GFP_KERNEL, "%s-dsp-%s", dsp->part, in wm_adsp_buffer_parse_coeff()
1617 list_add_tail(&buf->list, &dsp->buffer_list); in wm_adsp_buffer_parse_coeff()
1620 buf->host_buf_ptr, version); in wm_adsp_buffer_parse_coeff()
1630 static int wm_adsp_buffer_init(struct wm_adsp *dsp) in wm_adsp_buffer_init() argument
1635 list_for_each_entry(cs_ctl, &dsp->cs_dsp.ctl_list, list) { in wm_adsp_buffer_init()
1636 if (cs_ctl->type != WMFW_CTL_TYPE_HOST_BUFFER) in wm_adsp_buffer_init()
1639 if (!cs_ctl->enabled) in wm_adsp_buffer_init()
1644 adsp_err(dsp, "Failed to parse coeff: %d\n", ret); in wm_adsp_buffer_init()
1652 if (list_empty(&dsp->buffer_list)) { in wm_adsp_buffer_init()
1654 ret = wm_adsp_buffer_parse_legacy(dsp); in wm_adsp_buffer_init()
1655 if (ret == -ENODEV) in wm_adsp_buffer_init()
1656 adsp_info(dsp, "Legacy support not available\n"); in wm_adsp_buffer_init()
1658 adsp_warn(dsp, "Failed to parse legacy: %d\n", ret); in wm_adsp_buffer_init()
1664 wm_adsp_buffer_free(dsp); in wm_adsp_buffer_init()
1668 static int wm_adsp_buffer_free(struct wm_adsp *dsp) in wm_adsp_buffer_free() argument
1672 list_for_each_entry_safe(buf, tmp, &dsp->buffer_list, list) { in wm_adsp_buffer_free()
1673 wm_adsp_compr_detach(buf->compr); in wm_adsp_buffer_free()
1675 kfree(buf->name); in wm_adsp_buffer_free()
1676 kfree(buf->regions); in wm_adsp_buffer_free()
1677 list_del(&buf->list); in wm_adsp_buffer_free()
1688 ret = wm_adsp_buffer_read(buf, HOST_BUFFER_FIELD(error), &buf->error); in wm_adsp_buffer_get_error()
1693 if (buf->error != 0) { in wm_adsp_buffer_get_error()
1694 compr_err(buf, "Buffer error occurred: %d\n", buf->error); in wm_adsp_buffer_get_error()
1695 return -EIO; in wm_adsp_buffer_get_error()
1704 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_trigger()
1705 struct wm_adsp *dsp = compr->dsp; in wm_adsp_compr_trigger() local
1710 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_trigger()
1723 ret = wm_adsp_buffer_get_error(compr->buf); in wm_adsp_compr_trigger()
1728 ret = wm_adsp_buffer_write(compr->buf, in wm_adsp_compr_trigger()
1739 wm_adsp_buffer_clear(compr->buf); in wm_adsp_compr_trigger()
1742 ret = -EINVAL; in wm_adsp_compr_trigger()
1746 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_trigger()
1754 int last_region = wm_adsp_fw[buf->dsp->fw].caps->num_regions - 1; in wm_adsp_buffer_size()
1756 return buf->regions[last_region].cumulative_size; in wm_adsp_buffer_size()
1766 if (buf->read_index < 0) { in wm_adsp_buffer_update_avail()
1780 buf->read_index = read_index; in wm_adsp_buffer_update_avail()
1790 avail = write_index - buf->read_index; in wm_adsp_buffer_update_avail()
1795 buf->read_index, write_index, avail * CS_DSP_DATA_WORD_SIZE); in wm_adsp_buffer_update_avail()
1797 buf->avail = avail; in wm_adsp_buffer_update_avail()
1802 int wm_adsp_compr_handle_irq(struct wm_adsp *dsp) in wm_adsp_compr_handle_irq() argument
1808 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_handle_irq()
1810 if (list_empty(&dsp->buffer_list)) { in wm_adsp_compr_handle_irq()
1811 ret = -ENODEV; in wm_adsp_compr_handle_irq()
1815 adsp_dbg(dsp, "Handling buffer IRQ\n"); in wm_adsp_compr_handle_irq()
1817 list_for_each_entry(buf, &dsp->buffer_list, list) { in wm_adsp_compr_handle_irq()
1818 compr = buf->compr; in wm_adsp_compr_handle_irq()
1825 &buf->irq_count); in wm_adsp_compr_handle_irq()
1837 if (wm_adsp_fw[dsp->fw].voice_trigger && buf->irq_count == 2) in wm_adsp_compr_handle_irq()
1841 if (compr && compr->stream) in wm_adsp_compr_handle_irq()
1842 snd_compr_fragment_elapsed(compr->stream); in wm_adsp_compr_handle_irq()
1846 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_handle_irq()
1854 if (buf->irq_count & 0x01) in wm_adsp_buffer_reenable_irq()
1857 compr_dbg(buf, "Enable IRQ(0x%x) for next fragment\n", buf->irq_count); in wm_adsp_buffer_reenable_irq()
1859 buf->irq_count |= 0x01; in wm_adsp_buffer_reenable_irq()
1862 buf->irq_count); in wm_adsp_buffer_reenable_irq()
1869 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_pointer()
1870 struct wm_adsp *dsp = compr->dsp; in wm_adsp_compr_pointer() local
1876 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_pointer()
1878 buf = compr->buf; in wm_adsp_compr_pointer()
1880 if (dsp->fatal_error || !buf || buf->error) { in wm_adsp_compr_pointer()
1882 ret = -EIO; in wm_adsp_compr_pointer()
1886 if (buf->avail < wm_adsp_compr_frag_words(compr)) { in wm_adsp_compr_pointer()
1895 * DSP to inform us once a whole fragment is available. in wm_adsp_compr_pointer()
1897 if (buf->avail < wm_adsp_compr_frag_words(compr)) { in wm_adsp_compr_pointer()
1900 if (buf->error) in wm_adsp_compr_pointer()
1908 compr_err(compr, "Failed to re-enable buffer IRQ: %d\n", in wm_adsp_compr_pointer()
1915 tstamp->copied_total = compr->copied_total; in wm_adsp_compr_pointer()
1916 tstamp->copied_total += buf->avail * CS_DSP_DATA_WORD_SIZE; in wm_adsp_compr_pointer()
1917 tstamp->sampling_rate = compr->sample_rate; in wm_adsp_compr_pointer()
1920 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_pointer()
1928 struct wm_adsp_compr_buf *buf = compr->buf; in wm_adsp_buffer_capture_block()
1934 for (i = 0; i < wm_adsp_fw[buf->dsp->fw].caps->num_regions; ++i) in wm_adsp_buffer_capture_block()
1935 if (buf->read_index < buf->regions[i].cumulative_size) in wm_adsp_buffer_capture_block()
1938 if (i == wm_adsp_fw[buf->dsp->fw].caps->num_regions) in wm_adsp_buffer_capture_block()
1939 return -EINVAL; in wm_adsp_buffer_capture_block()
1941 mem_type = buf->regions[i].mem_type; in wm_adsp_buffer_capture_block()
1942 adsp_addr = buf->regions[i].base_addr + in wm_adsp_buffer_capture_block()
1943 (buf->read_index - buf->regions[i].offset); in wm_adsp_buffer_capture_block()
1946 nwords = buf->regions[i].cumulative_size - buf->read_index; in wm_adsp_buffer_capture_block()
1950 if (nwords > buf->avail) in wm_adsp_buffer_capture_block()
1951 nwords = buf->avail; in wm_adsp_buffer_capture_block()
1957 /* Read data from DSP */ in wm_adsp_buffer_capture_block()
1958 ret = cs_dsp_read_raw_data_block(&buf->dsp->cs_dsp, mem_type, adsp_addr, in wm_adsp_buffer_capture_block()
1959 nwords, (__be32 *)compr->raw_buf); in wm_adsp_buffer_capture_block()
1963 cs_dsp_remove_padding(compr->raw_buf, nwords); in wm_adsp_buffer_capture_block()
1966 buf->read_index += nwords; in wm_adsp_buffer_capture_block()
1967 if (buf->read_index == wm_adsp_buffer_size(buf)) in wm_adsp_buffer_capture_block()
1968 buf->read_index = 0; in wm_adsp_buffer_capture_block()
1971 buf->read_index); in wm_adsp_buffer_capture_block()
1976 buf->avail -= nwords; in wm_adsp_buffer_capture_block()
1984 struct wm_adsp *dsp = compr->dsp; in wm_adsp_compr_read() local
1990 if (dsp->fatal_error || !compr->buf || compr->buf->error) { in wm_adsp_compr_read()
1991 snd_compr_stop_error(compr->stream, SNDRV_PCM_STATE_XRUN); in wm_adsp_compr_read()
1992 return -EIO; in wm_adsp_compr_read()
2009 if (copy_to_user(buf + ntotal, compr->raw_buf, nbytes)) { in wm_adsp_compr_read()
2012 return -EFAULT; in wm_adsp_compr_read()
2015 count -= nwords; in wm_adsp_compr_read()
2019 compr->copied_total += ntotal; in wm_adsp_compr_read()
2028 struct wm_adsp_compr *compr = stream->runtime->private_data; in wm_adsp_compr_copy()
2029 struct wm_adsp *dsp = compr->dsp; in wm_adsp_compr_copy() local
2032 mutex_lock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_copy()
2034 if (stream->direction == SND_COMPRESS_CAPTURE) in wm_adsp_compr_copy()
2037 ret = -ENOTSUPP; in wm_adsp_compr_copy()
2039 mutex_unlock(&dsp->cs_dsp.pwr_lock); in wm_adsp_compr_copy()
2047 struct wm_adsp *dsp = container_of(cs_dsp, struct wm_adsp, cs_dsp); in wm_adsp_fatal_error() local
2050 dsp->fatal_error = true; in wm_adsp_fatal_error()
2052 list_for_each_entry(compr, &dsp->compr_list, list) { in wm_adsp_fatal_error()
2053 if (compr->stream) in wm_adsp_fatal_error()
2054 snd_compr_fragment_elapsed(compr->stream); in wm_adsp_fatal_error()
2060 struct wm_adsp *dsp = (struct wm_adsp *)data; in wm_adsp2_bus_error() local
2062 cs_dsp_adsp2_bus_error(&dsp->cs_dsp); in wm_adsp2_bus_error()
2070 struct wm_adsp *dsp = (struct wm_adsp *)data; in wm_halo_bus_error() local
2072 cs_dsp_halo_bus_error(&dsp->cs_dsp); in wm_halo_bus_error()
2080 struct wm_adsp *dsp = data; in wm_halo_wdt_expire() local
2082 cs_dsp_halo_wdt_expire(&dsp->cs_dsp); in wm_halo_wdt_expire()