Merge branch 'stable-3.2' into pandora-3.2
[pandora-kernel.git] / arch / arm / plat-omap / include / plat / omap-serial.h
1 /*
2  * Driver for OMAP-UART controller.
3  * Based on drivers/serial/8250.c
4  *
5  * Copyright (C) 2010 Texas Instruments.
6  *
7  * Authors:
8  *      Govindraj R     <govindraj.raja@ti.com>
9  *      Thara Gopinath  <thara@ti.com>
10  *
11  * This program is free software; you can redistribute it and/or modify
12  * it under the terms of the GNU General Public License as published by
13  * the Free Software Foundation; either version 2 of the License, or
14  * (at your option) any later version.
15  */
16
17 #ifndef __OMAP_SERIAL_H__
18 #define __OMAP_SERIAL_H__
19
20 #include <linux/serial_core.h>
21 #include <linux/platform_device.h>
22
23 #include <plat/mux.h>
24
25 #define DRIVER_NAME     "omap_uart"
26
27 /*
28  * Use tty device name as ttyO, [O -> OMAP]
29  * in bootargs we specify as console=ttyO0 if uart1
30  * is used as console uart.
31  */
32 #define OMAP_SERIAL_NAME        "ttyO"
33
34 #define OMAP_MODE13X_SPEED      230400
35
36 #define OMAP_UART_SCR_TX_EMPTY  0x08
37
38 /* WER = 0x7F
39  * Enable module level wakeup in WER reg
40  */
41 #define OMAP_UART_WER_MOD_WKUP  0X7F
42
43 /* Enable XON/XOFF flow control on output */
44 #define OMAP_UART_SW_TX         0x04
45
46 /* Enable XON/XOFF flow control on input */
47 #define OMAP_UART_SW_RX         0x04
48
49 #define OMAP_UART_SYSC_RESET    0X07
50 #define OMAP_UART_TCR_TRIG      0X0F
51 #define OMAP_UART_SW_CLR        0XF0
52 #define OMAP_UART_FIFO_CLR      0X06
53
54 #define OMAP_UART_DMA_CH_FREE   -1
55
56 #define RX_TIMEOUT              (3 * HZ)
57 #define OMAP_MAX_HSUART_PORTS   4
58
59 #define MSR_SAVE_FLAGS          UART_MSR_ANY_DELTA
60
61 struct omap_uart_port_info {
62         bool                    dma_enabled;    /* To specify DMA Mode */
63         unsigned int            uartclk;        /* UART clock rate */
64         void __iomem            *membase;       /* ioremap cookie or NULL */
65         resource_size_t         mapbase;        /* resource base */
66         unsigned long           irqflags;       /* request_irq flags */
67         upf_t                   flags;          /* UPF_* flags */
68 };
69
70 struct uart_omap_dma {
71         u8                      uart_dma_tx;
72         u8                      uart_dma_rx;
73         int                     rx_dma_channel;
74         int                     tx_dma_channel;
75         dma_addr_t              rx_buf_dma_phys;
76         dma_addr_t              tx_buf_dma_phys;
77         unsigned int            uart_base;
78         /*
79          * Buffer for rx dma.It is not required for tx because the buffer
80          * comes from port structure.
81          */
82         unsigned char           *rx_buf;
83         unsigned int            prev_rx_dma_pos;
84         int                     tx_buf_size;
85         int                     tx_dma_used;
86         int                     rx_dma_used;
87         spinlock_t              tx_lock;
88         spinlock_t              rx_lock;
89         /* timer to poll activity on rx dma */
90         struct timer_list       rx_timer;
91         int                     rx_buf_size;
92         int                     rx_timeout;
93 };
94
95 struct uart_omap_port {
96         struct uart_port        port;
97         struct uart_omap_dma    uart_dma;
98         struct platform_device  *pdev;
99
100         unsigned char           ier;
101         unsigned char           lcr;
102         unsigned char           mcr;
103         unsigned char           fcr;
104         unsigned char           efr;
105         unsigned char           scr;
106
107         int                     use_dma;
108         /*
109          * Some bits in registers are cleared on a read, so they must
110          * be saved whenever the register is read but the bits will not
111          * be immediately processed.
112          */
113         unsigned int            lsr_break_flag;
114         unsigned char           msr_saved_flags;
115         char                    name[20];
116         unsigned long           port_activity;
117 };
118
119 /* HACK */
120 void omap_uart_block_sleep_id(int num);
121
122 #endif /* __OMAP_SERIAL_H__ */