All of lore.kernel.org
 help / color / mirror / Atom feed
* [alsa-devel] [PATCH 0/3] ALSA: dice: add support for Alesis MasterControl
@ 2020-01-13  8:46 Takashi Sakamoto
  2020-01-13  8:46   ` [alsa-devel] " Takashi Sakamoto
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Takashi Sakamoto @ 2020-01-13  8:46 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel

Hi,

This patchset includes some fixes to support Alesis MasterControl.
Like Alesis iO 14/26, MasterControl supports two ports for tx isoc
communication (PCM/MIDI capture) and one port for rx isoc
communication (PCM/MIDI playback) as well.

Takashi Sakamoto (3):
  dice: fix fallback from protocol extension into limited functionality
  dice: loosen stream format check for MIDI conformant data channel
  dice: add support for Alesis MasterControl

 sound/firewire/dice/dice-alesis.c    | 24 ++++++++++++++++++++++++
 sound/firewire/dice/dice-extension.c |  5 ++++-
 sound/firewire/dice/dice-stream.c    |  9 +++------
 sound/firewire/dice/dice.c           |  8 ++++++++
 sound/firewire/dice/dice.h           |  1 +
 5 files changed, 40 insertions(+), 7 deletions(-)

-- 
2.20.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* [PATCH 1/3] dice: fix fallback from protocol extension into limited functionality
  2020-01-13  8:46 [alsa-devel] [PATCH 0/3] ALSA: dice: add support for Alesis MasterControl Takashi Sakamoto
@ 2020-01-13  8:46   ` Takashi Sakamoto
  2020-01-13  8:46 ` [alsa-devel] [PATCH 2/3] dice: loosen stream format check for MIDI conformant data channel Takashi Sakamoto
  2020-01-13  8:46 ` [alsa-devel] [PATCH 3/3] dice: add support for Alesis MasterControl Takashi Sakamoto
  2 siblings, 0 replies; 9+ messages in thread
From: Takashi Sakamoto @ 2020-01-13  8:46 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel, stable

At failure of attempt to detect protocol extension, ALSA dice driver
should be fallback to limited functionality. However it's not.

This commit fixes it.

Cc: <stable@vger.kernel.org> # v4.18+
Fixes: 58579c056c1c9 ("ALSA: dice: use extended protocol to detect available stream formats")
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 sound/firewire/dice/dice-extension.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sound/firewire/dice/dice-extension.c b/sound/firewire/dice/dice-extension.c
index a63fcbc875ad..02f4a8318e38 100644
--- a/sound/firewire/dice/dice-extension.c
+++ b/sound/firewire/dice/dice-extension.c
@@ -159,8 +159,11 @@ int snd_dice_detect_extension_formats(struct snd_dice *dice)
 		int j;
 
 		for (j = i + 1; j < 9; ++j) {
-			if (pointers[i * 2] == pointers[j * 2])
+			if (pointers[i * 2] == pointers[j * 2]) {
+				// Fallback to limited functionality.
+				err = -ENXIO;
 				goto end;
+			}
 		}
 	}
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [alsa-devel] [PATCH 1/3] dice: fix fallback from protocol extension into limited functionality
@ 2020-01-13  8:46   ` Takashi Sakamoto
  0 siblings, 0 replies; 9+ messages in thread
From: Takashi Sakamoto @ 2020-01-13  8:46 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel, stable

At failure of attempt to detect protocol extension, ALSA dice driver
should be fallback to limited functionality. However it's not.

This commit fixes it.

Cc: <stable@vger.kernel.org> # v4.18+
Fixes: 58579c056c1c9 ("ALSA: dice: use extended protocol to detect available stream formats")
Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 sound/firewire/dice/dice-extension.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/sound/firewire/dice/dice-extension.c b/sound/firewire/dice/dice-extension.c
index a63fcbc875ad..02f4a8318e38 100644
--- a/sound/firewire/dice/dice-extension.c
+++ b/sound/firewire/dice/dice-extension.c
@@ -159,8 +159,11 @@ int snd_dice_detect_extension_formats(struct snd_dice *dice)
 		int j;
 
 		for (j = i + 1; j < 9; ++j) {
-			if (pointers[i * 2] == pointers[j * 2])
+			if (pointers[i * 2] == pointers[j * 2]) {
+				// Fallback to limited functionality.
+				err = -ENXIO;
 				goto end;
+			}
 		}
 	}
 
-- 
2.20.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [alsa-devel] [PATCH 2/3] dice: loosen stream format check for MIDI conformant data channel
  2020-01-13  8:46 [alsa-devel] [PATCH 0/3] ALSA: dice: add support for Alesis MasterControl Takashi Sakamoto
  2020-01-13  8:46   ` [alsa-devel] " Takashi Sakamoto
