From: Jerome Brunet <jbrunet@baylibre.com>
To: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: "Jerome Brunet" <jbrunet@baylibre.com>,
"Xiubo Li" <Xiubo.Lee@gmail.com>, "Vinod Koul" <vkoul@kernel.org>,
"Trevor Wu" <trevor.wu@mediatek.com>,
"Takashi Iwai" <tiwai@suse.com>,
"Sylwester Nawrocki" <s.nawrocki@samsung.com>,
"Srinivas Kandagatla" <srinivas.kandagatla@linaro.org>,
"Shengjiu Wang" <shengjiu.wang@gmail.com>,
"Shawn Guo" <shawnguo@kernel.org>,
"Sascha Hauer" <s.hauer@pengutronix.de>,
"Ranjani Sridharan" <ranjani.sridharan@linux.intel.com>,
"Pierre-Louis Bossart" <pierre-louis.bossart@linux.intel.com>,
"Peter Ujfalusi" <peter.ujfalusi@linux.intel.com>,
"Neil Armstrong" <neil.armstrong@linaro.org>,
"Matthias Brugger" <matthias.bgg@gmail.com>,
"Maso Huang" <maso.huang@mediatek.com>,
"Mark Brown" <broonie@kernel.org>,
Linux-ALSA <alsa-devel@alsa-project.org>,
"Linus Walleij" <linus.walleij@linaro.org>,
"Liam Girdwood" <lgirdwood@gmail.com>,
"Kevin Hilman" <khilman@baylibre.com>,
"Kai Vehmanen" <kai.vehmanen@linux.intel.com>,
"Jaroslav Kysela" <perex@perex.cz>,
"Hans de Goede" <hdegoede@redhat.com>,
"Daniel Baluta" <daniel.baluta@nxp.com>,
"Cristian Ciocaltea" <cristian.ciocaltea@collabora.com>,
"Cezary Rojewski" <cezary.rojewski@intel.com>,
"Brent Lu" <brent.lu@intel.com>,
"Bard Liao" <yung-chuan.liao@linux.intel.com>,
"Banajit Goswami" <bgoswami@quicinc.com>,
"AngeloGioacchino Del Regno"
<angelogioacchino.delregno@collabora.com>,
"Amadeusz Sławiński" <amadeuszx.slawinski@linux.intel.com>,
"Alper Nebi Yasak" <alpernebiyasak@gmail.com>,
linux-stm32@st-md-mailman.stormreply.com,
linux-sound@vger.kernel.org, imx@lists.linux.dev
Subject: Re: [PATCH v2 00/16] ASoC: Replace dpcm_playback/capture to playback/capture_only
Date: Fri, 05 Apr 2024 10:59:20 +0200 [thread overview]
Message-ID: <1j5xwwp491.fsf@starbuckisacylon.baylibre.com> (raw)
In-Reply-To: <877chcraaa.wl-kuninori.morimoto.gx@renesas.com>
On Thu 04 Apr 2024 at 23:13, Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> wrote:
> Hi Jerome
>
> Thank you for your feedback
>
>> playback_only and capture_only have implication on each other. If one is
>> set, the other can/must not be set. This leads to conditions which can
>> be fairly hard to read and possibly bugs.
> (snip)
>> Wouldn't it be better to replace those 2 flags with a single bitfield ?
>>
>> something like:
>>
>> unsigned int directions;
>> #define PLAYBACK_VALID BIT(0)
>> #define CAPTURE_VALID BIT(1)
>
> I think Amadeusz indicated similar idea, and basically I can agree about
> it.
I've seen it afterward. It is similar indeed but I don't think 'None' or
'Both' should have a dedicated bit. That would be yet another
redundance/implication between flags/bits ... so another source of
bugs/complexity IMO.
> But in this patch-set, I want focus to removing dpcm_xxx flag as 1st
> step. So I'm happy to create such patch-set, but I want to handle it as
> another patch-set.
Fine by me ... at least for the Amlogic part.
>
> Thank you for your help !!
>
Thanks for your work !
> Best regards
> ---
> Renesas Electronics
> Ph.D. Kuninori Morimoto
--
Jerome
next prev parent reply other threads:[~2024-04-05 9:08 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-04-01 0:27 [PATCH v2 00/16] ASoC: Replace dpcm_playback/capture to playback/capture_only Kuninori Morimoto
2024-04-01 0:30 ` [PATCH v2 01/16] ASoC: soc-pcm.c: cleanup soc_get_playback_capture() Kuninori Morimoto
2024-04-01 16:10 ` Pierre-Louis Bossart
2024-04-02 0:21 ` Kuninori Morimoto
2024-04-02 6:43 ` Kuninori Morimoto
2024-04-02 14:06 ` Pierre-Louis Bossart
2024-04-02 14:02 ` Pierre-Louis Bossart
2024-04-04 1:53 ` Kuninori Morimoto
2024-04-04 13:27 ` Pierre-Louis Bossart
2024-04-05 0:46 ` Kuninori Morimoto
2024-04-08 3:55 ` Kuninori Morimoto
2024-04-08 15:34 ` Pierre-Louis Bossart
2024-04-08 23:42 ` Kuninori Morimoto
2024-04-01 0:30 ` [PATCH v2 02/16] ASoC: amd: Replace dpcm_playback/capture to playback/capture_only Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 03/16] ASoC: fsl: " Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 04/16] ASoC: sof: " Kuninori Morimoto
2024-04-01 16:12 ` Pierre-Louis Bossart
2024-04-01 23:19 ` Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 05/16] ASoC: meson: " Kuninori Morimoto
2024-04-04 8:46 ` Jerome Brunet
2024-04-01 0:31 ` [PATCH v2 06/16] ASoC: Intel: " Kuninori Morimoto
2024-04-02 14:04 ` Amadeusz Sławiński
2024-04-03 0:12 ` Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 07/16] ASoC: samsung: " Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 08/16] ASoC: mediatek: " Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 09/16] ASoC: soc-core: " Kuninori Morimoto
2024-04-01 16:22 ` Pierre-Louis Bossart
2024-04-01 23:27 ` Kuninori Morimoto
2024-04-02 14:09 ` Pierre-Louis Bossart
2024-04-04 2:04 ` Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 10/16] ASoC: soc-topology: " Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 11/16] ASoC: soc-compress: " Kuninori Morimoto
2024-04-01 0:31 ` [PATCH v2 12/16] ASoC: Intel: avs: boards: " Kuninori Morimoto
2024-04-01 0:32 ` [PATCH v2 13/16] ASoC: remove snd_soc_dai_link_set_capabilities() Kuninori Morimoto
2024-04-01 16:26 ` Pierre-Louis Bossart
2024-04-02 0:29 ` Kuninori Morimoto
2024-04-02 14:13 ` Pierre-Louis Bossart
2024-04-04 2:22 ` Kuninori Morimoto
2024-04-01 0:32 ` [PATCH v2 14/16] ASoC: soc-pcm: remove dpcm_playback/capture Kuninori Morimoto
2024-04-01 0:32 ` [PATCH v2 15/16] ASoC: soc-pcm: indicate warning if DPCM BE Codec has no settings Kuninori Morimoto
2024-04-01 16:28 ` Pierre-Louis Bossart
2024-04-01 0:32 ` [PATCH v2 16/16] ASoC: doc: remove .dpcm_playback/capture flags Kuninori Morimoto
2024-04-04 8:27 ` [PATCH v2 00/16] ASoC: Replace dpcm_playback/capture to playback/capture_only Jerome Brunet
2024-04-04 23:13 ` Kuninori Morimoto
2024-04-05 8:59 ` Jerome Brunet [this message]
2024-04-08 2:13 ` Kuninori Morimoto
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=1j5xwwp491.fsf@starbuckisacylon.baylibre.com \
--to=jbrunet@baylibre.com \
--cc=Xiubo.Lee@gmail.com \
--cc=alpernebiyasak@gmail.com \
--cc=alsa-devel@alsa-project.org \
--cc=amadeuszx.slawinski@linux.intel.com \
--cc=angelogioacchino.delregno@collabora.com \
--cc=bgoswami@quicinc.com \
--cc=brent.lu@intel.com \
--cc=broonie@kernel.org \
--cc=cezary.rojewski@intel.com \
--cc=cristian.ciocaltea@collabora.com \
--cc=daniel.baluta@nxp.com \
--cc=hdegoede@redhat.com \
--cc=imx@lists.linux.dev \
--cc=kai.vehmanen@linux.intel.com \
--cc=khilman@baylibre.com \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=lgirdwood@gmail.com \
--cc=linus.walleij@linaro.org \
--cc=linux-sound@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=maso.huang@mediatek.com \
--cc=matthias.bgg@gmail.com \
--cc=neil.armstrong@linaro.org \
--cc=perex@perex.cz \
--cc=peter.ujfalusi@linux.intel.com \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=ranjani.sridharan@linux.intel.com \
--cc=s.hauer@pengutronix.de \
--cc=s.nawrocki@samsung.com \
--cc=shawnguo@kernel.org \
--cc=shengjiu.wang@gmail.com \
--cc=srinivas.kandagatla@linaro.org \
--cc=tiwai@suse.com \
--cc=trevor.wu@mediatek.com \
--cc=vkoul@kernel.org \
--cc=yung-chuan.liao@linux.intel.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox