mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-11-01 09:13:37 +00:00 
			
		
		
		
	This patch adds support to SLIMbus stream apis for slimbus device. SLIMbus streaming involves adding support to Data Channel Management and channel Reconfiguration Messages to slim core plus few stream apis. >From slim device side the apis are very simple mostly inline with other stream apis. Currently it only supports Isochronous and Push/Pull transport protocols, which are sufficient for audio use cases. Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			367 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
# SPDX-License-Identifier: GPL-2.0
 | 
						|
#
 | 
						|
# Makefile for kernel SLIMbus framework.
 | 
						|
#
 | 
						|
obj-$(CONFIG_SLIMBUS)			+= slimbus.o
 | 
						|
slimbus-y				:= core.o messaging.o sched.o stream.o
 | 
						|
 | 
						|
#Controllers
 | 
						|
obj-$(CONFIG_SLIM_QCOM_CTRL)		+= slim-qcom-ctrl.o
 | 
						|
slim-qcom-ctrl-y			:= qcom-ctrl.o
 | 
						|
 | 
						|
obj-$(CONFIG_SLIM_QCOM_NGD_CTRL)	+= slim-qcom-ngd-ctrl.o
 | 
						|
slim-qcom-ngd-ctrl-y			:= qcom-ngd-ctrl.o
 |