[PATCH 06/13 v3] OMAP: UART: use non-locking versions of hwmod enable/idle functions

2010-09-27 Thread Govindraj.R
From: Kevin Hilman khil...@deeprootsystems.com Since the UART enable/idle is done during the idle path (with interrupts disabled), use the non-locking versions of the hwmod enable/idle functions. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r

[PATCH 07/13 v3] OMAP clock: Add uart4_ick/fck definitions for 3630

2010-09-27 Thread Govindraj.R
This is only valid for omap 36xx family of chips. Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/clock3xxx_data.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach

[PATCH 08/13 v3] OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs

2010-09-27 Thread Govindraj.R
To standarize among other uarts (1 to 3), we shall now: - Enable uart4 autodile bit. - Enable uart4 wakeup in PER. - Allow uart4 to wakeup the MPU. Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/cm-regbits-34xx.h

[PATCH 09/13 v3] OMAP3: PM: Add prepare idle and resume idle call for uart4

2010-09-27 Thread Govindraj.R
Add prepare idle and resume idle call for uart4 used by 3630. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/pm34xx.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/pm34xx.c b

[PATCH 10/13 v3] OMAP3: serial: Fix uart4 handling for 3630

2010-09-27 Thread Govindraj.R
This patch makes the following: - Adds missing wakeup padding register handling. - Fixes a hardcode to use PER module ONLY on UART3. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch

[PATCH 12/13 v3] OMAP: SERIAL: Enable omap-serial driver in Kconfig

2010-09-27 Thread Govindraj.R
which basically uses a Quad uart placed on the debug board connected through a gpio line. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/Kconfig | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git

[PATCH 11/13 v3] serial: Add OMAP high-speed UART driver

2010-09-27 Thread Govindraj.R
control configuration with this driver as required for the omap-platform. This patch involves only the core driver and its dependent. Cc: Tony Lindgren t...@atomide.com Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/plat-omap

[PATCH 13/13 v3] OMAP3: SERIAL: Initialize all omap-uarts for zoom boards

2010-09-27 Thread Govindraj.R
Signed-off-by: Anand Gadiyar gadi...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/board-3630sdp.c |1 - arch/arm/mach-omap2/board-zoom-peripherals.c |1 + 2 files changed, 1 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/board

[PATCH 00/13 v2] OMAP: Serial: Add omap-serial driver with platform support

2010-09-22 Thread Govindraj.R
-archive.com/linux-omap@vger.kernel.org/msg35106.html 2) Add wk_st, padconf etc for uart4 http://www.mail-archive.com/linux-omap@vger.kernel.org/msg35105.html Benoit Cousson (1): OMAP4: UART: Add uart1-4 hwmods data for omap4 Govindraj.R (8): OMAP2: UART: remove set_uart_globals. OMAP

[PATCH 01/13 v2] OMAP4: UART: Add uart1-4 hwmods data for omap4

2010-09-22 Thread Govindraj.R
From: Benoit Cousson b-cous...@ti.com Add uart1-4 hwmod data into omap4_hwmod data file. Signed-off-by: Benoit Cousson b-cous...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 235 1 files changed, 235

[PATCH 02/13 v2] OMAP2/3: UART: add omap_hwmod data for UARTs 1-4

2010-09-22 Thread Govindraj.R
From: Kevin Hilman khil...@deeprootsystems.com This patch adds omap_hwmod data for UARTs on OMAP2 and OMAP3 platforms. UART4 support for 3630 and OMAP2 hwmod data added by Govindraj R. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com

[PATCH 03/13 v2] OMAP: UART: omap_device converions, remove implicit 8520 assumptions

2010-09-22 Thread Govindraj.R
-by: Govindraj.R govindraj.r...@ti.com Signed-off-by: Kevin Hilman khil...@ti.com --- arch/arm/mach-omap2/serial.c | 529 +- 1 files changed, 260 insertions(+), 269 deletions(-) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 566e991

[PATCH 04/13 v2] OMAP2: UART: remove set_uart_globals

2010-09-22 Thread Govindraj.R
Remove set_uart_globals function as this will not be needed as physical address for uarts will be taken from hwmod data file. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c |5 - arch/arm/plat

[PATCH 05/13 v2] OMAP: UART: don't do automatic bus-level suspend/resume

