ARM: OMAP2+: UART: Cleanup part of clock gating mechanism for uart
authorGovindraj.R <govindraj.raja@ti.com>
Tue, 13 Sep 2011 08:31:01 +0000 (14:01 +0530)
committerKevin Hilman <khilman@ti.com>
Wed, 14 Dec 2011 23:49:02 +0000 (15:49 -0800)
commit273558b3a0399e368d99da5b3daf1c0e11b93e06
tree449dfc24f02cae12bff15011bb9a41ae9b47a1c4
parent8a60585159067f110075ef8ffda13abd94826daf
ARM: OMAP2+: UART: Cleanup part of clock gating mechanism for uart

Currently we use a shared irq handler to identify uart activity and then
trigger a timer. By default the timeout value is zero and can be set or
modified from sysfs. If there was no uart activity for the period set
through sysfs, the timer will expire and call timer handler this will
set a flag can_sleep using which decision to gate uart clocks can be taken.

Since the clock gating mechanism is outside the uart driver, we currently
use this mechanism. In preparation to runtime implementation for omap-serial
driver we can cleanup this mechanism and use runtime API's to gate uart clocks.

Removes the following:
* timer related info from local uart_state struct
* the code used to set timeout value from sysfs.
* irqflags used to set shared irq handler.
* un-used function omap_uart_check_wakeup.

Signed-off-by: Govindraj.R <govindraj.raja@ti.com>
Acked-by: Greg Kroah-Hartman <gregkh@suse.de> (for drivers/tty changes)
Signed-off-by: Kevin Hilman <khilman@ti.com>
arch/arm/mach-omap2/serial.c
arch/arm/plat-omap/include/plat/omap-serial.h
arch/arm/plat-omap/include/plat/serial.h
drivers/tty/serial/omap-serial.c