summaryrefslogtreecommitdiffstats
path: root/sound/firewire/oxfw/oxfw-scs1x.c
diff options
context:
space:
mode:
authorTakashi Sakamoto2015-12-22 01:15:39 +0100
committerTakashi Iwai2015-12-22 11:51:27 +0100
commit3f47152a1c8f4d4c8ca18740bf3f1a7fff1b3fd9 (patch)
tree5459d070e9ee22cb4b7a80f3e19c918de9d5eaa8 /sound/firewire/oxfw/oxfw-scs1x.c
parentALSA: oxfw: rename a structure so that it means backward compatibility to old... (diff)
downloadkernel-qcow2-linux-3f47152a1c8f4d4c8ca18740bf3f1a7fff1b3fd9.tar.gz
kernel-qcow2-linux-3f47152a1c8f4d4c8ca18740bf3f1a7fff1b3fd9.tar.xz
kernel-qcow2-linux-3f47152a1c8f4d4c8ca18740bf3f1a7fff1b3fd9.zip
ALSA: oxfw: add scs1x layer
Stanton Controllers and Systems 1 (SCS.1) series is supported by ALSA scs1x driver. This driver just supports MIDI functionality. On the other hand, models in this series are based on OXFW971 and ALSA OXFW driver can support them. SCS.1 series has MIDI functionality to control its surface state such as LED lighting. When operating physical knobs and faders, the models generate MIDI messages. These MIDI messages are transferred by asynchronous transactions. These transactions are really model-specific and ALSA OXFW driver requires the functionality so as scs1x module implements. This commit adds scs1x layer as a preparation to merge scs1x driver to oxfw driver. Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/firewire/oxfw/oxfw-scs1x.c')
-rw-r--r--sound/firewire/oxfw/oxfw-scs1x.c26
1 files changed, 26 insertions, 0 deletions
diff --git a/sound/firewire/oxfw/oxfw-scs1x.c b/sound/firewire/oxfw/oxfw-scs1x.c
new file mode 100644
index 000000000000..34db0d0957c5
--- /dev/null
+++ b/sound/firewire/oxfw/oxfw-scs1x.c
@@ -0,0 +1,26 @@
+/*
+ * oxfw-scs1x.c - a part of driver for OXFW970/971 based devices
+ *
+ * Copyright (c) Clemens Ladisch <clemens@ladisch.de>
+ * Copyright (c) 2015 Takashi Sakamoto <o-takashi@sakamocchi.jp>
+ *
+ * Licensed under the terms of the GNU General Public License, version 2.
+ */
+
+#include "oxfw.h"
+
+int snd_oxfw_scs1x_add(struct snd_oxfw *oxfw)
+{
+ struct snd_rawmidi *rmidi;
+ int err;
+
+ /* Use unique name for backward compatibility to scs1x module. */
+ err = snd_rawmidi_new(oxfw->card, "SCS.1x", 0, 0, 0, &rmidi);
+ if (err < 0)
+ return err;
+
+ snprintf(rmidi->name, sizeof(rmidi->name),
+ "%s MIDI", oxfw->card->shortname);
+
+ return err;
+}