Generic serial MIDI driver adding support for using serial devices compatible with the serial bus as raw MIDI devices, allowing using additional serial devices not compatible with the existing serial-u16550 driver. Supports only setting standard serial baudrates on the underlying serial device; however, the underlying serial device can be configured so that a requested 38.4 kBaud is actually the standard MIDI 31.25 kBaud. Supports DeviceTree configuration. Signed-off-by: Daniel Kaehn <kaehndan@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20220509145933.1161526-3-kaehndan@gmail.com Signed-off-by: Takashi Iwai <tiwai@suse.de>
27 lines
815 B
Makefile
27 lines
815 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Makefile for ALSA
|
|
# Copyright (c) 2001 by Jaroslav Kysela <perex@perex.cz>
|
|
#
|
|
|
|
snd-dummy-objs := dummy.o
|
|
snd-aloop-objs := aloop.o
|
|
snd-mtpav-objs := mtpav.o
|
|
snd-mts64-objs := mts64.o
|
|
snd-portman2x4-objs := portman2x4.o
|
|
snd-serial-u16550-objs := serial-u16550.o
|
|
snd-serial-generic-objs := serial-generic.o
|
|
snd-virmidi-objs := virmidi.o
|
|
|
|
# Toplevel Module Dependency
|
|
obj-$(CONFIG_SND_DUMMY) += snd-dummy.o
|
|
obj-$(CONFIG_SND_ALOOP) += snd-aloop.o
|
|
obj-$(CONFIG_SND_VIRMIDI) += snd-virmidi.o
|
|
obj-$(CONFIG_SND_SERIAL_U16550) += snd-serial-u16550.o
|
|
obj-$(CONFIG_SND_SERIAL_GENERIC) += snd-serial-generic.o
|
|
obj-$(CONFIG_SND_MTPAV) += snd-mtpav.o
|
|
obj-$(CONFIG_SND_MTS64) += snd-mts64.o
|
|
obj-$(CONFIG_SND_PORTMAN2X4) += snd-portman2x4.o
|
|
|
|
obj-$(CONFIG_SND) += opl3/ opl4/ mpu401/ vx/ pcsp/
|