ALSA: ump: Additional proc output
authorTakashi Iwai <tiwai@suse.de>
Tue, 23 May 2023 07:53:27 +0000 (09:53 +0200)
committerTakashi Iwai <tiwai@suse.de>
Tue, 23 May 2023 10:10:59 +0000 (12:10 +0200)
UMP devices may have more interesting information than the traditional
rawmidi.  Extend the rawmidi_global_ops to allow the optional proc
info output and show some more bits in the proc file for UMP.

Note that the "Groups" field shows the first and the last UMP Groups,
and both numbers are 1-based (i.e. the first group is 1).

Reviewed-by: Jaroslav Kysela <perex@perex.cz>
Link: https://lore.kernel.org/r/20230523075358.9672-7-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
include/sound/rawmidi.h
sound/core/rawmidi.c
sound/core/ump.c

index b8a230a7583be3abbb23cd477da2f9eb3fc840a8..b0197b1d1fe466f2e82fde75e54167c1f44b6bcc 100644 (file)
@@ -18,6 +18,7 @@
 #if IS_ENABLED(CONFIG_SND_SEQUENCER)
 #include <sound/seq_device.h>
 #endif
+#include <sound/info.h>
 
 /*
  *  Raw MIDI interface
@@ -49,6 +50,8 @@ struct snd_rawmidi_global_ops {
                              struct snd_seq_port_info *info);
        long (*ioctl)(struct snd_rawmidi *rmidi, unsigned int cmd,
                      void __user *argp);
+       void (*proc_read)(struct snd_info_entry *entry,
+                         struct snd_info_buffer *buf);
 };
 
 struct snd_rawmidi_runtime {
index ffb5b58105f4a80ef6d24109eb6b223452837880..2d3cec908154d5e11fd80ae8d5304b7855bf9a91 100644 (file)
@@ -1770,6 +1770,8 @@ static void snd_rawmidi_proc_info_read(struct snd_info_entry *entry,
        if (IS_ENABLED(CONFIG_SND_UMP))
                snd_iprintf(buffer, "Type: %s\n",
                            rawmidi_is_ump(rmidi) ? "UMP" : "Legacy");
+       if (rmidi->ops->proc_read)
+               rmidi->ops->proc_read(entry, buffer);
        mutex_lock(&rmidi->open_mutex);
        if (rmidi->info_flags & SNDRV_RAWMIDI_INFO_OUTPUT) {
                list_for_each_entry(substream,
index ee57ba1ee989209ad338d7369fdd8a0ea359db27..651cd3752719fd2bac5182ee0d93852347263bd0 100644 (file)
@@ -21,11 +21,14 @@ static int snd_ump_dev_register(struct snd_rawmidi *rmidi);
 static int snd_ump_dev_unregister(struct snd_rawmidi *rmidi);
 static long snd_ump_ioctl(struct snd_rawmidi *rmidi, unsigned int cmd,
                          void __user *argp);
+static void snd_ump_proc_read(struct snd_info_entry *entry,
+                             struct snd_info_buffer *buffer);
 
 static const struct snd_rawmidi_global_ops snd_ump_rawmidi_ops = {
        .dev_register = snd_ump_dev_register,
        .dev_unregister = snd_ump_dev_unregister,
        .ioctl = snd_ump_ioctl,
+       .proc_read = snd_ump_proc_read,
 };
 
 static void snd_ump_endpoint_free(struct snd_rawmidi *rmidi)
@@ -226,5 +229,51 @@ static long snd_ump_ioctl(struct snd_rawmidi *rmidi, unsigned int cmd,
        }
 }
 
+static const char *ump_direction_string(int dir)
+{
+       switch (dir) {
+       case SNDRV_UMP_DIR_INPUT:
+               return "input";
+       case SNDRV_UMP_DIR_OUTPUT:
+               return "output";
+       case SNDRV_UMP_DIR_BIDIRECTION:
+               return "bidirection";
+       default:
+               return "unknown";
+       }
+}
+
+/* Additional proc file output */
+static void snd_ump_proc_read(struct snd_info_entry *entry,
+                             struct snd_info_buffer *buffer)
+{
+       struct snd_rawmidi *rmidi = entry->private_data;
+       struct snd_ump_endpoint *ump = rawmidi_to_ump(rmidi);
+       struct snd_ump_block *fb;
+
+       snd_iprintf(buffer, "EP Name: %s\n", ump->info.name);
+       snd_iprintf(buffer, "EP Product ID: %s\n", ump->info.product_id);
+       snd_iprintf(buffer, "UMP Version: 0x%04x\n", ump->info.version);
+       snd_iprintf(buffer, "Protocol Caps: 0x%08x\n", ump->info.protocol_caps);
+       snd_iprintf(buffer, "Protocol: 0x%08x\n", ump->info.protocol);
+       snd_iprintf(buffer, "Num Blocks: %d\n\n", ump->info.num_blocks);
+
+       list_for_each_entry(fb, &ump->block_list, list) {
+               snd_iprintf(buffer, "Block %d (%s)\n", fb->info.block_id,
+                           fb->info.name);
+               snd_iprintf(buffer, "  Direction: %s\n",
+                           ump_direction_string(fb->info.direction));
+               snd_iprintf(buffer, "  Active: %s\n",
+                           fb->info.active ? "Yes" : "No");
+               snd_iprintf(buffer, "  Groups: %d-%d\n",
+                           fb->info.first_group + 1,
+                           fb->info.first_group + fb->info.num_groups);
+               snd_iprintf(buffer, "  Is MIDI1: %s%s\n",
+                           (fb->info.flags & SNDRV_UMP_BLOCK_IS_MIDI1) ? "Yes" : "No",
+                           (fb->info.flags & SNDRV_UMP_BLOCK_IS_LOWSPEED) ? " (Low Speed)" : "");
+               snd_iprintf(buffer, "\n");
+       }
+}
+
 MODULE_DESCRIPTION("Universal MIDI Packet (UMP) Core Driver");
 MODULE_LICENSE("GPL");