summaryrefslogtreecommitdiff
path: root/arch/arm/mach-mx5/board-ccwmx5x.h
blob: 7ac2b7c68c4db8b7dbc572a7f9d2184751bd79bc (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
/*
 * Copyright 2011 Digi International, Inc. All Rights Reserved.
 *
 * The code contained herein is licensed under the GNU General Public
 * License. You may obtain a copy of the GNU General Public License
 * Version 2 or later at the following locations:
 *
 * http://www.opensource.org/licenses/gpl-license.html
 * http://www.gnu.org/copyleft/gpl.html
 */

#ifndef __ASM_ARCH_MXC_BOARD_CCWMX5X_H__
#define __ASM_ARCH_MXC_BOARD_CCWMX5X_H__

#include <mach/mxc_uart.h>

/* UART 1 configuration */
#if defined(CONFIG_UART1_ENABLED)
#define UART1_ENABLED		1
#else
#define UART1_ENABLED		0
#endif
#if defined(CONFIG_UART1_MODE_IRDA)
#define UART1_IR		IRDA
#elif defined(CONFIG_UART1_MODE_RS485)
#define UART1_IR		RS485_HALF
#else
#define UART1_IR		NO_IRDA
#endif
#define UART1_MODE		MODE_DCE
#define UART1_DMA_ENABLED	0
#define UART1_RS485_TXDIR_LVL	0


/* UART 2 configuration */
#if defined(CONFIG_UART2_ENABLED)
#define UART2_ENABLED		1
#else
#define UART2_ENABLED		0
#endif
#if defined(CONFIG_UART2_MODE_IRDA)
#define UART2_IR		IRDA
#elif defined(CONFIG_UART2_MODE_RS485)
#define UART2_IR		RS485_HALF
#else
#define UART2_IR		NO_IRDA
#endif
#define UART2_MODE		MODE_DCE
#define UART2_DMA_ENABLED	0
#define UART2_RS485_TXDIR_LVL	0

/* UART 3 configuration */
#if defined(CONFIG_UART3_ENABLED)
#define UART3_ENABLED		1
#else
#define UART3_ENABLED		0
#endif
#if defined(CONFIG_UART3_MODE_IRDA)
#define UART3_IR		IRDA
#elif defined(CONFIG_UART3_MODE_RS485)
#define UART3_IR		RS485_HALF
#else
#define UART3_IR		NO_IRDA
#endif
#define UART3_MODE		MODE_DCE
#define UART3_DMA_ENABLED	0
#define UART3_RS485_TXDIR_LVL	0

/* UART 4 configuration */
#if defined(CONFIG_UART4_ENABLED)
#define UART4_ENABLED		1
#else
#define UART4_ENABLED		0
#endif
#if defined(CONFIG_UART4_MODE_IRDA)
#define UART4_IR		IRDA
#elif defined(CONFIG_UART4_MODE_RS485)
#define UART4_IR		RS485_HALF
#else
#define UART4_IR		NO_IRDA
#endif
#define UART4_MODE		MODE_DCE
#define UART4_DMA_ENABLED	0
#define UART4_RS485_TXDIR_LVL	0

/* UART 5 configuration */
#if defined(CONFIG_UART5_ENABLED)
#define UART5_ENABLED		1
#else
#define UART5_ENABLED		0
#endif
#if defined(CONFIG_UART5_MODE_IRDA)
#define UART5_IR		IRDA
#elif defined(CONFIG_UART5_MODE_RS485)
#define UART5_IR		RS485_HALF
#else
#define UART5_IR		NO_IRDA
#endif
#define UART5_MODE		MODE_DCE
#define UART5_DMA_ENABLED	0
#define UART5_RS485_TXDIR_LVL	0

/*!
 * Specifies if the Irda transmit path is inverting
 */
#define MXC_IRDA_TX_INV	0

#define MXC_LL_UART_PADDR	UART1_BASE_ADDR
#define MXC_LL_UART_VADDR	AIPS1_IO_ADDRESS(UART1_BASE_ADDR)

#ifdef CONFIG_CONSOLE_UART1
#define CONSOLE_UART_BASE_ADDR	UART1_BASE_ADDR
#elif defined(CONFIG_CONSOLE_UART2)
#define CONSOLE_UART_BASE_ADDR	UART2_BASE_ADDR
#elif defined(CONFIG_CONSOLE_UART3)
#define CONSOLE_UART_BASE_ADDR	UART3_BASE_ADDR
#elif defined(CONFIG_CONSOLE_UART4)
#define CONSOLE_UART_BASE_ADDR	UART4_BASE_ADDR
#elif defined(CONFIG_CONSOLE_UART5)
#define CONSOLE_UART_BASE_ADDR	UART5_BASE_ADDR
#else
#define CONSOLE_UART_BASE_ADDR	0
#endif

#endif		/* __ASM_ARCH_MXC_BOARD_CCWMX5X_H__ */