@ 2020-01-13  8:46 ` Takashi Sakamoto
  2020-01-13  9:47   ` Takashi Iwai
  2020-01-13  8:46 ` [alsa-devel] [PATCH 3/3] dice: add support for Alesis MasterControl Takashi Sakamoto
  2 siblings, 1 reply; 9+ messages in thread
From: Takashi Sakamoto @ 2020-01-13  8:46 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel

ALSA dice driver expects devices to multiplex MIDI messages into first
port of isochronous communication. Actually devices perform for it.
However, check of stream format is invalid for second port of isochronous
communication. As a result, when the device supports two ports for
isochronous communication and the stream format is hard-coded, ALSA
dice driver fails to start packet streaming.

This commit loosens stream format check for MIDI conformant data channel.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 sound/firewire/dice/dice-stream.c | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/sound/firewire/dice/dice-stream.c b/sound/firewire/dice/dice-stream.c
index 6a3d60913e10..8e0c0380b4c4 100644
--- a/sound/firewire/dice/dice-stream.c
+++ b/sound/firewire/dice/dice-stream.c
@@ -224,7 +224,6 @@ static int keep_dual_resources(struct snd_dice *dice, unsigned int rate,
 		struct amdtp_stream *stream;
 		struct fw_iso_resources *resources;
 		unsigned int pcm_cache;
-		unsigned int midi_cache;
 		unsigned int pcm_chs;
 		unsigned int midi_ports;
 
@@ -233,7 +232,6 @@ static int keep_dual_resources(struct snd_dice *dice, unsigned int rate,
 			resources = &dice->tx_resources[i];
 
 			pcm_cache = dice->tx_pcm_chs[i][mode];
-			midi_cache = dice->tx_midi_ports[i];
 			err = snd_dice_transaction_read_tx(dice,
 					params->size * i + TX_NUMBER_AUDIO,
 					reg, sizeof(reg));
@@ -242,7 +240,6 @@ static int keep_dual_resources(struct snd_dice *dice, unsigned int rate,
 			resources = &dice->rx_resources[i];
 
 			pcm_cache = dice->rx_pcm_chs[i][mode];
-			midi_cache = dice->rx_midi_ports[i];
 			err = snd_dice_transaction_read_rx(dice,
 					params->size * i + RX_NUMBER_AUDIO,
 					reg, sizeof(reg));
@@ -253,10 +250,10 @@ static int keep_dual_resources(struct snd_dice *dice, unsigned int rate,
 		midi_ports = be32_to_cpu(reg[1]);
 
 		// These are important for developer of this driver.
-		if (pcm_chs != pcm_cache || midi_ports != midi_cache) {
+		if (pcm_chs != pcm_cache) {
 			dev_info(&dice->unit->device,
-				 "cache mismatch: pcm: %u:%u, midi: %u:%u\n",
-				 pcm_chs, pcm_cache, midi_ports, midi_cache);
+				 "cache mismatch: pcm: %u:%u, midi: %u\n",
+				 pcm_chs, pcm_cache, midi_ports);
 			return -EPROTO;
 		}
 
-- 
2.20.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* [alsa-devel] [PATCH 3/3] dice: add support for Alesis MasterControl
  2020-01-13  8:46 [alsa-devel] [PATCH 0/3] ALSA: dice: add support for Alesis MasterControl Takashi Sakamoto
  2020-01-13  8:46   ` [alsa-devel] " Takashi Sakamoto
  2020-01-13  8:46 ` [alsa-devel] [PATCH 2/3] dice: loosen stream format check for MIDI conformant data channel Takashi Sakamoto
@ 2020-01-13  8:46 ` Takashi Sakamoto
  2020-01-13  9:47   ` Takashi Iwai
  2 siblings, 1 reply; 9+ messages in thread
From: Takashi Sakamoto @ 2020-01-13  8:46 UTC (permalink / raw)
  To: tiwai; +Cc: alsa-devel

Alesis MasterControl was shipped 2009 and already discontinued. This model
consists of:
 * TSB41AB2 for physical layer of IEEE 1394
 * WaveFront Dice II STD for link layer and protocol implementation
 * FreeScale DSPB56374AE

Although the firmware of this model can respond against read transaction
to address space for TCAT extension protocol, the content is not valid
for protocol extension. This results in sound card without any PCM/MIDI
interfaces.

$ ./firewire-request /dev/fw1 read 0xffffe0200000 0x48
result: 000: 00 00 00 20 00 00 04 94 00 00 04 b4 00 00 00 b4
result: 010: 00 00 05 68 00 00 00 24 00 00 05 8c 00 00 00 48
result: 020: 00 00 00 20 00 00 00 08 00 00 00 20 00 00 00 20
result: 030: 00 00 00 10 00 00 00 08 00 00 00 08 00 00 00 04
result: 040: 00 00 00 00 00 00 00 00

This commit adds support the model by adding hard-coded stream formats.

$ python3 ~/git/linux-firewire-utils/src/crpp < /sys/bus/firewire/devices/fw1/config_rom
               ROM header and bus information block
               -----------------------------------------------------------------
400  04041ad7  bus_info_length 4, crc_length 4, crc 6871
404  31333934  bus_name "1394"
408  e0ff8112  irmc 1, cmc 1, isc 1, bmc 0, pmc 0, cyc_clk_acc 255,
               max_rec 8 (512), max_rom 1, gen 1, spd 2 (S400)
40c  00059504  company_id 000595     | Alesis Corporation
410  008003f5  device_id 04008003f5  | EUI-64 00059504008003f5

               root directory
               -----------------------------------------------------------------
414  0006a620  directory_length 6, crc 42528
418  03000595  vendor: Alesis Corporation
41c  8100000a  --> descriptor leaf at 444
420  17000002  model
424  8100000d  --> descriptor leaf at 458
428  0c0087c0  node capabilities per IEEE 1394
42c  d1000001  --> unit directory at 430

               unit directory at 430
               -----------------------------------------------------------------
430  00041b9f  directory_length 4, crc 7071
434  12000595  specifier id: Alesis Corporation
438  13000001  version: audio
43c  17000002  model
440  8100000d  --> descriptor leaf at 474

               descriptor leaf at 444
               -----------------------------------------------------------------
444  000494c2  leaf_length 4, crc 38082
448  00000000  textual descriptor
44c  00000000  minimal ASCII
450  416c6573  "Ales"
454  69730000  "is"

               descriptor leaf at 458
               -----------------------------------------------------------------
458  0006c2ec  leaf_length 6, crc 49900
45c  00000000  textual descriptor
460  00000000  minimal ASCII
464  4d617374  "Mast"
468  6572436f  "erCo"
46c  6e74726f  "ntro"
470  6c000000  "l"

               descriptor leaf at 474
               -----------------------------------------------------------------
474  0006c2ec  leaf_length 6, crc 49900
478  00000000  textual descriptor
47c  00000000  minimal ASCII
480  4d617374  "Mast"
484  6572436f  "erCo"
488  6e74726f  "ntro"
48c  6c000000  "l"

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 sound/firewire/dice/dice-alesis.c | 24 ++++++++++++++++++++++++
 sound/firewire/dice/dice.c        |  8 ++++++++
 sound/firewire/dice/dice.h        |  1 +
 3 files changed, 33 insertions(+)

diff --git a/sound/firewire/dice/dice-alesis.c b/sound/firewire/dice/dice-alesis.c
index f5b325263b67..0916864511d5 100644
--- a/sound/firewire/dice/dice-alesis.c
+++ b/sound/firewire/dice/dice-alesis.c
@@ -50,3 +50,27 @@ int snd_dice_detect_alesis_formats(struct snd_dice *dice)
 
 	return 0;
 }
+
+int snd_dice_detect_alesis_mastercontrol_formats(struct snd_dice *dice)
+{
+	int i;
+
+	dice->tx_pcm_chs[0][SND_DICE_RATE_MODE_LOW]	= 16;
+	dice->tx_pcm_chs[1][SND_DICE_RATE_MODE_LOW]	= 12;
+	dice->tx_pcm_chs[0][SND_DICE_RATE_MODE_MIDDLE]	= 12;
+	dice->tx_pcm_chs[1][SND_DICE_RATE_MODE_MIDDLE]	= 4;
+	dice->tx_pcm_chs[0][SND_DICE_RATE_MODE_HIGH]	= 8;
+	dice->tx_pcm_chs[1][SND_DICE_RATE_MODE_HIGH]	= 0;
+
+	for (i = 0; i < SND_DICE_RATE_MODE_COUNT; ++i) {
+		dice->rx_pcm_chs[0][i] = 6;
+		dice->rx_pcm_chs[1][i] = 0;
+	}
+
+	for (i = 0; i < MAX_STREAMS; ++i) {
+		dice->tx_midi_ports[i] = 2;
+		dice->rx_midi_ports[i] = 2;
+	}
+
+	return 0;
+}
diff --git a/sound/firewire/dice/dice.c b/sound/firewire/dice/dice.c
index 13eeb3f52bb6..06c94f009dfb 100644
--- a/sound/firewire/dice/dice.c
+++ b/sound/firewire/dice/dice.c
@@ -355,6 +355,14 @@ static const struct ieee1394_device_id dice_id_table[] = {
 		.model_id	= MODEL_ALESIS_IO_BOTH,
 		.driver_data = (kernel_ulong_t)snd_dice_detect_alesis_formats,
 	},
+	// Alesis MasterControl.
+	{
+		.match_flags	= IEEE1394_MATCH_VENDOR_ID |
+				  IEEE1394_MATCH_MODEL_ID,
+		.vendor_id	= OUI_ALESIS,
+		.model_id	= 0x000002,
+		.driver_data = (kernel_ulong_t)snd_dice_detect_alesis_mastercontrol_formats,
+	},
 	/* Mytek Stereo 192 DSD-DAC. */
 	{
 		.match_flags	= IEEE1394_MATCH_VENDOR_ID |
diff --git a/sound/firewire/dice/dice.h b/sound/firewire/dice/dice.h
index 16366773e22e..7fbffcab94c2 100644
--- a/sound/firewire/dice/dice.h
+++ b/sound/firewire/dice/dice.h
@@ -229,6 +229,7 @@ int snd_dice_create_midi(struct snd_dice *dice);
 
 int snd_dice_detect_tcelectronic_formats(struct snd_dice *dice);
 int snd_dice_detect_alesis_formats(struct snd_dice *dice);
+int snd_dice_detect_alesis_mastercontrol_formats(struct snd_dice *dice);
 int snd_dice_detect_extension_formats(struct snd_dice *dice);
 int snd_dice_detect_mytek_formats(struct snd_dice *dice);
 int snd_dice_detect_presonus_formats(struct snd_dice *dice);
-- 
2.20.1

_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply related	[flat|nested] 9+ messages in thread

* Re: [PATCH 1/3] dice: fix fallback from protocol extension into limited functionality
  2020-01-13  8:46   ` [alsa-devel] " Takashi Sakamoto
