RE: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-12 Thread Varadarajan, Charulatha
Tony/Kevin, +{ + if (cpu_is_omap242x()) + gpio_bank_count = 4; + else if (cpu_is_omap243x()) + gpio_bank_count = 5; + else if (cpu_is_omap34xx() || cpu_is_omap44xx()) + gpio_bank_count = OMAP34XX_NR_GPIOS; + + if (gpio_init()) + return

Re: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-12 Thread Kevin Hilman
Varadarajan, Charulatha ch...@ti.com writes: Tony/Kevin, +{ +if (cpu_is_omap242x()) +gpio_bank_count = 4; +else if (cpu_is_omap243x()) +gpio_bank_count = 5; +else if (cpu_is_omap34xx() || cpu_is_omap44xx()) +

RE: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-11 Thread Varadarajan, Charulatha
Kevin, -Original Message- From: Kevin Hilman [mailto:khil...@deeprootsystems.com] Sent: Saturday, May 01, 2010 4:33 AM To: Varadarajan, Charulatha Cc: linux-omap@vger.kernel.org; Nayak, Rajendra; p...@pwsan.com; t...@atomide.com Subject: Re: [PATCH 5/9] OMAP:GPIO: Introduce

Re: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-11 Thread Kevin Hilman
: Re: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO Charulatha V ch...@ti.com writes: This patch adds support for handling GPIO as a HWMOD adapted platform device for OMAP2PLUS chips. Signed-off-by: Charulatha V ch...@ti.com --- arch/arm/mach

RE: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-07 Thread Varadarajan, Charulatha
-Original Message- From: Tony Lindgren [mailto:t...@atomide.com] Sent: Thursday, May 06, 2010 4:02 AM To: Varadarajan, Charulatha Cc: linux-omap@vger.kernel.org; Nayak, Rajendra; p...@pwsan.com; khil...@deeprootsystems.com Subject: Re: [PATCH 5/9] OMAP:GPIO: Introduce support

Re: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-05 Thread Tony Lindgren
* Charulatha V ch...@ti.com [100422 08:50]: This patch adds support for handling GPIO as a HWMOD adapted platform device for OMAP2PLUS chips. snip +int __init gpio_init(void) +{ + int i = 0; + static int is_early_device = true; + + do { + struct omap_device *od;

RE: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-05-04 Thread Varadarajan, Charulatha
-Original Message- From: Kevin Hilman [mailto:khil...@deeprootsystems.com] Sent: Saturday, May 01, 2010 4:33 AM To: Varadarajan, Charulatha Cc: linux-omap@vger.kernel.org; Nayak, Rajendra; p...@pwsan.com; t...@atomide.com Subject: Re: [PATCH 5/9] OMAP:GPIO: Introduce support

Re: [PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-04-30 Thread Kevin Hilman
Charulatha V ch...@ti.com writes: This patch adds support for handling GPIO as a HWMOD adapted platform device for OMAP2PLUS chips. Signed-off-by: Charulatha V ch...@ti.com --- arch/arm/mach-omap2/gpio.c | 101 1 files changed, 101

[PATCH 5/9] OMAP:GPIO: Introduce support for OMAP2PLUS chip specific GPIO

2010-04-22 Thread Charulatha V
This patch adds support for handling GPIO as a HWMOD adapted platform device for OMAP2PLUS chips. Signed-off-by: Charulatha V ch...@ti.com --- arch/arm/mach-omap2/gpio.c | 101 1 files changed, 101 insertions(+), 0 deletions(-) create mode 100644