From: Shan-Chun Hung <shanchun1218@gmail.com>
To: Krzysztof Kozlowski <krzk@kernel.org>,
ulf.hansson@linaro.org, robh@kernel.org, krzk+dt@kernel.org,
conor+dt@kernel.org, adrian.hunter@intel.com,
p.zabel@pengutronix.de, pbrobinson@gmail.com, serghox@gmail.com,
mcgrof@kernel.org, prabhakar.mahadev-lad.rj@bp.renesas.com,
forbidden405@outlook.com, tmaimon77@gmail.com,
andy.shevchenko@gmail.com, linux-arm-kernel@lists.infradead.org,
linux-mmc@vger.kernel.org, devicetree@vger.kernel.org,
linux-kernel@vger.kernel.org
Cc: ychuang3@nuvoton.com, schung@nuvoton.com
Subject: Re: [PATCH v4 2/2] mmc: sdhci-of-ma35d1: Add Nuvoton MA35D1 SDHCI driver
Date: Tue, 9 Jul 2024 10:07:45 +0800 [thread overview]
Message-ID: <1f3c8a6a-fb6d-4b61-a6ec-7e0e31c7dbf4@gmail.com> (raw)
In-Reply-To: <30cb5871-71f1-4b62-91fc-489519125bc2@kernel.org>
Dear Krzysztof,
Thank you for your review.
On 2024/7/8 下午 10:25, Krzysztof Kozlowski wrote:
> On 04/07/2024 08:26, Shan-Chun Hung wrote:
>> Add the SDHCI driver for the MA35D1 platform. It is based upon the
>> SDHCI interface, but requires some extra initialization.
>>
>> Signed-off-by: Shan-Chun Hung <shanchun1218@gmail.com>
>> ---
>> drivers/mmc/host/Kconfig | 12 ++
>> drivers/mmc/host/Makefile | 1 +
>> drivers/mmc/host/sdhci-of-ma35d1.c | 297 +++++++++++++++++++++++++++++
>> 3 files changed, 310 insertions(+)
>> create mode 100644 drivers/mmc/host/sdhci-of-ma35d1.c
>>
>> diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
>> index bb0d4fb0892a..aa6922ff4210 100644
>> --- a/drivers/mmc/host/Kconfig
>> +++ b/drivers/mmc/host/Kconfig
>> @@ -252,6 +252,18 @@ config MMC_SDHCI_OF_SPARX5
>>
>> If unsure, say N.
>>
>> +config MMC_SDHCI_OF_MA35D1
>> + tristate "SDHCI OF support for the MA35D1 SDHCI controller"
>> + depends on ARCH_MA35 || COMPILE_TEST
>> + depends on MMC_SDHCI_PLTFM
>> + help
>> + This selects the MA35D1 Secure Digital Host Controller Interface.
>> + The controller supports SD/MMC/SDIO devices.
>> +
>> + If you have a controller with this interface, say Y or M here.
>> +
>> + If unsure, say N.
>> +
>> config MMC_SDHCI_CADENCE
>> tristate "SDHCI support for the Cadence SD/SDIO/eMMC controller"
>> depends on MMC_SDHCI_PLTFM
>> diff --git a/drivers/mmc/host/Makefile b/drivers/mmc/host/Makefile
>> index f53f86d200ac..3ccffebbe59b 100644
>> --- a/drivers/mmc/host/Makefile
>> +++ b/drivers/mmc/host/Makefile
>> @@ -88,6 +88,7 @@ obj-$(CONFIG_MMC_SDHCI_OF_ESDHC) += sdhci-of-esdhc.o
>> obj-$(CONFIG_MMC_SDHCI_OF_HLWD) += sdhci-of-hlwd.o
>> obj-$(CONFIG_MMC_SDHCI_OF_DWCMSHC) += sdhci-of-dwcmshc.o
>> obj-$(CONFIG_MMC_SDHCI_OF_SPARX5) += sdhci-of-sparx5.o
>> +obj-$(CONFIG_MMC_SDHCI_OF_MA35D1) += sdhci-of-ma35d1.o
>> obj-$(CONFIG_MMC_SDHCI_BCM_KONA) += sdhci-bcm-kona.o
>> obj-$(CONFIG_MMC_SDHCI_IPROC) += sdhci-iproc.o
>> obj-$(CONFIG_MMC_SDHCI_NPCM) += sdhci-npcm.o
>> diff --git a/drivers/mmc/host/sdhci-of-ma35d1.c b/drivers/mmc/host/sdhci-of-ma35d1.c
>> new file mode 100644
>> index 000000000000..b5aab65b9093
>> --- /dev/null
>> +++ b/drivers/mmc/host/sdhci-of-ma35d1.c
>> @@ -0,0 +1,297 @@
>> +// SPDX-License-Identifier: GPL-2.0+
>> +/*
>> + * Copyright (C) 2024 Nuvoton Technology Corp.
>> + *
>> + * Author: Shan-Chun Hung <shanchun1218@gmail.com>
>> + */
>> +
>> +#include <linux/align.h>
>> +#include <linux/array_size.h>
>> +#include <linux/bits.h>
>> +#include <linux/build_bug.h>
>> +#include <linux/clk.h>
>> +#include <linux/delay.h>
>> +#include <linux/dev_printk.h>
>> +#include <linux/device.h>
>> +#include <linux/dma-mapping.h>
>> +#include <linux/err.h>
>> +#include <linux/math.h>
>> +#include <linux/mfd/syscon.h>
>> +#include <linux/minmax.h>
>> +#include <linux/mmc/card.h>
>> +#include <linux/mmc/host.h>
>> +#include <linux/mod_devicetable.h>
>> +#include <linux/module.h>
>> +#include <linux/pinctrl/consumer.h>
>> +#include <linux/platform_device.h>
>> +#include <linux/regmap.h>
>> +#include <linux/reset.h>
>> +#include <linux/sizes.h>
>> +#include <linux/types.h>
>> +
>> +#include "sdhci-pltfm.h"
>> +#include "sdhci.h"
>> +
>> +#define MA35_SYS_MISCFCR0 0x070
>> +#define MA35_SDHCI_MSHCCTL 0x508
>> +#define MA35_SDHCI_MBIUCTL 0x510
>> +
>> +#define MA35_SDHCI_CMD_CONFLICT_CHK BIT(0)
>> +#define MA35_SDHCI_INCR_MSK GENMASK(3, 0)
>> +#define MA35_SDHCI_INCR16 BIT(3)
>> +#define MA35_SDHCI_INCR8 BIT(2)
>> +
>> +struct ma35_priv {
>> + struct regmap *regmap;
> Drop, you don't use it.
I will remove it and use local variables instead.
>
>> + struct reset_control *rst;
>> + struct pinctrl *pinctrl;
>> + struct pinctrl_state *pins_uhs;
>> + struct pinctrl_state *pins_default;
>> +};
>> +
>> +struct ma35_restore_data {
>> + u32 reg;
>> + u32 width;
>> +};
>> +
> ...
>
>> +
>> +static int ma35_probe(struct platform_device *pdev)
>> +{
>> + struct device *dev = &pdev->dev;
>> + struct sdhci_pltfm_host *pltfm_host;
>> + struct sdhci_host *host;
>> + struct ma35_priv *priv;
>> + int err;
>> + u32 extra, ctl;
>> +
>> + host = sdhci_pltfm_init(pdev, &sdhci_ma35_pdata, sizeof(struct ma35_priv));
>> + if (IS_ERR(host))
>> + return PTR_ERR(host);
>> +
>> + /* Extra adma table cnt for cross 128M boundary handling. */
>> + extra = DIV_ROUND_UP_ULL(dma_get_required_mask(dev), SZ_128M);
>> + extra = min(extra, SDHCI_MAX_SEGS);
>> +
>> + host->adma_table_cnt += extra;
>> + pltfm_host = sdhci_priv(host);
>> + priv = sdhci_pltfm_priv(pltfm_host);
>> +
>> + pltfm_host->clk = devm_clk_get_optional_enabled(dev, NULL);
>> + if (IS_ERR(pltfm_host->clk)) {
>> + err = PTR_ERR(pltfm_host->clk);
>> + dev_err_probe(dev, err, "failed to get clk\n");
> Syntax is err = dev_err_probe()
I will fix it.
>> + goto err_sdhci;
>> + }
>> +
>> + err = mmc_of_parse(host->mmc);
>> + if (err)
>> + goto err_sdhci;
>> +
>> + priv->rst = devm_reset_control_get_exclusive(dev, NULL);
>> + if (IS_ERR(priv->rst)) {
>> + err = PTR_ERR(priv->rst);
>> + dev_err_probe(dev, err, "failed to get reset control\n");
> err = dev_err_probe
>
> ... so all your previous versions were leaking memory. Double check your
> error paths.
I will fix it and make sure to double check the error paths.
>> + goto err_sdhci;
>> + }
>> +
>> + sdhci_get_of_property(pdev);
>> +
> Best regards,
> Krzysztof
Best Regards,
Shan-Chun
prev parent reply other threads:[~2024-07-09 2:07 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-04 6:26 [PATCH v4 0/2] Add support for Nuvoton MA35D1 SDHCI Shan-Chun Hung
2024-07-04 6:26 ` [PATCH v4 1/2] dt-bindings: mmc: nuvoton,ma35d1-sdhci: Document MA35D1 SDHCI controller Shan-Chun Hung
2024-07-08 14:19 ` Krzysztof Kozlowski
2024-07-09 2:10 ` Shan-Chun Hung
2024-07-04 6:26 ` [PATCH v4 2/2] mmc: sdhci-of-ma35d1: Add Nuvoton MA35D1 SDHCI driver Shan-Chun Hung
2024-07-08 14:25 ` Krzysztof Kozlowski
2024-07-09 2:07 ` Shan-Chun Hung [this message]
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=1f3c8a6a-fb6d-4b61-a6ec-7e0e31c7dbf4@gmail.com \
--to=shanchun1218@gmail.com \
--cc=adrian.hunter@intel.com \
--cc=andy.shevchenko@gmail.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=forbidden405@outlook.com \
--cc=krzk+dt@kernel.org \
--cc=krzk@kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=mcgrof@kernel.org \
--cc=p.zabel@pengutronix.de \
--cc=pbrobinson@gmail.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=robh@kernel.org \
--cc=schung@nuvoton.com \
--cc=serghox@gmail.com \
--cc=tmaimon77@gmail.com \
--cc=ulf.hansson@linaro.org \
--cc=ychuang3@nuvoton.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