Subject: [PATCH v2 0/1] mmc: sdhci-of-arasan: Fix clock registration fail for Keem Bay SOC

From: Muhammad Husaini Zulkifli <[email protected]>

Hi.

This patch specify clock operations handlers for Keem Bay SOC devices
due to the introduction of new clock operations handling.

Tested with Keem Bay evaluation module board.

Kindly help to review it.

Thank you.

Changes since v1:
- Update the commit message to better reflect what goes on

Muhammad Husaini Zulkifli (1):
mmc: sdhci-of-arasan: Fix clock registration fail for Keem Bay SOC

drivers/mmc/host/sdhci-of-arasan.c | 3 +++
1 file changed, 3 insertions(+)

--
2.17.1


Subject: [PATCH v2 1/1] mmc: sdhci-of-arasan: Fix clock registration fail for Keem Bay SOC

From: Muhammad Husaini Zulkifli <[email protected]>

Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations handling")
introduces platform specific SDHCI clock operation. Each platform should
specify clock operations handlers.

Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations handling")
and Commit 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem Bay")
are merged about the same time. When doing rebasing during the upstream process,
Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations handling")
was not included. This will result in sd clock registration failure for
Keem Bay SOC Devices as clock operations handlers are not defined.

This patch declares the clock operation for Keem Bay SOC Devices.
Add clk_ops for SD, EMMC and SDIO operations.

Fixes: 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem Bay")

