All of lore.kernel.org
 help / color / mirror / Atom feed
From: Takashi Sakamoto <o-takashi@sakamocchi.jp>
To: clemens@ladisch.de, tiwai@suse.de
Cc: alsa-devel@alsa-project.org, ffado-devel@lists.sourceforge.net
Subject: [PATCH v3 01/13] ALSA: dice: add cache of stream formats
Date: Wed,  2 May 2018 19:16:39 +0900	[thread overview]
Message-ID: <20180502101651.26173-2-o-takashi@sakamocchi.jp> (raw)
In-Reply-To: <20180502101651.26173-1-o-takashi@sakamocchi.jp>

A previous commit 6f688268b3f4 ('ALSA: dice: purge generating channel
cache') purged cache of stream formats. DICE interface originally has
no feature to assist drivers to retrieve available formats for all of
supported sampling transmission frequencies, without changing the
frequency actually.

For later release of Dice ASICs such as TCD2210, Dice interface has
extended protocol and can support the feature. This assists drivers
to retrieve available stream formats.

This commit is a first step to regain the cache to generate PCM rules
for all of supported sampling transmission frequencies.

Signed-off-by: Takashi Sakamoto <o-takashi@sakamocchi.jp>
---
 sound/firewire/dice/dice.h | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/sound/firewire/dice/dice.h b/sound/firewire/dice/dice.h
index da00e75e09d4..8f68976930c5 100644
--- a/sound/firewire/dice/dice.h
+++ b/sound/firewire/dice/dice.h
@@ -63,6 +63,13 @@
  */
 #define MAX_STREAMS	2
 
+enum snd_dice_rate_mode {
+	SND_DICE_RATE_MODE_LOW = 0,
+	SND_DICE_RATE_MODE_MIDDLE,
+	SND_DICE_RATE_MODE_HIGH,
+	SND_DICE_RATE_MODE_COUNT,
+};
+
 struct snd_dice {
 	struct snd_card *card;
 	struct fw_unit *unit;
@@ -80,6 +87,10 @@ struct snd_dice {
 	unsigned int rsrv_offset;
 
 	unsigned int clock_caps;
+	unsigned int tx_pcm_chs[MAX_STREAMS][SND_DICE_RATE_MODE_COUNT];
+	unsigned int rx_pcm_chs[MAX_STREAMS][SND_DICE_RATE_MODE_COUNT];
+	unsigned int tx_midi_ports[MAX_STREAMS];
+	unsigned int rx_midi_ports[MAX_STREAMS];
 
 	struct fw_address_handler notification_handler;
 	int owner_generation;
-- 
2.14.1

  reply	other threads:[~2018-05-02 10:17 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-02 10:16 [PATCH v3 00/13] ALSA: dice: use cache of stream formats to generate PCM rules/constraints Takashi Sakamoto
2018-05-02 10:16 ` Takashi Sakamoto [this message]
2018-05-02 10:16 ` [PATCH v3 02/13] ALSA: dice: add 'firewire' directory for proc nodes Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 03/13] ALSA: dice: add proc node for stream formation Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 04/13] ALSA: dice: cache stream formats at current mode of sampling transmission frequency Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 05/13] ALSA: dice: add parameters of stream formats for models produced by TC Electronic Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 06/13] ALSA: dice: add parameters of stream formats for models produced by Alesis Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 07/13] ALSA: dice: use extended protocol to detect available stream formats Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 08/13] ALSA: dice: use cache of stream format to check running stream Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 09/13] ALSA: dice: add a helper function to restart all of available streams Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 10/13] ALSA: dice: enable to change current sampling transmission frequency Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 11/13] ALSA: dice: use stream formats to add MIDI substreams Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 12/13] ALSA: dice: use cache for PCM constraints and rules Takashi Sakamoto
2018-05-02 10:16 ` [PATCH v3 13/13] ALSA: dice: remove local frag of force_two_pcms Takashi Sakamoto
2018-05-02 14:05 ` [PATCH v3 00/13] ALSA: dice: use cache of stream formats to generate PCM rules/constraints Takashi Iwai

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20180502101651.26173-2-o-takashi@sakamocchi.jp \
    --to=o-takashi@sakamocchi.jp \
    --cc=alsa-devel@alsa-project.org \
    --cc=clemens@ladisch.de \
    --cc=ffado-devel@lists.sourceforge.net \
    --cc=tiwai@suse.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.