2019-05-19 19:07:45 +07:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2017-12-14 12:49:33 +07:00
|
|
|
#
|
|
|
|
# Makefile for soundwire core
|
|
|
|
#
|
|
|
|
|
|
|
|
#Bus Objs
|
2020-06-16 23:21:40 +07:00
|
|
|
soundwire-bus-y := bus_type.o bus.o master.o slave.o mipi_disco.o stream.o \
|
2020-05-19 03:35:51 +07:00
|
|
|
sysfs_slave.o sysfs_slave_dpn.o
|
2019-07-19 06:02:15 +07:00
|
|
|
obj-$(CONFIG_SOUNDWIRE) += soundwire-bus.o
|
2017-12-14 12:49:41 +07:00
|
|
|
|
2020-09-08 20:15:20 +07:00
|
|
|
soundwire-generic-allocation-objs := generic_bandwidth_allocation.o
|
|
|
|
obj-$(CONFIG_SOUNDWIRE_GENERIC_ALLOCATION) += soundwire-generic-allocation.o
|
|
|
|
|
2019-08-22 01:58:18 +07:00
|
|
|
ifdef CONFIG_DEBUG_FS
|
2020-06-16 23:21:40 +07:00
|
|
|
soundwire-bus-y += debugfs.o
|
2019-08-22 01:58:18 +07:00
|
|
|
endif
|
|
|
|
|
2017-12-14 12:49:41 +07:00
|
|
|
#Cadence Objs
|
2020-06-16 23:21:40 +07:00
|
|
|
soundwire-cadence-y := cadence_master.o
|
2017-12-14 12:49:41 +07:00
|
|
|
obj-$(CONFIG_SOUNDWIRE_CADENCE) += soundwire-cadence.o
|
2017-12-14 12:49:43 +07:00
|
|
|
|
|
|
|
#Intel driver
|
2020-06-16 23:21:40 +07:00
|
|
|
soundwire-intel-y := intel.o intel_init.o
|
2017-12-14 12:49:43 +07:00
|
|
|
obj-$(CONFIG_SOUNDWIRE_INTEL) += soundwire-intel.o
|
2017-12-14 12:49:44 +07:00
|
|
|
|
2020-01-13 20:21:53 +07:00
|
|
|
#Qualcomm driver
|
2020-06-16 23:21:40 +07:00
|
|
|
soundwire-qcom-y := qcom.o
|
2020-01-13 20:21:53 +07:00
|
|
|
obj-$(CONFIG_SOUNDWIRE_QCOM) += soundwire-qcom.o
|