2010-09-22 Thread Govindraj.R
with suspend. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c |8 ++-- 1 files changed, 6 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index

[PATCH 06/13 v2] OMAP: UART: use non-locking versions of hwmod enable/idle functions

2010-09-22 Thread Govindraj.R
From: Kevin Hilman khil...@deeprootsystems.com Since the UART enable/idle is done during the idle path (with interrupts disabled), use the non-locking versions of the hwmod enable/idle functions. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r

[PATCH 08/13 v2] OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs

2010-09-22 Thread Govindraj.R
To standarize among other uarts (1 to 3), we shall now: - Enable uart4 autodile bit. - Enable uart4 wakeup in PER. - Allow uart4 to wakeup the MPU. Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/cm-regbits-34xx.h

[PATCH 09/13 v2] OMAP3: PM: Add prepare idle and resume idle call for uart4

2010-09-22 Thread Govindraj.R
Add prepare idle and resume idle call for uart4 used by 3630. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/pm34xx.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/pm34xx.c b

[PATCH 10/13 v2] OMAP3: serial: Fix uart4 handling for 3630

2010-09-22 Thread Govindraj.R
This patch makes the following: - Adds missing wakeup padding register handling. - Fixes a hardcode to use PER module ONLY on UART3. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch

[PATCH 11/13 v2] serial: Add OMAP high-speed UART driver

2010-09-22 Thread Govindraj.R
control configuration with this driver as required for the omap-platform. This patch involves only the core driver and its dependent. Cc: Tony Lindgren t...@atomide.com Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/plat-omap

[PATCH 12/13 v2] OMAP: SERIAL: Enable omap-serial driver in Kconfig

2010-09-22 Thread Govindraj.R
which basically uses a Quad uart placed on the debug board connected through a gpio line. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/Kconfig | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git

[PATCH 13/13 v2] OMAP3: SERIAL: Initialize all omap-uarts for zoom boards

2010-09-22 Thread Govindraj.R
Iniatize all omap-uarts for zoom boards. Remove serial_init from 3630sdp board init as zoom_peripheral_init does the same. Signed-off-by: Kevin Hilman khil...@ti.com Signed-off-by: Anand Gadiyar gadi...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/board

[PATCH 01/11] OMAP4: UART: Add uart1-4 hwmods data for omap4

2010-09-17 Thread Govindraj.R
From: Benoit Cousson b-cous...@ti.com Add uart1-4 hwmod data into omap4_hwmod data file. Signed-off-by: Benoit Cousson b-cous...@ti.com --- arch/arm/mach-omap2/omap_hwmod_44xx_data.c | 235 1 files changed, 235 insertions(+), 0 deletions(-) diff --git

[PATCH 02/11] OMAP2/3: UART: add omap_hwmod data for UARTs 1-4

2010-09-17 Thread Govindraj.R
From: Kevin Hilman khil...@deeprootsystems.com This patch adds omap_hwmod data for UARTs on OMAP2 and OMAP3 platforms. UART4 support for 3630 and OMAP2 hwmod data added by Govindraj R. Cc: Govindraj.R govindraj.r...@ti.com Signed-off-by: Kevin Hilman khil...@deeprootsystems.com --- arch/arm

[PATCH 03/11] OMAP: UART: omap_device converions, remove implicit 8520 assumptions

2010-09-17 Thread Govindraj.R
-by: Govindraj.R govindraj.r...@ti.com Signed-off-by: Kevin Hilman khil...@ti.com --- arch/arm/mach-omap2/serial.c | 528 +- 1 files changed, 259 insertions(+), 269 deletions(-) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index 566e991

[PATCH 04/11] OMAP2: UART: remove set_uart_globals

2010-09-17 Thread Govindraj.R
Remove set_uart_globals function as this will not be needed as physical address for uarts will be taken from hwmod data file. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c |5 - arch/arm/plat

[PATCH 05/11] OMAP: UART: don't do automatic bus-level suspend/resume

2010-09-17 Thread Govindraj.R
From: Kevin Hilman khil...@deeprootsystems.com Since the omap_device for UART is currently managed inside the idle path itself, don't let the bus-level code suspend/resume the UART. To prevent this, pm_runtime_get() is used when preparing for suspend and pm_runtime_put() is used when finished

[PATCH 06/11] OMAP: UART: use non-locking versions of hwmod enable/idle functions

