Message ID | 20230329130525.15830-1-lujianhua000@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Asoc: wm_adsp: Add support for loading firmware with prefix name | expand |
On Wed, Mar 29, 2023 at 02:05:24PM +0000, Charles Keepax wrote: > > This direction seems slightly problematic, especially in the > context of amps (which I presume this relates to, please let know > if that is wrong). It would probably be better to be fixing > things up such that the amp in question sets system_name when > registered through DT. Generally speaking the idea is the amp I also consider setting system_name when registered by DT, but I don't known setting what name to it. Card name or something else? > tuning is going to be specific to the enclosure/speaker involved, > so a generic tuning for say left amps doesn't really make a lot > of sense. I don't known about amp tuning much, my need just is loading firmware for more than 1 speaker amp at the platform using fdt. One of the both way is good to me. > > Thanks, > Charles
diff --git a/sound/soc/codecs/wm_adsp.c b/sound/soc/codecs/wm_adsp.c index 216120b68b64..17481e42d440 100644 --- a/sound/soc/codecs/wm_adsp.c +++ b/sound/soc/codecs/wm_adsp.c @@ -760,6 +760,10 @@ static int wm_adsp_request_firmware_file(struct wm_adsp *dsp, *filename = kasprintf(GFP_KERNEL, "%s%s-%s-%s-%s.%s", dir, dsp->part, dsp->fwf_name, wm_adsp_fw[dsp->fw].file, system_name, filetype); + else if (asoc_component_prefix) + *filename = kasprintf(GFP_KERNEL, "%s%s-%s-%s-%s.%s", dir, dsp->part, + dsp->fwf_name, wm_adsp_fw[dsp->fw].file, asoc_component_prefix, + filetype); else *filename = kasprintf(GFP_KERNEL, "%s%s-%s-%s.%s", dir, dsp->part, dsp->fwf_name, wm_adsp_fw[dsp->fw].file, filetype); @@ -831,6 +835,16 @@ static int wm_adsp_request_firmware_files(struct wm_adsp *dsp, NULL, "bin"); return 0; } + } else if (asoc_component_prefix) { + if (!wm_adsp_request_firmware_file(dsp, wmfw_firmware, wmfw_filename, + cirrus_dir, NULL, + asoc_component_prefix, "wmfw")) { + adsp_dbg(dsp, "Found '%s'\n", *wmfw_filename); + wm_adsp_request_firmware_file(dsp, coeff_firmware, coeff_filename, + cirrus_dir, NULL, + asoc_component_prefix, "bin"); + return 0; + } } if (!wm_adsp_request_firmware_file(dsp, wmfw_firmware, wmfw_filename,
For platform using fdt, system_name is NULL, it doesn't provide a way to load firmware with prefix name, so add it. Signed-off-by: Jianhua Lu <lujianhua000@gmail.com> --- sound/soc/codecs/wm_adsp.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+)