* [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver
@ 2015-07-24 13:53 Michal Simek
2015-07-27 21:55 ` Scott Branden
0 siblings, 1 reply; 3+ messages in thread
From: Michal Simek @ 2015-07-24 13:53 UTC (permalink / raw)
To: linux-kernel, monstr
Cc: Weijun Yang, Andrew Bresticker, Jean Delvare, Srinivas Kandagatla,
linux-mmc, Alim Akhtar, Scott Branden, addy ke, Stephen Boyd,
Chaotian Jing, Georgi Djakov, Kevin Hao, Vincent Yang,
Ulf Hansson
The patch "mmc: sdhci-of-arasan: Call OF parsing for MMC"
(sha1: 16b23787fc709fe60c5d2bd05927b1a3da33d4e9) introduce new
dependency on GPIOLIB which calls mmc_of_parse() ->
mmc_gpiod_request_cd() (slot-gpio.c) which calls devm_gpiod_get_index()
which returns -ENOSYS.
Error log:
sdhci-arasan ff160000.sdhci: parsing dt failed (4294967258)
sdhci-arasan: probe of ff160000.sdhci failed with error -38
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
---
This problem is probably in all others drivers.
This is one way how this can be solved.
Maybe better way is to block return value for cd and wp.
---
drivers/mmc/host/Kconfig | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
index fd9a58e216a5..4b5854759cfc 100644
--- a/drivers/mmc/host/Kconfig
+++ b/drivers/mmc/host/Kconfig
@@ -120,6 +120,7 @@ config MMC_SDHCI_PLTFM
config MMC_SDHCI_OF_ARASAN
tristate "SDHCI OF support for the Arasan SDHCI controllers"
depends on MMC_SDHCI_PLTFM
+ depends on GPIOLIB
depends on OF
help
This selects the Arasan Secure Digital Host Controller Interface
--
2.3.5
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver
2015-07-24 13:53 [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver Michal Simek
@ 2015-07-27 21:55 ` Scott Branden
2015-07-28 8:30 ` Michal Simek
0 siblings, 1 reply; 3+ messages in thread
From: Scott Branden @ 2015-07-27 21:55 UTC (permalink / raw)
To: Michal Simek, linux-kernel, monstr
Cc: Weijun Yang, Andrew Bresticker, Jean Delvare, Srinivas Kandagatla,
linux-mmc, Alim Akhtar, addy ke, Stephen Boyd, Chaotian Jing,
Georgi Djakov, Kevin Hao, Vincent Yang, Ulf Hansson
Hi Michal,
comment in line
On 15-07-24 06:53 AM, Michal Simek wrote:
> The patch "mmc: sdhci-of-arasan: Call OF parsing for MMC"
> (sha1: 16b23787fc709fe60c5d2bd05927b1a3da33d4e9) introduce new
> dependency on GPIOLIB which calls mmc_of_parse() ->
> mmc_gpiod_request_cd() (slot-gpio.c) which calls devm_gpiod_get_index()
> which returns -ENOSYS.
>
> Error log:
> sdhci-arasan ff160000.sdhci: parsing dt failed (4294967258)
> sdhci-arasan: probe of ff160000.sdhci failed with error -38
>
> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
> ---
>
> This problem is probably in all others drivers.
> This is one way how this can be solved.
> Maybe better way is to block return value for cd and wp.
It appears there is gpio code in sdhci.c as well. This uses slot-gpio.
Perhaps a depends on needs to be added to MMC_SDHCI instead?
>
> ---
> drivers/mmc/host/Kconfig | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/drivers/mmc/host/Kconfig b/drivers/mmc/host/Kconfig
> index fd9a58e216a5..4b5854759cfc 100644
> --- a/drivers/mmc/host/Kconfig
> +++ b/drivers/mmc/host/Kconfig
> @@ -120,6 +120,7 @@ config MMC_SDHCI_PLTFM
> config MMC_SDHCI_OF_ARASAN
> tristate "SDHCI OF support for the Arasan SDHCI controllers"
> depends on MMC_SDHCI_PLTFM
> + depends on GPIOLIB
> depends on OF
> help
> This selects the Arasan Secure Digital Host Controller Interface
>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver
2015-07-27 21:55 ` Scott Branden
@ 2015-07-28 8:30 ` Michal Simek
0 siblings, 0 replies; 3+ messages in thread
From: Michal Simek @ 2015-07-28 8:30 UTC (permalink / raw)
To: Scott Branden, Michal Simek, linux-kernel, monstr
Cc: Weijun Yang, Andrew Bresticker, Jean Delvare, Srinivas Kandagatla,
linux-mmc, Alim Akhtar, addy ke, Stephen Boyd, Chaotian Jing,
Georgi Djakov, Kevin Hao, Vincent Yang, Ulf Hansson
On 07/27/2015 11:55 PM, Scott Branden wrote:
> Hi Michal,
>
> comment in line
>
> On 15-07-24 06:53 AM, Michal Simek wrote:
>> The patch "mmc: sdhci-of-arasan: Call OF parsing for MMC"
>> (sha1: 16b23787fc709fe60c5d2bd05927b1a3da33d4e9) introduce new
>> dependency on GPIOLIB which calls mmc_of_parse() ->
>> mmc_gpiod_request_cd() (slot-gpio.c) which calls devm_gpiod_get_index()
>> which returns -ENOSYS.
>>
>> Error log:
>> sdhci-arasan ff160000.sdhci: parsing dt failed (4294967258)
>> sdhci-arasan: probe of ff160000.sdhci failed with error -38
>>
>> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
>> ---
>>
>> This problem is probably in all others drivers.
>> This is one way how this can be solved.
>> Maybe better way is to block return value for cd and wp.
>
> It appears there is gpio code in sdhci.c as well. This uses slot-gpio.
>
> Perhaps a depends on needs to be added to MMC_SDHCI instead?
yes, I know and that's why I did this as RFC. But also not all drivers
calls mmc_of_parse to reach this fault.
Anyway I am happy to send v2 with GPIOLIB dependency for the whole MMC
subsystem.
Thanks,
Michal
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-07-28 8:30 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-24 13:53 [RFC PATCH] mmc: Kconfig: Add dependency on GPIOLIB for Arasan driver Michal Simek
2015-07-27 21:55 ` Scott Branden
2015-07-28 8:30 ` Michal Simek
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).