2010-09-17 Thread Govindraj.R
From: Kevin Hilman khil...@deeprootsystems.com Since the UART enable/idle is done during the idle path (with interrupts disabled), use the non-locking versions of the hwmod enable/idle functions. Signed-off-by: Kevin Hilman khil...@deeprootsystems.com --- arch/arm/mach-omap2/serial.c | 23

[PATCH 07/11] OMAP clock: Add uart4_ick/fck definitions for 3630

2010-09-17 Thread Govindraj.R
This is only valid for omap 36xx family of chips. Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/clock3xxx_data.c | 22 ++ 1 files changed, 22 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach

[PATCH 10/11] serial: Add OMAP high-speed UART driver

2010-09-17 Thread Govindraj.R
control configuration with this driver as required for the omap-platform. This patch involves only the core driver and its dependent. Cc: Tony Lindgren t...@atomide.com Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/plat-omap

[PATCH 11/11] OMAP: SERIAL: Enable omap-serial driver in Kconfig

2010-09-17 Thread Govindraj.R
which basically uses a Quad uart placed on the debug board connected through a gpio line. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/Kconfig | 11 --- 1 files changed, 8 insertions(+), 3 deletions(-) diff --git

[PATCH 08/11] OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs

2010-09-17 Thread Govindraj.R
To standarize among other uarts (1 to 3), we shall now: - Enable uart4 autodile bit. - Enable uart4 wakeup in PER. - Allow uart4 to wakeup the MPU. Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/cm-regbits-34xx.h

[PATCH 09/11] OMAP3: PM: Add prepare idle and resume idle call for uart4

2010-09-17 Thread Govindraj.R
Add prepare idle and resume idle call for uart4 used by 3630. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/pm34xx.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/pm34xx.c b

[PATCH 0/2 v3] OMAP: McSPI: Add Fifo Mode support

2010-08-13 Thread Govindraj.R
Update platform data and fifo mode support. v2: http://www.mail-archive.com/linux-omap@vger.kernel.org/msg23562.html Hemanth V (2): OMAP-McSPI: Update platform McSPI files OMAP-McSPI :Adds support for FIFO and auto chip select mode arch/arm/mach-omap2/devices.c |5 +

[PATCH 1/2 v3] OMAP-McSPI: Update platform McSPI files

2010-08-13 Thread Govindraj.R
From: Hemanth V heman...@ti.com This patch updates platform files for fifo, slave support. Cc: Grant Likely grant.lik...@secretlab.ca Signed-off-by: Hemanth V heman...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2

[PATCH 2/2 v3] OMAP-McSPI :Adds support for FIFO and auto chip select mode

2010-08-13 Thread Govindraj.R
size that is used for read/write. Auto chip select mode can be enabled by setting force_cs_mode to zero Cc: Tony Lindgren t...@atomide.com Cc: Grant Likely grant.lik...@secretlab.ca Signed-off-by: Hemanth V heman...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- drivers/spi

[pm-wip/uart][PATCH 0/5 v2] Serial HWMOD updation and uart4 support for 3630

2010-06-16 Thread Govindraj.R
hwmod to avoid hwmod lookup using name string. Govindraj.R (5): OMAP clock: Add uart4_ick/fck definitions for 3630 OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs OMAP3: serial: Fix uart4 handling for 3630 OMAP3: PM: Add prepare idle and resume idle call for uart4 Serial

[pm-wip/uart][PATCH 1/5 v2] OMAP clock: Add uart4_ick/fck definitions for 3630

2010-06-16 Thread Govindraj.R
Add uart4 clock data. This is only valid for omap 36xx family of chips. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/clock3xxx_data.c | 22 ++ 1 files

[pm-wip/uart][PATCH 2/5 v2] OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs

2010-06-16 Thread Govindraj.R
To standarize among other uarts (1 to 3), we shall now: - Enable uart4 autodile bit. - Enable uart4 wakeup in PER. - Allow uart4 to wakeup the MPU. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com

[pm-wip/uart][PATCH 3/5 v2] OMAP3: serial: Fix uart4 handling for 3630

2010-06-16 Thread Govindraj.R
we are in right mux mode before accesing any padconf register. So ensure right mux mode for uarti padconf access. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c