@ 2020-01-13  9:47     ` Takashi Iwai
  -1 siblings, 0 replies; 9+ messages in thread
From: Takashi Iwai @ 2020-01-13  9:47 UTC (permalink / raw)
  To: Takashi Sakamoto; +Cc: alsa-devel, stable

On Mon, 13 Jan 2020 09:46:28 +0100,
Takashi Sakamoto wrote:
> 
> At failure of attempt to detect protocol extension, ALSA dice driver
> should be fallback to limited functionality. However it's not.
> 
> This commit fixes it.
> 
> Cc: <stable@vger.kernel.org> # v4.18+
> Fixes: 58579c056c1c9 ("ALSA: dice: use extended protocol to detect available stream formats")
> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>

Applied to for-linus branch.  Thanks.


Takashi

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [alsa-devel] [PATCH 1/3] dice: fix fallback from protocol extension into limited functionality
@ 2020-01-13  9:47     ` Takashi Iwai
  0 siblings, 0 replies; 9+ messages in thread
From: Takashi Iwai @ 2020-01-13  9:47 UTC (permalink / raw)
  To: Takashi Sakamoto; +Cc: alsa-devel, stable

On Mon, 13 Jan 2020 09:46:28 +0100,
Takashi Sakamoto wrote:
> 
> At failure of attempt to detect protocol extension, ALSA dice driver
> should be fallback to limited functionality. However it's not.
> 
> This commit fixes it.
> 
> Cc: <stable@vger.kernel.org> # v4.18+
> Fixes: 58579c056c1c9 ("ALSA: dice: use extended protocol to detect available stream formats")
> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>

