]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/meta-ti-glsdk.git/blob - recipes-bsp/linux/linux-omap-psp-2.6.32/beagleboard-xmc/0002-omap-Beagle-only-Cx-boards-use-pin-23-for-write-prot.patch
f8512867eed3dd67e0300c73acd8f5297a30079e
[glsdk/meta-ti-glsdk.git] / recipes-bsp / linux / linux-omap-psp-2.6.32 / beagleboard-xmc / 0002-omap-Beagle-only-Cx-boards-use-pin-23-for-write-prot.patch
1 From 34d88746a9aa4aedb67e32579e559cbeb91de20f Mon Sep 17 00:00:00 2001
2 From: Robert Nelson <robertcnelson@gmail.com>
3 Date: Thu, 23 Sep 2010 18:22:48 -0700
4 Subject: [PATCH 02/10] omap: Beagle: only Cx boards use pin 23 for write protect
6 system_rev comes from u-boot and is a constant 0x20, so
7 Bx boards also fall in this 'if' and will get setup with the
8 wrong gpio_wp pin. Switch to using the Beagle revision routine
9 to correcly set pin 23 only for C1/2/3 and C4 Boards. Bx boards
10 will then use the correct default pin setting.
12 Signed-off-by: Robert Nelson <robertcnelson@gmail.com>
13 Acked-by: Jarkko Nikula <jhnikula@gmail.com>
14 Signed-off-by: Tony Lindgren <tony@atomide.com>
15 ---
16  arch/arm/mach-omap2/board-omap3beagle.c |    3 ++-
17  1 files changed, 2 insertions(+), 1 deletions(-)
19 diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c
20 index 7ca2b3b..beb877c 100644
21 --- a/arch/arm/mach-omap2/board-omap3beagle.c
22 +++ b/arch/arm/mach-omap2/board-omap3beagle.c
23 @@ -444,7 +444,8 @@ static struct gpio_led gpio_leds[];
24  static int beagle_twl_gpio_setup(struct device *dev,
25                 unsigned gpio, unsigned ngpio)
26  {
27 -       if (system_rev >= 0x20 && system_rev <= 0x34301000) {
28 +       if ((omap3_beagle_get_rev() == OMAP3BEAGLE_BOARD_C1_3) ||
29 +               (omap3_beagle_get_rev() == OMAP3BEAGLE_BOARD_C4)) {
30                 omap_mux_init_gpio(23, OMAP_PIN_INPUT);
31                 mmc[0].gpio_wp = 23;
32         } else {
33 -- 
34 1.6.6.1