summaryrefslogtreecommitdiffstats
path: root/target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch
diff options
context:
space:
mode:
authorFlorian Fainelli <florian@openwrt.org>2014-09-27 19:11:37 +0000
committerFlorian Fainelli <florian@openwrt.org>2014-09-27 19:11:37 +0000
commit3f5cc1882b585db0d3aa8846cd8a2c305201e9f9 (patch)
tree5eee81e053a752327b3da279030c8ee41e5f26b4 /target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch
parent04c0ef5263d7aa22e8895fdf24628e0c39215d12 (diff)
downloadmaster-31e0f0ae-3f5cc1882b585db0d3aa8846cd8a2c305201e9f9.tar.gz
master-31e0f0ae-3f5cc1882b585db0d3aa8846cd8a2c305201e9f9.tar.bz2
master-31e0f0ae-3f5cc1882b585db0d3aa8846cd8a2c305201e9f9.zip
brcm2708: add 3.14 support
Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 42680
Diffstat (limited to 'target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch')
-rw-r--r--target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch53
1 files changed, 53 insertions, 0 deletions
diff --git a/target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch b/target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch
new file mode 100644
index 0000000000..4433d5ed7f
--- /dev/null
+++ b/target/linux/brcm2708/patches-3.14/0039-BCM2708-Add-HifiBerry-DAC-to-board-file.patch
@@ -0,0 +1,53 @@
+From c5749de8927e1b64eaf5e6c7401a24d1ee0fdc68 Mon Sep 17 00:00:00 2001
+From: Florian Meier <florian.meier@koalo.de>
+Date: Fri, 22 Nov 2013 19:21:34 +0100
+Subject: [PATCH 39/54] BCM2708: Add HifiBerry DAC to board file
+
+This adds the initalization of the HifiBerry DAC
+to the mach-bcm2708 board file.
+
+Signed-off-by: Florian Meier <florian.meier@koalo.de>
+---
+ arch/arm/mach-bcm2708/bcm2708.c | 19 +++++++++++++++++++
+ 1 file changed, 19 insertions(+)
+
+diff --git a/arch/arm/mach-bcm2708/bcm2708.c b/arch/arm/mach-bcm2708/bcm2708.c
+index 07da1fd..82b09a5 100644
+--- a/arch/arm/mach-bcm2708/bcm2708.c
++++ b/arch/arm/mach-bcm2708/bcm2708.c
+@@ -637,6 +637,20 @@ static struct platform_device bcm2708_i2s_device = {
+ };
+ #endif
+
++#if defined(CONFIG_SND_BCM2708_SOC_HIFIBERRY_DAC) || defined(CONFIG_SND_BCM2708_SOC_HIFIBERRY_DAC_MODULE)
++static struct platform_device snd_hifiberry_dac_device = {
++ .name = "snd-hifiberry-dac",
++ .id = 0,
++ .num_resources = 0,
++};
++
++static struct platform_device snd_pcm5102a_codec_device = {
++ .name = "pcm5102a-codec",
++ .id = -1,
++ .num_resources = 0,
++};
++#endif
++
+ int __init bcm_register_device(struct platform_device *pdev)
+ {
+ int ret;
+@@ -764,6 +778,11 @@ void __init bcm2708_init(void)
+ bcm_register_device(&bcm2708_i2s_device);
+ #endif
+
++#if defined(CONFIG_SND_BCM2708_SOC_HIFIBERRY_DAC) || defined(CONFIG_SND_BCM2708_SOC_HIFIBERRY_DAC_MODULE)
++ bcm_register_device(&snd_hifiberry_dac_device);
++ bcm_register_device(&snd_pcm5102a_codec_device);
++#endif
++
+ for (i = 0; i < ARRAY_SIZE(amba_devs); i++) {
+ struct amba_device *d = amba_devs[i];
+ amba_device_register(d, &iomem_resource);
+--
+1.9.1
+