Applied to for-linus branch.  Thanks.


Takashi
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [alsa-devel] [PATCH 2/3] dice: loosen stream format check for MIDI conformant data channel
  2020-01-13  8:46 ` [alsa-devel] [PATCH 2/3] dice: loosen stream format check for MIDI conformant data channel Takashi Sakamoto
@ 2020-01-13  9:47   ` Takashi Iwai
  0 siblings, 0 replies; 9+ messages in thread
From: Takashi Iwai @ 2020-01-13  9:47 UTC (permalink / raw)
  To: Takashi Sakamoto; +Cc: alsa-devel

On Mon, 13 Jan 2020 09:46:29 +0100,
Takashi Sakamoto wrote:
> 
> ALSA dice driver expects devices to multiplex MIDI messages into first
> port of isochronous communication. Actually devices perform for it.
> However, check of stream format is invalid for second port of isochronous
> communication. As a result, when the device supports two ports for
> isochronous communication and the stream format is hard-coded, ALSA
> dice driver fails to start packet streaming.
> 
> This commit loosens stream format check for MIDI conformant data channel.
> 
> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>

Applied to for-next branch.  Thanks.


Takashi
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

* Re: [alsa-devel] [PATCH 3/3] dice: add support for Alesis MasterControl
  2020-01-13  8:46 ` [alsa-devel] [PATCH 3/3] dice: add support for Alesis MasterControl Takashi Sakamoto
@ 2020-01-13  9:47   ` Takashi Iwai
  0 siblings, 0 replies; 9+ messages in thread
