2022-03-31 11:59:04

by Christian Loehle

[permalink] [raw]
Subject: [PATCH 1/2] mmc: mmc_spi: parse speed mode options

Since SD and MMC Highspeed modes are also valid for SPI let's parse
them too.

Signed-off-by: Christian Loehle <[email protected]>
---
drivers/mmc/host/of_mmc_spi.c | 4 ++++
1 file changed, 4 insertions(+)

diff --git a/drivers/mmc/host/of_mmc_spi.c b/drivers/mmc/host/of_mmc_spi.c
index 3629550528b6..bf54776fb26c 100644
--- a/drivers/mmc/host/of_mmc_spi.c
+++ b/drivers/mmc/host/of_mmc_spi.c
@@ -70,6 +70,10 @@ struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi)
} else {
oms->pdata.caps |= MMC_CAP_NEEDS_POLL;
}
+ if (device_property_read_bool(dev, "cap-sd-highspeed"))
+ oms->pdata.caps |= MMC_CAP_SD_HIGHSPEED;
+ if (device_property_read_bool(dev, "cap-mmc-highspeed"))
+ oms->pdata.caps |= MMC_CAP_MMC_HIGHSPEED;

dev->platform_data = &oms->pdata;
return dev->platform_data;
--
2.34.1
Hyperstone GmbH | Reichenaustr. 39a | 78467 Konstanz
Managing Director: Dr. Jan Peter Berns.
Commercial register of local courts: Freiburg HRB381782


2022-03-31 14:04:28

by Christian Loehle

[permalink] [raw]
Subject: [PATCH 2/2] mmc: mmc_spi: enable Highspeed for above 25MHz

Any setup supporting more than 25MHz is able to utilize
highspeed, so enable it even when not explicitly specified.

Signed-off-by: Christian Loehle <[email protected]>
---
drivers/mmc/host/mmc_spi.c | 3 +++
1 file changed, 3 insertions(+)

diff --git a/drivers/mmc/host/mmc_spi.c b/drivers/mmc/host/mmc_spi.c
index 106dd204b1a7..0a74c2f55542 100644
--- a/drivers/mmc/host/mmc_spi.c
+++ b/drivers/mmc/host/mmc_spi.c
@@ -1378,6 +1378,9 @@ static int mmc_spi_probe(struct spi_device *spi)
mmc->f_min = 400000;
mmc->f_max = spi->max_speed_hz;

+ if (mmc->f_max > 25000000)
+ mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED;
+
host = mmc_priv(mmc);
host->mmc = mmc;
host->spi = spi;
--
2.34.1
Hyperstone GmbH | Reichenaustr. 39a | 78467 Konstanz
Managing Director: Dr. Jan Peter Berns.
Commercial register of local courts: Freiburg HRB381782

2022-03-31 19:13:15

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH 2/2] mmc: mmc_spi: enable Highspeed for above 25MHz

On Thu, Mar 31, 2022 at 07:29:37AM +0000, Christian L?hle wrote:
> Any setup supporting more than 25MHz is able to utilize
> highspeed, so enable it even when not explicitly specified.

I'm not sure about this. I prefer to be on the safer side, i.e.
follow only what is supplied by firmware (ACPI / DT).

--
With Best Regards,
Andy Shevchenko


2022-04-01 09:36:49

by Andy Shevchenko

[permalink] [raw]
Subject: Re: [PATCH 1/2] mmc: mmc_spi: parse speed mode options

On Thu, Mar 31, 2022 at 07:28:47AM +0000, Christian L?hle wrote:
> Since SD and MMC Highspeed modes are also valid for SPI let's parse
> them too.

Makes sense to me.
Reviewed-by: Andy Shevchenko <[email protected]>

> Signed-off-by: Christian Loehle <[email protected]>
> ---
> drivers/mmc/host/of_mmc_spi.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/mmc/host/of_mmc_spi.c b/drivers/mmc/host/of_mmc_spi.c
> index 3629550528b6..bf54776fb26c 100644
> --- a/drivers/mmc/host/of_mmc_spi.c
> +++ b/drivers/mmc/host/of_mmc_spi.c
> @@ -70,6 +70,10 @@ struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi)
> } else {
> oms->pdata.caps |= MMC_CAP_NEEDS_POLL;
> }
> + if (device_property_read_bool(dev, "cap-sd-highspeed"))
> + oms->pdata.caps |= MMC_CAP_SD_HIGHSPEED;
> + if (device_property_read_bool(dev, "cap-mmc-highspeed"))
> + oms->pdata.caps |= MMC_CAP_MMC_HIGHSPEED;
>
> dev->platform_data = &oms->pdata;
> return dev->platform_data;
> --
> 2.34.1
> Hyperstone GmbH | Reichenaustr. 39a | 78467 Konstanz
> Managing Director: Dr. Jan Peter Berns.
> Commercial register of local courts: Freiburg HRB381782
>