[pm-wip/uart][PATCH 4/5 v2] OMAP3: PM: Add prepare idle and resume idle call for uart4

2010-06-16 Thread Govindraj.R
Add prepare idle and resume idle call for uart4 used by 3630. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/pm34xx.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/pm34xx.c b

[pm-wip/uart][PATCH 5/5 v2] Serial: Avoid using hwmod lookup using name string

2010-06-16 Thread Govindraj.R
Avoid using hwmod lookup using name string rather retreive port info using the hwmod class interface. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c | 71 ++--- 1 files changed

[PATCH] omap: mux: Add api to retrieve padconf offset based on muxname

2010-06-14 Thread Govindraj.R
Adds a padconf offset retrieval api which will get us the padconf offset based on muxname provided which can be later used with omap_ctrl_writew, omap_ctrl_readw calls for remuxing signals. Cc: Tony Lindgren t...@atomide.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- Patch is based

[pm-wip/uart][PATCH 0/4] Serial HWMOD updation and uart4 support for 3630

2010-06-04 Thread Govindraj.R
Patch series is based on remotes/origin/pm-wip/uart branch from Kevin's PM tree. 1.) Add support for UART4 for 3630. 2.) Modify Serial hwmod to avoid hwmod lookup using name string. Govindraj.R (4): OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs OMAP3: serial: Fix uart4

[pm-wip/uart][PATCH 1/4] OMAP3: PRCM: Consider UART4 for 3630 chip in prcm_setup_regs

2010-06-04 Thread Govindraj.R
To standarize among other uarts (1 to 3), we shall now: - Enable uart4 autodile bit. - Enable uart4 wakeup in PER. - Allow uart4 to wakeup the MPU. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Sergio Aguirre saagui...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com

[pm-wip/uart][PATCH 2/4] OMAP3: serial: Fix uart4 handling for 3630

2010-06-04 Thread Govindraj.R
...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c | 30 +- 1 files changed, 29 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index da9fee6..70a9089 100644 --- a/arch/arm

[pm-wip/uart][PATCH 3/4] Serial: Avoid using hwmod lookup using name string

2010-06-04 Thread Govindraj.R
Avoid using hwmod lookup using name string rather retreive port info using the hwmod class interface. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c | 76 -- 1 files changed

[pm-wip/uart][PATCH 4/4] OMAP3: PM: Add prepare idle and resume idle call for uart4

2010-06-04 Thread Govindraj.R
Add prepare idle and resume idle call for uart4 used by 3630. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/pm34xx.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/pm34xx.c b

[PATCH v3] serial: Add OMAP high-speed UART driver

2010-06-04 Thread Govindraj.R
control configuration with this driver as required for the omap-platform. This patch involves only the core driver and its dependent. Cc: Tony Lindgren t...@atomide.com Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- Reference to changes

[PATCH v2] serial: Add OMAP high-speed UART driver

2010-05-24 Thread Govindraj.R
control configuration with this driver as required for the omap-platform.This patch involves only the core driver and its dependent. Cc: Tony Lindgren t...@atomide.com Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- Platform data support

[pm-wip/uart][PATCH] Serial: Avoid using hwmod lookup using name string.

2010-05-21 Thread Govindraj.R
Avoid using hwmod lookup using name string rather retreive port info using the hwmod class interface. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- This patch is based on top the series posted earlier http://marc.info/?l=linux-omapm

[pm-wip/uart][PATCH 0/6]: Serial HWMOD updation and cleanup.

2010-05-20 Thread Govindraj.R
Patch series is based on remotes/origin/pm-wip/govindraj branch from Kevin's PM tree. Patches are tested with 3430SDP. Have updated 2420/2430 hwmod data files it would be great if some one can test the same. Govindraj.R (6): Serial: Clean up set_uart_globals. Serial: Add UART4 hwmod data

[pm-wip/uart][PATCH 1/6] Serial: Clean up set_uart_globals.

2010-05-20 Thread Govindraj.R
Remove set_uart_globals function as this will not be needed as physical address for uarts will be taken from hwmod data file. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c |5 - arch/arm/plat

[pm-wip/uart][PATCH 2/6] Serial: Add UART4 hwmod data.

2010-05-20 Thread Govindraj.R
Introduce UART4 hwmod data for OMAP3630 Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 54 arch/arm/mach-omap2/prcm-common.h |2 + arch/arm/plat-omap

