diff options
author | Mark Brown <broonie@kernel.org> | 2020-04-16 02:23:20 +0300 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2020-04-16 02:23:20 +0300 |
commit | 72161e0eea64bb2b5a7a834ed5a76425aac4cdd1 (patch) | |
tree | 1fd475d10a88544d91bf788d3254b91e2dd76b7d /sound/soc/sof/imx/Makefile | |
parent | 980f91778a2f4dcca43d16b7a83feda8df5c96e7 (diff) | |
parent | 35a0f242520520dfa1e8eaf66f20d297b12e413e (diff) | |
download | linux-72161e0eea64bb2b5a7a834ed5a76425aac4cdd1.tar.xz |
Merge series "Add support for SOF on i.MX8M" from Daniel Baluta <daniel.baluta@oss.nxp.com>
Daniel Baluta <daniel.baluta@nxp.com>:
From: Daniel Baluta <daniel.baluta@nxp.com>
This patch series adds support for SOF on i.MX8M family. First board
from this family that has a DSP is i.MX8MP.
First 2 patches are trying to fix some compilation issues, the next two
are adding the imx8m support and the last one adds the devicetree
binding.
Changes since v2:
- add reviewed by from Rob to DT patch
- fix ownership for patch 2
Daniel Baluta (3):
ASoC: SOF: imx: Add i.MX8M HW support
ASoC: SOF: Add i.MX8MP device descriptor
dt-bindings: dsp: fsl: Add fsl,imx8mp-dsp entry
Pierre-Louis Bossart (1):
ASoC: SOF: imx: fix undefined reference issue
YueHaibing (1):
ASoC: SOF: imx8: Fix randbuild error
.../devicetree/bindings/dsp/fsl,dsp.yaml | 2 +
sound/soc/sof/imx/Kconfig | 32 +-
sound/soc/sof/imx/Makefile | 2 +
sound/soc/sof/imx/imx8m.c | 279 ++++++++++++++++++
sound/soc/sof/sof-of-dev.c | 14 +
5 files changed, 325 insertions(+), 4 deletions(-)
create mode 100644 sound/soc/sof/imx/imx8m.c
--
2.17.1
Diffstat (limited to 'sound/soc/sof/imx/Makefile')
-rw-r--r-- | sound/soc/sof/imx/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sound/soc/sof/imx/Makefile b/sound/soc/sof/imx/Makefile index 6ef908e8c807..d9d8dc1765b8 100644 --- a/sound/soc/sof/imx/Makefile +++ b/sound/soc/sof/imx/Makefile @@ -1,4 +1,6 @@ # SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause) snd-sof-imx8-objs := imx8.o +snd-sof-imx8m-objs := imx8m.o obj-$(CONFIG_SND_SOC_SOF_IMX8) += snd-sof-imx8.o +obj-$(CONFIG_SND_SOC_SOF_IMX8M) += snd-sof-imx8m.o |