All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] ARM: OMAP: Beagle: support MMC gpio_wp differences on xM
@ 2010-08-10 14:40 Robert Nelson
  2010-08-11  6:19 ` Ghorai, Sukumar
  0 siblings, 1 reply; 3+ messages in thread
From: Robert Nelson @ 2010-08-10 14:40 UTC (permalink / raw)
  To: tony; +Cc: linux-omap, Robert Nelson

The omap3630 based BeagleBoard xM uses a MicroSD card slot with
no write protection.

Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
---
 arch/arm/mach-omap2/board-omap3beagle.c |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
index 87969c7..15929be 100644
--- a/arch/arm/mach-omap2/board-omap3beagle.c
+++ b/arch/arm/mach-omap2/board-omap3beagle.c
@@ -185,7 +185,9 @@ static struct gpio_led gpio_leds[];
 static int beagle_twl_gpio_setup(struct device *dev,
 		unsigned gpio, unsigned ngpio)
 {
-	if (system_rev >= 0x20 && system_rev <= 0x34301000) {
+	if (cpu_is_omap3630()) {
+		mmc[0].gpio_wp = -EINVAL;
+	} else if (system_rev >= 0x20 && system_rev <= 0x34301000) {
 		omap_mux_init_gpio(23, OMAP_PIN_INPUT);
 		mmc[0].gpio_wp = 23;
 	} else {
-- 
1.7.0.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* RE: [PATCH] ARM: OMAP: Beagle: support MMC gpio_wp differences on xM
  2010-08-10 14:40 [PATCH] ARM: OMAP: Beagle: support MMC gpio_wp differences on xM Robert Nelson
@ 2010-08-11  6:19 ` Ghorai, Sukumar
  2010-08-11 13:52   ` Robert Nelson
  0 siblings, 1 reply; 3+ messages in thread
From: Ghorai, Sukumar @ 2010-08-11  6:19 UTC (permalink / raw)
  To: Robert Nelson, tony@atomide.com; +Cc: linux-omap@vger.kernel.org



> -----Original Message-----
> From: linux-omap-owner@vger.kernel.org [mailto:linux-omap-
> owner@vger.kernel.org] On Behalf Of Robert Nelson
> Sent: Tuesday, August 10, 2010 8:10 PM
> To: tony@atomide.com
> Cc: linux-omap@vger.kernel.org; Robert Nelson
> Subject: [PATCH] ARM: OMAP: Beagle: support MMC gpio_wp differences on xM
> 
> The omap3630 based BeagleBoard xM uses a MicroSD card slot with
> no write protection.
> 
> Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
> ---
>  arch/arm/mach-omap2/board-omap3beagle.c |    4 +++-
>  1 files changed, 3 insertions(+), 1 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-
> omap2/board-omap3beagle.c
> index 87969c7..15929be 100644
> --- a/arch/arm/mach-omap2/board-omap3beagle.c
> +++ b/arch/arm/mach-omap2/board-omap3beagle.c
> @@ -185,7 +185,9 @@ static struct gpio_led gpio_leds[];
>  static int beagle_twl_gpio_setup(struct device *dev,
>  		unsigned gpio, unsigned ngpio)
>  {
> -	if (system_rev >= 0x20 && system_rev <= 0x34301000) {
> +	if (cpu_is_omap3630()) {
> +		mmc[0].gpio_wp = -EINVAL;
> +	} else if (system_rev >= 0x20 && system_rev <= 0x34301000) {
[Ghorai] it's an old code. But I think we can replace the hardcode value to use omap_rev() as you are changing the same! Or default for all omap34xx?

>  		omap_mux_init_gpio(23, OMAP_PIN_INPUT);
>  		mmc[0].gpio_wp = 23;
>  	} else {
> --
> 1.7.0.4
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] ARM: OMAP: Beagle: support MMC gpio_wp differences on xM
  2010-08-11  6:19 ` Ghorai, Sukumar
@ 2010-08-11 13:52   ` Robert Nelson
  0 siblings, 0 replies; 3+ messages in thread
From: Robert Nelson @ 2010-08-11 13:52 UTC (permalink / raw)
  To: Ghorai, Sukumar; +Cc: tony@atomide.com, linux-omap@vger.kernel.org

>> -     if (system_rev >= 0x20 && system_rev <= 0x34301000) {
>> +     if (cpu_is_omap3630()) {
>> +             mmc[0].gpio_wp = -EINVAL;
>> +     } else if (system_rev >= 0x20 && system_rev <= 0x34301000) {
> [Ghorai] it's an old code. But I think we can replace the hardcode value to use omap_rev() as you are changing the same! Or default for all omap34xx?

It's actually broken too. ;)

My Bx board falls into that "Cx" if..  (and explains why the
write-protect lever on my sd card is ignored on that test system)

Looking at mainline u-boot, where system_rev is defined and passed to
the kernel, it is a constant 0x20...

I'm going to try using gpio pins 171/172/173 which were used to
identify what Beagle Hardware Rev (Ax/Bx, C2/C3, C4, xM)

>
>>               omap_mux_init_gpio(23, OMAP_PIN_INPUT);
>>               mmc[0].gpio_wp = 23;
>>       } else {

Regards,

-- 
Robert Nelson
http://www.rcn-ee.com/
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-11 13:52 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-10 14:40 [PATCH] ARM: OMAP: Beagle: support MMC gpio_wp differences on xM Robert Nelson
2010-08-11  6:19 ` Ghorai, Sukumar
2010-08-11 13:52   ` Robert Nelson

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.