Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 301fe8ee authored by Tony Lindgren's avatar Tony Lindgren
Browse files

omap: Disable serial port autoidle by default



Currently the omap serial clocks are autoidled after 5 seconds.
However, this causes lost characters on the serial ports. As this
is considered non-standard behaviour for Linux, disable the timeout.

Note that this will also cause blocking of any deeper omap sleep
states.

To enable the autoidling of the serial ports, do something like
this for each serial port:

# echo 5 > /sys/devices/platform/serial8250.0/sleep_timeout
# echo 5 > /sys/devices/platform/serial8250.1/sleep_timeout
...

Signed-off-by: default avatarKevin Hilman <khilman@deeprootsystems.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 0825cc8a
Loading
Loading
Loading
Loading
+9 −2
Original line number Original line Diff line number Diff line
@@ -36,7 +36,13 @@
#define UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV	0x52
#define UART_OMAP_NO_EMPTY_FIFO_READ_IP_REV	0x52
#define UART_OMAP_WER		0x17	/* Wake-up enable register */
#define UART_OMAP_WER		0x17	/* Wake-up enable register */


#define DEFAULT_TIMEOUT (5 * HZ)
/*
 * NOTE: By default the serial timeout is disabled as it causes lost characters
 * over the serial ports. This means that the UART clocks will stay on until
 * disabled via sysfs. This also causes that any deeper omap sleep states are
 * blocked. 
 */
#define DEFAULT_TIMEOUT 0


struct omap_uart_state {
struct omap_uart_state {
	int num;
	int num;
@@ -422,6 +428,7 @@ static void omap_uart_idle_init(struct omap_uart_state *uart)
	uart->timeout = DEFAULT_TIMEOUT;
	uart->timeout = DEFAULT_TIMEOUT;
	setup_timer(&uart->timer, omap_uart_idle_timer,
	setup_timer(&uart->timer, omap_uart_idle_timer,
		    (unsigned long) uart);
		    (unsigned long) uart);
	if (uart->timeout)
		mod_timer(&uart->timer, jiffies + uart->timeout);
		mod_timer(&uart->timer, jiffies + uart->timeout);
	omap_uart_smart_idle_enable(uart, 0);
	omap_uart_smart_idle_enable(uart, 0);