Commit 8ecb17cc authored by BabuSubashChandar C's avatar BabuSubashChandar C Committed by Phil Elwell
Browse files

Add support for new clock rate and mute gpios.

parent f10ad965
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -47,6 +47,7 @@
		boss_dac: __overlay__ {
			compatible = "allo,boss-dac";
			i2s-controller = <&i2s>;
			mute-gpios = <&gpio 6 1>;
			status = "okay";
		};
	};
+1 −0
Original line number Diff line number Diff line
@@ -894,6 +894,7 @@ CONFIG_SND_AUDIOINJECTOR_OCTO_SOUNDCARD=m
CONFIG_SND_DIGIDAC1_SOUNDCARD=m
CONFIG_SND_BCM2708_SOC_DIONAUDIO_LOCO=m
CONFIG_SND_BCM2708_SOC_DIONAUDIO_LOCO_V2=m
CONFIG_SND_BCM2708_SOC_ALLO_BOSS_DAC=m
CONFIG_SND_BCM2708_SOC_ALLO_PIANO_DAC=m
CONFIG_SND_BCM2708_SOC_FE_PI_AUDIO=m
CONFIG_SND_PISOUND=m
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@ endif

# hardware specific clock types
# please keep this section sorted lexicographically by file path name
obj-$(CONFIG_SND_BCM2708_SOC_ALLO_BOSS_DAC)	+= clk-allo-dac-45Mhz.o
obj-$(CONFIG_SND_BCM2708_SOC_ALLO_BOSS_DAC)	+= clk-allo-dac.o
obj-$(CONFIG_MACH_ASM9260)		+= clk-asm9260.o
obj-$(CONFIG_COMMON_CLK_AXI_CLKGEN)	+= clk-axi-clkgen.o
obj-$(CONFIG_ARCH_AXXIA)		+= clk-axm5516.o
+1 −1
Original line number Diff line number Diff line
@@ -110,7 +110,7 @@ static int clk_allo_dac_probe(struct platform_device *pdev)

	init.name = "clk-allo-dac";
	init.ops = &clk_allo_dac_rate_ops;
	init.flags = CLK_IS_ROOT | CLK_IS_BASIC;
	init.flags = CLK_IS_BASIC;
	init.parent_names = NULL;
	init.num_parents = 0;

+2 −2
Original line number Diff line number Diff line
@@ -176,11 +176,11 @@ config SND_BCM2708_SOC_FE_PI_AUDIO
	  Say Y or M if you want to add support for Fe-Pi-Audio.

config SND_BCM2708_SOC_ALLO_BOSS_DAC
	tristate "Support for allo Boss DAC"
	tristate "Support for Allo Boss DAC"
	depends on SND_BCM2708_SOC_I2S || SND_BCM2835_SOC_I2S
	select SND_SOC_PCM512x_I2C
	help
	  Say Y or M if you want to add support for allo Boss DAC.
	  Say Y or M if you want to add support for Allo Boss DAC.


config SND_PISOUND
Loading