From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH] mmc: socfpga_dw_mmc: Move drvsel and smplsel to dts
Date: Thu, 26 Nov 2015 01:50:25 +0100 [thread overview]
Message-ID: <201511260150.25454.marex@denx.de> (raw)
In-Reply-To: <1448498472-2573-1-git-send-email-clsee@altera.com>
On Thursday, November 26, 2015 at 01:41:12 AM, clsee wrote:
> From: Chin Liang See <clsee@altera.com>
>
> 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>
> ---
> arch/arm/dts/socfpga_cyclone5.dtsi | 2 ++
> drivers/mmc/socfpga_dw_mmc.c | 24 ++++++++++++++++++++++--
> include/configs/socfpga_common.h | 2 --
> 3 files changed, 24 insertions(+), 4 deletions(-)
Hi!
[...]
> @@ -78,11 +87,19 @@ static int socfpga_dwmci_of_probe(const void *blob, int
> node, const int idx) return -EINVAL;
> }
>
> + drvsel = fdtdec_get_uint(blob, node, "drvsel", 0);
The default value here should be 3, otherwise this won't preserve the original
behavior of the driver in case the nodes in DT are missing.
> + smplsel = fdtdec_get_uint(blob, node, "smplsel", 0);
> +
> /* Allocate the host */
> host = calloc(1, sizeof(*host));
> if (!host)
> return -ENOMEM;
>
> + /* Allocate the priv */
> + priv = calloc(1, sizeof(*priv));
> + if (!priv)
> + return -ENOMEM;
If this call fails, you're leaking memory, since you calloc() some stuff before.
> +
> host->name = "SOCFPGA DWMMC";
> host->ioaddr = (void *)reg_base;
> host->buswidth = bus_width;
> @@ -92,6 +109,9 @@ static int socfpga_dwmci_of_probe(const void *blob, int
> node, const int idx) host->bus_hz = clk;
> host->fifoth_val = MSIZE(0x2) |
> RX_WMARK(fifo_depth / 2 - 1) | TX_WMARK(fifo_depth / 2);
> + priv->drvsel = drvsel;
> + priv->smplsel = smplsel;
> + host->priv = priv;
You can move the fdtdec_get_uint() calls here directly, no need to introduce
ad-hoc variable and then just assign it into the private data.
> return add_dwmci(host, host->bus_hz, 400000);
> }
> diff --git a/include/configs/socfpga_common.h
> b/include/configs/socfpga_common.h index f6808b5..b661cc2 100644
> --- a/include/configs/socfpga_common.h
> +++ b/include/configs/socfpga_common.h
> @@ -153,8 +153,6 @@
> #define CONFIG_DWMMC
> #define CONFIG_SOCFPGA_DWMMC
> #define CONFIG_SOCFPGA_DWMMC_FIFO_DEPTH 1024
> -#define CONFIG_SOCFPGA_DWMMC_DRVSEL 3
> -#define CONFIG_SOCFPGA_DWMMC_SMPSEL 0
> /* FIXME */
> /* using smaller max blk cnt to avoid flooding the limited stack we have
> */ #define CONFIG_SYS_MMC_MAX_BLK_COUNT 256 /* FIXME -- SPL only? */
next prev parent reply other threads:[~2015-11-26 0:50 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-11-26 0:41 [U-Boot] [PATCH] mmc: socfpga_dw_mmc: Move drvsel and smplsel to dts clsee
2015-11-26 0:50 ` Marek Vasut [this message]
2015-11-26 0:54 ` 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=201511260150.25454.marex@denx.de \
--to=marex@denx.de \
--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 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.