[pm-wip/uart][PATCH 3/6] Serial: Modify OMAP3 hwmod data file with uart data.

2010-05-20 Thread Govindraj.R
-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | 12 ++-- arch/arm/mach-omap2/serial.c |2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2

[pm-wip/uart][PATCH 4/6] Serial: Add UART hwmod data for 2420.

2010-05-20 Thread Govindraj.R
Add UART HWMOD data into 2420 hmwod data file. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/omap_hwmod_2420_data.c | 184 1 files changed, 184 insertions(+), 0 deletions(-) diff --git a/arch

[pm-wip/uart][PATCH 5/6] Serial: Add UART hwmod data for 2430.

2010-05-20 Thread Govindraj.R
Add UART HWMOD data into 2430 hmwod data file. Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/omap_hwmod_2430_data.c | 184 1 files changed, 184 insertions(+), 0 deletions(-) diff --git a/arch

[PATCH] Serial: Avoid enabling clocks when clock node is null.

2010-04-20 Thread Govindraj.R
Lindgren t...@atomide.com Cc: Kevin Hilman khil...@deeprootsystems.com Reported-by: Venkatraman S svenk...@ti.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c |8 1 files changed, 8 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2

[PATCH 2/3] Serial: Remove 8250 driver assumptions

2010-04-12 Thread Govindraj.R
This patch removes all 8250 dependecy from all functions from the serial PM layer thus making it generic. This helps us to re-use this existing framework with omap-serial driver. Cc: Tony Lindgren t...@atomide.com Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r

[PATCH 3/3] Serial: Add omap-serial platform data support.

2010-04-12 Thread Govindraj.R
...@atomide.com Cc: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj.R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c | 139 +++-- 1 files changed, 132 insertions(+), 7 deletions(-) diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2

Re: Reposting: [PATCH v1] serial: Add OMAP high-speed UART driver.

2010-03-11 Thread Govindraj.R
Hi Greg, Could you please have this patch into your tty tree now? As I do not see any further comment in community on this for quite long time now. -- Regards, Govindraj.R This time CC'ing Linux-serial and LKML too, forgot last time. -- Govindraj.R This patch adds driver support

[PATCH v1] serial: Add OMAP high-speed UART driver.

2010-03-04 Thread Govindraj.R
hosts the omap-serial platform data which utilises the omap-hwmod framework. Cc: Tony Lindgren t...@atomide.com Cc: Olof Johansson o...@lixom.net Cc: Alan Cox a...@linux.intel.com Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj R govindraj.r...@ti.com --- arch/arm/plat

Reposting: [PATCH v1] serial: Add OMAP high-speed UART driver.

2010-03-04 Thread Govindraj.R
This time CC'ing Linux-serial and LKML too, forgot last time. -- Govindraj.R This patch adds driver support for OMAP3/4 high speed UART. This driver is made separate from 8250 driver as we cannot over load 8250 driver with omap platform specific configuration for features like DMA, it makes

[PATCH] serial: Add OMAP high-speed UART driver.

2010-03-01 Thread Govindraj.R
hosts the omap-serial platform data which utilises the omap-hwmod framework. Cc: Tony Lindgren t...@atomide.com Cc: Olof Johansson o...@lixom.net Tested-by: Kevin Hilman khil...@deeprootsystems.com Signed-off-by: Govindraj R govindraj.r...@ti.com --- Documentation/devices.txt

[PATCH v6] OMAP UART: Add omap-serial driver support.

2010-02-18 Thread Govindraj.R
From 81fe9a08684830e84e64bed57c7f90e7461a5375 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Thu, 18 Feb 2010 19:34:04 +0530 Subject: [PATCH] OMAP UART: Add omap-serial driver support. This patch adds support for OMAP-HIGH SPEED UART Controller. It adds support

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Govindraj.R
Olof, Hi, Shortening the email a bit and only including the pieces that still have open questions: On Thu, Feb 04, 2010 at 08:39:10PM +0530, Govindraj.R wrote: +#define OMAP_SERIAL_NAME ? ? ttyO +#define OMAP_SERIAL_MAJOR ? ?204 +#define OMAP_SERIAL_MINOR ? ?64 Where did

[PATCH v5] OMAP UART: Add omap-serial driver support.

