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