All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] Mux configuration for AM3517 TouchScreen support
@ 2009-11-19 14:46 hvaibhav
  2009-11-23 17:53 ` Tony Lindgren
  0 siblings, 1 reply; 3+ messages in thread
From: hvaibhav @ 2009-11-19 14:46 UTC (permalink / raw)
  To: linux-input; +Cc: linux-omap, Vaibhav Hiremath

From: Vaibhav Hiremath <hvaibhav@ti.com>


Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
---
 arch/arm/mach-omap2/mux.c             |    3 +++
 arch/arm/plat-omap/include/plat/mux.h |    1 +
 2 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c
index c18a94e..f64ce14 100644
--- a/arch/arm/mach-omap2/mux.c
+++ b/arch/arm/mach-omap2/mux.c
@@ -566,6 +566,9 @@ MUX_CFG_34XX("AF9_34XX_GPIO22", 0x5ec,
 	OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
 MUX_CFG_34XX("U3_34XX_GPIO61", 0x0c8,
 	OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
+ /*Touch-screen*/
+ MUX_CFG_34XX("U1_34XX_GPIO65", 0x0d2,
+		OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
 };
 
 #define OMAP34XX_PINS_SZ	ARRAY_SIZE(omap34xx_pins)
diff --git a/arch/arm/plat-omap/include/plat/mux.h b/arch/arm/plat-omap/include/plat/mux.h
index ba77de6..244afee 100644
--- a/arch/arm/plat-omap/include/plat/mux.h
+++ b/arch/arm/plat-omap/include/plat/mux.h
@@ -854,6 +854,7 @@ enum omap34xx_index {
 	AH14_34XX_GPIO21,
 	AF9_34XX_GPIO22,
 	U3_34XX_GPIO61,
+	U1_34XX_GPIO65,
 };
 
 struct omap_mux_cfg {
-- 
1.6.2.4


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

* Re: [PATCH 1/3] Mux configuration for AM3517 TouchScreen support
  2009-11-19 14:46 [PATCH 1/3] Mux configuration for AM3517 TouchScreen support hvaibhav
@ 2009-11-23 17:53 ` Tony Lindgren
  2009-11-24 14:15   ` Hiremath, Vaibhav
  0 siblings, 1 reply; 3+ messages in thread
From: Tony Lindgren @ 2009-11-23 17:53 UTC (permalink / raw)
  To: hvaibhav; +Cc: linux-input, linux-omap

* hvaibhav@ti.com <hvaibhav@ti.com> [091119 06:45]:
> From: Vaibhav Hiremath <hvaibhav@ti.com>
> 
> 
> Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
> ---
>  arch/arm/mach-omap2/mux.c             |    3 +++
>  arch/arm/plat-omap/include/plat/mux.h |    1 +
>  2 files changed, 4 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c
> index c18a94e..f64ce14 100644
> --- a/arch/arm/mach-omap2/mux.c
> +++ b/arch/arm/mach-omap2/mux.c
> @@ -566,6 +566,9 @@ MUX_CFG_34XX("AF9_34XX_GPIO22", 0x5ec,
>  	OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
>  MUX_CFG_34XX("U3_34XX_GPIO61", 0x0c8,
>  	OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
> + /*Touch-screen*/
> + MUX_CFG_34XX("U1_34XX_GPIO65", 0x0d2,
> +		OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
>  };
>  
>  #define OMAP34XX_PINS_SZ	ARRAY_SIZE(omap34xx_pins)
> diff --git a/arch/arm/plat-omap/include/plat/mux.h b/arch/arm/plat-omap/include/plat/mux.h
> index ba77de6..244afee 100644
> --- a/arch/arm/plat-omap/include/plat/mux.h
> +++ b/arch/arm/plat-omap/include/plat/mux.h
> @@ -854,6 +854,7 @@ enum omap34xx_index {
>  	AH14_34XX_GPIO21,
>  	AF9_34XX_GPIO22,
>  	U3_34XX_GPIO61,
> +	U1_34XX_GPIO65,
>  };
>  
>  struct omap_mux_cfg {

Let's put this on hold until we have the new mux framework
up and running. This should not stop getting in the driver
patch integrated.

Regards,

Tony

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

* RE: [PATCH 1/3] Mux configuration for AM3517 TouchScreen support
  2009-11-23 17:53 ` Tony Lindgren
@ 2009-11-24 14:15   ` Hiremath, Vaibhav
  0 siblings, 0 replies; 3+ messages in thread
From: Hiremath, Vaibhav @ 2009-11-24 14:15 UTC (permalink / raw)
  To: Tony Lindgren; +Cc: linux-input, linux-omap


> -----Original Message-----
> From: Tony Lindgren [mailto:tony@atomide.com]
> Sent: Monday, November 23, 2009 11:23 PM
> To: Hiremath, Vaibhav
> Cc: linux-input@vger.kernel.org; linux-omap@vger.kernel.org
> Subject: Re: [PATCH 1/3] Mux configuration for AM3517 TouchScreen
> support
> 
> * hvaibhav@ti.com <hvaibhav@ti.com> [091119 06:45]:
> > From: Vaibhav Hiremath <hvaibhav@ti.com>
> >
> >
> > Signed-off-by: Vaibhav Hiremath <hvaibhav@ti.com>
> > ---
> >  arch/arm/mach-omap2/mux.c             |    3 +++
> >  arch/arm/plat-omap/include/plat/mux.h |    1 +
> >  2 files changed, 4 insertions(+), 0 deletions(-)
> >
> > diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c
> > index c18a94e..f64ce14 100644
> > --- a/arch/arm/mach-omap2/mux.c
> > +++ b/arch/arm/mach-omap2/mux.c
> > @@ -566,6 +566,9 @@ MUX_CFG_34XX("AF9_34XX_GPIO22", 0x5ec,
> >  	OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
> >  MUX_CFG_34XX("U3_34XX_GPIO61", 0x0c8,
> >  	OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
> > + /*Touch-screen*/
> > + MUX_CFG_34XX("U1_34XX_GPIO65", 0x0d2,
> > +		OMAP34XX_MUX_MODE4 | OMAP34XX_PIN_INPUT_PULLUP)
> >  };
> >
> >  #define OMAP34XX_PINS_SZ	ARRAY_SIZE(omap34xx_pins)
> > diff --git a/arch/arm/plat-omap/include/plat/mux.h
> b/arch/arm/plat-omap/include/plat/mux.h
> > index ba77de6..244afee 100644
> > --- a/arch/arm/plat-omap/include/plat/mux.h
> > +++ b/arch/arm/plat-omap/include/plat/mux.h
> > @@ -854,6 +854,7 @@ enum omap34xx_index {
> >  	AH14_34XX_GPIO21,
> >  	AF9_34XX_GPIO22,
> >  	U3_34XX_GPIO61,
> > +	U1_34XX_GPIO65,
> >  };
> >
> >  struct omap_mux_cfg {
> 
> Let's put this on hold until we have the new mux framework
> up and running. This should not stop getting in the driver
> patch integrated.
> 
[Hiremath, Vaibhav] Ok. 

Thanks,
Vaibhav

> Regards,
> 
> Tony

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

end of thread, other threads:[~2009-11-24 14:15 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-11-19 14:46 [PATCH 1/3] Mux configuration for AM3517 TouchScreen support hvaibhav
2009-11-23 17:53 ` Tony Lindgren
2009-11-24 14:15   ` Hiremath, Vaibhav

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.