Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3068ad94 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "soc: qcom: signal buffer response after glink_rx_done()"

parents 1826bf71 8be31ae6
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -406,6 +406,12 @@ Required properties:
      - qcom,msm-pcm-loopback-low-latency : Flag indicating whether
        the device node is of type low latency.

* wcd_dsp_glink

Required properties:

 - compatible :                            "qcom,wcd-dsp-glink"

Example:

	qcom,msm-pcm {
@@ -681,6 +687,11 @@ Example:
		pinctrl-1 = <&cdc_reset_sleep>;
	};

	wcd_dsp_glink {
		compatible = "qcom,wcd-dsp-glink";
	};


* MSM8916 ASoC Machine driver

Required properties:
+9 −0
Original line number Diff line number Diff line
@@ -890,6 +890,15 @@ config QCOM_EARLY_RANDOM
	  may not be truly random. Select this option to make an early call
	  to get some random data to put in the pool. If unsure, say N.

config WCD_DSP_GLINK
	tristate "WCD DSP GLINK Driver"
	depends on MSM_GLINK
	default y if SND_SOC_WCD934X=y
	help
	   This option enables driver which provides communication interface
	   between MSM and WCD DSP over glink transport protocol. This driver
	   provides read and write interface via char device.

source "drivers/soc/qcom/memshare/Kconfig"

endif # ARCH_MSM
+1 −0
Original line number Diff line number Diff line
@@ -84,6 +84,7 @@ obj-$(CONFIG_MSM_PERFORMANCE) += msm_performance.o
obj-$(CONFIG_ARCH_MSM8996) += msm_cpu_voltage.o
obj-$(CONFIG_MSM_POWER) += msm_power.o
obj-$(CONFIG_MSM_BGCOM) += bgcom_spi.o
obj-$(CONFIG_WCD_DSP_GLINK) += wcd-dsp-glink.o

ifdef CONFIG_MSM_SUBSYSTEM_RESTART
	obj-y += subsystem_notif.o
+1084 −0

File added.

Preview size limit exceeded, changes collapsed.

+1 −0
Original line number Diff line number Diff line
@@ -18,3 +18,4 @@ header-y += audio_effects.h
header-y += voice_svc.h
header-y += devdep_params.h
header-y += msmcal-hwdep.h
header-y += wcd-dsp-glink.h
Loading