2010-01-27 Thread Govindraj.R
From 869dde60756b2115c35d97f8e2daf014cb1af08e Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Wed, 27 Jan 2010 14:57:58 +0530 Subject: [PATCH] OMAP UART: Add omap-serial driver support. This patch adds support for OMAP-HIGH SPEED UART Controller. It adds support

Re: [PATCH 3/3] OMAP: UART: convert to use omap_device layer

2009-12-11 Thread Govindraj.R
); + pdata = omap_up; + pdata_size = sizeof(struct omap_uart_port_info); #endif if (WARN_ON(!oh)) Do you want me to re-post this patch integrating the above changes? If changes are fine with you. -- Regards, Govindraj.R On Wed, Nov 25, 2009 at 1:26 AM

[PATCH v4] OMAP UART: Add omap-serial driver support.

2009-12-11 Thread Govindraj.R
From a4a266dc2f892156ef6cf4812cd86420815acbef Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Fri, 11 Dec 2009 18:32:41 +0530 Subject: [PATCH] OMAP UART: Add omap-serial driver support. This patch adds support for OMAP-HIGH SPEED UART Controller. It adds support

[PATCH 2/2]: Introducing 'gpmc-nand.c' for GPMC specific NAND init

2009-12-04 Thread Govindraj.R
From: Vimal Singh vimalsi...@ti.com Date: Wed, 25 Nov 2009 18:23:15 +0530 Subject: [PATCH] Introducing 'gpmc-nand.c' for GPMC specific NAND init Introducing 'gpmc-nand.c' for GPMC specific NAND init. For example: GPMC timing parameters and all. This patch also migrates gpmc related calls from

[PATCHv3 0/3] OMAP UART: Adding support for omap-serial driver.

2009-11-12 Thread Govindraj.R
From 8dae69c5e17421123b88414021289974e968fd02 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Fri, 13 Nov 2009 12:09:38 +0530 Subject: [PATCH] OMAP UART: Adding support for omap-serial driver. The Following series of patch adds support for OMAP3430-HIGH SPEED UART

[PATCHv3 1/3] OMAP UART: Add omap-serial driver support.

2009-11-12 Thread Govindraj.R
From 4756e3743c7acd2de1030b2bd432c1b19f0b9ff5 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Fri, 13 Nov 2009 12:01:54 +0530 Subject: [PATCH] OMAP UART: Add omap-serial driver support. This patch adds support for OMAP3430-HIGH SPEED UART Controller. It adds support

[PATCHv3 2/3] OMAP UART: Add platform data for omap-serial driver.

2009-11-12 Thread Govindraj.R
From e7c74ee6d91d7940e1cbde03fb6bf710fa448a8a Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Fri, 13 Nov 2009 12:07:14 +0530 Subject: [PATCH] OMAP UART: Add platform data for omap-serial driver. This patch modifies the serial-pm framework in place and utilises

[PATCHv3 3/3] OMAP UART: Add omap-serial driver support in omap_3430sdp_defconfig.

2009-11-12 Thread Govindraj.R
From 8dae69c5e17421123b88414021289974e968fd02 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Fri, 13 Nov 2009 12:08:42 +0530 Subject: [PATCH] OMAP UART: Add omap-serial driver support in omap_3430sdp_defconfig This patch adds omap-serial driver support for 3430SDP

[PATCHv2 0/3] OMAP UART: Adding support for omap-serial driver.

2009-10-28 Thread Govindraj.R
From 8f743a2fcb704b2bef35b314426209a9c4197aa4 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Wed, 28 Oct 2009 12:27:42 +0530 Subject: [PATCHv2 0/3] OMAP UART: Adding support for omap-serial driver. The Following series of patch adds support for OMAP3430-HIGH SPEED UART

[PATCHv2 1/3] OMAP UART: Add omap-serial driver support.

2009-10-28 Thread Govindraj.R
From a3f0e5a13c1bc5046110cae513878183df2215c6 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Wed, 28 Oct 2009 12:21:03 +0530 Subject: [PATCHv2 1/3] OMAP UART: Add omap-serial driver support. This patch adds support for OMAP3430-HIGH SPEED UART Controller. Signed-off

[PATCHv2 2/3] OMAP UART: Add platform data for omap-serial driver.