--
With Best Regards,
Andy Shevchenko


2022-04-06 01:25:45

by Christian Loehle

[permalink] [raw]
Subject: Re: [PATCH 2/2] mmc: mmc_spi: enable Highspeed for above 25MHz

Understood and sure, then I'll take 2/2 back.
@Ulf, would you like a v2 just containing 1/2 or is it fine like this?




From: [email protected] <[email protected]>
Sent: Thursday, March 31, 2022 4:07 PM
To: Christian L?hle
Cc: Ulf Hansson; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]
Subject: Re: [PATCH 2/2] mmc: mmc_spi: enable Highspeed for above 25MHz
?
On Thu, Mar 31, 2022 at 07:29:37AM +0000, Christian L?hle wrote:
> Any setup supporting more than 25MHz is able to utilize
> highspeed, so enable it even when not explicitly specified.

I'm not sure about this. I prefer to be on the safer side, i.e.
follow only what is supplied by firmware (ACPI / DT).

--
With Best Regards,
Andy Shevchenko


=
Hyperstone GmbH | Reichenaustr. 39a | 78467 Konstanz
Managing Director: Dr. Jan Peter Berns.
Commercial register of local courts: Freiburg HRB381782

2022-04-06 12:40:35

by Ulf Hansson

[permalink] [raw]
Subject: Re: [PATCH 2/2] mmc: mmc_spi: enable Highspeed for above 25MHz

On Tue, 5 Apr 2022 at 11:20, Christian Löhle <[email protected]> wrote:
>
> Understood and sure, then I'll take 2/2 back.
> @Ulf, would you like a v2 just containing 1/2 or is it fine like this?

It's fine as is, I will pick up patch1 very soon.

Kind regards
Uffe

>
>
>
>
> From: [email protected] <[email protected]>
> Sent: Thursday, March 31, 2022 4:07 PM
> To: Christian Löhle
> Cc: Ulf Hansson; [email protected]; [email protected]; [email protected]; [email protected]; [email protected]
> Subject: Re: [PATCH 2/2] mmc: mmc_spi: enable Highspeed for above 25MHz
>
> On Thu, Mar 31, 2022 at 07:29:37AM +0000, Christian Löhle wrote:
> > Any setup supporting more than 25MHz is able to utilize
> > highspeed, so enable it even when not explicitly specified.
>
> I'm not sure about this. I prefer to be on the safer side, i.e.
> follow only what is supplied by firmware (ACPI / DT).
>
> --
> With Best Regards,
> Andy Shevchenko
>
>
> =
> Hyperstone GmbH | Reichenaustr. 39a | 78467 Konstanz
> Managing Director: Dr. Jan Peter Berns.
> Commercial register of local courts: Freiburg HRB381782
>

2022-04-06 17:08:27

by Ulf Hansson

[permalink] [raw]
Subject: Re: [PATCH 1/2] mmc: mmc_spi: parse speed mode options

On Thu, 31 Mar 2022 at 09:28, Christian Löhle <[email protected]> wrote:
>
> Since SD and MMC Highspeed modes are also valid for SPI let's parse
> them too.
>
> Signed-off-by: Christian Loehle <[email protected]>

Applied for next, thanks!

Kind regards
Uffe


> ---
> drivers/mmc/host/of_mmc_spi.c | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/drivers/mmc/host/of_mmc_spi.c b/drivers/mmc/host/of_mmc_spi.c
> index 3629550528b6..bf54776fb26c 100644
> --- a/drivers/mmc/host/of_mmc_spi.c
> +++ b/drivers/mmc/host/of_mmc_spi.c
> @@ -70,6 +70,10 @@ struct mmc_spi_platform_data *mmc_spi_get_pdata(struct spi_device *spi)
> } else {
> oms->pdata.caps |= MMC_CAP_NEEDS_POLL;
> }
> + if (device_property_read_bool(dev, "cap-sd-highspeed"))
> + oms->pdata.caps |= MMC_CAP_SD_HIGHSPEED;
> + if (device_property_read_bool(dev, "cap-mmc-highspeed"))
> + oms->pdata.caps |= MMC_CAP_MMC_HIGHSPEED;
>
> dev->platform_data = &oms->pdata;
> return dev->platform_data;
> --
> 2.34.1
> Hyperstone GmbH | Reichenaustr. 39a | 78467 Konstanz
> Managing Director: Dr. Jan Peter Berns.
> Commercial register of local courts: Freiburg HRB381782
>