1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Load Analog Devices SigmaStudio firmware files
5 * Copyright 2009-2014 Analog Devices Inc.
8 #include <linux/crc32.h>
9 #include <linux/firmware.h>
10 #include <linux/kernel.h>
11 #include <linux/i2c.h>
12 #include <linux/regmap.h>
13 #include <linux/module.h>
14 #include <linux/slab.h>
16 #include <sound/control.h>
17 #include <sound/soc.h>
21 #define SIGMA_MAGIC "ADISIGM"
23 #define SIGMA_FW_CHUNK_TYPE_DATA 0
24 #define SIGMA_FW_CHUNK_TYPE_CONTROL 1
25 #define SIGMA_FW_CHUNK_TYPE_SAMPLERATES 2
27 #define READBACK_CTRL_NAME "ReadBack"
29 struct sigmadsp_control {
30 struct list_head head;
33 unsigned int num_bytes;
35 struct snd_kcontrol *kcontrol;
41 struct sigmadsp_data {
42 struct list_head head;
46 uint8_t data[] __counted_by(length);
49 struct sigma_fw_chunk {
55 struct sigma_fw_chunk_data {
56 struct sigma_fw_chunk chunk;
61 struct sigma_fw_chunk_control {
62 struct sigma_fw_chunk chunk;
69 struct sigma_fw_chunk_samplerate {
70 struct sigma_fw_chunk chunk;
74 struct sigma_firmware_header {
75 unsigned char magic[7];
81 SIGMA_ACTION_WRITEXBYTES = 0,
82 SIGMA_ACTION_WRITESINGLE,
83 SIGMA_ACTION_WRITESAFELOAD,
92 unsigned char payload[];
95 static int sigmadsp_write(struct sigmadsp *sigmadsp, unsigned int addr,
96 const uint8_t data[], size_t len)
98 return sigmadsp->write(sigmadsp->control_data, addr, data, len);
101 static int sigmadsp_read(struct sigmadsp *sigmadsp, unsigned int addr,
102 uint8_t data[], size_t len)
104 return sigmadsp->read(sigmadsp->control_data, addr, data, len);
107 static int sigmadsp_ctrl_info(struct snd_kcontrol *kcontrol,
108 struct snd_ctl_elem_info *info)
110 struct sigmadsp_control *ctrl = (void *)kcontrol->private_value;
112 info->type = SNDRV_CTL_ELEM_TYPE_BYTES;
113 info->count = ctrl->num_bytes;
118 static int sigmadsp_ctrl_write(struct sigmadsp *sigmadsp,
119 struct sigmadsp_control *ctrl, void *data)
121 /* safeload loads up to 20 bytes in a atomic operation */
122 if (ctrl->num_bytes <= 20 && sigmadsp->ops && sigmadsp->ops->safeload)
123 return sigmadsp->ops->safeload(sigmadsp, ctrl->addr, data,
126 return sigmadsp_write(sigmadsp, ctrl->addr, data,
130 static int sigmadsp_ctrl_put(struct snd_kcontrol *kcontrol,
131 struct snd_ctl_elem_value *ucontrol)
133 struct sigmadsp_control *ctrl = (void *)kcontrol->private_value;
134 struct sigmadsp *sigmadsp = snd_kcontrol_chip(kcontrol);
138 mutex_lock(&sigmadsp->lock);
140 data = ucontrol->value.bytes.data;
142 if (!(kcontrol->vd[0].access & SNDRV_CTL_ELEM_ACCESS_INACTIVE))
143 ret = sigmadsp_ctrl_write(sigmadsp, ctrl, data);
146 memcpy(ctrl->cache, data, ctrl->num_bytes);
147 if (!ctrl->is_readback)
151 mutex_unlock(&sigmadsp->lock);
156 static int sigmadsp_ctrl_get(struct snd_kcontrol *kcontrol,
157 struct snd_ctl_elem_value *ucontrol)
159 struct sigmadsp_control *ctrl = (void *)kcontrol->private_value;
160 struct sigmadsp *sigmadsp = snd_kcontrol_chip(kcontrol);
163 mutex_lock(&sigmadsp->lock);
166 ret = sigmadsp_read(sigmadsp, ctrl->addr, ctrl->cache,
171 if (!ctrl->is_readback)
173 memcpy(ucontrol->value.bytes.data, ctrl->cache,
177 mutex_unlock(&sigmadsp->lock);
182 static void sigmadsp_control_free(struct snd_kcontrol *kcontrol)
184 struct sigmadsp_control *ctrl = (void *)kcontrol->private_value;
186 ctrl->kcontrol = NULL;
189 static bool sigma_fw_validate_control_name(const char *name, unsigned int len)
193 for (i = 0; i < len; i++) {
194 /* Normal ASCII characters are valid */
195 if (name[i] < ' ' || name[i] > '~')
202 static int sigma_fw_load_control(struct sigmadsp *sigmadsp,
203 const struct sigma_fw_chunk *chunk, unsigned int length)
205 const struct sigma_fw_chunk_control *ctrl_chunk;
206 struct sigmadsp_control *ctrl;
207 unsigned int num_bytes;
212 if (length <= sizeof(*ctrl_chunk))
215 ctrl_chunk = (const struct sigma_fw_chunk_control *)chunk;
217 name_len = length - sizeof(*ctrl_chunk);
218 if (name_len >= SNDRV_CTL_ELEM_ID_NAME_MAXLEN)
219 name_len = SNDRV_CTL_ELEM_ID_NAME_MAXLEN - 1;
221 /* Make sure there are no non-displayable characaters in the string */
222 if (!sigma_fw_validate_control_name(ctrl_chunk->name, name_len))
225 num_bytes = le16_to_cpu(ctrl_chunk->num_bytes);
226 ctrl = kzalloc(sizeof(*ctrl) + num_bytes, GFP_KERNEL);
230 name = kmemdup_nul(ctrl_chunk->name, name_len, GFP_KERNEL);
238 * Readbacks doesn't work with non-volatile controls, since the
239 * firmware updates the control value without driver interaction. Mark
240 * the readbacks to ensure that the values are not cached.
242 if (ctrl->name && strncmp(ctrl->name, READBACK_CTRL_NAME,
243 (sizeof(READBACK_CTRL_NAME) - 1)) == 0)
244 ctrl->is_readback = true;
246 ctrl->addr = le16_to_cpu(ctrl_chunk->addr);
247 ctrl->num_bytes = num_bytes;
248 ctrl->samplerates = le32_to_cpu(chunk->samplerates);
250 list_add_tail(&ctrl->head, &sigmadsp->ctrl_list);
260 static int sigma_fw_load_data(struct sigmadsp *sigmadsp,
261 const struct sigma_fw_chunk *chunk, unsigned int length)
263 const struct sigma_fw_chunk_data *data_chunk;
264 struct sigmadsp_data *data;
266 if (length <= sizeof(*data_chunk))
269 data_chunk = (struct sigma_fw_chunk_data *)chunk;
271 length -= sizeof(*data_chunk);
273 data = kzalloc(struct_size(data, data, length), GFP_KERNEL);
277 data->addr = le16_to_cpu(data_chunk->addr);
278 data->length = length;
279 data->samplerates = le32_to_cpu(chunk->samplerates);
280 memcpy(data->data, data_chunk->data, length);
281 list_add_tail(&data->head, &sigmadsp->data_list);
286 static int sigma_fw_load_samplerates(struct sigmadsp *sigmadsp,
287 const struct sigma_fw_chunk *chunk, unsigned int length)
289 const struct sigma_fw_chunk_samplerate *rate_chunk;
290 unsigned int num_rates;
294 rate_chunk = (const struct sigma_fw_chunk_samplerate *)chunk;
296 num_rates = (length - sizeof(*rate_chunk)) / sizeof(__le32);
298 if (num_rates > 32 || num_rates == 0)
301 /* We only allow one samplerates block per file */
302 if (sigmadsp->rate_constraints.count)
305 rates = kcalloc(num_rates, sizeof(*rates), GFP_KERNEL);
309 for (i = 0; i < num_rates; i++)
310 rates[i] = le32_to_cpu(rate_chunk->samplerates[i]);
312 sigmadsp->rate_constraints.count = num_rates;
313 sigmadsp->rate_constraints.list = rates;
318 static int sigmadsp_fw_load_v2(struct sigmadsp *sigmadsp,
319 const struct firmware *fw)
321 struct sigma_fw_chunk *chunk;
322 unsigned int length, pos;
326 * Make sure that there is at least one chunk to avoid integer
327 * underflows later on. Empty firmware is still valid though.
329 if (fw->size < sizeof(*chunk) + sizeof(struct sigma_firmware_header))
332 pos = sizeof(struct sigma_firmware_header);
334 while (pos < fw->size - sizeof(*chunk)) {
335 chunk = (struct sigma_fw_chunk *)(fw->data + pos);
337 length = le32_to_cpu(chunk->length);
339 if (length > fw->size - pos || length < sizeof(*chunk))
342 switch (le32_to_cpu(chunk->tag)) {
343 case SIGMA_FW_CHUNK_TYPE_DATA:
344 ret = sigma_fw_load_data(sigmadsp, chunk, length);
346 case SIGMA_FW_CHUNK_TYPE_CONTROL:
347 ret = sigma_fw_load_control(sigmadsp, chunk, length);
349 case SIGMA_FW_CHUNK_TYPE_SAMPLERATES:
350 ret = sigma_fw_load_samplerates(sigmadsp, chunk, length);
353 dev_warn(sigmadsp->dev, "Unknown chunk type: %d\n",
363 * This can not overflow since if length is larger than the
364 * maximum firmware size (0x4000000) we'll error out earilier.
366 pos += ALIGN(length, sizeof(__le32));
372 static inline u32 sigma_action_len(struct sigma_action *sa)
374 return (sa->len_hi << 16) | le16_to_cpu(sa->len);
377 static size_t sigma_action_size(struct sigma_action *sa)
382 case SIGMA_ACTION_WRITEXBYTES:
383 case SIGMA_ACTION_WRITESINGLE:
384 case SIGMA_ACTION_WRITESAFELOAD:
385 payload = sigma_action_len(sa);
391 payload = ALIGN(payload, 2);
393 return payload + sizeof(struct sigma_action);
397 * Returns a negative error value in case of an error, 0 if processing of
398 * the firmware should be stopped after this action, 1 otherwise.
400 static int process_sigma_action(struct sigmadsp *sigmadsp,
401 struct sigma_action *sa)
403 size_t len = sigma_action_len(sa);
404 struct sigmadsp_data *data;
406 pr_debug("%s: instr:%i addr:%#x len:%zu\n", __func__,
407 sa->instr, sa->addr, len);
410 case SIGMA_ACTION_WRITEXBYTES:
411 case SIGMA_ACTION_WRITESINGLE:
412 case SIGMA_ACTION_WRITESAFELOAD:
416 data = kzalloc(struct_size(data, data, size_sub(len, 2)),
421 data->addr = be16_to_cpu(sa->addr);
422 data->length = len - 2;
423 memcpy(data->data, sa->payload, data->length);
424 list_add_tail(&data->head, &sigmadsp->data_list);
426 case SIGMA_ACTION_END:
435 static int sigmadsp_fw_load_v1(struct sigmadsp *sigmadsp,
436 const struct firmware *fw)
438 struct sigma_action *sa;
442 pos = sizeof(struct sigma_firmware_header);
444 while (pos + sizeof(*sa) <= fw->size) {
445 sa = (struct sigma_action *)(fw->data + pos);
447 size = sigma_action_size(sa);
449 if (pos > fw->size || size == 0)
452 ret = process_sigma_action(sigmadsp, sa);
454 pr_debug("%s: action returned %i\n", __func__, ret);
466 static void sigmadsp_firmware_release(struct sigmadsp *sigmadsp)
468 struct sigmadsp_control *ctrl, *_ctrl;
469 struct sigmadsp_data *data, *_data;
471 list_for_each_entry_safe(ctrl, _ctrl, &sigmadsp->ctrl_list, head) {
476 list_for_each_entry_safe(data, _data, &sigmadsp->data_list, head)
479 INIT_LIST_HEAD(&sigmadsp->ctrl_list);
480 INIT_LIST_HEAD(&sigmadsp->data_list);
483 static void devm_sigmadsp_release(struct device *dev, void *res)
485 sigmadsp_firmware_release((struct sigmadsp *)res);
488 static int sigmadsp_firmware_load(struct sigmadsp *sigmadsp, const char *name)
490 const struct sigma_firmware_header *ssfw_head;
491 const struct firmware *fw;
495 /* first load the blob */
496 ret = request_firmware(&fw, name, sigmadsp->dev);
498 pr_debug("%s: request_firmware() failed with %i\n", __func__, ret);
502 /* then verify the header */
506 * Reject too small or unreasonable large files. The upper limit has been
507 * chosen a bit arbitrarily, but it should be enough for all practical
508 * purposes and having the limit makes it easier to avoid integer
509 * overflows later in the loading process.
511 if (fw->size < sizeof(*ssfw_head) || fw->size >= 0x4000000) {
512 dev_err(sigmadsp->dev, "Failed to load firmware: Invalid size\n");
516 ssfw_head = (void *)fw->data;
517 if (memcmp(ssfw_head->magic, SIGMA_MAGIC, ARRAY_SIZE(ssfw_head->magic))) {
518 dev_err(sigmadsp->dev, "Failed to load firmware: Invalid magic\n");
522 crc = crc32(0, fw->data + sizeof(*ssfw_head),
523 fw->size - sizeof(*ssfw_head));
524 pr_debug("%s: crc=%x\n", __func__, crc);
525 if (crc != le32_to_cpu(ssfw_head->crc)) {
526 dev_err(sigmadsp->dev, "Failed to load firmware: Wrong crc checksum: expected %x got %x\n",
527 le32_to_cpu(ssfw_head->crc), crc);
531 switch (ssfw_head->version) {
533 ret = sigmadsp_fw_load_v1(sigmadsp, fw);
536 ret = sigmadsp_fw_load_v2(sigmadsp, fw);
539 dev_err(sigmadsp->dev,
540 "Failed to load firmware: Invalid version %d. Supported firmware versions: 1, 2\n",
547 sigmadsp_firmware_release(sigmadsp);
550 release_firmware(fw);
555 static int sigmadsp_init(struct sigmadsp *sigmadsp, struct device *dev,
556 const struct sigmadsp_ops *ops, const char *firmware_name)
561 INIT_LIST_HEAD(&sigmadsp->ctrl_list);
562 INIT_LIST_HEAD(&sigmadsp->data_list);
563 mutex_init(&sigmadsp->lock);
565 return sigmadsp_firmware_load(sigmadsp, firmware_name);
569 * devm_sigmadsp_init() - Initialize SigmaDSP instance
570 * @dev: The parent device
571 * @ops: The sigmadsp_ops to use for this instance
572 * @firmware_name: Name of the firmware file to load
574 * Allocates a SigmaDSP instance and loads the specified firmware file.
576 * Returns a pointer to a struct sigmadsp on success, or a PTR_ERR() on error.
578 struct sigmadsp *devm_sigmadsp_init(struct device *dev,
579 const struct sigmadsp_ops *ops, const char *firmware_name)
581 struct sigmadsp *sigmadsp;
584 sigmadsp = devres_alloc(devm_sigmadsp_release, sizeof(*sigmadsp),
587 return ERR_PTR(-ENOMEM);
589 ret = sigmadsp_init(sigmadsp, dev, ops, firmware_name);
591 devres_free(sigmadsp);
595 devres_add(dev, sigmadsp);
599 EXPORT_SYMBOL_GPL(devm_sigmadsp_init);
601 static int sigmadsp_rate_to_index(struct sigmadsp *sigmadsp, unsigned int rate)
605 for (i = 0; i < sigmadsp->rate_constraints.count; i++) {
606 if (sigmadsp->rate_constraints.list[i] == rate)
613 static unsigned int sigmadsp_get_samplerate_mask(struct sigmadsp *sigmadsp,
614 unsigned int samplerate)
616 int samplerate_index;
621 if (sigmadsp->rate_constraints.count) {
622 samplerate_index = sigmadsp_rate_to_index(sigmadsp, samplerate);
623 if (samplerate_index < 0)
626 return BIT(samplerate_index);
632 static bool sigmadsp_samplerate_valid(unsigned int supported,
633 unsigned int requested)
635 /* All samplerates are supported */
639 return supported & requested;
642 static int sigmadsp_alloc_control(struct sigmadsp *sigmadsp,
643 struct sigmadsp_control *ctrl, unsigned int samplerate_mask)
645 struct snd_kcontrol_new template;
646 struct snd_kcontrol *kcontrol;
648 memset(&template, 0, sizeof(template));
649 template.iface = SNDRV_CTL_ELEM_IFACE_MIXER;
650 template.name = ctrl->name;
651 template.info = sigmadsp_ctrl_info;
652 template.get = sigmadsp_ctrl_get;
653 template.put = sigmadsp_ctrl_put;
654 template.private_value = (unsigned long)ctrl;
655 template.access = SNDRV_CTL_ELEM_ACCESS_READWRITE;
656 if (!sigmadsp_samplerate_valid(ctrl->samplerates, samplerate_mask))
657 template.access |= SNDRV_CTL_ELEM_ACCESS_INACTIVE;
659 kcontrol = snd_ctl_new1(&template, sigmadsp);
663 kcontrol->private_free = sigmadsp_control_free;
664 ctrl->kcontrol = kcontrol;
666 return snd_ctl_add(sigmadsp->component->card->snd_card, kcontrol);
669 static void sigmadsp_activate_ctrl(struct sigmadsp *sigmadsp,
670 struct sigmadsp_control *ctrl, unsigned int samplerate_mask)
672 struct snd_card *card = sigmadsp->component->card->snd_card;
676 active = sigmadsp_samplerate_valid(ctrl->samplerates, samplerate_mask);
679 changed = snd_ctl_activate_id(card, &ctrl->kcontrol->id, active);
680 if (active && changed > 0) {
681 mutex_lock(&sigmadsp->lock);
683 sigmadsp_ctrl_write(sigmadsp, ctrl, ctrl->cache);
684 mutex_unlock(&sigmadsp->lock);
689 * sigmadsp_attach() - Attach a sigmadsp instance to a ASoC component
690 * @sigmadsp: The sigmadsp instance to attach
691 * @component: The component to attach to
693 * Typically called in the components probe callback.
695 * Note, once this function has been called the firmware must not be released
696 * until after the ALSA snd_card that the component belongs to has been
697 * disconnected, even if sigmadsp_attach() returns an error.
699 int sigmadsp_attach(struct sigmadsp *sigmadsp,
700 struct snd_soc_component *component)
702 struct sigmadsp_control *ctrl;
703 unsigned int samplerate_mask;
706 sigmadsp->component = component;
708 samplerate_mask = sigmadsp_get_samplerate_mask(sigmadsp,
709 sigmadsp->current_samplerate);
711 list_for_each_entry(ctrl, &sigmadsp->ctrl_list, head) {
712 ret = sigmadsp_alloc_control(sigmadsp, ctrl, samplerate_mask);
719 EXPORT_SYMBOL_GPL(sigmadsp_attach);
722 * sigmadsp_setup() - Setup the DSP for the specified samplerate
723 * @sigmadsp: The sigmadsp instance to configure
724 * @samplerate: The samplerate the DSP should be configured for
726 * Loads the appropriate firmware program and parameter memory (if not already
727 * loaded) and enables the controls for the specified samplerate. Any control
728 * parameter changes that have been made previously will be restored.
730 * Returns 0 on success, a negative error code otherwise.
732 int sigmadsp_setup(struct sigmadsp *sigmadsp, unsigned int samplerate)
734 struct sigmadsp_control *ctrl;
735 unsigned int samplerate_mask;
736 struct sigmadsp_data *data;
739 if (sigmadsp->current_samplerate == samplerate)
742 samplerate_mask = sigmadsp_get_samplerate_mask(sigmadsp, samplerate);
743 if (samplerate_mask == 0)
746 list_for_each_entry(data, &sigmadsp->data_list, head) {
747 if (!sigmadsp_samplerate_valid(data->samplerates,
750 ret = sigmadsp_write(sigmadsp, data->addr, data->data,
756 list_for_each_entry(ctrl, &sigmadsp->ctrl_list, head)
757 sigmadsp_activate_ctrl(sigmadsp, ctrl, samplerate_mask);
759 sigmadsp->current_samplerate = samplerate;
763 sigmadsp_reset(sigmadsp);
767 EXPORT_SYMBOL_GPL(sigmadsp_setup);
770 * sigmadsp_reset() - Notify the sigmadsp instance that the DSP has been reset
771 * @sigmadsp: The sigmadsp instance to reset
773 * Should be called whenever the DSP has been reset and parameter and program
774 * memory need to be re-loaded.
776 void sigmadsp_reset(struct sigmadsp *sigmadsp)
778 struct sigmadsp_control *ctrl;
780 list_for_each_entry(ctrl, &sigmadsp->ctrl_list, head)
781 sigmadsp_activate_ctrl(sigmadsp, ctrl, false);
783 sigmadsp->current_samplerate = 0;
785 EXPORT_SYMBOL_GPL(sigmadsp_reset);
788 * sigmadsp_restrict_params() - Applies DSP firmware specific constraints
789 * @sigmadsp: The sigmadsp instance
790 * @substream: The substream to restrict
792 * Applies samplerate constraints that may be required by the firmware Should
793 * typically be called from the CODEC/component drivers startup callback.
795 * Returns 0 on success, a negative error code otherwise.
797 int sigmadsp_restrict_params(struct sigmadsp *sigmadsp,
798 struct snd_pcm_substream *substream)
800 if (sigmadsp->rate_constraints.count == 0)
803 return snd_pcm_hw_constraint_list(substream->runtime, 0,
804 SNDRV_PCM_HW_PARAM_RATE, &sigmadsp->rate_constraints);
806 EXPORT_SYMBOL_GPL(sigmadsp_restrict_params);
808 MODULE_DESCRIPTION("Analog Devices SigmaStudio firmware helpers");
809 MODULE_LICENSE("GPL");