From: Hal Feng <hal.feng@starfivetech.com>
To: Mark Brown <broonie@kernel.org>,
Liam Girdwood <lgirdwood@gmail.com>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor@kernel.org>,
"Walker Chen" <walker.chen@starfivetech.com>,
Xingyu Wu <xingyu.wu@starfivetech.com>,
Emil Renner Berthing <emil.renner.berthing@canonical.com>,
Hal Feng <hal.feng@starfivetech.com>
Cc: <alsa-devel@alsa-project.org>, <devicetree@vger.kernel.org>,
<linux-riscv@lists.infradead.org>, <linux-kernel@vger.kernel.org>
Subject: [PATCH v1 0/5] Add PWM-DAC audio support for StarFive JH7110 RISC-V SoC
Date: Mon, 26 Jun 2023 19:09:04 +0800 [thread overview]
Message-ID: <20230626110909.38718-1-hal.feng@starfivetech.com> (raw)
This patchset adds PWM-DAC audio support for the StarFive JH7110 SoC.
The PWM-DAC module does not require a hardware codec, so add a dummy codec
driver for it.
The fourth patch depends on the patch [1].
The fifth patch depends on the patchset [2], patch [3].
[1] https://lore.kernel.org/all/20230526145402.450-3-walker.chen@starfivetech.com/
[2] https://lore.kernel.org/all/20230518101234.143748-1-xingyu.wu@starfivetech.com/
[3] https://lore.kernel.org/all/20230322094820.24738-5-walker.chen@starfivetech.com/
Hal Feng (5):
ASoC: dt-bindings: Add StarFive JH7110 dummy PWM-DAC transmitter
ASoC: codecs: Add StarFive JH7110 dummy PWM-DAC transmitter driver
ASoC: dt-bindings: Add StarFive JH7110 PWM-DAC controller
ASoC: starfive: Add JH7110 PWM-DAC driver
riscv: dts: starfive: Add JH7110 PWM-DAC support
.../sound/starfive,jh7110-pwmdac-dit.yaml | 38 +
.../sound/starfive,jh7110-pwmdac.yaml | 76 ++
MAINTAINERS | 8 +
.../jh7110-starfive-visionfive-2.dtsi | 50 ++
arch/riscv/boot/dts/starfive/jh7110.dtsi | 13 +
sound/soc/codecs/Kconfig | 4 +
sound/soc/codecs/Makefile | 2 +
sound/soc/codecs/jh7110_pwmdac_transmitter.c | 74 ++
sound/soc/starfive/Kconfig | 9 +
sound/soc/starfive/Makefile | 1 +
sound/soc/starfive/jh7110_pwmdac.c | 787 ++++++++++++++++++
11 files changed, 1062 insertions(+)
create mode 100644 Documentation/devicetree/bindings/sound/starfive,jh7110-pwmdac-dit.yaml
create mode 100644 Documentation/devicetree/bindings/sound/starfive,jh7110-pwmdac.yaml
create mode 100644 sound/soc/codecs/jh7110_pwmdac_transmitter.c
create mode 100644 sound/soc/starfive/jh7110_pwmdac.c
base-commit: 45a3e24f65e90a047bef86f927ebdc4c710edaa1
prerequisite-patch-id: 8c735dffc6d5388a35a76b16e914a2f9722ad979
prerequisite-patch-id: ffa1f5831e75722c9f41603f009f762c9fd525e2
prerequisite-patch-id: 36e69700dfc0375b950b0e23086ed3b722cb84a4
prerequisite-patch-id: 0b49b996d7a404ea548e1734c12933ec749e92b9
prerequisite-patch-id: 81f7c65712c4901a7a178ddcd98ffc55f3b473ff
prerequisite-patch-id: f342fbf594014b072378528bea94c01fb2186e1a
prerequisite-patch-id: 39e1be2a3d1593577ab997f55f59367cba665aa7
prerequisite-patch-id: 0159f09bb0a1ff711a00ae17ef5b12662c9c7d3d
prerequisite-patch-id: 2ddada18ab6ea5cd1da14212aaf59632f5203d40
prerequisite-patch-id: d5abfba63fc07ff97b5023911513c260bb7a53e1
prerequisite-patch-id: b37ac15032973e1fcd918f157c82a0606775c9e9
prerequisite-patch-id: 6abf359fa445f4104432ddee27044dfbfb128417
prerequisite-patch-id: 2f7aca99e714a4c590a91baa015080ac0902814d
prerequisite-patch-id: 32cabbc4e7a97ec14d5c28a477fa483784f86709
prerequisite-patch-id: d449b1957dd77c2537c38585daa75974c94c529a
--
2.38.1
next reply other threads:[~2023-06-26 11:09 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-26 11:09 Hal Feng [this message]
2023-06-26 11:09 ` [PATCH v1 1/5] ASoC: dt-bindings: Add StarFive JH7110 dummy PWM-DAC transmitter Hal Feng
2023-06-26 15:32 ` Krzysztof Kozlowski
2023-06-30 1:42 ` Hal Feng
2023-06-26 15:34 ` Krzysztof Kozlowski
2023-06-30 1:57 ` Hal Feng
2023-07-01 8:17 ` Krzysztof Kozlowski
2023-07-10 3:22 ` Hal Feng
2023-07-25 8:27 ` Hal Feng
2023-06-26 11:09 ` [PATCH v1 2/5] ASoC: codecs: Add StarFive JH7110 dummy PWM-DAC transmitter driver Hal Feng
2023-06-26 15:33 ` Krzysztof Kozlowski
2023-06-30 1:45 ` Hal Feng
2023-06-26 11:09 ` [PATCH v1 3/5] ASoC: dt-bindings: Add StarFive JH7110 PWM-DAC controller Hal Feng
2023-06-26 15:36 ` Krzysztof Kozlowski
2023-06-30 2:04 ` Hal Feng
2023-06-26 11:09 ` [PATCH v1 4/5] ASoC: starfive: Add JH7110 PWM-DAC driver Hal Feng
2023-06-26 12:25 ` Walker Chen
2023-06-26 11:09 ` [PATCH v1 5/5] riscv: dts: starfive: Add JH7110 PWM-DAC support Hal Feng
2023-06-26 12:11 ` Walker Chen
2023-06-26 15:37 ` Krzysztof Kozlowski
2023-06-30 2:12 ` Hal Feng
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20230626110909.38718-1-hal.feng@starfivetech.com \
--to=hal.feng@starfivetech.com \
--cc=alsa-devel@alsa-project.org \
--cc=broonie@kernel.org \
--cc=conor@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=emil.renner.berthing@canonical.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=perex@perex.cz \
--cc=robh+dt@kernel.org \
--cc=tiwai@suse.com \
--cc=walker.chen@starfivetech.com \
--cc=xingyu.wu@starfivetech.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).