[MIPS] EV64120: Remove support
[pandora-kernel.git] / include / asm-mips / serial.h
1 /*
2  * This file is subject to the terms and conditions of the GNU General Public
3  * License.  See the file "COPYING" in the main directory of this archive
4  * for more details.
5  *
6  * Copyright (C) 1999 by Ralf Baechle
7  * Copyright (C) 1999, 2000 Silicon Graphics, Inc.
8  */
9 #ifndef _ASM_SERIAL_H
10 #define _ASM_SERIAL_H
11
12
13 /*
14  * This assumes you have a 1.8432 MHz clock for your UART.
15  *
16  * It'd be nice if someone built a serial card with a 24.576 MHz
17  * clock, since the 16550A is capable of handling a top speed of 1.5
18  * megabits/second; but this requires the faster clock.
19  */
20 #define BASE_BAUD (1843200 / 16)
21
22 /* Standard COM flags (except for COM4, because of the 8514 problem) */
23 #ifdef CONFIG_SERIAL_DETECT_IRQ
24 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST | ASYNC_AUTO_IRQ)
25 #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_AUTO_IRQ)
26 #else
27 #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
28 #define STD_COM4_FLAGS ASYNC_BOOT_AUTOCONF
29 #endif
30
31 #ifdef CONFIG_MACH_JAZZ
32 #include <asm/jazz.h>
33
34 #ifndef CONFIG_OLIVETTI_M700
35    /* Some Jazz machines seem to have an 8MHz crystal clock but I don't know
36       exactly which ones ... XXX */
37 #define JAZZ_BASE_BAUD ( 8000000 / 16 ) /* ( 3072000 / 16) */
38 #else
39 /* but the M700 isn't such a strange beast */
40 #define JAZZ_BASE_BAUD BASE_BAUD
41 #endif
42
43 #define _JAZZ_SERIAL_INIT(int, base)                                    \
44         { .baud_base = JAZZ_BASE_BAUD, .irq = int, .flags = STD_COM_FLAGS,      \
45           .iomem_base = (u8 *) base, .iomem_reg_shift = 0,                      \
46           .io_type = SERIAL_IO_MEM }
47 #define JAZZ_SERIAL_PORT_DEFNS                                          \
48         _JAZZ_SERIAL_INIT(JAZZ_SERIAL1_IRQ, JAZZ_SERIAL1_BASE),         \
49         _JAZZ_SERIAL_INIT(JAZZ_SERIAL2_IRQ, JAZZ_SERIAL2_BASE),
50 #else
51 #define JAZZ_SERIAL_PORT_DEFNS
52 #endif
53
54 #ifdef CONFIG_HAVE_STD_PC_SERIAL_PORT
55 #define STD_SERIAL_PORT_DEFNS                   \
56         /* UART CLK   PORT IRQ     FLAGS        */                      \
57         { 0, BASE_BAUD, 0x3F8, 4, STD_COM_FLAGS },      /* ttyS0 */     \
58         { 0, BASE_BAUD, 0x2F8, 3, STD_COM_FLAGS },      /* ttyS1 */     \
59         { 0, BASE_BAUD, 0x3E8, 4, STD_COM_FLAGS },      /* ttyS2 */     \
60         { 0, BASE_BAUD, 0x2E8, 3, STD_COM4_FLAGS },     /* ttyS3 */
61
62 #else /* CONFIG_HAVE_STD_PC_SERIAL_PORTS */
63 #define STD_SERIAL_PORT_DEFNS
64 #endif /* CONFIG_HAVE_STD_PC_SERIAL_PORTS */
65
66 #ifdef CONFIG_MOMENCO_OCELOT_3
67 #define OCELOT_3_BASE_BAUD      ( 20000000 / 16 )
68 #define OCELOT_3_SERIAL_IRQ     6
69 #define OCELOT_3_SERIAL_BASE    (signed)0xfd000020
70
71 #define _OCELOT_3_SERIAL_INIT(int, base)                                \
72         { .baud_base = OCELOT_3_BASE_BAUD, irq: int,                    \
73           .flags = STD_COM_FLAGS,                                               \
74           .iomem_base = (u8 *) base, iomem_reg_shift: 2,                        \
75           io_type: SERIAL_IO_MEM }
76
77 #define MOMENCO_OCELOT_3_SERIAL_PORT_DEFNS                              \
78         _OCELOT_3_SERIAL_INIT(OCELOT_3_SERIAL_IRQ, OCELOT_3_SERIAL_BASE)
79 #else
80 #define MOMENCO_OCELOT_3_SERIAL_PORT_DEFNS
81 #endif
82
83 #ifdef CONFIG_MOMENCO_OCELOT
84 /* Ordinary NS16552 duart with a 20MHz crystal.  */
85 #define OCELOT_BASE_BAUD ( 20000000 / 16 )
86
87 #define OCELOT_SERIAL1_IRQ      4
88 #define OCELOT_SERIAL1_BASE     0xe0001020
89
90 #define _OCELOT_SERIAL_INIT(int, base)                                  \
91         { .baud_base = OCELOT_BASE_BAUD, .irq = int, .flags = STD_COM_FLAGS,    \
92           .iomem_base = (u8 *) base, .iomem_reg_shift = 2,                      \
93           .io_type = SERIAL_IO_MEM }
94 #define MOMENCO_OCELOT_SERIAL_PORT_DEFNS                                \
95         _OCELOT_SERIAL_INIT(OCELOT_SERIAL1_IRQ, OCELOT_SERIAL1_BASE)
96 #else
97 #define MOMENCO_OCELOT_SERIAL_PORT_DEFNS
98 #endif
99
100 #ifdef CONFIG_MOMENCO_OCELOT_C
101 /* Ordinary NS16552 duart with a 20MHz crystal.  */
102 #define OCELOT_C_BASE_BAUD ( 20000000 / 16 )
103
104 #define OCELOT_C_SERIAL1_IRQ    80
105 #define OCELOT_C_SERIAL1_BASE   0xfd000020
106
107 #define OCELOT_C_SERIAL2_IRQ    81
108 #define OCELOT_C_SERIAL2_BASE   0xfd000000
109
110 #define _OCELOT_C_SERIAL_INIT(int, base)                                \
111         { .baud_base            = OCELOT_C_BASE_BAUD,                   \
112           .irq                  = (int),                                \
113           .flags                = STD_COM_FLAGS,                        \
114           .iomem_base           = (u8 *) base,                          \
115           .iomem_reg_shift      = 2,                                    \
116           .io_type              = SERIAL_IO_MEM                         \
117          }
118 #define MOMENCO_OCELOT_C_SERIAL_PORT_DEFNS                              \
119         _OCELOT_C_SERIAL_INIT(OCELOT_C_SERIAL1_IRQ, OCELOT_C_SERIAL1_BASE), \
120         _OCELOT_C_SERIAL_INIT(OCELOT_C_SERIAL2_IRQ, OCELOT_C_SERIAL2_BASE)
121 #else
122 #define MOMENCO_OCELOT_C_SERIAL_PORT_DEFNS
123 #endif
124
125 #ifdef CONFIG_DDB5477
126 #include <asm/ddb5xxx/ddb5477.h>
127 #define DDB5477_SERIAL_PORT_DEFNS                                       \
128         { .baud_base = BASE_BAUD, .irq = VRC5477_IRQ_UART0,             \
129           .flags = STD_COM_FLAGS, .iomem_base = (u8*)0xbfa04200,        \
130           .iomem_reg_shift = 3, .io_type = SERIAL_IO_MEM},              \
131         { .baud_base = BASE_BAUD, .irq = VRC5477_IRQ_UART1,             \
132           .flags = STD_COM_FLAGS, .iomem_base = (u8*)0xbfa04240,        \
133           .iomem_reg_shift = 3, .io_type = SERIAL_IO_MEM},
134 #else
135 #define DDB5477_SERIAL_PORT_DEFNS
136 #endif
137
138 #ifdef CONFIG_SGI_IP32
139 /*
140  * The IP32 (SGI O2) has standard serial ports (UART 16550A) mapped in memory
141  * They are initialized in ip32_setup
142  */
143 #define IP32_SERIAL_PORT_DEFNS                          \
144         {},{},
145 #else
146 #define IP32_SERIAL_PORT_DEFNS
147 #endif /* CONFIG_SGI_IP32 */
148
149 #define SERIAL_PORT_DFNS                                \
150         DDB5477_SERIAL_PORT_DEFNS                       \
151         IP32_SERIAL_PORT_DEFNS                          \
152         JAZZ_SERIAL_PORT_DEFNS                          \
153         STD_SERIAL_PORT_DEFNS                           \
154         MOMENCO_OCELOT_C_SERIAL_PORT_DEFNS              \
155         MOMENCO_OCELOT_SERIAL_PORT_DEFNS                \
156         MOMENCO_OCELOT_3_SERIAL_PORT_DEFNS
157
158 #endif /* _ASM_SERIAL_H */