2009-10-28 Thread Govindraj.R
From 0f017ffac2990876331a2378e7845d91b2e0088c Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Wed, 28 Oct 2009 12:23:02 +0530 Subject: [PATCHv2 2/3] OMAP UART: Add platform data for omap-serial driver. This patch adds platform data support for omap-serial driver. Signed

[PATCHv2 3/3] OMAP UART: Add omap-serial driver support in omap_3430sdp_defconfig

2009-10-28 Thread Govindraj.R
From 8f743a2fcb704b2bef35b314426209a9c4197aa4 Mon Sep 17 00:00:00 2001 From: Govindraj R govindraj.r...@ti.com Date: Wed, 28 Oct 2009 12:24:26 +0530 Subject: [PATCHv2 3/3] OMAP UART: Add omap-serial driver support in omap_3430sdp_defconfig This patch adds omap-serial driver support for 3430SDP

[PATCHv1 1/3] OMAP UART: Adds omap-serial driver support.

2009-09-24 Thread Govindraj.R
From: Govindraj R govindraj.r...@ti.com This patch adds support for OMAP3430-HIGH SPEED UART Controller. Signed-off-by: Govindraj R govindraj.r...@ti.com Reviewed-by: Alan Cox a...@lxorguk.ukuu.org.uk Reviewed-by: Tony Lindgren t...@atomide.com --- arch/arm/plat-omap/include/mach/omap-serial.h

[PATCHv1 2/3] OMAP UART: Add platform data for omap-serial driver.

2009-09-24 Thread Govindraj.R
From: Govindraj R govindraj.r...@ti.com This patch adds platform data support for omap-serial driver. Signed-off-by: Govindraj R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c | 140 +++ 1 file changed, 140 insertions(+) diff --git a/arch/arm/mach-omap2

[PATCHv1 3/3] OMAP UART: Add omap-serial driver support in omap_3430sdp_defconfig

2009-09-24 Thread Govindraj.R
From: Govindraj R govindraj.r...@ti.com This patch adds omap-serial driver support for 3430SDP. Signed-off-by: Govindraj R govindraj.r...@ti.com --- arch/arm/configs/omap_3430sdp_defconfig |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/omap_3430sdp_defconfig b/arch

[PATCH 0/3] OMAP UART: Adding support for omap-serial driver.

2009-09-22 Thread Govindraj.R
support in omap_3430sdp_defconfig. -- Regards, Govindraj.R -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

[PATCH 1/3] OMAP UART: Adding support for omap-serial driver.

2009-09-22 Thread Govindraj.R
From: Govindraj R govindraj.r...@ti.com This patch adds support for OMAP3430-HIGH SPEED UART Controller. Signed-off-by: Govindraj R govindraj.r...@ti.com Reviewed-by: Alan Cox a...@lxorguk.ukuu.org.uk Reviewed-by: Tony Lindgren t...@atomide.com --- arch/arm/plat-omap/include/mach/omap-serial.h

[PATCH 2/3] OMAP UART: Adding support for omap-serial driver.

2009-09-22 Thread Govindraj.R
From: Govindraj R govindraj.r...@ti.com This patch adds platform data support for omap-serial driver. Signed-off-by: Govindraj R govindraj.r...@ti.com --- arch/arm/mach-omap2/serial.c | 146 ++ 1 file changed, 146 insertions(+) diff --git a/arch/arm/mach-omap2/serial.c b

[PATCH 3/3] OMAP UART: Adding support for omap-serial driver.

2009-09-22 Thread Govindraj.R
From: Govindraj R govindraj.r...@ti.com This patch adds omap-serial driver support 3430SDP. Signed-off-by: Govindraj R govindraj.r...@ti.com --- arch/arm/configs/omap_3430sdp_defconfig |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/configs/omap_3430sdp_defconfig b/arch/arm

Re:[PATCH] OMAP: Remove IRQ hardcoding from serial.c

2009-05-15 Thread Govindraj.R
Hi Santosh, Where you will be defining INT_24XX_UART1_IRQ, INT_24XX_UART1_IRQ and INT_24XX_UART3_IRQ ? Is it in include/asm-arm/arch-omap/serial.h? -- Regards, Govindraj.R -- Forwarded message -- From: Shilimkar, Santosh santosh.shilim...@ti.com Date: Wed, May 13, 2009 at 8

<    1   2   3