From: Takashi Iwai @ 2020-01-13  9:47 UTC (permalink / raw)
  To: Takashi Sakamoto; +Cc: alsa-devel

On Mon, 13 Jan 2020 09:46:30 +0100,
Takashi Sakamoto wrote:
> 
> Alesis MasterControl was shipped 2009 and already discontinued. This model
> consists of:
>  * TSB41AB2 for physical layer of IEEE 1394
>  * WaveFront Dice II STD for link layer and protocol implementation
>  * FreeScale DSPB56374AE
> 
> Although the firmware of this model can respond against read transaction
> to address space for TCAT extension protocol, the content is not valid
> for protocol extension. This results in sound card without any PCM/MIDI
> interfaces.
> 
> $ ./firewire-request /dev/fw1 read 0xffffe0200000 0x48
> result: 000: 00 00 00 20 00 00 04 94 00 00 04 b4 00 00 00 b4
> result: 010: 00 00 05 68 00 00 00 24 00 00 05 8c 00 00 00 48
> result: 020: 00 00 00 20 00 00 00 08 00 00 00 20 00 00 00 20
> result: 030: 00 00 00 10 00 00 00 08 00 00 00 08 00 00 00 04
> result: 040: 00 00 00 00 00 00 00 00
> 
> This commit adds support the model by adding hard-coded stream formats.
> 
> $ python3 ~/git/linux-firewire-utils/src/crpp < /sys/bus/firewire/devices/fw1/config_rom
>                ROM header and bus information block
>                -----------------------------------------------------------------
> 400  04041ad7  bus_info_length 4, crc_length 4, crc 6871
> 404  31333934  bus_name "1394"
> 408  e0ff8112  irmc 1, cmc 1, isc 1, bmc 0, pmc 0, cyc_clk_acc 255,
>                max_rec 8 (512), max_rom 1, gen 1, spd 2 (S400)
> 40c  00059504  company_id 000595     | Alesis Corporation
> 410  008003f5  device_id 04008003f5  | EUI-64 00059504008003f5
> 
>                root directory
>                -----------------------------------------------------------------
> 414  0006a620  directory_length 6, crc 42528
> 418  03000595  vendor: Alesis Corporation
> 41c  8100000a  --> descriptor leaf at 444
> 420  17000002  model
> 424  8100000d  --> descriptor leaf at 458
> 428  0c0087c0  node capabilities per IEEE 1394
> 42c  d1000001  --> unit directory at 430
> 
>                unit directory at 430
>                -----------------------------------------------------------------
> 430  00041b9f  directory_length 4, crc 7071
> 434  12000595  specifier id: Alesis Corporation
> 438  13000001  version: audio
> 43c  17000002  model
> 440  8100000d  --> descriptor leaf at 474
> 
>                descriptor leaf at 444
>                -----------------------------------------------------------------
> 444  000494c2  leaf_length 4, crc 38082
> 448  00000000  textual descriptor
> 44c  00000000  minimal ASCII
> 450  416c6573  "Ales"
> 454  69730000  "is"
> 
>                descriptor leaf at 458
>                -----------------------------------------------------------------
> 458  0006c2ec  leaf_length 6, crc 49900
> 45c  00000000  textual descriptor
> 460  00000000  minimal ASCII
> 464  4d617374  "Mast"
> 468  6572436f  "erCo"
> 46c  6e74726f  "ntro"
> 470  6c000000  "l"
> 
>                descriptor leaf at 474
>                -----------------------------------------------------------------
> 474  0006c2ec  leaf_length 6, crc 49900
> 478  00000000  textual descriptor
> 47c  00000000  minimal ASCII
> 480  4d617374  "Mast"
> 484  6572436f  "erCo"
> 488  6e74726f  "ntro"
> 48c  6c000000  "l"
> 
> Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>

Applied to for-next branch.  Thanks.


Takashi
_______________________________________________
Alsa-devel mailing list
Alsa-devel@alsa-project.org
https://mailman.alsa-project.org/mailman/listinfo/alsa-devel

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2020-01-13  9:51 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-01-13  8:46 [alsa-devel] [PATCH 0/3] ALSA: dice: add support for Alesis MasterControl Takashi Sakamoto
2020-01-13  8:46 ` [PATCH 1/3] dice: fix fallback from protocol extension into limited functionality Takashi Sakamoto
2020-01-13  8:46   ` [alsa-devel] " Takashi Sakamoto
2020-01-13  9:47   ` Takashi Iwai
2020-01-13  9:47     ` [alsa-devel] " Takashi Iwai
2020-01-13  8:46 ` [alsa-devel] [PATCH 2/3] dice: loosen stream format check for MIDI conformant data channel Takashi Sakamoto
2020-01-13  9:47   ` Takashi Iwai
2020-01-13  8:46 ` [alsa-devel] [PATCH 3/3] dice: add support for Alesis MasterControl Takashi Sakamoto
2020-01-13  9:47   ` Takashi Iwai

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.