From: Mark Brown <broonie@kernel.org>
To: Shrirang Bagul <shrirang.bagul@canonical.com>
Cc: alsa-devel@alsa-project.org, linux-kernel@vger.kernel.org,
Liam Girdwood <lgirdwood@gmail.com>,
Jaroslav Kysela <perex@perex.cz>, Takashi Iwai <tiwai@suse.com>,
Vinod Koul <vinod.koul@intel.com>,
Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>,
Jeeja KP <jeeja.kp@intel.com>, Jie Yang <yang.jie@intel.com>,
Sathyanarayana Nujella <sathyanarayana.nujella@intel.com>,
John Keeping <john@metanate.com>,
Ramesh Babu <ramesh.babu@intel.com>,
Arnd Bergmann <arnd@arndb.de>,
Colin Ian King <colin.king@canonical.com>,
Jorge Fernandez Monteagudo <jorgefm@cirsa.com>,
Ben Zhang <benzh@chromium.org>
Subject: Re: [PATCH 2/2] ASoC: Intel: boards: Add Baytrail RT5660 machine driver
Date: Mon, 19 Dec 2016 15:55:09 +0000 [thread overview]
Message-ID: <20161219155509.qs7o5tdnz5z6ksuw@sirena.org.uk> (raw)
In-Reply-To: <20161219135147.24208-3-shrirang.bagul@canonical.com>
[-- Attachment #1: Type: text/plain, Size: 2851 bytes --]
On Mon, Dec 19, 2016 at 09:51:47PM +0800, Shrirang Bagul wrote:
> +
> +#define DEBUG
This should be production code...
> +#include <linux/init.h>
> +#include <linux/module.h>
> +#include <linux/platform_device.h>
> +#include <linux/gpio/consumer.h>
> +#include <linux/acpi.h>
> +#include <linux/device.h>
> +#include <linux/dmi.h>
> +#include <linux/slab.h>
> +#include <asm/cpu_device_id.h>
> +#include <asm/platform_sst_audio.h>
> +#include <linux/clk.h>
The ordering of the headers is very random here, and is there a matching
platform patch somewhere registering clocks?
> + /*
> + * Set codec clock source to internal clock before
> + * turning off the platform clock. Codec needs clock
> + * for Jack detection and button press
> + */
> + ret = snd_soc_dai_set_sysclk(codec_dai, RT5660_SCLK_S_RCCLK,
> + 0,
> + SND_SOC_CLOCK_IN);
> + if (!ret) {
> + if ((byt_rt5660_quirk & BYT_RT5660_MCLK_EN) && priv->mclk)
> + clk_disable_unprepare(priv->mclk);
> + }
Please write the error handling normally and don't embed the next steps
of the process in where the error handling would usually be.
> + ret = snd_soc_add_card_controls(card, byt_rt5660_controls,
> + ARRAY_SIZE(byt_rt5660_controls));
> + if (ret) {
> + dev_err(card->dev, "unable to add card controls\n");
> + return ret;
> + }
Why not initialize these from the card struct?
> + if ((byt_rt5660_quirk & BYT_RT5660_MCLK_EN) && priv->mclk) {
> + /*
> + * The firmware might enable the clock at
> + * boot (this information may or may not
> + * be reflected in the enable clock register).
> + * To change the rate we must disable the clock
> + * first to cover these cases. Due to common
> + * clock framework restrictions that do not allow
> + * to disable a clock that has not been enabled,
> + * we need to enable the clock first.
> + */
> + ret = clk_prepare_enable(priv->mclk);
> + if (!ret)
> + clk_disable_unprepare(priv->mclk);
We don't disable the clock after (apparently) temporarily enabling it
here.
> + /*
> + * Default mode for SSP configuration is TDM 4 slot, override config
> + * with explicit setting to I2S 2ch 16-bit. The word length is set with
> + * dai_set_tdm_slot() since there is no other API exposed
> + */
> + ret = snd_soc_dai_set_fmt(rtd->cpu_dai,
> + SND_SOC_DAIFMT_I2S |
> + SND_SOC_DAIFMT_NB_IF |
> + SND_SOC_DAIFMT_CBS_CFS
> + );
Please use a normal kernel coding style and please initialize this from
the dai_link too, it's always the same.
> + /* fixup codec name based on HID */
> + i2c_name = sst_acpi_find_name_from_hid(mach->id);
> + if (i2c_name != NULL) {
> + snprintf(byt_rt5660_codec_name, sizeof(byt_rt5660_codec_name),
> + "%s%s", "i2c-", i2c_name);
There's no point in formatting a static string in here, just include it
in the string.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
next prev parent reply other threads:[~2016-12-19 15:55 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-19 13:51 [PATCH 0/2] ASoC: Dell IoT Gateway audio support Shrirang Bagul
2016-12-19 13:51 ` [PATCH 1/2] ASoC: rt5660: Add ACPI support Shrirang Bagul
2016-12-19 15:44 ` Mark Brown
2016-12-27 3:31 ` Shrirang Bagul
2016-12-19 13:51 ` [PATCH 2/2] ASoC: Intel: boards: Add Baytrail RT5660 machine driver Shrirang Bagul
2016-12-19 15:55 ` Mark Brown [this message]
2016-12-19 16:30 ` [alsa-devel] " Pierre-Louis Bossart
2016-12-19 16:44 ` Mark Brown
2016-12-27 3:29 ` Shrirang Bagul
2016-12-27 3:32 ` Shrirang Bagul
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=20161219155509.qs7o5tdnz5z6ksuw@sirena.org.uk \
--to=broonie@kernel.org \
--cc=alsa-devel@alsa-project.org \
--cc=arnd@arndb.de \
--cc=benzh@chromium.org \
--cc=colin.king@canonical.com \
--cc=jeeja.kp@intel.com \
--cc=john@metanate.com \
--cc=jorgefm@cirsa.com \
--cc=lgirdwood@gmail.com \
--cc=linux-kernel@vger.kernel.org \
--cc=perex@perex.cz \
--cc=pierre-louis.bossart@linux.intel.com \
--cc=ramesh.babu@intel.com \
--cc=sathyanarayana.nujella@intel.com \
--cc=shrirang.bagul@canonical.com \
--cc=tiwai@suse.com \
--cc=vinod.koul@intel.com \
--cc=yang.jie@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;
as well as URLs for NNTP newsgroup(s).