Signed-off-by: Muhammad Husaini Zulkifli <[email protected]>
Reviewed-by: Adrian Hunter <[email protected]>
---
drivers/mmc/host/sdhci-of-arasan.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c
index 829ccef87426..012d52e1abee 100644
--- a/drivers/mmc/host/sdhci-of-arasan.c
+++ b/drivers/mmc/host/sdhci-of-arasan.c
@@ -1199,16 +1199,19 @@ static struct sdhci_arasan_of_data sdhci_arasan_versal_data = {
static struct sdhci_arasan_of_data intel_keembay_emmc_data = {
.soc_ctl_map = &intel_keembay_soc_ctl_map,
.pdata = &sdhci_keembay_emmc_pdata,
+ .clk_ops = &arasan_clk_ops,
};

static struct sdhci_arasan_of_data intel_keembay_sd_data = {
.soc_ctl_map = &intel_keembay_soc_ctl_map,
.pdata = &sdhci_keembay_sd_pdata,
+ .clk_ops = &arasan_clk_ops,
};

static struct sdhci_arasan_of_data intel_keembay_sdio_data = {
.soc_ctl_map = &intel_keembay_soc_ctl_map,
.pdata = &sdhci_keembay_sdio_pdata,
+ .clk_ops = &arasan_clk_ops,
};

static const struct of_device_id sdhci_arasan_of_match[] = {
--
2.17.1

2020-11-23 16:11:08

by Ulf Hansson

[permalink] [raw]
Subject: Re: [PATCH v2 1/1] mmc: sdhci-of-arasan: Fix clock registration fail for Keem Bay SOC

On Wed, 18 Nov 2020 at 05:01, <[email protected]> wrote:
>
> From: Muhammad Husaini Zulkifli <[email protected]>
>
> Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations handling")
> introduces platform specific SDHCI clock operation. Each platform should
> specify clock operations handlers.
>
> Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations handling")
> and Commit 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem Bay")
> are merged about the same time. When doing rebasing during the upstream process,
> Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations handling")
> was not included. This will result in sd clock registration failure for
> Keem Bay SOC Devices as clock operations handlers are not defined.
>
> This patch declares the clock operation for Keem Bay SOC Devices.
> Add clk_ops for SD, EMMC and SDIO operations.
>
> Fixes: 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem Bay")
>
> Signed-off-by: Muhammad Husaini Zulkifli <[email protected]>
> Reviewed-by: Adrian Hunter <[email protected]>

Applied for fixes and by adding a stable tag, thanks!

Kind regards
Uffe


> ---
> drivers/mmc/host/sdhci-of-arasan.c | 3 +++
> 1 file changed, 3 insertions(+)
>
> diff --git a/drivers/mmc/host/sdhci-of-arasan.c b/drivers/mmc/host/sdhci-of-arasan.c
> index 829ccef87426..012d52e1abee 100644
> --- a/drivers/mmc/host/sdhci-of-arasan.c
> +++ b/drivers/mmc/host/sdhci-of-arasan.c
> @@ -1199,16 +1199,19 @@ static struct sdhci_arasan_of_data sdhci_arasan_versal_data = {
> static struct sdhci_arasan_of_data intel_keembay_emmc_data = {
> .soc_ctl_map = &intel_keembay_soc_ctl_map,
> .pdata = &sdhci_keembay_emmc_pdata,
> + .clk_ops = &arasan_clk_ops,
> };
>
> static struct sdhci_arasan_of_data intel_keembay_sd_data = {
> .soc_ctl_map = &intel_keembay_soc_ctl_map,
> .pdata = &sdhci_keembay_sd_pdata,
> + .clk_ops = &arasan_clk_ops,
> };
>
> static struct sdhci_arasan_of_data intel_keembay_sdio_data = {
> .soc_ctl_map = &intel_keembay_soc_ctl_map,
> .pdata = &sdhci_keembay_sdio_pdata,
> + .clk_ops = &arasan_clk_ops,
> };
>
> static const struct of_device_id sdhci_arasan_of_match[] = {
> --
> 2.17.1
>

Subject: RE: [PATCH v2 1/1] mmc: sdhci-of-arasan: Fix clock registration fail for Keem Bay SOC

Hi Ulf,

Thanks

>-----Original Message-----
>From: Ulf Hansson <[email protected]>
>Sent: Tuesday, November 24, 2020 12:07 AM
>To: Zulkifli, Muhammad Husaini <[email protected]>
>Cc: [email protected]; Linux ARM <linux-arm-
>[email protected]>; Linux Kernel Mailing List <linux-
>[email protected]>; Hunter, Adrian <[email protected]>; Raja
>Subramanian, Lakshmi Bai <[email protected]>; Wan
>Mohamad, Wan Ahmad Zainie
><[email protected]>; David E. Box
><[email protected]>
>Subject: Re: [PATCH v2 1/1] mmc: sdhci-of-arasan: Fix clock registration fail
>for Keem Bay SOC
>
>On Wed, 18 Nov 2020 at 05:01, <[email protected]>
>wrote:
>>
>> From: Muhammad Husaini Zulkifli <[email protected]>
>>
>> Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations
>> handling") introduces platform specific SDHCI clock operation. Each
>> platform should specify clock operations handlers.
>>
>> Commit 16ada730a759 ("mmc: sdhci-of-arasan: Modify clock operations
>> handling") and Commit 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support
>> for Intel Keem Bay") are merged about the same time. When doing
>> rebasing during the upstream process, Commit 16ada730a759 ("mmc:
>> sdhci-of-arasan: Modify clock operations handling") was not included.
>> This will result in sd clock registration failure for Keem Bay SOC Devices as
>clock operations handlers are not defined.
>>
>> This patch declares the clock operation for Keem Bay SOC Devices.
>> Add clk_ops for SD, EMMC and SDIO operations.
>>
>> Fixes: 36c6aadaae86 ("mmc: sdhci-of-arasan: Add support for Intel Keem
>> Bay")
>>
>> Signed-off-by: Muhammad Husaini Zulkifli
>> <[email protected]>
>> Reviewed-by: Adrian Hunter <[email protected]>
>
>Applied for fixes and by adding a stable tag, thanks!
>
>Kind regards
>Uffe
>
>
>> ---
>> drivers/mmc/host/sdhci-of-arasan.c | 3 +++
>> 1 file changed, 3 insertions(+)
>>
>> diff --git a/drivers/mmc/host/sdhci-of-arasan.c
>> b/drivers/mmc/host/sdhci-of-arasan.c
>> index 829ccef87426..012d52e1abee 100644
>> --- a/drivers/mmc/host/sdhci-of-arasan.c
>> +++ b/drivers/mmc/host/sdhci-of-arasan.c
>> @@ -1199,16 +1199,19 @@ static struct sdhci_arasan_of_data
>> sdhci_arasan_versal_data = { static struct sdhci_arasan_of_data
>intel_keembay_emmc_data = {
>> .soc_ctl_map = &intel_keembay_soc_ctl_map,
>> .pdata = &sdhci_keembay_emmc_pdata,
>> + .clk_ops = &arasan_clk_ops,
>> };
>>
>> static struct sdhci_arasan_of_data intel_keembay_sd_data = {
>> .soc_ctl_map = &intel_keembay_soc_ctl_map,
>> .pdata = &sdhci_keembay_sd_pdata,
>> + .clk_ops = &arasan_clk_ops,
>> };
>>
>> static struct sdhci_arasan_of_data intel_keembay_sdio_data = {
>> .soc_ctl_map = &intel_keembay_soc_ctl_map,
>> .pdata = &sdhci_keembay_sdio_pdata,
>> + .clk_ops = &arasan_clk_ops,
>> };
>>
>> static const struct of_device_id sdhci_arasan_of_match[] = {
>> --
>> 2.17.1
>>