summaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120-2.6/files/include/asm-mips/mach-adm5120/adm5120_uart.h
blob: 89c48dee5a296b93fa2bf7905fc36be7fe23fb5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
/*
 *  ADM5120 UART definitions
 *
 *  This header file defines the hardware registers of the ADM5120 SoC
 *  built-in UARTs.
 *
 *  Copyright (C) 2007 OpenWrt.org
 *  Copyright (C) 2007 Gabor Juhos <juhosg at openwrt.org>
 *
 *  This program is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU General Public License
 *  as published by the Free Software Foundation; either version 2
 *  of the License, or (at your option) any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program; if not, write to the
 *  Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 *  Boston, MA  02110-1301, USA.
 */

#ifndef _ADM5120_UART_H_
#define _ADM5120_UART_H_

#define UART_BAUDDIV(clk, baud) ((clk/(16 * (baud)))-1)

#define UART_REG_DATA	0x00
#define UART_REG_RSR	0x04
#define UART_REG_ECR	UART_REG_RSR
#define UART_REG_LCRH	0x08
#define UART_REG_LCRM	0x0C
#define UART_REG_LCRL	0x10
#define UART_REG_CTRL	0x14
#define UART_REG_FLAG	0x18

/* Receive Status Register bits */
#define UART_RSR_FE	( 1 << 0 )
#define UART_RSR_PE	( 1 << 1 )
#define UART_RSR_BE	( 1 << 2 )
#define UART_RSR_OE	( 1 << 3 )
#define UART_RSR_ERR	( UART_RSR_FE | UART_RSR_PE | UART_RSR_BE )

#define UART_ECR_ALL	0xFF

/* Line Control High register bits */
#define UART_LCRH_BRK	( 1 << 0 ) /* send break */
#define UART_LCRH_PEN	( 1 << 1 ) /* parity enable */
#define UART_LCRH_EPS	( 1 << 2 ) /* even parity select */
#define UART_LCRH_STP1	( 0 << 3 ) /* one stop bits select */
#define UART_LCRH_STP2	( 1 << 3 ) /* two stop bits select */
#define UART_LCRH_FEN	( 1 << 4 ) /* FIFO enable */

#define UART_LCRH_WLEN5	( 0 << 5 )
#define UART_LCRH_WLEN6	( 1 << 5 )
#define UART_LCRH_WLEN7	( 2 << 5 )
#define UART_LCRH_WLEN8	( 3 << 5 )

/* Control register bits */
#define UART_CTRL_EN	( 1 << 0 )

/* Flag register bits */
#define UART_FLAG_CTS	( 1 << 0 )
#define UART_FLAG_DSR	( 1 << 1 )
#define UART_FLAG_DCD	( 1 << 2 )
#define UART_FLAG_BUSY	( 1 << 3 )
#define UART_FLAG_RXFE	( 1 << 4 )
#define UART_FLAG_TXFF	( 1 << 5 )
#define UART_FLAG_RXFF	( 1 << 6 )
#define UART_FLAG_TXFE	( 1 << 7 )

#endif /* _ADM5120_UART_H_ */