mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 16:41:58 +00:00
ASoC: SOF: loader: Don't ignore SRAM block types
On i.MX8 data/heap/stack is kept in System RAM so do not ignore SRAM block types received from FW. Signed-off-by: Daniel Baluta <daniel.baluta@nxp.com> Signed-off-by: Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com> Link: https://lore.kernel.org/r/20190722141402.7194-9-pierre-louis.bossart@linux.intel.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7198879ef5
commit
441c58cf8e
@ -123,10 +123,11 @@ int snd_sof_parse_module_memcpy(struct snd_sof_dev *sdev,
|
||||
|
||||
switch (block->type) {
|
||||
case SOF_FW_BLK_TYPE_RSRVD0:
|
||||
case SOF_FW_BLK_TYPE_SRAM...SOF_FW_BLK_TYPE_RSRVD14:
|
||||
case SOF_FW_BLK_TYPE_ROM...SOF_FW_BLK_TYPE_RSRVD14:
|
||||
continue; /* not handled atm */
|
||||
case SOF_FW_BLK_TYPE_IRAM:
|
||||
case SOF_FW_BLK_TYPE_DRAM:
|
||||
case SOF_FW_BLK_TYPE_SRAM:
|
||||
offset = block->offset;
|
||||
bar = snd_sof_dsp_get_bar_index(sdev, block->type);
|
||||
if (bar < 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user