From: Mark Brown <broonie@opensource.wolfsonmicro.com>
To: Daniel Mack <zonque@gmail.com>
Cc: alsa-devel@alsa-project.org, Eric Miao <eric.y.miao@gmail.com>,
Liam Girdwood <lrg@ti.com>,
linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] ARM: pxa: add support for Raumfeld DDX
Date: Tue, 15 Nov 2011 14:13:49 +0000 [thread overview]
Message-ID: <20111115141348.GG3077@opensource.wolfsonmicro.com> (raw)
In-Reply-To: <1320661562-422-1-git-send-email-zonque@gmail.com>
On Mon, Nov 07, 2011 at 11:26:02AM +0100, Daniel Mack wrote:
> arch/arm/mach-pxa/raumfeld.c | 119 +++++++++++++++++---
> sound/soc/pxa/Kconfig | 2 +
> sound/soc/pxa/raumfeld.c | 249 +++++++++++++++++++++++++++++++++++++++---
Is there any cross dependency between these bits? I honestly didn't
notice the ASoC bit in here...
> index 33ebc46..e6db56a 100644
> --- a/sound/soc/pxa/Kconfig
> +++ b/sound/soc/pxa/Kconfig
> @@ -152,6 +152,8 @@ config SND_SOC_RAUMFELD
> select SND_PXA_SOC_SSP
> select SND_SOC_CS4270
> select SND_SOC_AK4104
> + select SND_SOC_STA32X
> + select SND_SOC_WM8782
Is this really a single driver? Looking at the code it looks like
there's little if any code sharing between the different machines, it'd
help with maintainability to have multiple simple drivers.
> + /* PXA DMA cannot do zero extend for 24bit samples,
> + * thus only 16bit (two samples packet into 32bit word)
> + * or 32bit samples are possible
> + */
> + snd_pcm_hw_constraint_mask64(substream->runtime,
> + SNDRV_PCM_HW_PARAM_FORMAT,
> + SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
> + SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE);
If the PXA DMA controller can't do 24 bit audio it should be imposing
this constraint.
> +static void raumfeld_sta32x_shutdown(struct snd_pcm_substream *substream)
> +{
> + struct snd_soc_pcm_runtime *rtd = substream->private_data;
> + struct snd_soc_dai *codec_dai = rtd->codec_dai;
> +
> + /* set freq to 0 to enable all possible codec sample rates */
> + snd_soc_dai_set_sysclk(codec_dai, 0, 0, 0);
> +}
Are you sure this does the right thing with simultaneous playback and
record?
> + fmt = SND_SOC_DAIFMT_I2S |
> + SND_SOC_DAIFMT_NB_NF |
> + SND_SOC_DAIFMT_CBS_CFS;
Set this using dai_fmt in hte machine driver.
WARNING: multiple messages have this Message-ID (diff)
From: broonie@opensource.wolfsonmicro.com (Mark Brown)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: pxa: add support for Raumfeld DDX
Date: Tue, 15 Nov 2011 14:13:49 +0000 [thread overview]
Message-ID: <20111115141348.GG3077@opensource.wolfsonmicro.com> (raw)
In-Reply-To: <1320661562-422-1-git-send-email-zonque@gmail.com>
On Mon, Nov 07, 2011 at 11:26:02AM +0100, Daniel Mack wrote:
> arch/arm/mach-pxa/raumfeld.c | 119 +++++++++++++++++---
> sound/soc/pxa/Kconfig | 2 +
> sound/soc/pxa/raumfeld.c | 249 +++++++++++++++++++++++++++++++++++++++---
Is there any cross dependency between these bits? I honestly didn't
notice the ASoC bit in here...
> index 33ebc46..e6db56a 100644
> --- a/sound/soc/pxa/Kconfig
> +++ b/sound/soc/pxa/Kconfig
> @@ -152,6 +152,8 @@ config SND_SOC_RAUMFELD
> select SND_PXA_SOC_SSP
> select SND_SOC_CS4270
> select SND_SOC_AK4104
> + select SND_SOC_STA32X
> + select SND_SOC_WM8782
Is this really a single driver? Looking at the code it looks like
there's little if any code sharing between the different machines, it'd
help with maintainability to have multiple simple drivers.
> + /* PXA DMA cannot do zero extend for 24bit samples,
> + * thus only 16bit (two samples packet into 32bit word)
> + * or 32bit samples are possible
> + */
> + snd_pcm_hw_constraint_mask64(substream->runtime,
> + SNDRV_PCM_HW_PARAM_FORMAT,
> + SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S16_BE |
> + SNDRV_PCM_FMTBIT_S32_LE | SNDRV_PCM_FMTBIT_S32_BE);
If the PXA DMA controller can't do 24 bit audio it should be imposing
this constraint.
> +static void raumfeld_sta32x_shutdown(struct snd_pcm_substream *substream)
> +{
> + struct snd_soc_pcm_runtime *rtd = substream->private_data;
> + struct snd_soc_dai *codec_dai = rtd->codec_dai;
> +
> + /* set freq to 0 to enable all possible codec sample rates */
> + snd_soc_dai_set_sysclk(codec_dai, 0, 0, 0);
> +}
Are you sure this does the right thing with simultaneous playback and
record?
> + fmt = SND_SOC_DAIFMT_I2S |
> + SND_SOC_DAIFMT_NB_NF |
> + SND_SOC_DAIFMT_CBS_CFS;
Set this using dai_fmt in hte machine driver.
next prev parent reply other threads:[~2011-11-15 14:13 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-11-07 10:26 [PATCH] ARM: pxa: add support for Raumfeld DDX Daniel Mack
2011-11-07 10:26 ` Daniel Mack
2011-11-15 14:13 ` Mark Brown [this message]
2011-11-15 14:13 ` Mark Brown
2011-11-16 12:56 ` Daniel Mack
2011-11-16 12:56 ` Daniel Mack
2011-11-16 13:19 ` Mark Brown
2011-11-16 13:19 ` Mark Brown
2011-11-16 14:06 ` Daniel Mack
2011-11-16 14:06 ` Daniel Mack
2011-11-16 14:11 ` Mark Brown
2011-11-16 14:11 ` Mark Brown
2011-11-16 14:19 ` Daniel Mack
2011-11-16 14:19 ` Daniel Mack
2011-11-16 15:07 ` Johannes Stezenbach
2011-11-16 15:07 ` [alsa-devel] " Johannes Stezenbach
2011-11-16 16:07 ` Mark Brown
2011-11-16 16:07 ` [alsa-devel] " Mark Brown
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=20111115141348.GG3077@opensource.wolfsonmicro.com \
--to=broonie@opensource.wolfsonmicro.com \
--cc=alsa-devel@alsa-project.org \
--cc=eric.y.miao@gmail.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=lrg@ti.com \
--cc=zonque@gmail.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 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.