Message ID | 20211101080026.297360-1-daniel.baluta@oss.nxp.com (mailing list archive) |
---|---|
Headers | show |
Series | ASoC: SOF: Add support for Mediatek MT8195 | expand |
On Mon, 1 Nov 2021 10:00:20 +0200, Daniel Baluta wrote: > From: Daniel Baluta <daniel.baluta@nxp.com> > > > This patch series adds initial SOF support on Mediatek mt8195 platform. > MT8195 has four Cortex A78 cores paired with four Cortex A55 cores. > It also has Cadence HiFi-4 DSP single core. There are shared DRAM and > mailbox interrupt between AP and DSP to use for IPC communication. > > [...] Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next Thanks! [1/6] ASoC: SOF: mediatek: Add mt8195 hardware support commit: 32d7e03d26fd93187c87ed0fbf59ec7023a61404 [2/6] ASoC: SOF: tokens: add token for Mediatek AFE commit: e6feefa541f309afed8aa54431681261bc57bcde [3/6] ASoC: SOF: topology: Add support for Mediatek AFE DAI commit: b72bfcffcfc11858a8fc92998733372606db485e [4/6] ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware commit: b7f6503830cd8f3f7076635409460861b5ff6310 [5/6] ASoC: SOF: Add mt8195 device descriptor commit: 24281bc2bf1884e665dfbcd17aaaabbc5872e501 [6/6] ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195 commit: 24d75049c5ed5193bd12ce0d43c355c4ef74a7fa All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
From: Daniel Baluta <daniel.baluta@nxp.com> This patch series adds initial SOF support on Mediatek mt8195 platform. MT8195 has four Cortex A78 cores paired with four Cortex A55 cores. It also has Cadence HiFi-4 DSP single core. There are shared DRAM and mailbox interrupt between AP and DSP to use for IPC communication. YC Hung (6): ASoC: SOF: mediatek: Add mt8195 hardware support ASoC: SOF: tokens: add token for Mediatek AFE ASoC: SOF: topology: Add support for Mediatek AFE DAI ASoC: SOF: mediatek: Add fw loader and mt8195 dsp ops to load firmware ASoC: SOF: Add mt8195 device descriptor ASoC: SOF: mediatek: Add dai driver dsp ops callback for mt8195 include/sound/sof/dai-mediatek.h | 23 ++ include/sound/sof/dai.h | 3 + include/uapi/sound/sof/tokens.h | 5 + sound/soc/sof/Kconfig | 3 +- sound/soc/sof/Makefile | 1 + sound/soc/sof/mediatek/Kconfig | 33 ++ sound/soc/sof/mediatek/Makefile | 2 + sound/soc/sof/mediatek/adsp_helper.h | 49 +++ sound/soc/sof/mediatek/mediatek-ops.h | 8 + sound/soc/sof/mediatek/mt8195/Makefile | 4 + sound/soc/sof/mediatek/mt8195/mt8195-loader.c | 56 +++ sound/soc/sof/mediatek/mt8195/mt8195.c | 377 ++++++++++++++++++ sound/soc/sof/mediatek/mt8195/mt8195.h | 158 ++++++++ sound/soc/sof/pcm.c | 12 + sound/soc/sof/sof-of-dev.c | 13 + sound/soc/sof/topology.c | 59 +++ 16 files changed, 805 insertions(+), 1 deletion(-) create mode 100644 include/sound/sof/dai-mediatek.h create mode 100644 sound/soc/sof/mediatek/Kconfig create mode 100644 sound/soc/sof/mediatek/Makefile create mode 100644 sound/soc/sof/mediatek/adsp_helper.h create mode 100644 sound/soc/sof/mediatek/mediatek-ops.h create mode 100644 sound/soc/sof/mediatek/mt8195/Makefile create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195-loader.c create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.c create mode 100644 sound/soc/sof/mediatek/mt8195/mt8195.h