Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / arch / arm / plat-omap / include / plat / omap-serial.h
blob3a5764494d474d42db16753eff37d0c33e9e11d9
1 /*
2 * Driver for OMAP-UART controller.
3 * Based on drivers/serial/8250.c
5 * Copyright (C) 2010 Texas Instruments.
7 * Authors:
8 * Govindraj R <govindraj.raja@ti.com>
9 * Thara Gopinath <thara@ti.com>
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.
17 #ifndef __OMAP_SERIAL_H__
18 #define __OMAP_SERIAL_H__
20 #include <linux/serial_core.h>
21 #include <linux/platform_device.h>
22 #include <linux/pm_qos.h>
24 #include <plat/mux.h>
26 #define DRIVER_NAME "omap_uart"
29 * Use tty device name as ttyO, [O -> OMAP]
30 * in bootargs we specify as console=ttyO0 if uart1
31 * is used as console uart.
33 #define OMAP_SERIAL_NAME "ttyO"
35 #define OMAP_MODE13X_SPEED 230400
37 #define OMAP_UART_SCR_TX_EMPTY 0x08
39 /* WER = 0x7F
40 * Enable module level wakeup in WER reg
42 #define OMAP_UART_WER_MOD_WKUP 0X7F
44 /* Enable XON/XOFF flow control on output */
45 #define OMAP_UART_SW_TX 0x8
47 /* Enable XON/XOFF flow control on input */
48 #define OMAP_UART_SW_RX 0x2
50 #define OMAP_UART_SYSC_RESET 0X07
51 #define OMAP_UART_TCR_TRIG 0X0F
52 #define OMAP_UART_SW_CLR 0XF0
53 #define OMAP_UART_FIFO_CLR 0X06
55 #define OMAP_UART_DMA_CH_FREE -1
57 #define OMAP_MAX_HSUART_PORTS 4
59 #define MSR_SAVE_FLAGS UART_MSR_ANY_DELTA
61 #define UART_ERRATA_i202_MDR1_ACCESS BIT(0)
62 #define UART_ERRATA_i291_DMA_FORCEIDLE BIT(1)
64 struct omap_uart_port_info {
65 bool dma_enabled; /* To specify DMA Mode */
66 unsigned int uartclk; /* UART clock rate */
67 upf_t flags; /* UPF_* flags */
68 unsigned int dma_rx_buf_size;
69 unsigned int dma_rx_timeout;
70 unsigned int autosuspend_timeout;
71 unsigned int dma_rx_poll_rate;
73 int (*get_context_loss_count)(struct device *);
74 void (*set_forceidle)(struct platform_device *);
75 void (*set_noidle)(struct platform_device *);
76 void (*enable_wakeup)(struct platform_device *, bool);
79 struct uart_omap_dma {
80 u8 uart_dma_tx;
81 u8 uart_dma_rx;
82 int rx_dma_channel;
83 int tx_dma_channel;
84 dma_addr_t rx_buf_dma_phys;
85 dma_addr_t tx_buf_dma_phys;
86 unsigned int uart_base;
88 * Buffer for rx dma.It is not required for tx because the buffer
89 * comes from port structure.
91 unsigned char *rx_buf;
92 unsigned int prev_rx_dma_pos;
93 int tx_buf_size;
94 int tx_dma_used;
95 int rx_dma_used;
96 spinlock_t tx_lock;
97 spinlock_t rx_lock;
98 /* timer to poll activity on rx dma */
99 struct timer_list rx_timer;
100 unsigned int rx_buf_size;
101 unsigned int rx_poll_rate;
102 unsigned int rx_timeout;
105 struct uart_omap_port {
106 struct uart_port port;
107 struct uart_omap_dma uart_dma;
108 struct platform_device *pdev;
110 unsigned char ier;
111 unsigned char lcr;
112 unsigned char mcr;
113 unsigned char fcr;
114 unsigned char efr;
115 unsigned char dll;
116 unsigned char dlh;
117 unsigned char mdr1;
118 unsigned char scr;
120 int use_dma;
122 * Some bits in registers are cleared on a read, so they must
123 * be saved whenever the register is read but the bits will not
124 * be immediately processed.
126 unsigned int lsr_break_flag;
127 unsigned char msr_saved_flags;
128 char name[20];
129 unsigned long port_activity;
130 u32 context_loss_cnt;
131 u32 errata;
132 u8 wakeups_enabled;
134 struct pm_qos_request pm_qos_request;
135 u32 latency;
136 u32 calc_latency;
137 struct work_struct qos_work;
140 #endif /* __OMAP_SERIAL_H__ */