From: Chin Liang See <clsee@altera.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2] mmc: socfpga_dw_mmc: Move drvsel and smplsel to dts
Date: Thu, 26 Nov 2015 09:30:18 +0800 [thread overview]
Message-ID: <1448501418.2097.2.camel@altera.com> (raw)
In-Reply-To: <201511260226.30199.marex@denx.de>
On Thu, 2015-11-26 at 02:26 +0100, Marek Vasut wrote:
> On Thursday, November 26, 2015 at 02:10:04 AM, Chin Liang See wrote:
> > socfpga_dw_mmc driver will obtain the drvsel and
> > smplsel value from device tree instead of definition
> > in config header file.
> >
> > Signed-off-by: Chin Liang See <clsee@altera.com>
> > Cc: Dinh Nguyen <dinguyen@opensource.altera.com>
> > Cc: Dinh Nguyen <dinh.linux@gmail.com>
> > Cc: Pavel Machek <pavel@denx.de>
> > Cc: Marek Vasut <marex@denx.de>
> > Cc: Stefan Roese <sr@denx.de>
> > Cc: Pantelis Antoniou <pantelis.antoniou@konsulko.com>
> > Cc: Simon Glass <sjg@chromium.org>
> > Cc: Jaehoon Chung <jh80.chung@samsung.com>
> > ---
> > Changes for v2
> > - Put default value for drvsel to 3 in case node in DT missing
> > - Remove unnecessary ad-hoc vairable
> > - Free up first calloc if second calloc failed
> > ---
> > arch/arm/dts/socfpga_cyclone5.dtsi | 2 ++
> > drivers/mmc/socfpga_dw_mmc.c | 22 ++++++++++++++++++++--
> > include/configs/socfpga_common.h | 2 --
> > 3 files changed, 22 insertions(+), 4 deletions(-)
> >
> > diff --git a/arch/arm/dts/socfpga_cyclone5.dtsi
> > b/arch/arm/dts/socfpga_cyclone5.dtsi index de36209..040b236 100644
> > --- a/arch/arm/dts/socfpga_cyclone5.dtsi
> > +++ b/arch/arm/dts/socfpga_cyclone5.dtsi
> > @@ -25,6 +25,8 @@
> > bus-width = <4>;
> > cap-mmc-highspeed;
> > cap-sd-highspeed;
> > + drvsel = <3>;
> > + smplsel = <0>;
> > };
> >
> > sysmgr at ffd08000 {
>
> I'm not very fond of bunding DT changes and driver changes together,
> these
> should be separate, so it'd be nice if you sent a V3 and split this
> into
> two patches.
>
> Otherwise
> Acked-by: Marek Vasut <marex@denx.de>
Sure, I can split that as its easy to do that.
>
> > diff --git a/drivers/mmc/socfpga_dw_mmc.c
> > b/drivers/mmc/socfpga_dw_mmc.c
> > index 8076761..38eb783 100644
> > --- a/drivers/mmc/socfpga_dw_mmc.c
> > +++ b/drivers/mmc/socfpga_dw_mmc.c
> > @@ -19,18 +19,25 @@ static const struct socfpga_clock_manager
> > *clock_manager_base = static const struct socfpga_system_manager
> > *system_manager_base = (void *)SOCFPGA_SYSMGR_ADDRESS;
> >
> > +/* socfpga implmentation specific drver private data */
> > +struct dwmci_socfpga_priv_data {
> > + unsigned int drvsel;
> > + unsigned int smplsel;
> > +};
> > +
> > static void socfpga_dwmci_clksel(struct dwmci_host *host)
> > {
> > unsigned int drvsel;
> > unsigned int smplsel;
> > + struct dwmci_socfpga_priv_data *priv = host->priv;
> >
> > /* Disable SDMMC clock. */
> > clrbits_le32(&clock_manager_base->per_pll.en,
> > CLKMGR_PERPLLGRP_EN_SDMMCCLK_MASK);
> >
> > /* Configures drv_sel and smpl_sel */
> > - drvsel = CONFIG_SOCFPGA_DWMMC_DRVSEL;
> > - smplsel = CONFIG_SOCFPGA_DWMMC_SMPSEL;
> > + drvsel = priv->drvsel;
> > + smplsel = priv->smplsel;
>
> You can probably just use priv->xxx directly in the code and drop
> those vars.
Sure, I can enhance that too
Thanks
Chin Liang
>
> > debug("%s: drvsel %d smplsel %d\n", __func__, drvsel,
> > smplsel);
> > writel(SYSMGR_SDMMC_CTRL_SET(smplsel, drvsel),
> [...]
next prev parent reply other threads:[~2015-11-26 1:30 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-26 1:10 [U-Boot] [PATCH v2] mmc: socfpga_dw_mmc: Move drvsel and smplsel to dts Chin Liang See
2015-11-26 1:26 ` Marek Vasut
2015-11-26 1:30 ` Chin Liang See [this message]
2015-11-26 1:33 ` Jaehoon Chung
2015-11-26 1:41 ` Chin Liang See
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=1448501418.2097.2.camel@altera.com \
--to=clsee@altera.com \
--cc=u-boot@lists.denx.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox