[openwrt/openwrt] bcm27xx: add AMP2 to HifiBerry DAC+ / DAC+ Pro package

LEDE Commits lede-commits at lists.infradead.org
Sat Apr 16 06:11:54 PDT 2022


ynezz pushed a commit to openwrt/openwrt.git, branch openwrt-21.02:
https://git.openwrt.org/41a97c207438903c309371ba695cea01ae78aba4

commit 41a97c207438903c309371ba695cea01ae78aba4
Author: Torsten Duwe <duwe at lst.de>
AuthorDate: Wed Sep 22 10:52:51 2021 +0200

    bcm27xx: add AMP2 to HifiBerry DAC+ / DAC+ Pro package
    
    According to the vendor [1] these HATs share the same DT overlay:
    hifiberry-dacplus. The PCM512x-compatible control unit is attached to
    I2C, so the additional snd-soc-pcm512x-i2c kernel module is required.
    Also explicitly note the Amp2 support to reduce confusion for those
    users.
    
    [1] <https://www.hifiberry.com/docs/software/configuring-linux-3-18-x/>
    Signed-off-by: Torsten Duwe <duwe at lst.de>
    (added bcm27xx tag, changed commit message)
    Signed-off-by: Christian Lamparter <chunkeey at gmail.com>
    (cherry picked from commit 7ea9936f7f32fd90af1a29775ac3b297d7775db7)
---
 target/linux/bcm27xx/modules/sound.mk | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/target/linux/bcm27xx/modules/sound.mk b/target/linux/bcm27xx/modules/sound.mk
index dab31d8132..1d3165ed2f 100644
--- a/target/linux/bcm27xx/modules/sound.mk
+++ b/target/linux/bcm27xx/modules/sound.mk
@@ -509,24 +509,27 @@ $(eval $(call KernelPackage,sound-soc-hifiberry-dac))
 
 
 define KernelPackage/sound-soc-hifiberry-dacplus
-  TITLE:=Support for HifiBerry DAC+ / DAC+ Pro
+  TITLE:=Support for HifiBerry DAC+ / DAC+ Pro / Amp2
   KCONFIG:= \
     CONFIG_SND_BCM2708_SOC_HIFIBERRY_DACPLUS \
-    CONFIG_SND_SOC_PCM512x
+    CONFIG_SND_SOC_PCM512x \
+    CONFIG_SND_SOC_PCM512x_I2C
   FILES:= \
     $(LINUX_DIR)/drivers/clk/clk-hifiberry-dacpro.ko \
     $(LINUX_DIR)/sound/soc/bcm/snd-soc-hifiberry-dacplus.ko \
-    $(LINUX_DIR)/sound/soc/codecs/snd-soc-pcm512x.ko
+    $(LINUX_DIR)/sound/soc/codecs/snd-soc-pcm512x.ko \
+    $(LINUX_DIR)/sound/soc/codecs/snd-soc-pcm512x-i2c.ko
   AUTOLOAD:=$(call AutoLoad,68,clk-hifiberry-dacpro snd-soc-pcm512x \
-    snd-soc-hifiberry-dacplus)
+    snd-soc-pcm512x-i2c snd-soc-hifiberry-dacplus)
   DEPENDS:= \
     kmod-sound-soc-bcm2835-i2s \
-    +kmod-i2c-bcm2835
+    +kmod-i2c-bcm2835 \
+    +kmod-regmap-i2c
   $(call AddDepends/sound)
 endef
 
 define KernelPackage/sound-soc-hifiberry-dacplus/description
-  This package contains support for HifiBerry DAC+ / DAC+ Pro
+  This package contains support for HifiBerry DAC+ / DAC+ Pro / Amp2
 endef
 
 $(eval $(call KernelPackage,sound-soc-hifiberry-dacplus))




More information about the lede-commits mailing list