1
2
3
4
5
6
7
8
9
10
11static char *serial_version = "$Revision: 1.25 $";
12
13#include <linux/types.h>
14#include <linux/errno.h>
15#include <linux/signal.h>
16#include <linux/sched/signal.h>
17#include <linux/timer.h>
18#include <linux/interrupt.h>
19#include <linux/tty.h>
20#include <linux/tty_flip.h>
21#include <linux/major.h>
22#include <linux/string.h>
23#include <linux/fcntl.h>
24#include <linux/mm.h>
25#include <linux/slab.h>
26#include <linux/init.h>
27#include <linux/kernel.h>
28#include <linux/mutex.h>
29#include <linux/bitops.h>
30#include <linux/seq_file.h>
31#include <linux/delay.h>
32#include <linux/uaccess.h>
33#include <linux/io.h>
34
35#include <asm/irq.h>
36#include <asm/dma.h>
37
38#include <arch/svinto.h>
39#include <arch/system.h>
40
41
42#include <linux/serial.h>
43
44#include "crisv10.h"
45#include <asm/fasttimer.h>
46#include <arch/io_interface_mux.h>
47
48#ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
49#ifndef CONFIG_ETRAX_FAST_TIMER
50#error "Enable FAST_TIMER to use SERIAL_FAST_TIMER"
51#endif
52#endif
53
54#if defined(CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS) && \
55 (CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS == 0)
56#error "RX_TIMEOUT_TICKS == 0 not allowed, use 1"
57#endif
58
59
60
61
62
63#if defined(LOCAL_HEADERS)
64#include "serial_compat.h"
65#endif
66
67struct tty_driver *serial_driver;
68
69
70#define WAKEUP_CHARS 256
71
72
73
74
75
76
77
78
79
80
81
82
83
84#define SERIAL_HANDLE_EARLY_ERRORS
85
86
87#define SERIAL_DESCR_BUF_SIZE 256
88
89#define SERIAL_PRESCALE_BASE 3125000
90#define DEF_BAUD_BASE SERIAL_PRESCALE_BASE
91
92
93
94#define MIN_FLUSH_TIME_USEC 250
95
96
97#define TIMERD(x)
98
99#define DINTR1(x)
100#define DINTR2(x)
101
102#define DFLIP(x)
103
104#define DFLOW(x)
105#define DBAUD(x)
106#define DLOG_INT_TRIG(x)
107
108
109#ifndef DEBUG_LOG_INCLUDED
110#define DEBUG_LOG(line, string, value)
111#else
112struct debug_log_info
113{
114 unsigned long time;
115 unsigned long timer_data;
116
117 const char *string;
118 int value;
119};
120#define DEBUG_LOG_SIZE 4096
121
122struct debug_log_info debug_log[DEBUG_LOG_SIZE];
123int debug_log_pos = 0;
124
125#define DEBUG_LOG(_line, _string, _value) do { \
126 if ((_line) == SERIAL_DEBUG_LINE) {\
127 debug_log_func(_line, _string, _value); \
128 }\
129}while(0)
130
131void debug_log_func(int line, const char *string, int value)
132{
133 if (debug_log_pos < DEBUG_LOG_SIZE) {
134 debug_log[debug_log_pos].time = jiffies;
135 debug_log[debug_log_pos].timer_data = *R_TIMER_DATA;
136
137 debug_log[debug_log_pos].string = string;
138 debug_log[debug_log_pos].value = value;
139 debug_log_pos++;
140 }
141
142}
143#endif
144
145#ifndef CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS
146
147
148
149
150#define CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS 5
151#endif
152
153unsigned long timer_data_to_ns(unsigned long timer_data);
154
155static void change_speed(struct e100_serial *info);
156static void rs_throttle(struct tty_struct * tty);
157static void rs_wait_until_sent(struct tty_struct *tty, int timeout);
158static int rs_write(struct tty_struct *tty,
159 const unsigned char *buf, int count);
160#ifdef CONFIG_ETRAX_RS485
161static int e100_write_rs485(struct tty_struct *tty,
162 const unsigned char *buf, int count);
163#endif
164static int get_lsr_info(struct e100_serial *info, unsigned int *value);
165
166
167#define DEF_BAUD 115200
168#define DEF_RX 0x20
169
170#define DEF_TX 0x80
171
172
173
174#define REG_DATA 0
175#define REG_DATA_STATUS32 0
176#define REG_TR_DATA 0
177#define REG_STATUS 1
178#define REG_TR_CTRL 1
179#define REG_REC_CTRL 2
180#define REG_BAUD 3
181#define REG_XOFF 4
182
183
184#define SER_RXD_MASK IO_MASK(R_SERIAL0_STATUS, rxd)
185#define SER_DATA_AVAIL_MASK IO_MASK(R_SERIAL0_STATUS, data_avail)
186#define SER_FRAMING_ERR_MASK IO_MASK(R_SERIAL0_STATUS, framing_err)
187#define SER_PAR_ERR_MASK IO_MASK(R_SERIAL0_STATUS, par_err)
188#define SER_OVERRUN_MASK IO_MASK(R_SERIAL0_STATUS, overrun)
189
190#define SER_ERROR_MASK (SER_OVERRUN_MASK | SER_PAR_ERR_MASK | SER_FRAMING_ERR_MASK)
191
192
193#define ERRCODE_SET_BREAK (TTY_BREAK)
194#define ERRCODE_INSERT 0x100
195#define ERRCODE_INSERT_BREAK (ERRCODE_INSERT | TTY_BREAK)
196
197#define FORCE_EOP(info) *R_SET_EOP = 1U << info->iseteop;
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212static const unsigned long e100_ser_int_mask = 0
213#ifdef CONFIG_ETRAX_SERIAL_PORT0
214| IO_MASK(R_IRQ_MASK1_RD, ser0_data) | IO_MASK(R_IRQ_MASK1_RD, ser0_ready)
215#endif
216#ifdef CONFIG_ETRAX_SERIAL_PORT1
217| IO_MASK(R_IRQ_MASK1_RD, ser1_data) | IO_MASK(R_IRQ_MASK1_RD, ser1_ready)
218#endif
219#ifdef CONFIG_ETRAX_SERIAL_PORT2
220| IO_MASK(R_IRQ_MASK1_RD, ser2_data) | IO_MASK(R_IRQ_MASK1_RD, ser2_ready)
221#endif
222#ifdef CONFIG_ETRAX_SERIAL_PORT3
223| IO_MASK(R_IRQ_MASK1_RD, ser3_data) | IO_MASK(R_IRQ_MASK1_RD, ser3_ready)
224#endif
225;
226unsigned long r_alt_ser_baudrate_shadow = 0;
227
228
229
230
231
232static struct e100_serial rs_table[] = {
233 { .baud = DEF_BAUD,
234 .ioport = (unsigned char *)R_SERIAL0_CTRL,
235 .irq = 1U << 12,
236 .oclrintradr = R_DMA_CH6_CLR_INTR,
237 .ofirstadr = R_DMA_CH6_FIRST,
238 .ocmdadr = R_DMA_CH6_CMD,
239 .ostatusadr = R_DMA_CH6_STATUS,
240 .iclrintradr = R_DMA_CH7_CLR_INTR,
241 .ifirstadr = R_DMA_CH7_FIRST,
242 .icmdadr = R_DMA_CH7_CMD,
243 .idescradr = R_DMA_CH7_DESCR,
244 .rx_ctrl = DEF_RX,
245 .tx_ctrl = DEF_TX,
246 .iseteop = 2,
247 .dma_owner = dma_ser0,
248 .io_if = if_serial_0,
249#ifdef CONFIG_ETRAX_SERIAL_PORT0
250 .enabled = 1,
251#ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA6_OUT
252 .dma_out_enabled = 1,
253 .dma_out_nbr = SER0_TX_DMA_NBR,
254 .dma_out_irq_nbr = SER0_DMA_TX_IRQ_NBR,
255 .dma_out_irq_flags = 0,
256 .dma_out_irq_description = "serial 0 dma tr",
257#else
258 .dma_out_enabled = 0,
259 .dma_out_nbr = UINT_MAX,
260 .dma_out_irq_nbr = 0,
261 .dma_out_irq_flags = 0,
262 .dma_out_irq_description = NULL,
263#endif
264#ifdef CONFIG_ETRAX_SERIAL_PORT0_DMA7_IN
265 .dma_in_enabled = 1,
266 .dma_in_nbr = SER0_RX_DMA_NBR,
267 .dma_in_irq_nbr = SER0_DMA_RX_IRQ_NBR,
268 .dma_in_irq_flags = 0,
269 .dma_in_irq_description = "serial 0 dma rec",
270#else
271 .dma_in_enabled = 0,
272 .dma_in_nbr = UINT_MAX,
273 .dma_in_irq_nbr = 0,
274 .dma_in_irq_flags = 0,
275 .dma_in_irq_description = NULL,
276#endif
277#else
278 .enabled = 0,
279 .io_if_description = NULL,
280 .dma_out_enabled = 0,
281 .dma_in_enabled = 0
282#endif
283
284},
285 { .baud = DEF_BAUD,
286 .ioport = (unsigned char *)R_SERIAL1_CTRL,
287 .irq = 1U << 16,
288 .oclrintradr = R_DMA_CH8_CLR_INTR,
289 .ofirstadr = R_DMA_CH8_FIRST,
290 .ocmdadr = R_DMA_CH8_CMD,
291 .ostatusadr = R_DMA_CH8_STATUS,
292 .iclrintradr = R_DMA_CH9_CLR_INTR,
293 .ifirstadr = R_DMA_CH9_FIRST,
294 .icmdadr = R_DMA_CH9_CMD,
295 .idescradr = R_DMA_CH9_DESCR,
296 .rx_ctrl = DEF_RX,
297 .tx_ctrl = DEF_TX,
298 .iseteop = 3,
299 .dma_owner = dma_ser1,
300 .io_if = if_serial_1,
301#ifdef CONFIG_ETRAX_SERIAL_PORT1
302 .enabled = 1,
303 .io_if_description = "ser1",
304#ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA8_OUT
305 .dma_out_enabled = 1,
306 .dma_out_nbr = SER1_TX_DMA_NBR,
307 .dma_out_irq_nbr = SER1_DMA_TX_IRQ_NBR,
308 .dma_out_irq_flags = 0,
309 .dma_out_irq_description = "serial 1 dma tr",
310#else
311 .dma_out_enabled = 0,
312 .dma_out_nbr = UINT_MAX,
313 .dma_out_irq_nbr = 0,
314 .dma_out_irq_flags = 0,
315 .dma_out_irq_description = NULL,
316#endif
317#ifdef CONFIG_ETRAX_SERIAL_PORT1_DMA9_IN
318 .dma_in_enabled = 1,
319 .dma_in_nbr = SER1_RX_DMA_NBR,
320 .dma_in_irq_nbr = SER1_DMA_RX_IRQ_NBR,
321 .dma_in_irq_flags = 0,
322 .dma_in_irq_description = "serial 1 dma rec",
323#else
324 .dma_in_enabled = 0,
325 .dma_in_enabled = 0,
326 .dma_in_nbr = UINT_MAX,
327 .dma_in_irq_nbr = 0,
328 .dma_in_irq_flags = 0,
329 .dma_in_irq_description = NULL,
330#endif
331#else
332 .enabled = 0,
333 .io_if_description = NULL,
334 .dma_in_irq_nbr = 0,
335 .dma_out_enabled = 0,
336 .dma_in_enabled = 0
337#endif
338},
339
340 { .baud = DEF_BAUD,
341 .ioport = (unsigned char *)R_SERIAL2_CTRL,
342 .irq = 1U << 4,
343 .oclrintradr = R_DMA_CH2_CLR_INTR,
344 .ofirstadr = R_DMA_CH2_FIRST,
345 .ocmdadr = R_DMA_CH2_CMD,
346 .ostatusadr = R_DMA_CH2_STATUS,
347 .iclrintradr = R_DMA_CH3_CLR_INTR,
348 .ifirstadr = R_DMA_CH3_FIRST,
349 .icmdadr = R_DMA_CH3_CMD,
350 .idescradr = R_DMA_CH3_DESCR,
351 .rx_ctrl = DEF_RX,
352 .tx_ctrl = DEF_TX,
353 .iseteop = 0,
354 .dma_owner = dma_ser2,
355 .io_if = if_serial_2,
356#ifdef CONFIG_ETRAX_SERIAL_PORT2
357 .enabled = 1,
358 .io_if_description = "ser2",
359#ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA2_OUT
360 .dma_out_enabled = 1,
361 .dma_out_nbr = SER2_TX_DMA_NBR,
362 .dma_out_irq_nbr = SER2_DMA_TX_IRQ_NBR,
363 .dma_out_irq_flags = 0,
364 .dma_out_irq_description = "serial 2 dma tr",
365#else
366 .dma_out_enabled = 0,
367 .dma_out_nbr = UINT_MAX,
368 .dma_out_irq_nbr = 0,
369 .dma_out_irq_flags = 0,
370 .dma_out_irq_description = NULL,
371#endif
372#ifdef CONFIG_ETRAX_SERIAL_PORT2_DMA3_IN
373 .dma_in_enabled = 1,
374 .dma_in_nbr = SER2_RX_DMA_NBR,
375 .dma_in_irq_nbr = SER2_DMA_RX_IRQ_NBR,
376 .dma_in_irq_flags = 0,
377 .dma_in_irq_description = "serial 2 dma rec",
378#else
379 .dma_in_enabled = 0,
380 .dma_in_nbr = UINT_MAX,
381 .dma_in_irq_nbr = 0,
382 .dma_in_irq_flags = 0,
383 .dma_in_irq_description = NULL,
384#endif
385#else
386 .enabled = 0,
387 .io_if_description = NULL,
388 .dma_out_enabled = 0,
389 .dma_in_enabled = 0
390#endif
391 },
392
393 { .baud = DEF_BAUD,
394 .ioport = (unsigned char *)R_SERIAL3_CTRL,
395 .irq = 1U << 8,
396 .oclrintradr = R_DMA_CH4_CLR_INTR,
397 .ofirstadr = R_DMA_CH4_FIRST,
398 .ocmdadr = R_DMA_CH4_CMD,
399 .ostatusadr = R_DMA_CH4_STATUS,
400 .iclrintradr = R_DMA_CH5_CLR_INTR,
401 .ifirstadr = R_DMA_CH5_FIRST,
402 .icmdadr = R_DMA_CH5_CMD,
403 .idescradr = R_DMA_CH5_DESCR,
404 .rx_ctrl = DEF_RX,
405 .tx_ctrl = DEF_TX,
406 .iseteop = 1,
407 .dma_owner = dma_ser3,
408 .io_if = if_serial_3,
409#ifdef CONFIG_ETRAX_SERIAL_PORT3
410 .enabled = 1,
411 .io_if_description = "ser3",
412#ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA4_OUT
413 .dma_out_enabled = 1,
414 .dma_out_nbr = SER3_TX_DMA_NBR,
415 .dma_out_irq_nbr = SER3_DMA_TX_IRQ_NBR,
416 .dma_out_irq_flags = 0,
417 .dma_out_irq_description = "serial 3 dma tr",
418#else
419 .dma_out_enabled = 0,
420 .dma_out_nbr = UINT_MAX,
421 .dma_out_irq_nbr = 0,
422 .dma_out_irq_flags = 0,
423 .dma_out_irq_description = NULL,
424#endif
425#ifdef CONFIG_ETRAX_SERIAL_PORT3_DMA5_IN
426 .dma_in_enabled = 1,
427 .dma_in_nbr = SER3_RX_DMA_NBR,
428 .dma_in_irq_nbr = SER3_DMA_RX_IRQ_NBR,
429 .dma_in_irq_flags = 0,
430 .dma_in_irq_description = "serial 3 dma rec",
431#else
432 .dma_in_enabled = 0,
433 .dma_in_nbr = UINT_MAX,
434 .dma_in_irq_nbr = 0,
435 .dma_in_irq_flags = 0,
436 .dma_in_irq_description = NULL
437#endif
438#else
439 .enabled = 0,
440 .io_if_description = NULL,
441 .dma_out_enabled = 0,
442 .dma_in_enabled = 0
443#endif
444 }
445};
446
447
448#define NR_PORTS (sizeof(rs_table)/sizeof(struct e100_serial))
449
450#ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
451static struct fast_timer fast_timers[NR_PORTS];
452#endif
453
454
455#if defined(CONFIG_ETRAX_RS485)
456#ifdef CONFIG_ETRAX_FAST_TIMER
457static struct fast_timer fast_timers_rs485[NR_PORTS];
458#endif
459#if defined(CONFIG_ETRAX_RS485_ON_PA)
460static int rs485_pa_bit = CONFIG_ETRAX_RS485_ON_PA_BIT;
461#endif
462#endif
463
464
465#define E100_STRUCT_PORT(line, pinname) \
466 ((CONFIG_ETRAX_SER##line##_##pinname##_ON_PA_BIT >= 0)? \
467 (R_PORT_PA_DATA): ( \
468 (CONFIG_ETRAX_SER##line##_##pinname##_ON_PB_BIT >= 0)? \
469 (R_PORT_PB_DATA):&dummy_ser[line]))
470
471#define E100_STRUCT_SHADOW(line, pinname) \
472 ((CONFIG_ETRAX_SER##line##_##pinname##_ON_PA_BIT >= 0)? \
473 (&port_pa_data_shadow): ( \
474 (CONFIG_ETRAX_SER##line##_##pinname##_ON_PB_BIT >= 0)? \
475 (&port_pb_data_shadow):&dummy_ser[line]))
476#define E100_STRUCT_MASK(line, pinname) \
477 ((CONFIG_ETRAX_SER##line##_##pinname##_ON_PA_BIT >= 0)? \
478 (1<<CONFIG_ETRAX_SER##line##_##pinname##_ON_PA_BIT): ( \
479 (CONFIG_ETRAX_SER##line##_##pinname##_ON_PB_BIT >= 0)? \
480 (1<<CONFIG_ETRAX_SER##line##_##pinname##_ON_PB_BIT):DUMMY_##pinname##_MASK))
481
482#define DUMMY_DTR_MASK 1
483#define DUMMY_RI_MASK 2
484#define DUMMY_DSR_MASK 4
485#define DUMMY_CD_MASK 8
486static unsigned char dummy_ser[NR_PORTS] = {0xFF, 0xFF, 0xFF,0xFF};
487
488
489#ifdef CONFIG_ETRAX_SERIAL_PORT0
490
491#define SER0_PA_BITSUM (CONFIG_ETRAX_SER0_DTR_ON_PA_BIT+CONFIG_ETRAX_SER0_RI_ON_PA_BIT+CONFIG_ETRAX_SER0_DSR_ON_PA_BIT+CONFIG_ETRAX_SER0_CD_ON_PA_BIT)
492
493#if SER0_PA_BITSUM != -4
494# if CONFIG_ETRAX_SER0_DTR_ON_PA_BIT == -1
495# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
496# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
497# endif
498# endif
499# if CONFIG_ETRAX_SER0_RI_ON_PA_BIT == -1
500# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
501# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
502# endif
503# endif
504# if CONFIG_ETRAX_SER0_DSR_ON_PA_BIT == -1
505# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
506# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
507# endif
508# endif
509# if CONFIG_ETRAX_SER0_CD_ON_PA_BIT == -1
510# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
511# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
512# endif
513# endif
514#endif
515
516#define SER0_PB_BITSUM (CONFIG_ETRAX_SER0_DTR_ON_PB_BIT+CONFIG_ETRAX_SER0_RI_ON_PB_BIT+CONFIG_ETRAX_SER0_DSR_ON_PB_BIT+CONFIG_ETRAX_SER0_CD_ON_PB_BIT)
517
518#if SER0_PB_BITSUM != -4
519# if CONFIG_ETRAX_SER0_DTR_ON_PB_BIT == -1
520# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
521# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
522# endif
523# endif
524# if CONFIG_ETRAX_SER0_RI_ON_PB_BIT == -1
525# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
526# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
527# endif
528# endif
529# if CONFIG_ETRAX_SER0_DSR_ON_PB_BIT == -1
530# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
531# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
532# endif
533# endif
534# if CONFIG_ETRAX_SER0_CD_ON_PB_BIT == -1
535# ifndef CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED
536# define CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED 1
537# endif
538# endif
539#endif
540
541#endif
542
543
544#ifdef CONFIG_ETRAX_SERIAL_PORT1
545
546#define SER1_PA_BITSUM (CONFIG_ETRAX_SER1_DTR_ON_PA_BIT+CONFIG_ETRAX_SER1_RI_ON_PA_BIT+CONFIG_ETRAX_SER1_DSR_ON_PA_BIT+CONFIG_ETRAX_SER1_CD_ON_PA_BIT)
547
548#if SER1_PA_BITSUM != -4
549# if CONFIG_ETRAX_SER1_DTR_ON_PA_BIT == -1
550# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
551# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
552# endif
553# endif
554# if CONFIG_ETRAX_SER1_RI_ON_PA_BIT == -1
555# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
556# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
557# endif
558# endif
559# if CONFIG_ETRAX_SER1_DSR_ON_PA_BIT == -1
560# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
561# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
562# endif
563# endif
564# if CONFIG_ETRAX_SER1_CD_ON_PA_BIT == -1
565# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
566# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
567# endif
568# endif
569#endif
570
571#define SER1_PB_BITSUM (CONFIG_ETRAX_SER1_DTR_ON_PB_BIT+CONFIG_ETRAX_SER1_RI_ON_PB_BIT+CONFIG_ETRAX_SER1_DSR_ON_PB_BIT+CONFIG_ETRAX_SER1_CD_ON_PB_BIT)
572
573#if SER1_PB_BITSUM != -4
574# if CONFIG_ETRAX_SER1_DTR_ON_PB_BIT == -1
575# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
576# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
577# endif
578# endif
579# if CONFIG_ETRAX_SER1_RI_ON_PB_BIT == -1
580# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
581# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
582# endif
583# endif
584# if CONFIG_ETRAX_SER1_DSR_ON_PB_BIT == -1
585# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
586# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
587# endif
588# endif
589# if CONFIG_ETRAX_SER1_CD_ON_PB_BIT == -1
590# ifndef CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED
591# define CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED 1
592# endif
593# endif
594#endif
595
596#endif
597
598#ifdef CONFIG_ETRAX_SERIAL_PORT2
599
600#define SER2_PA_BITSUM (CONFIG_ETRAX_SER2_DTR_ON_PA_BIT+CONFIG_ETRAX_SER2_RI_ON_PA_BIT+CONFIG_ETRAX_SER2_DSR_ON_PA_BIT+CONFIG_ETRAX_SER2_CD_ON_PA_BIT)
601
602#if SER2_PA_BITSUM != -4
603# if CONFIG_ETRAX_SER2_DTR_ON_PA_BIT == -1
604# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
605# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
606# endif
607# endif
608# if CONFIG_ETRAX_SER2_RI_ON_PA_BIT == -1
609# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
610# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
611# endif
612# endif
613# if CONFIG_ETRAX_SER2_DSR_ON_PA_BIT == -1
614# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
615# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
616# endif
617# endif
618# if CONFIG_ETRAX_SER2_CD_ON_PA_BIT == -1
619# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
620# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
621# endif
622# endif
623#endif
624
625#define SER2_PB_BITSUM (CONFIG_ETRAX_SER2_DTR_ON_PB_BIT+CONFIG_ETRAX_SER2_RI_ON_PB_BIT+CONFIG_ETRAX_SER2_DSR_ON_PB_BIT+CONFIG_ETRAX_SER2_CD_ON_PB_BIT)
626
627#if SER2_PB_BITSUM != -4
628# if CONFIG_ETRAX_SER2_DTR_ON_PB_BIT == -1
629# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
630# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
631# endif
632# endif
633# if CONFIG_ETRAX_SER2_RI_ON_PB_BIT == -1
634# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
635# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
636# endif
637# endif
638# if CONFIG_ETRAX_SER2_DSR_ON_PB_BIT == -1
639# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
640# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
641# endif
642# endif
643# if CONFIG_ETRAX_SER2_CD_ON_PB_BIT == -1
644# ifndef CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED
645# define CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED 1
646# endif
647# endif
648#endif
649
650#endif
651
652#ifdef CONFIG_ETRAX_SERIAL_PORT3
653
654#define SER3_PA_BITSUM (CONFIG_ETRAX_SER3_DTR_ON_PA_BIT+CONFIG_ETRAX_SER3_RI_ON_PA_BIT+CONFIG_ETRAX_SER3_DSR_ON_PA_BIT+CONFIG_ETRAX_SER3_CD_ON_PA_BIT)
655
656#if SER3_PA_BITSUM != -4
657# if CONFIG_ETRAX_SER3_DTR_ON_PA_BIT == -1
658# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
659# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
660# endif
661# endif
662# if CONFIG_ETRAX_SER3_RI_ON_PA_BIT == -1
663# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
664# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
665# endif
666# endif
667# if CONFIG_ETRAX_SER3_DSR_ON_PA_BIT == -1
668# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
669# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
670# endif
671# endif
672# if CONFIG_ETRAX_SER3_CD_ON_PA_BIT == -1
673# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
674# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
675# endif
676# endif
677#endif
678
679#define SER3_PB_BITSUM (CONFIG_ETRAX_SER3_DTR_ON_PB_BIT+CONFIG_ETRAX_SER3_RI_ON_PB_BIT+CONFIG_ETRAX_SER3_DSR_ON_PB_BIT+CONFIG_ETRAX_SER3_CD_ON_PB_BIT)
680
681#if SER3_PB_BITSUM != -4
682# if CONFIG_ETRAX_SER3_DTR_ON_PB_BIT == -1
683# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
684# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
685# endif
686# endif
687# if CONFIG_ETRAX_SER3_RI_ON_PB_BIT == -1
688# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
689# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
690# endif
691# endif
692# if CONFIG_ETRAX_SER3_DSR_ON_PB_BIT == -1
693# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
694# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
695# endif
696# endif
697# if CONFIG_ETRAX_SER3_CD_ON_PB_BIT == -1
698# ifndef CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED
699# define CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED 1
700# endif
701# endif
702#endif
703
704#endif
705
706
707#if defined(CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_MIXED) || \
708 defined(CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_MIXED) || \
709 defined(CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_MIXED) || \
710 defined(CONFIG_ETRAX_SER3_DTR_RI_DSR_CD_MIXED)
711#define ETRAX_SERX_DTR_RI_DSR_CD_MIXED
712#endif
713
714#ifdef ETRAX_SERX_DTR_RI_DSR_CD_MIXED
715
716#define CONTROL_PINS_PORT_NOT_USED(line) \
717 &dummy_ser[line], &dummy_ser[line], \
718 &dummy_ser[line], &dummy_ser[line], \
719 &dummy_ser[line], &dummy_ser[line], \
720 &dummy_ser[line], &dummy_ser[line], \
721 DUMMY_DTR_MASK, DUMMY_RI_MASK, DUMMY_DSR_MASK, DUMMY_CD_MASK
722
723
724struct control_pins
725{
726 volatile unsigned char *dtr_port;
727 unsigned char *dtr_shadow;
728 volatile unsigned char *ri_port;
729 unsigned char *ri_shadow;
730 volatile unsigned char *dsr_port;
731 unsigned char *dsr_shadow;
732 volatile unsigned char *cd_port;
733 unsigned char *cd_shadow;
734
735 unsigned char dtr_mask;
736 unsigned char ri_mask;
737 unsigned char dsr_mask;
738 unsigned char cd_mask;
739};
740
741static const struct control_pins e100_modem_pins[NR_PORTS] =
742{
743
744 {
745#ifdef CONFIG_ETRAX_SERIAL_PORT0
746 E100_STRUCT_PORT(0,DTR), E100_STRUCT_SHADOW(0,DTR),
747 E100_STRUCT_PORT(0,RI), E100_STRUCT_SHADOW(0,RI),
748 E100_STRUCT_PORT(0,DSR), E100_STRUCT_SHADOW(0,DSR),
749 E100_STRUCT_PORT(0,CD), E100_STRUCT_SHADOW(0,CD),
750 E100_STRUCT_MASK(0,DTR),
751 E100_STRUCT_MASK(0,RI),
752 E100_STRUCT_MASK(0,DSR),
753 E100_STRUCT_MASK(0,CD)
754#else
755 CONTROL_PINS_PORT_NOT_USED(0)
756#endif
757 },
758
759
760 {
761#ifdef CONFIG_ETRAX_SERIAL_PORT1
762 E100_STRUCT_PORT(1,DTR), E100_STRUCT_SHADOW(1,DTR),
763 E100_STRUCT_PORT(1,RI), E100_STRUCT_SHADOW(1,RI),
764 E100_STRUCT_PORT(1,DSR), E100_STRUCT_SHADOW(1,DSR),
765 E100_STRUCT_PORT(1,CD), E100_STRUCT_SHADOW(1,CD),
766 E100_STRUCT_MASK(1,DTR),
767 E100_STRUCT_MASK(1,RI),
768 E100_STRUCT_MASK(1,DSR),
769 E100_STRUCT_MASK(1,CD)
770#else
771 CONTROL_PINS_PORT_NOT_USED(1)
772#endif
773 },
774
775
776 {
777#ifdef CONFIG_ETRAX_SERIAL_PORT2
778 E100_STRUCT_PORT(2,DTR), E100_STRUCT_SHADOW(2,DTR),
779 E100_STRUCT_PORT(2,RI), E100_STRUCT_SHADOW(2,RI),
780 E100_STRUCT_PORT(2,DSR), E100_STRUCT_SHADOW(2,DSR),
781 E100_STRUCT_PORT(2,CD), E100_STRUCT_SHADOW(2,CD),
782 E100_STRUCT_MASK(2,DTR),
783 E100_STRUCT_MASK(2,RI),
784 E100_STRUCT_MASK(2,DSR),
785 E100_STRUCT_MASK(2,CD)
786#else
787 CONTROL_PINS_PORT_NOT_USED(2)
788#endif
789 },
790
791
792 {
793#ifdef CONFIG_ETRAX_SERIAL_PORT3
794 E100_STRUCT_PORT(3,DTR), E100_STRUCT_SHADOW(3,DTR),
795 E100_STRUCT_PORT(3,RI), E100_STRUCT_SHADOW(3,RI),
796 E100_STRUCT_PORT(3,DSR), E100_STRUCT_SHADOW(3,DSR),
797 E100_STRUCT_PORT(3,CD), E100_STRUCT_SHADOW(3,CD),
798 E100_STRUCT_MASK(3,DTR),
799 E100_STRUCT_MASK(3,RI),
800 E100_STRUCT_MASK(3,DSR),
801 E100_STRUCT_MASK(3,CD)
802#else
803 CONTROL_PINS_PORT_NOT_USED(3)
804#endif
805 }
806};
807#else
808
809
810#define CONTROL_PINS_PORT_NOT_USED(line) \
811 &dummy_ser[line], &dummy_ser[line], \
812 DUMMY_DTR_MASK, DUMMY_RI_MASK, DUMMY_DSR_MASK, DUMMY_CD_MASK
813
814
815struct control_pins
816{
817 volatile unsigned char *port;
818 unsigned char *shadow;
819
820 unsigned char dtr_mask;
821 unsigned char ri_mask;
822 unsigned char dsr_mask;
823 unsigned char cd_mask;
824};
825
826#define dtr_port port
827#define dtr_shadow shadow
828#define ri_port port
829#define ri_shadow shadow
830#define dsr_port port
831#define dsr_shadow shadow
832#define cd_port port
833#define cd_shadow shadow
834
835static const struct control_pins e100_modem_pins[NR_PORTS] =
836{
837
838 {
839#ifdef CONFIG_ETRAX_SERIAL_PORT0
840 E100_STRUCT_PORT(0,DTR), E100_STRUCT_SHADOW(0,DTR),
841 E100_STRUCT_MASK(0,DTR),
842 E100_STRUCT_MASK(0,RI),
843 E100_STRUCT_MASK(0,DSR),
844 E100_STRUCT_MASK(0,CD)
845#else
846 CONTROL_PINS_PORT_NOT_USED(0)
847#endif
848 },
849
850
851 {
852#ifdef CONFIG_ETRAX_SERIAL_PORT1
853 E100_STRUCT_PORT(1,DTR), E100_STRUCT_SHADOW(1,DTR),
854 E100_STRUCT_MASK(1,DTR),
855 E100_STRUCT_MASK(1,RI),
856 E100_STRUCT_MASK(1,DSR),
857 E100_STRUCT_MASK(1,CD)
858#else
859 CONTROL_PINS_PORT_NOT_USED(1)
860#endif
861 },
862
863
864 {
865#ifdef CONFIG_ETRAX_SERIAL_PORT2
866 E100_STRUCT_PORT(2,DTR), E100_STRUCT_SHADOW(2,DTR),
867 E100_STRUCT_MASK(2,DTR),
868 E100_STRUCT_MASK(2,RI),
869 E100_STRUCT_MASK(2,DSR),
870 E100_STRUCT_MASK(2,CD)
871#else
872 CONTROL_PINS_PORT_NOT_USED(2)
873#endif
874 },
875
876
877 {
878#ifdef CONFIG_ETRAX_SERIAL_PORT3
879 E100_STRUCT_PORT(3,DTR), E100_STRUCT_SHADOW(3,DTR),
880 E100_STRUCT_MASK(3,DTR),
881 E100_STRUCT_MASK(3,RI),
882 E100_STRUCT_MASK(3,DSR),
883 E100_STRUCT_MASK(3,CD)
884#else
885 CONTROL_PINS_PORT_NOT_USED(3)
886#endif
887 }
888};
889#endif
890
891#define E100_RTS_MASK 0x20
892#define E100_CTS_MASK 0x40
893
894
895
896
897
898
899
900
901
902#define E100_RTS_GET(info) ((info)->rx_ctrl & E100_RTS_MASK)
903
904#define E100_CTS_GET(info) ((info)->ioport[REG_STATUS] & E100_CTS_MASK)
905
906
907
908#define E100_DTR_GET(info) ((*e100_modem_pins[(info)->line].dtr_shadow) & e100_modem_pins[(info)->line].dtr_mask)
909
910
911#define E100_RI_GET(info) ((*e100_modem_pins[(info)->line].ri_port) & e100_modem_pins[(info)->line].ri_mask)
912#define E100_CD_GET(info) ((*e100_modem_pins[(info)->line].cd_port) & e100_modem_pins[(info)->line].cd_mask)
913
914
915#define E100_DSR_GET(info) ((*e100_modem_pins[(info)->line].dsr_port) & e100_modem_pins[(info)->line].dsr_mask)
916
917
918static void update_char_time(struct e100_serial * info)
919{
920 tcflag_t cflags = info->port.tty->termios.c_cflag;
921 int bits;
922
923
924
925 if ((cflags & CSIZE) == CS7)
926 bits = 9;
927 else
928 bits = 10;
929
930 if (cflags & CSTOPB)
931 bits++;
932
933 if (cflags & PARENB)
934 bits++;
935
936
937 info->char_time_usec = ((bits * 1000000) / info->baud) + 1;
938 info->flush_time_usec = 4*info->char_time_usec;
939 if (info->flush_time_usec < MIN_FLUSH_TIME_USEC)
940 info->flush_time_usec = MIN_FLUSH_TIME_USEC;
941
942}
943
944
945
946
947
948
949static int
950cflag_to_baud(unsigned int cflag)
951{
952 static int baud_table[] = {
953 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400,
954 4800, 9600, 19200, 38400 };
955
956 static int ext_baud_table[] = {
957 0, 57600, 115200, 230400, 460800, 921600, 1843200, 6250000,
958 0, 0, 0, 0, 0, 0, 0, 0 };
959
960 if (cflag & CBAUDEX)
961 return ext_baud_table[(cflag & CBAUD) & ~CBAUDEX];
962 else
963 return baud_table[cflag & CBAUD];
964}
965
966
967
968static unsigned char
969cflag_to_etrax_baud(unsigned int cflag)
970{
971 char retval;
972
973 static char baud_table[] = {
974 -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, -1, 3, 4, 5, 6, 7 };
975
976 static char ext_baud_table[] = {
977 -1, 8, 9, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1 };
978
979 if (cflag & CBAUDEX)
980 retval = ext_baud_table[(cflag & CBAUD) & ~CBAUDEX];
981 else
982 retval = baud_table[cflag & CBAUD];
983
984 if (retval < 0) {
985 printk(KERN_WARNING "serdriver tried setting invalid baud rate, flags %x.\n", cflag);
986 retval = 5;
987 }
988
989 return retval | (retval << 4);
990}
991
992
993
994
995
996
997
998
999
1000
1001
1002static inline void
1003e100_dtr(struct e100_serial *info, int set)
1004{
1005 unsigned char mask = e100_modem_pins[info->line].dtr_mask;
1006
1007#ifdef SERIAL_DEBUG_IO
1008 printk("ser%i dtr %i mask: 0x%02X\n", info->line, set, mask);
1009 printk("ser%i shadow before 0x%02X get: %i\n",
1010 info->line, *e100_modem_pins[info->line].dtr_shadow,
1011 E100_DTR_GET(info));
1012#endif
1013
1014 {
1015 unsigned long flags;
1016
1017 local_irq_save(flags);
1018 *e100_modem_pins[info->line].dtr_shadow &= ~mask;
1019 *e100_modem_pins[info->line].dtr_shadow |= (set ? 0 : mask);
1020 *e100_modem_pins[info->line].dtr_port = *e100_modem_pins[info->line].dtr_shadow;
1021 local_irq_restore(flags);
1022 }
1023
1024#ifdef SERIAL_DEBUG_IO
1025 printk("ser%i shadow after 0x%02X get: %i\n",
1026 info->line, *e100_modem_pins[info->line].dtr_shadow,
1027 E100_DTR_GET(info));
1028#endif
1029}
1030
1031
1032
1033
1034static inline void
1035e100_rts(struct e100_serial *info, int set)
1036{
1037 unsigned long flags;
1038 local_irq_save(flags);
1039 info->rx_ctrl &= ~E100_RTS_MASK;
1040 info->rx_ctrl |= (set ? 0 : E100_RTS_MASK);
1041 info->ioport[REG_REC_CTRL] = info->rx_ctrl;
1042 local_irq_restore(flags);
1043#ifdef SERIAL_DEBUG_IO
1044 printk("ser%i rts %i\n", info->line, set);
1045#endif
1046}
1047
1048
1049
1050static inline void
1051e100_ri_out(struct e100_serial *info, int set)
1052{
1053
1054 {
1055 unsigned char mask = e100_modem_pins[info->line].ri_mask;
1056 unsigned long flags;
1057
1058 local_irq_save(flags);
1059 *e100_modem_pins[info->line].ri_shadow &= ~mask;
1060 *e100_modem_pins[info->line].ri_shadow |= (set ? 0 : mask);
1061 *e100_modem_pins[info->line].ri_port = *e100_modem_pins[info->line].ri_shadow;
1062 local_irq_restore(flags);
1063 }
1064}
1065static inline void
1066e100_cd_out(struct e100_serial *info, int set)
1067{
1068
1069 {
1070 unsigned char mask = e100_modem_pins[info->line].cd_mask;
1071 unsigned long flags;
1072
1073 local_irq_save(flags);
1074 *e100_modem_pins[info->line].cd_shadow &= ~mask;
1075 *e100_modem_pins[info->line].cd_shadow |= (set ? 0 : mask);
1076 *e100_modem_pins[info->line].cd_port = *e100_modem_pins[info->line].cd_shadow;
1077 local_irq_restore(flags);
1078 }
1079}
1080
1081static inline void
1082e100_disable_rx(struct e100_serial *info)
1083{
1084
1085 info->ioport[REG_REC_CTRL] =
1086 (info->rx_ctrl &= ~IO_MASK(R_SERIAL0_REC_CTRL, rec_enable));
1087}
1088
1089static inline void
1090e100_enable_rx(struct e100_serial *info)
1091{
1092
1093 info->ioport[REG_REC_CTRL] =
1094 (info->rx_ctrl |= IO_MASK(R_SERIAL0_REC_CTRL, rec_enable));
1095}
1096
1097
1098
1099static inline void
1100e100_disable_rxdma_irq(struct e100_serial *info)
1101{
1102#ifdef SERIAL_DEBUG_INTR
1103 printk("rxdma_irq(%d): 0\n",info->line);
1104#endif
1105 DINTR1(DEBUG_LOG(info->line,"IRQ disable_rxdma_irq %i\n", info->line));
1106 *R_IRQ_MASK2_CLR = (info->irq << 2) | (info->irq << 3);
1107}
1108
1109static inline void
1110e100_enable_rxdma_irq(struct e100_serial *info)
1111{
1112#ifdef SERIAL_DEBUG_INTR
1113 printk("rxdma_irq(%d): 1\n",info->line);
1114#endif
1115 DINTR1(DEBUG_LOG(info->line,"IRQ enable_rxdma_irq %i\n", info->line));
1116 *R_IRQ_MASK2_SET = (info->irq << 2) | (info->irq << 3);
1117}
1118
1119
1120
1121static void e100_disable_txdma_irq(struct e100_serial *info)
1122{
1123#ifdef SERIAL_DEBUG_INTR
1124 printk("txdma_irq(%d): 0\n",info->line);
1125#endif
1126 DINTR1(DEBUG_LOG(info->line,"IRQ disable_txdma_irq %i\n", info->line));
1127 *R_IRQ_MASK2_CLR = info->irq;
1128}
1129
1130static void e100_enable_txdma_irq(struct e100_serial *info)
1131{
1132#ifdef SERIAL_DEBUG_INTR
1133 printk("txdma_irq(%d): 1\n",info->line);
1134#endif
1135 DINTR1(DEBUG_LOG(info->line,"IRQ enable_txdma_irq %i\n", info->line));
1136 *R_IRQ_MASK2_SET = info->irq;
1137}
1138
1139static void e100_disable_txdma_channel(struct e100_serial *info)
1140{
1141 unsigned long flags;
1142
1143
1144
1145
1146 local_irq_save(flags);
1147 DFLOW(DEBUG_LOG(info->line, "disable_txdma_channel %i\n", info->line));
1148 if (info->line == 0) {
1149 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma6)) ==
1150 IO_STATE(R_GEN_CONFIG, dma6, serial0)) {
1151 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma6);
1152 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma6, unused);
1153 }
1154 } else if (info->line == 1) {
1155 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma8)) ==
1156 IO_STATE(R_GEN_CONFIG, dma8, serial1)) {
1157 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma8);
1158 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma8, usb);
1159 }
1160 } else if (info->line == 2) {
1161 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma2)) ==
1162 IO_STATE(R_GEN_CONFIG, dma2, serial2)) {
1163 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma2);
1164 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma2, par0);
1165 }
1166 } else if (info->line == 3) {
1167 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma4)) ==
1168 IO_STATE(R_GEN_CONFIG, dma4, serial3)) {
1169 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma4);
1170 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma4, par1);
1171 }
1172 }
1173 *R_GEN_CONFIG = genconfig_shadow;
1174 local_irq_restore(flags);
1175}
1176
1177
1178static void e100_enable_txdma_channel(struct e100_serial *info)
1179{
1180 unsigned long flags;
1181
1182 local_irq_save(flags);
1183 DFLOW(DEBUG_LOG(info->line, "enable_txdma_channel %i\n", info->line));
1184
1185 if (info->line == 0) {
1186 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma6);
1187 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma6, serial0);
1188 } else if (info->line == 1) {
1189 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma8);
1190 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma8, serial1);
1191 } else if (info->line == 2) {
1192 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma2);
1193 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma2, serial2);
1194 } else if (info->line == 3) {
1195 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma4);
1196 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma4, serial3);
1197 }
1198 *R_GEN_CONFIG = genconfig_shadow;
1199 local_irq_restore(flags);
1200}
1201
1202static void e100_disable_rxdma_channel(struct e100_serial *info)
1203{
1204 unsigned long flags;
1205
1206
1207
1208
1209 local_irq_save(flags);
1210 if (info->line == 0) {
1211 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma7)) ==
1212 IO_STATE(R_GEN_CONFIG, dma7, serial0)) {
1213 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma7);
1214 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma7, unused);
1215 }
1216 } else if (info->line == 1) {
1217 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma9)) ==
1218 IO_STATE(R_GEN_CONFIG, dma9, serial1)) {
1219 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma9);
1220 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma9, usb);
1221 }
1222 } else if (info->line == 2) {
1223 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma3)) ==
1224 IO_STATE(R_GEN_CONFIG, dma3, serial2)) {
1225 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma3);
1226 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma3, par0);
1227 }
1228 } else if (info->line == 3) {
1229 if ((genconfig_shadow & IO_MASK(R_GEN_CONFIG, dma5)) ==
1230 IO_STATE(R_GEN_CONFIG, dma5, serial3)) {
1231 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma5);
1232 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma5, par1);
1233 }
1234 }
1235 *R_GEN_CONFIG = genconfig_shadow;
1236 local_irq_restore(flags);
1237}
1238
1239
1240static void e100_enable_rxdma_channel(struct e100_serial *info)
1241{
1242 unsigned long flags;
1243
1244 local_irq_save(flags);
1245
1246 if (info->line == 0) {
1247 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma7);
1248 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma7, serial0);
1249 } else if (info->line == 1) {
1250 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma9);
1251 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma9, serial1);
1252 } else if (info->line == 2) {
1253 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma3);
1254 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma3, serial2);
1255 } else if (info->line == 3) {
1256 genconfig_shadow &= ~IO_MASK(R_GEN_CONFIG, dma5);
1257 genconfig_shadow |= IO_STATE(R_GEN_CONFIG, dma5, serial3);
1258 }
1259 *R_GEN_CONFIG = genconfig_shadow;
1260 local_irq_restore(flags);
1261}
1262
1263#ifdef SERIAL_HANDLE_EARLY_ERRORS
1264
1265
1266
1267static inline void
1268e100_disable_serial_data_irq(struct e100_serial *info)
1269{
1270#ifdef SERIAL_DEBUG_INTR
1271 printk("ser_irq(%d): 0\n",info->line);
1272#endif
1273 DINTR1(DEBUG_LOG(info->line,"IRQ disable data_irq %i\n", info->line));
1274 *R_IRQ_MASK1_CLR = (1U << (8+2*info->line));
1275}
1276
1277static inline void
1278e100_enable_serial_data_irq(struct e100_serial *info)
1279{
1280#ifdef SERIAL_DEBUG_INTR
1281 printk("ser_irq(%d): 1\n",info->line);
1282 printk("**** %d = %d\n",
1283 (8+2*info->line),
1284 (1U << (8+2*info->line)));
1285#endif
1286 DINTR1(DEBUG_LOG(info->line,"IRQ enable data_irq %i\n", info->line));
1287 *R_IRQ_MASK1_SET = (1U << (8+2*info->line));
1288}
1289#endif
1290
1291static inline void
1292e100_disable_serial_tx_ready_irq(struct e100_serial *info)
1293{
1294#ifdef SERIAL_DEBUG_INTR
1295 printk("ser_tx_irq(%d): 0\n",info->line);
1296#endif
1297 DINTR1(DEBUG_LOG(info->line,"IRQ disable ready_irq %i\n", info->line));
1298 *R_IRQ_MASK1_CLR = (1U << (8+1+2*info->line));
1299}
1300
1301static inline void
1302e100_enable_serial_tx_ready_irq(struct e100_serial *info)
1303{
1304#ifdef SERIAL_DEBUG_INTR
1305 printk("ser_tx_irq(%d): 1\n",info->line);
1306 printk("**** %d = %d\n",
1307 (8+1+2*info->line),
1308 (1U << (8+1+2*info->line)));
1309#endif
1310 DINTR2(DEBUG_LOG(info->line,"IRQ enable ready_irq %i\n", info->line));
1311 *R_IRQ_MASK1_SET = (1U << (8+1+2*info->line));
1312}
1313
1314static inline void e100_enable_rx_irq(struct e100_serial *info)
1315{
1316 if (info->uses_dma_in)
1317 e100_enable_rxdma_irq(info);
1318 else
1319 e100_enable_serial_data_irq(info);
1320}
1321static inline void e100_disable_rx_irq(struct e100_serial *info)
1322{
1323 if (info->uses_dma_in)
1324 e100_disable_rxdma_irq(info);
1325 else
1326 e100_disable_serial_data_irq(info);
1327}
1328
1329#if defined(CONFIG_ETRAX_RS485)
1330
1331static int
1332e100_enable_rs485(struct tty_struct *tty, struct serial_rs485 *r)
1333{
1334 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
1335
1336#if defined(CONFIG_ETRAX_RS485_ON_PA)
1337 *R_PORT_PA_DATA = port_pa_data_shadow |= (1 << rs485_pa_bit);
1338#endif
1339
1340 info->rs485 = *r;
1341
1342
1343 if (info->rs485.delay_rts_before_send >= 1000)
1344 info->rs485.delay_rts_before_send = 1000;
1345
1346
1347
1348
1349
1350
1351
1352 return 0;
1353}
1354
1355static int
1356e100_write_rs485(struct tty_struct *tty,
1357 const unsigned char *buf, int count)
1358{
1359 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
1360 int old_value = (info->rs485.flags) & SER_RS485_ENABLED;
1361
1362
1363
1364
1365
1366
1367 info->rs485.flags |= SER_RS485_ENABLED;
1368
1369 count = rs_write(tty, buf, count);
1370 if (!old_value)
1371 info->rs485.flags &= ~(SER_RS485_ENABLED);
1372 return count;
1373}
1374
1375#ifdef CONFIG_ETRAX_FAST_TIMER
1376
1377static void rs485_toggle_rts_timer_function(unsigned long data)
1378{
1379 struct e100_serial *info = (struct e100_serial *)data;
1380
1381 fast_timers_rs485[info->line].function = NULL;
1382 e100_rts(info, (info->rs485.flags & SER_RS485_RTS_AFTER_SEND));
1383#if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
1384 e100_enable_rx(info);
1385 e100_enable_rx_irq(info);
1386#endif
1387}
1388#endif
1389#endif
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400static void
1401rs_stop(struct tty_struct *tty)
1402{
1403 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
1404 if (info) {
1405 unsigned long flags;
1406 unsigned long xoff;
1407
1408 local_irq_save(flags);
1409 DFLOW(DEBUG_LOG(info->line, "XOFF rs_stop xmit %i\n",
1410 CIRC_CNT(info->xmit.head,
1411 info->xmit.tail,SERIAL_XMIT_SIZE)));
1412
1413 xoff = IO_FIELD(R_SERIAL0_XOFF, xoff_char,
1414 STOP_CHAR(info->port.tty));
1415 xoff |= IO_STATE(R_SERIAL0_XOFF, tx_stop, stop);
1416 if (I_IXON(tty))
1417 xoff |= IO_STATE(R_SERIAL0_XOFF, auto_xoff, enable);
1418
1419 *((unsigned long *)&info->ioport[REG_XOFF]) = xoff;
1420 local_irq_restore(flags);
1421 }
1422}
1423
1424static void
1425rs_start(struct tty_struct *tty)
1426{
1427 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
1428 if (info) {
1429 unsigned long flags;
1430 unsigned long xoff;
1431
1432 local_irq_save(flags);
1433 DFLOW(DEBUG_LOG(info->line, "XOFF rs_start xmit %i\n",
1434 CIRC_CNT(info->xmit.head,
1435 info->xmit.tail,SERIAL_XMIT_SIZE)));
1436 xoff = IO_FIELD(R_SERIAL0_XOFF, xoff_char, STOP_CHAR(tty));
1437 xoff |= IO_STATE(R_SERIAL0_XOFF, tx_stop, enable);
1438 if (I_IXON(tty))
1439 xoff |= IO_STATE(R_SERIAL0_XOFF, auto_xoff, enable);
1440
1441 *((unsigned long *)&info->ioport[REG_XOFF]) = xoff;
1442 if (!info->uses_dma_out &&
1443 info->xmit.head != info->xmit.tail && info->xmit.buf)
1444 e100_enable_serial_tx_ready_irq(info);
1445
1446 local_irq_restore(flags);
1447 }
1448}
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475static void rs_sched_event(struct e100_serial *info, int event)
1476{
1477 if (info->event & (1 << event))
1478 return;
1479 info->event |= 1 << event;
1480 schedule_work(&info->work);
1481}
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494static void
1495transmit_chars_dma(struct e100_serial *info)
1496{
1497 unsigned int c, sentl;
1498 struct etrax_dma_descr *descr;
1499
1500
1501 *info->oclrintradr =
1502 IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
1503 IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
1504
1505#ifdef SERIAL_DEBUG_INTR
1506 if (info->line == SERIAL_DEBUG_LINE)
1507 printk("tc\n");
1508#endif
1509 if (!info->tr_running) {
1510
1511 printk(KERN_WARNING "Achtung: transmit_chars_dma with !tr_running\n");
1512 return;
1513 }
1514
1515 descr = &info->tr_descr;
1516
1517
1518
1519
1520
1521 if (!(descr->status & d_stop)) {
1522 sentl = descr->sw_len;
1523 } else
1524
1525 sentl = descr->hw_len;
1526
1527 DFLOW(DEBUG_LOG(info->line, "TX %i done\n", sentl));
1528
1529
1530 info->icount.tx += sentl;
1531
1532
1533 info->xmit.tail = (info->xmit.tail + sentl) & (SERIAL_XMIT_SIZE - 1);
1534
1535
1536
1537 if (CIRC_CNT(info->xmit.head,
1538 info->xmit.tail,
1539 SERIAL_XMIT_SIZE) < WAKEUP_CHARS)
1540 rs_sched_event(info, RS_EVENT_WRITE_WAKEUP);
1541
1542
1543
1544 c = CIRC_CNT_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
1545
1546
1547
1548
1549
1550 if (c >= 4*WAKEUP_CHARS)
1551 c = c/2;
1552
1553 if (c <= 0) {
1554
1555 info->tr_running = 0;
1556
1557#if defined(CONFIG_ETRAX_RS485) && defined(CONFIG_ETRAX_FAST_TIMER)
1558 if (info->rs485.flags & SER_RS485_ENABLED) {
1559
1560 start_one_shot_timer(&fast_timers_rs485[info->line],
1561 rs485_toggle_rts_timer_function,
1562 (unsigned long)info,
1563 info->char_time_usec*2,
1564 "RS-485");
1565 }
1566#endif
1567 return;
1568 }
1569
1570
1571
1572 DFLOW(DEBUG_LOG(info->line, "TX %i\n", c));
1573 descr->ctrl = d_int | d_eol | d_wait;
1574 descr->sw_len = c;
1575 descr->buf = virt_to_phys(info->xmit.buf + info->xmit.tail);
1576 descr->status = 0;
1577
1578 *info->ofirstadr = virt_to_phys(descr);
1579 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, start);
1580
1581
1582}
1583
1584static void
1585start_transmit(struct e100_serial *info)
1586{
1587#if 0
1588 if (info->line == SERIAL_DEBUG_LINE)
1589 printk("x\n");
1590#endif
1591
1592 info->tr_descr.sw_len = 0;
1593 info->tr_descr.hw_len = 0;
1594 info->tr_descr.status = 0;
1595 info->tr_running = 1;
1596 if (info->uses_dma_out)
1597 transmit_chars_dma(info);
1598 else
1599 e100_enable_serial_tx_ready_irq(info);
1600}
1601
1602#ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
1603static int serial_fast_timer_started = 0;
1604static int serial_fast_timer_expired = 0;
1605static void flush_timeout_function(unsigned long data);
1606#define START_FLUSH_FAST_TIMER_TIME(info, string, usec) {\
1607 unsigned long timer_flags; \
1608 local_irq_save(timer_flags); \
1609 if (fast_timers[info->line].function == NULL) { \
1610 serial_fast_timer_started++; \
1611 TIMERD(DEBUG_LOG(info->line, "start_timer %i ", info->line)); \
1612 TIMERD(DEBUG_LOG(info->line, "num started: %i\n", serial_fast_timer_started)); \
1613 start_one_shot_timer(&fast_timers[info->line], \
1614 flush_timeout_function, \
1615 (unsigned long)info, \
1616 (usec), \
1617 string); \
1618 } \
1619 else { \
1620 TIMERD(DEBUG_LOG(info->line, "timer %i already running\n", info->line)); \
1621 } \
1622 local_irq_restore(timer_flags); \
1623}
1624#define START_FLUSH_FAST_TIMER(info, string) START_FLUSH_FAST_TIMER_TIME(info, string, info->flush_time_usec)
1625
1626#else
1627#define START_FLUSH_FAST_TIMER_TIME(info, string, usec)
1628#define START_FLUSH_FAST_TIMER(info, string)
1629#endif
1630
1631static struct etrax_recv_buffer *
1632alloc_recv_buffer(unsigned int size)
1633{
1634 struct etrax_recv_buffer *buffer;
1635
1636 buffer = kmalloc(sizeof *buffer + size, GFP_ATOMIC);
1637 if (!buffer)
1638 return NULL;
1639
1640 buffer->next = NULL;
1641 buffer->length = 0;
1642 buffer->error = TTY_NORMAL;
1643
1644 return buffer;
1645}
1646
1647static void
1648append_recv_buffer(struct e100_serial *info, struct etrax_recv_buffer *buffer)
1649{
1650 unsigned long flags;
1651
1652 local_irq_save(flags);
1653
1654 if (!info->first_recv_buffer)
1655 info->first_recv_buffer = buffer;
1656 else
1657 info->last_recv_buffer->next = buffer;
1658
1659 info->last_recv_buffer = buffer;
1660
1661 info->recv_cnt += buffer->length;
1662 if (info->recv_cnt > info->max_recv_cnt)
1663 info->max_recv_cnt = info->recv_cnt;
1664
1665 local_irq_restore(flags);
1666}
1667
1668static int
1669add_char_and_flag(struct e100_serial *info, unsigned char data, unsigned char flag)
1670{
1671 struct etrax_recv_buffer *buffer;
1672 if (info->uses_dma_in) {
1673 buffer = alloc_recv_buffer(4);
1674 if (!buffer)
1675 return 0;
1676
1677 buffer->length = 1;
1678 buffer->error = flag;
1679 buffer->buffer[0] = data;
1680
1681 append_recv_buffer(info, buffer);
1682
1683 info->icount.rx++;
1684 } else {
1685 tty_insert_flip_char(&info->port, data, flag);
1686 info->icount.rx++;
1687 }
1688
1689 return 1;
1690}
1691
1692static unsigned int handle_descr_data(struct e100_serial *info,
1693 struct etrax_dma_descr *descr,
1694 unsigned int recvl)
1695{
1696 struct etrax_recv_buffer *buffer = phys_to_virt(descr->buf) - sizeof *buffer;
1697
1698 if (info->recv_cnt + recvl > 65536) {
1699 printk(KERN_WARNING
1700 "%s: Too much pending incoming serial data! Dropping %u bytes.\n", __func__, recvl);
1701 return 0;
1702 }
1703
1704 buffer->length = recvl;
1705
1706 if (info->errorcode == ERRCODE_SET_BREAK)
1707 buffer->error = TTY_BREAK;
1708 info->errorcode = 0;
1709
1710 append_recv_buffer(info, buffer);
1711
1712 buffer = alloc_recv_buffer(SERIAL_DESCR_BUF_SIZE);
1713 if (!buffer)
1714 panic("%s: Failed to allocate memory for receive buffer!\n", __func__);
1715
1716 descr->buf = virt_to_phys(buffer->buffer);
1717
1718 return recvl;
1719}
1720
1721static unsigned int handle_all_descr_data(struct e100_serial *info)
1722{
1723 struct etrax_dma_descr *descr;
1724 unsigned int recvl;
1725 unsigned int ret = 0;
1726
1727 while (1)
1728 {
1729 descr = &info->rec_descr[info->cur_rec_descr];
1730
1731 if (descr == phys_to_virt(*info->idescradr))
1732 break;
1733
1734 if (++info->cur_rec_descr == SERIAL_RECV_DESCRIPTORS)
1735 info->cur_rec_descr = 0;
1736
1737
1738
1739
1740 if (!(descr->status & d_eop)) {
1741 recvl = descr->sw_len;
1742 } else {
1743
1744 recvl = descr->hw_len;
1745 }
1746
1747
1748 descr->status = 0;
1749
1750 DFLOW( DEBUG_LOG(info->line, "RX %lu\n", recvl);
1751 if (info->port.tty->stopped) {
1752 unsigned char *buf = phys_to_virt(descr->buf);
1753 DEBUG_LOG(info->line, "rx 0x%02X\n", buf[0]);
1754 DEBUG_LOG(info->line, "rx 0x%02X\n", buf[1]);
1755 DEBUG_LOG(info->line, "rx 0x%02X\n", buf[2]);
1756 }
1757 );
1758
1759
1760 info->icount.rx += recvl;
1761
1762 ret += handle_descr_data(info, descr, recvl);
1763 }
1764
1765 return ret;
1766}
1767
1768static void receive_chars_dma(struct e100_serial *info)
1769{
1770 struct tty_struct *tty;
1771 unsigned char rstat;
1772
1773
1774 *info->iclrintradr =
1775 IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
1776 IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
1777
1778 tty = info->port.tty;
1779 if (!tty)
1780 return;
1781
1782#ifdef SERIAL_HANDLE_EARLY_ERRORS
1783 if (info->uses_dma_in)
1784 e100_enable_serial_data_irq(info);
1785#endif
1786
1787 if (info->errorcode == ERRCODE_INSERT_BREAK)
1788 add_char_and_flag(info, '\0', TTY_BREAK);
1789
1790 handle_all_descr_data(info);
1791
1792
1793 rstat = info->ioport[REG_STATUS];
1794 if (rstat & IO_MASK(R_SERIAL0_STATUS, xoff_detect) ) {
1795 DFLOW(DEBUG_LOG(info->line, "XOFF detect stat %x\n", rstat));
1796 }
1797
1798 if (rstat & SER_ERROR_MASK) {
1799
1800
1801
1802 unsigned char data = info->ioport[REG_DATA];
1803
1804 DEBUG_LOG(info->line, "#dERR: s d 0x%04X\n",
1805 ((rstat & SER_ERROR_MASK) << 8) | data);
1806
1807 if (rstat & SER_PAR_ERR_MASK)
1808 add_char_and_flag(info, data, TTY_PARITY);
1809 else if (rstat & SER_OVERRUN_MASK)
1810 add_char_and_flag(info, data, TTY_OVERRUN);
1811 else if (rstat & SER_FRAMING_ERR_MASK)
1812 add_char_and_flag(info, data, TTY_FRAME);
1813 }
1814
1815 START_FLUSH_FAST_TIMER(info, "receive_chars");
1816
1817
1818 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, restart);
1819}
1820
1821static int start_recv_dma(struct e100_serial *info)
1822{
1823 struct etrax_dma_descr *descr = info->rec_descr;
1824 struct etrax_recv_buffer *buffer;
1825 int i;
1826
1827
1828 for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++) {
1829 buffer = alloc_recv_buffer(SERIAL_DESCR_BUF_SIZE);
1830 if (!buffer)
1831 panic("%s: Failed to allocate memory for receive buffer!\n", __func__);
1832
1833 descr[i].ctrl = d_int;
1834 descr[i].buf = virt_to_phys(buffer->buffer);
1835 descr[i].sw_len = SERIAL_DESCR_BUF_SIZE;
1836 descr[i].hw_len = 0;
1837 descr[i].status = 0;
1838 descr[i].next = virt_to_phys(&descr[i+1]);
1839 }
1840
1841
1842 descr[i-1].next = virt_to_phys(&descr[0]);
1843
1844
1845 info->cur_rec_descr = 0;
1846
1847
1848 *info->ifirstadr = virt_to_phys(&descr[info->cur_rec_descr]);
1849 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, start);
1850
1851
1852 return 1;
1853}
1854
1855static void
1856start_receive(struct e100_serial *info)
1857{
1858 if (info->uses_dma_in) {
1859
1860
1861 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
1862 while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->icmdadr) ==
1863 IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
1864
1865 start_recv_dma(info);
1866 }
1867}
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882static irqreturn_t
1883tr_interrupt(int irq, void *dev_id)
1884{
1885 struct e100_serial *info;
1886 unsigned long ireg;
1887 int i;
1888 int handled = 0;
1889
1890
1891
1892 ireg = *R_IRQ_MASK2_RD;
1893
1894 for (i = 0; i < NR_PORTS; i++) {
1895 info = rs_table + i;
1896 if (!info->enabled || !info->uses_dma_out)
1897 continue;
1898
1899 if (ireg & info->irq) {
1900 handled = 1;
1901
1902 DINTR2(DEBUG_LOG(info->line, "tr_interrupt %i\n", i));
1903
1904
1905
1906 info->last_tx_active_usec = GET_JIFFIES_USEC();
1907 info->last_tx_active = jiffies;
1908 transmit_chars_dma(info);
1909 }
1910
1911
1912
1913 }
1914 return IRQ_RETVAL(handled);
1915}
1916
1917
1918
1919static irqreturn_t
1920rec_interrupt(int irq, void *dev_id)
1921{
1922 struct e100_serial *info;
1923 unsigned long ireg;
1924 int i;
1925 int handled = 0;
1926
1927
1928
1929 ireg = *R_IRQ_MASK2_RD;
1930
1931 for (i = 0; i < NR_PORTS; i++) {
1932 info = rs_table + i;
1933 if (!info->enabled || !info->uses_dma_in)
1934 continue;
1935
1936 if (ireg & ((info->irq << 2) | (info->irq << 3))) {
1937 handled = 1;
1938
1939 receive_chars_dma(info);
1940 }
1941
1942
1943
1944 }
1945 return IRQ_RETVAL(handled);
1946}
1947
1948static int force_eop_if_needed(struct e100_serial *info)
1949{
1950
1951
1952
1953 unsigned char rstat = info->ioport[REG_STATUS];
1954
1955
1956 if (rstat & SER_ERROR_MASK) {
1957
1958
1959
1960
1961
1962 DEBUG_LOG(info->line, "timeout err: rstat 0x%03X\n",
1963 rstat | (info->line << 8));
1964 return 0;
1965 }
1966
1967 if (rstat & SER_DATA_AVAIL_MASK) {
1968
1969 TIMERD(DEBUG_LOG(info->line, "timeout: rstat 0x%03X\n",
1970 rstat | (info->line << 8)));
1971
1972 (void)info->ioport[REG_DATA];
1973
1974 info->forced_eop = 0;
1975 START_FLUSH_FAST_TIMER(info, "magic");
1976 return 0;
1977 }
1978
1979
1980
1981
1982 if (!info->forced_eop) {
1983 info->forced_eop = 1;
1984 TIMERD(DEBUG_LOG(info->line, "timeout EOP %i\n", info->line));
1985 FORCE_EOP(info);
1986 }
1987
1988 return 1;
1989}
1990
1991static void flush_to_flip_buffer(struct e100_serial *info)
1992{
1993 struct etrax_recv_buffer *buffer;
1994 unsigned long flags;
1995
1996 local_irq_save(flags);
1997
1998 while ((buffer = info->first_recv_buffer) != NULL) {
1999 unsigned int count = buffer->length;
2000
2001 tty_insert_flip_string(&info->port, buffer->buffer, count);
2002 info->recv_cnt -= count;
2003
2004 if (count == buffer->length) {
2005 info->first_recv_buffer = buffer->next;
2006 kfree(buffer);
2007 } else {
2008 buffer->length -= count;
2009 memmove(buffer->buffer, buffer->buffer + count, buffer->length);
2010 buffer->error = TTY_NORMAL;
2011 }
2012 }
2013
2014 if (!info->first_recv_buffer)
2015 info->last_recv_buffer = NULL;
2016
2017 local_irq_restore(flags);
2018
2019
2020 tty_flip_buffer_push(&info->port);
2021}
2022
2023static void check_flush_timeout(struct e100_serial *info)
2024{
2025
2026 flush_to_flip_buffer(info);
2027
2028
2029
2030 if (info->first_recv_buffer)
2031 START_FLUSH_FAST_TIMER_TIME(info, "flip", 2000);
2032
2033
2034
2035
2036
2037 force_eop_if_needed(info);
2038}
2039
2040#ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
2041static void flush_timeout_function(unsigned long data)
2042{
2043 struct e100_serial *info = (struct e100_serial *)data;
2044
2045 fast_timers[info->line].function = NULL;
2046 serial_fast_timer_expired++;
2047 TIMERD(DEBUG_LOG(info->line, "flush_timeout %i ", info->line));
2048 TIMERD(DEBUG_LOG(info->line, "num expired: %i\n", serial_fast_timer_expired));
2049 check_flush_timeout(info);
2050}
2051
2052#else
2053
2054
2055
2056
2057
2058
2059static struct timer_list flush_timer;
2060
2061static void
2062timed_flush_handler(unsigned long ptr)
2063{
2064 struct e100_serial *info;
2065 int i;
2066
2067 for (i = 0; i < NR_PORTS; i++) {
2068 info = rs_table + i;
2069 if (info->uses_dma_in)
2070 check_flush_timeout(info);
2071 }
2072
2073
2074 mod_timer(&flush_timer, jiffies + CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS);
2075}
2076#endif
2077
2078#ifdef SERIAL_HANDLE_EARLY_ERRORS
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148static void handle_ser_rx_interrupt_no_dma(struct e100_serial *info)
2149{
2150 unsigned long data_read;
2151
2152
2153 data_read = *((unsigned long *)&info->ioport[REG_DATA_STATUS32]);
2154more_data:
2155 if (data_read & IO_MASK(R_SERIAL0_READ, xoff_detect) ) {
2156 DFLOW(DEBUG_LOG(info->line, "XOFF detect\n", 0));
2157 }
2158 DINTR2(DEBUG_LOG(info->line, "ser_rx %c\n", IO_EXTRACT(R_SERIAL0_READ, data_in, data_read)));
2159
2160 if (data_read & ( IO_MASK(R_SERIAL0_READ, framing_err) |
2161 IO_MASK(R_SERIAL0_READ, par_err) |
2162 IO_MASK(R_SERIAL0_READ, overrun) )) {
2163
2164 info->last_rx_active_usec = GET_JIFFIES_USEC();
2165 info->last_rx_active = jiffies;
2166 DINTR1(DEBUG_LOG(info->line, "ser_rx err stat_data %04X\n", data_read));
2167 DLOG_INT_TRIG(
2168 if (!log_int_trig1_pos) {
2169 log_int_trig1_pos = log_int_pos;
2170 log_int(rdpc(), 0, 0);
2171 }
2172 );
2173
2174
2175 if ( ((data_read & IO_MASK(R_SERIAL0_READ, data_in)) == 0) &&
2176 (data_read & IO_MASK(R_SERIAL0_READ, framing_err)) ) {
2177
2178
2179
2180
2181 if (!info->break_detected_cnt) {
2182 DEBUG_LOG(info->line, "#BRK start\n", 0);
2183 }
2184 if (data_read & IO_MASK(R_SERIAL0_READ, rxd)) {
2185
2186
2187
2188
2189
2190
2191
2192 DEBUG_LOG(info->line, "# BL BRK\n", 0);
2193 info->errorcode = ERRCODE_INSERT_BREAK;
2194 }
2195 info->break_detected_cnt++;
2196 } else {
2197
2198
2199
2200 if (info->break_detected_cnt) {
2201 DEBUG_LOG(info->line, "EBRK %i\n", info->break_detected_cnt);
2202 info->errorcode = ERRCODE_INSERT_BREAK;
2203 } else {
2204 unsigned char data = IO_EXTRACT(R_SERIAL0_READ,
2205 data_in, data_read);
2206 char flag = TTY_NORMAL;
2207 if (info->errorcode == ERRCODE_INSERT_BREAK) {
2208 tty_insert_flip_char(&info->port, 0, flag);
2209 info->icount.rx++;
2210 }
2211
2212 if (data_read & IO_MASK(R_SERIAL0_READ, par_err)) {
2213 info->icount.parity++;
2214 flag = TTY_PARITY;
2215 } else if (data_read & IO_MASK(R_SERIAL0_READ, overrun)) {
2216 info->icount.overrun++;
2217 flag = TTY_OVERRUN;
2218 } else if (data_read & IO_MASK(R_SERIAL0_READ, framing_err)) {
2219 info->icount.frame++;
2220 flag = TTY_FRAME;
2221 }
2222 tty_insert_flip_char(&info->port, data, flag);
2223 info->errorcode = 0;
2224 }
2225 info->break_detected_cnt = 0;
2226 }
2227 } else if (data_read & IO_MASK(R_SERIAL0_READ, data_avail)) {
2228
2229 DLOG_INT_TRIG(
2230 if (!log_int_trig1_pos) {
2231 if (log_int_pos >= log_int_size) {
2232 log_int_pos = 0;
2233 }
2234 log_int_trig0_pos = log_int_pos;
2235 log_int(rdpc(), 0, 0);
2236 }
2237 );
2238 tty_insert_flip_char(&info->port,
2239 IO_EXTRACT(R_SERIAL0_READ, data_in, data_read),
2240 TTY_NORMAL);
2241 } else {
2242 DEBUG_LOG(info->line, "ser_rx int but no data_avail %08lX\n", data_read);
2243 }
2244
2245
2246 info->icount.rx++;
2247 data_read = *((unsigned long *)&info->ioport[REG_DATA_STATUS32]);
2248 if (data_read & IO_MASK(R_SERIAL0_READ, data_avail)) {
2249 DEBUG_LOG(info->line, "ser_rx %c in loop\n", IO_EXTRACT(R_SERIAL0_READ, data_in, data_read));
2250 goto more_data;
2251 }
2252
2253 tty_flip_buffer_push(&info->port);
2254}
2255
2256static void handle_ser_rx_interrupt(struct e100_serial *info)
2257{
2258 unsigned char rstat;
2259
2260#ifdef SERIAL_DEBUG_INTR
2261 printk("Interrupt from serport %d\n", i);
2262#endif
2263
2264 if (!info->uses_dma_in) {
2265 handle_ser_rx_interrupt_no_dma(info);
2266 return;
2267 }
2268
2269 rstat = info->ioport[REG_STATUS];
2270 if (rstat & IO_MASK(R_SERIAL0_STATUS, xoff_detect) ) {
2271 DFLOW(DEBUG_LOG(info->line, "XOFF detect\n", 0));
2272 }
2273
2274 if (rstat & SER_ERROR_MASK) {
2275 unsigned char data;
2276
2277 info->last_rx_active_usec = GET_JIFFIES_USEC();
2278 info->last_rx_active = jiffies;
2279
2280
2281
2282 data = info->ioport[REG_DATA];
2283 DINTR1(DEBUG_LOG(info->line, "ser_rx! %c\n", data));
2284 DINTR1(DEBUG_LOG(info->line, "ser_rx err stat %02X\n", rstat));
2285 if (!data && (rstat & SER_FRAMING_ERR_MASK)) {
2286
2287
2288
2289
2290 if (!info->break_detected_cnt) {
2291 DEBUG_LOG(info->line, "#BRK start\n", 0);
2292 }
2293 if (rstat & SER_RXD_MASK) {
2294
2295
2296
2297
2298
2299
2300
2301 DEBUG_LOG(info->line, "# BL BRK\n", 0);
2302 info->errorcode = ERRCODE_INSERT_BREAK;
2303 }
2304 info->break_detected_cnt++;
2305 } else {
2306
2307
2308
2309 if (info->break_detected_cnt) {
2310 DEBUG_LOG(info->line, "EBRK %i\n", info->break_detected_cnt);
2311 info->errorcode = ERRCODE_INSERT_BREAK;
2312 } else {
2313 if (info->errorcode == ERRCODE_INSERT_BREAK) {
2314 info->icount.brk++;
2315 add_char_and_flag(info, '\0', TTY_BREAK);
2316 }
2317
2318 if (rstat & SER_PAR_ERR_MASK) {
2319 info->icount.parity++;
2320 add_char_and_flag(info, data, TTY_PARITY);
2321 } else if (rstat & SER_OVERRUN_MASK) {
2322 info->icount.overrun++;
2323 add_char_and_flag(info, data, TTY_OVERRUN);
2324 } else if (rstat & SER_FRAMING_ERR_MASK) {
2325 info->icount.frame++;
2326 add_char_and_flag(info, data, TTY_FRAME);
2327 }
2328
2329 info->errorcode = 0;
2330 }
2331 info->break_detected_cnt = 0;
2332 DEBUG_LOG(info->line, "#iERR s d %04X\n",
2333 ((rstat & SER_ERROR_MASK) << 8) | data);
2334 }
2335 } else {
2336 unsigned long curr_time_u = GET_JIFFIES_USEC();
2337 unsigned long curr_time = jiffies;
2338
2339 if (info->break_detected_cnt) {
2340
2341
2342
2343
2344
2345 long elapsed_usec =
2346 (curr_time - info->last_rx_active) * (1000000/HZ) +
2347 curr_time_u - info->last_rx_active_usec;
2348 if (elapsed_usec < 2*info->char_time_usec) {
2349 DEBUG_LOG(info->line, "FBRK %i\n", info->line);
2350
2351
2352
2353 info->errorcode = ERRCODE_SET_BREAK;
2354 } else {
2355 DEBUG_LOG(info->line, "Not end of BRK (V)%i\n", info->line);
2356 }
2357 DEBUG_LOG(info->line, "num brk %i\n", info->break_detected_cnt);
2358 }
2359
2360#ifdef SERIAL_DEBUG_INTR
2361 printk("** OK, disabling ser_interrupts\n");
2362#endif
2363 e100_disable_serial_data_irq(info);
2364 DINTR2(DEBUG_LOG(info->line, "ser_rx OK %d\n", info->line));
2365 info->break_detected_cnt = 0;
2366
2367 }
2368
2369 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, restart);
2370 START_FLUSH_FAST_TIMER(info, "ser_int");
2371}
2372
2373static void handle_ser_tx_interrupt(struct e100_serial *info)
2374{
2375 unsigned long flags;
2376
2377 if (info->x_char) {
2378 unsigned char rstat;
2379 DFLOW(DEBUG_LOG(info->line, "tx_int: xchar 0x%02X\n", info->x_char));
2380 local_irq_save(flags);
2381 rstat = info->ioport[REG_STATUS];
2382 DFLOW(DEBUG_LOG(info->line, "stat %x\n", rstat));
2383
2384 info->ioport[REG_TR_DATA] = info->x_char;
2385 info->icount.tx++;
2386 info->x_char = 0;
2387
2388 e100_enable_serial_tx_ready_irq(info);
2389 local_irq_restore(flags);
2390 return;
2391 }
2392 if (info->uses_dma_out) {
2393 unsigned char rstat;
2394 int i;
2395
2396 DFLOW(DEBUG_LOG(info->line, "tx_int: xchar sent\n", 0));
2397 local_irq_save(flags);
2398 rstat = info->ioport[REG_STATUS];
2399 DFLOW(DEBUG_LOG(info->line, "stat %x\n", rstat));
2400 e100_disable_serial_tx_ready_irq(info);
2401 if (info->port.tty->stopped)
2402 rs_stop(info->port.tty);
2403
2404 e100_enable_txdma_channel(info);
2405
2406 for(i = 6; i > 0; i--)
2407 nop();
2408
2409 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, continue);
2410 local_irq_restore(flags);
2411 return;
2412 }
2413
2414 if (info->xmit.head == info->xmit.tail
2415 || info->port.tty->stopped) {
2416 DFLOW(DEBUG_LOG(info->line, "tx_int: stopped %i\n",
2417 info->port.tty->stopped));
2418 e100_disable_serial_tx_ready_irq(info);
2419 info->tr_running = 0;
2420 return;
2421 }
2422 DINTR2(DEBUG_LOG(info->line, "tx_int %c\n", info->xmit.buf[info->xmit.tail]));
2423
2424 local_irq_save(flags);
2425 info->ioport[REG_TR_DATA] = info->xmit.buf[info->xmit.tail];
2426 info->xmit.tail = (info->xmit.tail + 1) & (SERIAL_XMIT_SIZE-1);
2427 info->icount.tx++;
2428 if (info->xmit.head == info->xmit.tail) {
2429#if defined(CONFIG_ETRAX_RS485) && defined(CONFIG_ETRAX_FAST_TIMER)
2430 if (info->rs485.flags & SER_RS485_ENABLED) {
2431
2432 start_one_shot_timer(&fast_timers_rs485[info->line],
2433 rs485_toggle_rts_timer_function,
2434 (unsigned long)info,
2435 info->char_time_usec*2,
2436 "RS-485");
2437 }
2438#endif
2439 info->last_tx_active_usec = GET_JIFFIES_USEC();
2440 info->last_tx_active = jiffies;
2441 e100_disable_serial_tx_ready_irq(info);
2442 info->tr_running = 0;
2443 DFLOW(DEBUG_LOG(info->line, "tx_int: stop2\n", 0));
2444 } else {
2445
2446 e100_enable_serial_tx_ready_irq(info);
2447 }
2448 local_irq_restore(flags);
2449
2450 if (CIRC_CNT(info->xmit.head,
2451 info->xmit.tail,
2452 SERIAL_XMIT_SIZE) < WAKEUP_CHARS)
2453 rs_sched_event(info, RS_EVENT_WRITE_WAKEUP);
2454
2455}
2456
2457
2458
2459
2460
2461static irqreturn_t
2462ser_interrupt(int irq, void *dev_id)
2463{
2464 static volatile int tx_started = 0;
2465 struct e100_serial *info;
2466 int i;
2467 unsigned long flags;
2468 unsigned long irq_mask1_rd;
2469 unsigned long data_mask = (1 << (8+2*0));
2470 int handled = 0;
2471 static volatile unsigned long reentered_ready_mask = 0;
2472
2473 local_irq_save(flags);
2474 irq_mask1_rd = *R_IRQ_MASK1_RD;
2475
2476 info = rs_table;
2477 irq_mask1_rd &= e100_ser_int_mask;
2478 for (i = 0; i < NR_PORTS; i++) {
2479
2480 if (irq_mask1_rd & data_mask) {
2481 handled = 1;
2482 handle_ser_rx_interrupt(info);
2483 }
2484 info += 1;
2485 data_mask <<= 2;
2486 }
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503 if (!tx_started) {
2504 unsigned long ready_mask;
2505 unsigned long
2506 tx_started = 1;
2507
2508 irq_mask1_rd &= (IO_MASK(R_IRQ_MASK1_RD, ser0_ready) |
2509 IO_MASK(R_IRQ_MASK1_RD, ser1_ready) |
2510 IO_MASK(R_IRQ_MASK1_RD, ser2_ready) |
2511 IO_MASK(R_IRQ_MASK1_RD, ser3_ready));
2512 while (irq_mask1_rd) {
2513
2514 *R_IRQ_MASK1_CLR = irq_mask1_rd;
2515
2516 *R_VECT_MASK_SET = IO_STATE(R_VECT_MASK_SET, serial, set);
2517
2518 local_irq_enable();
2519 ready_mask = (1 << (8+1+2*0));
2520 info = rs_table;
2521 for (i = 0; i < NR_PORTS; i++) {
2522
2523 if (irq_mask1_rd & ready_mask) {
2524 handled = 1;
2525 handle_ser_tx_interrupt(info);
2526 }
2527 info += 1;
2528 ready_mask <<= 2;
2529 }
2530
2531 local_irq_disable();
2532
2533 irq_mask1_rd = reentered_ready_mask;
2534 }
2535 local_irq_disable();
2536 tx_started = 0;
2537 } else {
2538 unsigned long ready_mask;
2539 ready_mask = irq_mask1_rd & (IO_MASK(R_IRQ_MASK1_RD, ser0_ready) |
2540 IO_MASK(R_IRQ_MASK1_RD, ser1_ready) |
2541 IO_MASK(R_IRQ_MASK1_RD, ser2_ready) |
2542 IO_MASK(R_IRQ_MASK1_RD, ser3_ready));
2543 if (ready_mask) {
2544 reentered_ready_mask |= ready_mask;
2545
2546 *R_IRQ_MASK1_CLR = ready_mask;
2547 DFLOW(DEBUG_LOG(SERIAL_DEBUG_LINE, "ser_int reentered with TX %X\n", ready_mask));
2548 }
2549 }
2550
2551 local_irq_restore(flags);
2552 return IRQ_RETVAL(handled);
2553}
2554#endif
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571static void
2572do_softint(struct work_struct *work)
2573{
2574 struct e100_serial *info;
2575 struct tty_struct *tty;
2576
2577 info = container_of(work, struct e100_serial, work);
2578
2579 tty = info->port.tty;
2580 if (!tty)
2581 return;
2582
2583 if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &info->event))
2584 tty_wakeup(tty);
2585}
2586
2587static int
2588startup(struct e100_serial * info)
2589{
2590 unsigned long flags;
2591 unsigned long xmit_page;
2592 int i;
2593
2594 xmit_page = get_zeroed_page(GFP_KERNEL);
2595 if (!xmit_page)
2596 return -ENOMEM;
2597
2598 local_irq_save(flags);
2599
2600
2601
2602 if (tty_port_initialized(&info->port)) {
2603 local_irq_restore(flags);
2604 free_page(xmit_page);
2605 return 0;
2606 }
2607
2608 if (info->xmit.buf)
2609 free_page(xmit_page);
2610 else
2611 info->xmit.buf = (unsigned char *) xmit_page;
2612
2613#ifdef SERIAL_DEBUG_OPEN
2614 printk("starting up ttyS%d (xmit_buf 0x%p)...\n", info->line, info->xmit.buf);
2615#endif
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626 if (info->dma_in_enabled) {
2627 info->uses_dma_in = 1;
2628 e100_enable_rxdma_channel(info);
2629
2630 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
2631
2632
2633 while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->icmdadr) ==
2634 IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
2635
2636
2637 *info->iclrintradr =
2638 IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
2639 IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
2640 } else {
2641 e100_disable_rxdma_channel(info);
2642 }
2643
2644 if (info->dma_out_enabled) {
2645 info->uses_dma_out = 1;
2646 e100_enable_txdma_channel(info);
2647 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
2648
2649 while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->ocmdadr) ==
2650 IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
2651
2652
2653 *info->oclrintradr =
2654 IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
2655 IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
2656 } else {
2657 e100_disable_txdma_channel(info);
2658 }
2659
2660 if (info->port.tty)
2661 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
2662
2663 info->xmit.head = info->xmit.tail = 0;
2664 info->first_recv_buffer = info->last_recv_buffer = NULL;
2665 info->recv_cnt = info->max_recv_cnt = 0;
2666
2667 for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++)
2668 info->rec_descr[i].buf = 0;
2669
2670
2671
2672
2673
2674#ifdef SERIAL_HANDLE_EARLY_ERRORS
2675 e100_enable_serial_data_irq(info);
2676#endif
2677 change_speed(info);
2678
2679
2680
2681 (void)info->ioport[REG_DATA];
2682
2683
2684 if (info->uses_dma_out)
2685 e100_enable_txdma_irq(info);
2686
2687 e100_enable_rx_irq(info);
2688
2689 info->tr_running = 0;
2690
2691
2692
2693 start_receive(info);
2694
2695
2696
2697 info->tr_descr.sw_len = 0;
2698 info->tr_descr.hw_len = 0;
2699 info->tr_descr.status = 0;
2700
2701
2702
2703 e100_rts(info, 1);
2704 e100_dtr(info, 1);
2705
2706 tty_port_set_initialized(&info->port, 1);
2707
2708 local_irq_restore(flags);
2709 return 0;
2710}
2711
2712
2713
2714
2715
2716static void
2717shutdown(struct e100_serial * info)
2718{
2719 unsigned long flags;
2720 struct etrax_dma_descr *descr = info->rec_descr;
2721 struct etrax_recv_buffer *buffer;
2722 int i;
2723
2724
2725 DFLOW(DEBUG_LOG(info->line, "shutdown %i\n", info->line));
2726 e100_disable_rx(info);
2727 info->ioport[REG_TR_CTRL] = (info->tx_ctrl &= ~0x40);
2728
2729
2730 if (info->uses_dma_in) {
2731 e100_disable_rxdma_irq(info);
2732 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
2733 info->uses_dma_in = 0;
2734 } else {
2735 e100_disable_serial_data_irq(info);
2736 }
2737
2738 if (info->uses_dma_out) {
2739 e100_disable_txdma_irq(info);
2740 info->tr_running = 0;
2741 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
2742 info->uses_dma_out = 0;
2743 } else {
2744 e100_disable_serial_tx_ready_irq(info);
2745 info->tr_running = 0;
2746 }
2747
2748 if (!tty_port_initialized(&info->port))
2749 return;
2750
2751#ifdef SERIAL_DEBUG_OPEN
2752 printk("Shutting down serial port %d (irq %d)....\n", info->line,
2753 info->irq);
2754#endif
2755
2756 local_irq_save(flags);
2757
2758 if (info->xmit.buf) {
2759 free_page((unsigned long)info->xmit.buf);
2760 info->xmit.buf = NULL;
2761 }
2762
2763 for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++)
2764 if (descr[i].buf) {
2765 buffer = phys_to_virt(descr[i].buf) - sizeof *buffer;
2766 kfree(buffer);
2767 descr[i].buf = 0;
2768 }
2769
2770 if (!info->port.tty || (info->port.tty->termios.c_cflag & HUPCL)) {
2771
2772 e100_dtr(info, 0);
2773 e100_rts(info, 0);
2774 }
2775
2776 if (info->port.tty)
2777 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2778
2779 tty_port_set_initialized(&info->port, 0);
2780 local_irq_restore(flags);
2781}
2782
2783
2784
2785
2786static void
2787change_speed(struct e100_serial *info)
2788{
2789 unsigned int cflag;
2790 unsigned long xoff;
2791 unsigned long flags;
2792
2793
2794 if (!info->port.tty)
2795 return;
2796 if (!info->ioport)
2797 return;
2798
2799 cflag = info->port.tty->termios.c_cflag;
2800
2801
2802
2803
2804 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) {
2805
2806 u32 mask = 0xFF << (info->line*8);
2807 unsigned long alt_source =
2808 IO_STATE(R_ALT_SER_BAUDRATE, ser0_rec, normal) |
2809 IO_STATE(R_ALT_SER_BAUDRATE, ser0_tr, normal);
2810
2811 DBAUD(printk("Custom baudrate: baud_base/divisor %lu/%i\n",
2812 (unsigned long)info->baud_base, info->custom_divisor));
2813 if (info->baud_base == SERIAL_PRESCALE_BASE) {
2814
2815 u16 divisor = info->custom_divisor;
2816
2817
2818 alt_source =
2819 IO_STATE(R_ALT_SER_BAUDRATE, ser0_rec, prescale) |
2820 IO_STATE(R_ALT_SER_BAUDRATE, ser0_tr, prescale);
2821 alt_source = 0x11;
2822 DBAUD(printk("Writing SERIAL_PRESCALE: divisor %i\n", divisor));
2823 *R_SERIAL_PRESCALE = divisor;
2824 info->baud = SERIAL_PRESCALE_BASE/divisor;
2825 }
2826 else
2827 {
2828
2829
2830
2831 printk(KERN_WARNING "Bad baud_base/custom_divisor: %lu/%i\n",
2832 (unsigned long)info->baud_base, info->custom_divisor);
2833 }
2834 r_alt_ser_baudrate_shadow &= ~mask;
2835 r_alt_ser_baudrate_shadow |= (alt_source << (info->line*8));
2836 *R_ALT_SER_BAUDRATE = r_alt_ser_baudrate_shadow;
2837 } else {
2838
2839
2840 u32 mask = 0xFF << (info->line*8);
2841 unsigned long alt_source =
2842 IO_STATE(R_ALT_SER_BAUDRATE, ser0_rec, normal) |
2843 IO_STATE(R_ALT_SER_BAUDRATE, ser0_tr, normal);
2844 r_alt_ser_baudrate_shadow &= ~mask;
2845 r_alt_ser_baudrate_shadow |= (alt_source << (info->line*8));
2846 *R_ALT_SER_BAUDRATE = r_alt_ser_baudrate_shadow;
2847
2848 info->baud = cflag_to_baud(cflag);
2849 info->ioport[REG_BAUD] = cflag_to_etrax_baud(cflag);
2850 }
2851
2852
2853 local_irq_save(flags);
2854
2855 info->rx_ctrl &= ~(IO_MASK(R_SERIAL0_REC_CTRL, rec_bitnr) |
2856 IO_MASK(R_SERIAL0_REC_CTRL, rec_par_en) |
2857 IO_MASK(R_SERIAL0_REC_CTRL, rec_par));
2858
2859
2860 info->tx_ctrl &= ~(IO_MASK(R_SERIAL0_TR_CTRL, tr_bitnr) |
2861 IO_MASK(R_SERIAL0_TR_CTRL, tr_par_en) |
2862 IO_MASK(R_SERIAL0_TR_CTRL, tr_par) |
2863 IO_MASK(R_SERIAL0_TR_CTRL, stop_bits) |
2864 IO_MASK(R_SERIAL0_TR_CTRL, auto_cts));
2865
2866 if ((cflag & CSIZE) == CS7) {
2867
2868 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_bitnr, tr_7bit);
2869 info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_bitnr, rec_7bit);
2870 }
2871
2872 if (cflag & CSTOPB) {
2873
2874 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, stop_bits, two_bits);
2875 }
2876
2877 if (cflag & PARENB) {
2878
2879 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_par_en, enable);
2880 info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_par_en, enable);
2881 }
2882
2883 if (cflag & CMSPAR) {
2884
2885 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_stick_par, stick);
2886 info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_stick_par, stick);
2887 }
2888 if (cflag & PARODD) {
2889
2890 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_par, odd);
2891 info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_par, odd);
2892 }
2893
2894 if (cflag & CRTSCTS) {
2895
2896 DFLOW(DEBUG_LOG(info->line, "FLOW auto_cts enabled\n", 0));
2897 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, auto_cts, active);
2898 }
2899
2900
2901
2902 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_enable, enable);
2903 info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_enable, enable);
2904
2905
2906
2907 info->ioport[REG_TR_CTRL] = info->tx_ctrl;
2908 info->ioport[REG_REC_CTRL] = info->rx_ctrl;
2909 xoff = IO_FIELD(R_SERIAL0_XOFF, xoff_char, STOP_CHAR(info->port.tty));
2910 xoff |= IO_STATE(R_SERIAL0_XOFF, tx_stop, enable);
2911 if (info->port.tty->termios.c_iflag & IXON ) {
2912 DFLOW(DEBUG_LOG(info->line, "FLOW XOFF enabled 0x%02X\n",
2913 STOP_CHAR(info->port.tty)));
2914 xoff |= IO_STATE(R_SERIAL0_XOFF, auto_xoff, enable);
2915 }
2916
2917 *((unsigned long *)&info->ioport[REG_XOFF]) = xoff;
2918 local_irq_restore(flags);
2919
2920 update_char_time(info);
2921
2922}
2923
2924
2925
2926static void
2927rs_flush_chars(struct tty_struct *tty)
2928{
2929 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
2930 unsigned long flags;
2931
2932 if (info->tr_running ||
2933 info->xmit.head == info->xmit.tail ||
2934 tty->stopped ||
2935 !info->xmit.buf)
2936 return;
2937
2938#ifdef SERIAL_DEBUG_FLOW
2939 printk("rs_flush_chars\n");
2940#endif
2941
2942
2943
2944 local_irq_save(flags);
2945 start_transmit(info);
2946 local_irq_restore(flags);
2947}
2948
2949static int rs_raw_write(struct tty_struct *tty,
2950 const unsigned char *buf, int count)
2951{
2952 int c, ret = 0;
2953 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
2954 unsigned long flags;
2955
2956
2957
2958 if (!info->xmit.buf)
2959 return 0;
2960
2961#ifdef SERIAL_DEBUG_DATA
2962 if (info->line == SERIAL_DEBUG_LINE)
2963 printk("rs_raw_write (%d), status %d\n",
2964 count, info->ioport[REG_STATUS]);
2965#endif
2966
2967 local_save_flags(flags);
2968 DFLOW(DEBUG_LOG(info->line, "write count %i ", count));
2969 DFLOW(DEBUG_LOG(info->line, "ldisc\n"));
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979 local_irq_disable();
2980 while (count) {
2981 c = CIRC_SPACE_TO_END(info->xmit.head,
2982 info->xmit.tail,
2983 SERIAL_XMIT_SIZE);
2984
2985 if (count < c)
2986 c = count;
2987 if (c <= 0)
2988 break;
2989
2990 memcpy(info->xmit.buf + info->xmit.head, buf, c);
2991 info->xmit.head = (info->xmit.head + c) &
2992 (SERIAL_XMIT_SIZE-1);
2993 buf += c;
2994 count -= c;
2995 ret += c;
2996 }
2997 local_irq_restore(flags);
2998
2999
3000
3001
3002
3003 DFLOW(DEBUG_LOG(info->line, "write ret %i\n", ret));
3004
3005 if (info->xmit.head != info->xmit.tail &&
3006 !tty->stopped &&
3007 !info->tr_running) {
3008 start_transmit(info);
3009 }
3010
3011 return ret;
3012}
3013
3014static int
3015rs_write(struct tty_struct *tty,
3016 const unsigned char *buf, int count)
3017{
3018#if defined(CONFIG_ETRAX_RS485)
3019 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3020
3021 if (info->rs485.flags & SER_RS485_ENABLED)
3022 {
3023
3024
3025
3026#ifdef CONFIG_ETRAX_FAST_TIMER
3027
3028 fast_timers_rs485[info->line].function = NULL;
3029 del_fast_timer(&fast_timers_rs485[info->line]);
3030#endif
3031 e100_rts(info, (info->rs485.flags & SER_RS485_RTS_ON_SEND));
3032#if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
3033 e100_disable_rx(info);
3034 e100_enable_rx_irq(info);
3035#endif
3036 if (info->rs485.delay_rts_before_send > 0)
3037 msleep(info->rs485.delay_rts_before_send);
3038 }
3039#endif
3040
3041 count = rs_raw_write(tty, buf, count);
3042
3043#if defined(CONFIG_ETRAX_RS485)
3044 if (info->rs485.flags & SER_RS485_ENABLED)
3045 {
3046 unsigned int val;
3047
3048
3049
3050
3051
3052
3053
3054
3055 tty_wait_until_sent(tty, 0);
3056#ifdef CONFIG_ETRAX_FAST_TIMER
3057
3058 schedule_usleep(info->char_time_usec * 2);
3059#endif
3060
3061 do{
3062 get_lsr_info(info, &val);
3063 }while (!(val & TIOCSER_TEMT));
3064
3065 e100_rts(info, (info->rs485.flags & SER_RS485_RTS_AFTER_SEND));
3066
3067#if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
3068 e100_enable_rx(info);
3069 e100_enable_rxdma_irq(info);
3070#endif
3071 }
3072#endif
3073
3074 return count;
3075}
3076
3077
3078
3079
3080static int
3081rs_write_room(struct tty_struct *tty)
3082{
3083 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3084
3085 return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
3086}
3087
3088
3089
3090
3091
3092
3093static int
3094rs_chars_in_buffer(struct tty_struct *tty)
3095{
3096 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3097
3098 return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
3099}
3100
3101
3102
3103static void
3104rs_flush_buffer(struct tty_struct *tty)
3105{
3106 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3107 unsigned long flags;
3108
3109 local_irq_save(flags);
3110 info->xmit.head = info->xmit.tail = 0;
3111 local_irq_restore(flags);
3112
3113 tty_wakeup(tty);
3114}
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125static void rs_send_xchar(struct tty_struct *tty, char ch)
3126{
3127 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3128 unsigned long flags;
3129 local_irq_save(flags);
3130 if (info->uses_dma_out) {
3131
3132 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, hold);
3133 while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->ocmdadr) !=
3134 IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, hold));
3135 e100_disable_txdma_channel(info);
3136 }
3137
3138
3139 if (tty->stopped)
3140 rs_start(tty);
3141
3142
3143 DFLOW(DEBUG_LOG(info->line, "rs_send_xchar 0x%02X\n", ch));
3144 info->x_char = ch;
3145 e100_enable_serial_tx_ready_irq(info);
3146 local_irq_restore(flags);
3147}
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157static void
3158rs_throttle(struct tty_struct * tty)
3159{
3160 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3161#ifdef SERIAL_DEBUG_THROTTLE
3162 printk("throttle %s ....\n", tty_name(tty));
3163#endif
3164 DFLOW(DEBUG_LOG(info->line,"rs_throttle\n"));
3165
3166
3167 if (C_CRTSCTS(tty)) {
3168
3169 e100_rts(info, 0);
3170 }
3171 if (I_IXOFF(tty))
3172 rs_send_xchar(tty, STOP_CHAR(tty));
3173
3174}
3175
3176static void
3177rs_unthrottle(struct tty_struct * tty)
3178{
3179 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3180#ifdef SERIAL_DEBUG_THROTTLE
3181 printk("unthrottle %s ....\n", tty_name(tty));
3182#endif
3183 DFLOW(DEBUG_LOG(info->line,"rs_unthrottle ldisc\n"));
3184 DFLOW(DEBUG_LOG(info->line,"rs_unthrottle flip.count: %i\n", tty->flip.count));
3185
3186 if (C_CRTSCTS(tty)) {
3187
3188 e100_rts(info, 1);
3189 }
3190
3191 if (I_IXOFF(tty)) {
3192 if (info->x_char)
3193 info->x_char = 0;
3194 else
3195 rs_send_xchar(tty, START_CHAR(tty));
3196 }
3197
3198}
3199
3200
3201
3202
3203
3204
3205
3206static int
3207get_serial_info(struct e100_serial * info,
3208 struct serial_struct * retinfo)
3209{
3210 struct serial_struct tmp;
3211
3212
3213
3214
3215
3216
3217 memset(&tmp, 0, sizeof(tmp));
3218 tmp.type = info->type;
3219 tmp.line = info->line;
3220 tmp.port = (int)info->ioport;
3221 tmp.irq = info->irq;
3222 tmp.flags = info->port.flags;
3223 tmp.baud_base = info->baud_base;
3224 tmp.close_delay = info->port.close_delay;
3225 tmp.closing_wait = info->port.closing_wait;
3226 tmp.custom_divisor = info->custom_divisor;
3227 if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
3228 return -EFAULT;
3229 return 0;
3230}
3231
3232static int
3233set_serial_info(struct e100_serial *info,
3234 struct serial_struct *new_info)
3235{
3236 struct serial_struct new_serial;
3237 struct e100_serial old_info;
3238 int retval = 0;
3239
3240 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3241 return -EFAULT;
3242
3243 old_info = *info;
3244
3245 if (!capable(CAP_SYS_ADMIN)) {
3246 if ((new_serial.type != info->type) ||
3247 (new_serial.close_delay != info->port.close_delay) ||
3248 ((new_serial.flags & ~ASYNC_USR_MASK) !=
3249 (info->port.flags & ~ASYNC_USR_MASK)))
3250 return -EPERM;
3251 info->port.flags = ((info->port.flags & ~ASYNC_USR_MASK) |
3252 (new_serial.flags & ASYNC_USR_MASK));
3253 goto check_and_exit;
3254 }
3255
3256 if (info->port.count > 1)
3257 return -EBUSY;
3258
3259
3260
3261
3262
3263
3264 info->baud_base = new_serial.baud_base;
3265 info->port.flags = ((info->port.flags & ~ASYNC_FLAGS) |
3266 (new_serial.flags & ASYNC_FLAGS));
3267 info->custom_divisor = new_serial.custom_divisor;
3268 info->type = new_serial.type;
3269 info->port.close_delay = new_serial.close_delay;
3270 info->port.closing_wait = new_serial.closing_wait;
3271 info->port.low_latency = (info->port.flags & ASYNC_LOW_LATENCY) ? 1 : 0;
3272
3273 check_and_exit:
3274 if (tty_port_initialized(&info->port))
3275 change_speed(info);
3276 else
3277 retval = startup(info);
3278 return retval;
3279}
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291static int
3292get_lsr_info(struct e100_serial * info, unsigned int *value)
3293{
3294 unsigned int result = TIOCSER_TEMT;
3295 unsigned long curr_time = jiffies;
3296 unsigned long curr_time_usec = GET_JIFFIES_USEC();
3297 unsigned long elapsed_usec =
3298 (curr_time - info->last_tx_active) * 1000000/HZ +
3299 curr_time_usec - info->last_tx_active_usec;
3300
3301 if (info->xmit.head != info->xmit.tail ||
3302 elapsed_usec < 2*info->char_time_usec) {
3303 result = 0;
3304 }
3305
3306 if (copy_to_user(value, &result, sizeof(int)))
3307 return -EFAULT;
3308 return 0;
3309}
3310
3311#ifdef SERIAL_DEBUG_IO
3312struct state_str
3313{
3314 int state;
3315 const char *str;
3316};
3317
3318const struct state_str control_state_str[] = {
3319 {TIOCM_DTR, "DTR" },
3320 {TIOCM_RTS, "RTS"},
3321 {TIOCM_ST, "ST?" },
3322 {TIOCM_SR, "SR?" },
3323 {TIOCM_CTS, "CTS" },
3324 {TIOCM_CD, "CD" },
3325 {TIOCM_RI, "RI" },
3326 {TIOCM_DSR, "DSR" },
3327 {0, NULL }
3328};
3329
3330char *get_control_state_str(int MLines, char *s)
3331{
3332 int i = 0;
3333
3334 s[0]='\0';
3335 while (control_state_str[i].str != NULL) {
3336 if (MLines & control_state_str[i].state) {
3337 if (s[0] != '\0') {
3338 strcat(s, ", ");
3339 }
3340 strcat(s, control_state_str[i].str);
3341 }
3342 i++;
3343 }
3344 return s;
3345}
3346#endif
3347
3348static int
3349rs_break(struct tty_struct *tty, int break_state)
3350{
3351 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3352 unsigned long flags;
3353
3354 if (!info->ioport)
3355 return -EIO;
3356
3357 local_irq_save(flags);
3358 if (break_state == -1) {
3359
3360
3361 info->tx_ctrl &= 0x3F;
3362 } else {
3363
3364 info->tx_ctrl |= (0x80 | 0x40);
3365 }
3366 info->ioport[REG_TR_CTRL] = info->tx_ctrl;
3367 local_irq_restore(flags);
3368 return 0;
3369}
3370
3371static int
3372rs_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear)
3373{
3374 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3375 unsigned long flags;
3376
3377 local_irq_save(flags);
3378
3379 if (clear & TIOCM_RTS)
3380 e100_rts(info, 0);
3381 if (clear & TIOCM_DTR)
3382 e100_dtr(info, 0);
3383
3384 if (clear & TIOCM_RI)
3385 e100_ri_out(info, 0);
3386 if (clear & TIOCM_CD)
3387 e100_cd_out(info, 0);
3388
3389 if (set & TIOCM_RTS)
3390 e100_rts(info, 1);
3391 if (set & TIOCM_DTR)
3392 e100_dtr(info, 1);
3393
3394 if (set & TIOCM_RI)
3395 e100_ri_out(info, 1);
3396 if (set & TIOCM_CD)
3397 e100_cd_out(info, 1);
3398
3399 local_irq_restore(flags);
3400 return 0;
3401}
3402
3403static int
3404rs_tiocmget(struct tty_struct *tty)
3405{
3406 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3407 unsigned int result;
3408 unsigned long flags;
3409
3410 local_irq_save(flags);
3411
3412 result =
3413 (!E100_RTS_GET(info) ? TIOCM_RTS : 0)
3414 | (!E100_DTR_GET(info) ? TIOCM_DTR : 0)
3415 | (!E100_RI_GET(info) ? TIOCM_RNG : 0)
3416 | (!E100_DSR_GET(info) ? TIOCM_DSR : 0)
3417 | (!E100_CD_GET(info) ? TIOCM_CAR : 0)
3418 | (!E100_CTS_GET(info) ? TIOCM_CTS : 0);
3419
3420 local_irq_restore(flags);
3421
3422#ifdef SERIAL_DEBUG_IO
3423 printk(KERN_DEBUG "ser%i: modem state: %i 0x%08X\n",
3424 info->line, result, result);
3425 {
3426 char s[100];
3427
3428 get_control_state_str(result, s);
3429 printk(KERN_DEBUG "state: %s\n", s);
3430 }
3431#endif
3432 return result;
3433
3434}
3435
3436
3437static int
3438rs_ioctl(struct tty_struct *tty,
3439 unsigned int cmd, unsigned long arg)
3440{
3441 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
3442
3443 if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
3444 (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGWILD) &&
3445 (cmd != TIOCSERSWILD) && (cmd != TIOCSERGSTRUCT)) {
3446 if (tty_io_error(tty))
3447 return -EIO;
3448 }
3449
3450 switch (cmd) {
3451 case TIOCGSERIAL:
3452 return get_serial_info(info,
3453 (struct serial_struct *) arg);
3454 case TIOCSSERIAL:
3455 return set_serial_info(info,
3456 (struct serial_struct *) arg);
3457 case TIOCSERGETLSR:
3458 return get_lsr_info(info, (unsigned int *) arg);
3459
3460 case TIOCSERGSTRUCT:
3461 if (copy_to_user((struct e100_serial *) arg,
3462 info, sizeof(struct e100_serial)))
3463 return -EFAULT;
3464 return 0;
3465
3466#if defined(CONFIG_ETRAX_RS485)
3467 case TIOCSERSETRS485:
3468 {
3469
3470
3471
3472
3473
3474
3475 struct rs485_control rs485ctrl;
3476 struct serial_rs485 rs485data;
3477 printk(KERN_DEBUG "The use of this ioctl is deprecated. Use TIOCSRS485 instead\n");
3478 if (copy_from_user(&rs485ctrl, (struct rs485_control *)arg,
3479 sizeof(rs485ctrl)))
3480 return -EFAULT;
3481
3482 rs485data.delay_rts_before_send = rs485ctrl.delay_rts_before_send;
3483 rs485data.flags = 0;
3484
3485 if (rs485ctrl.enabled)
3486 rs485data.flags |= SER_RS485_ENABLED;
3487 else
3488 rs485data.flags &= ~(SER_RS485_ENABLED);
3489
3490 if (rs485ctrl.rts_on_send)
3491 rs485data.flags |= SER_RS485_RTS_ON_SEND;
3492 else
3493 rs485data.flags &= ~(SER_RS485_RTS_ON_SEND);
3494
3495 if (rs485ctrl.rts_after_sent)
3496 rs485data.flags |= SER_RS485_RTS_AFTER_SEND;
3497 else
3498 rs485data.flags &= ~(SER_RS485_RTS_AFTER_SEND);
3499
3500 return e100_enable_rs485(tty, &rs485data);
3501 }
3502
3503 case TIOCSRS485:
3504 {
3505
3506
3507 struct serial_rs485 rs485data;
3508 if (copy_from_user(&rs485data, (struct rs485_control *)arg,
3509 sizeof(rs485data)))
3510 return -EFAULT;
3511
3512 return e100_enable_rs485(tty, &rs485data);
3513 }
3514
3515 case TIOCGRS485:
3516 {
3517 struct serial_rs485 *rs485data =
3518 &(((struct e100_serial *)tty->driver_data)->rs485);
3519
3520 if (copy_to_user((struct serial_rs485 *) arg,
3521 rs485data,
3522 sizeof(struct serial_rs485)))
3523 return -EFAULT;
3524 break;
3525 }
3526
3527 case TIOCSERWRRS485:
3528 {
3529 struct rs485_write rs485wr;
3530 if (copy_from_user(&rs485wr, (struct rs485_write *)arg,
3531 sizeof(rs485wr)))
3532 return -EFAULT;
3533
3534 return e100_write_rs485(tty, rs485wr.outc, rs485wr.outc_size);
3535 }
3536#endif
3537
3538 default:
3539 return -ENOIOCTLCMD;
3540 }
3541 return 0;
3542}
3543
3544static void
3545rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
3546{
3547 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3548
3549 change_speed(info);
3550
3551
3552 if ((old_termios->c_cflag & CRTSCTS) && !C_CRTSCTS(tty))
3553 rs_start(tty);
3554
3555}
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567static void
3568rs_close(struct tty_struct *tty, struct file * filp)
3569{
3570 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
3571 unsigned long flags;
3572
3573 if (!info)
3574 return;
3575
3576
3577
3578 local_irq_save(flags);
3579
3580 if (tty_hung_up_p(filp)) {
3581 local_irq_restore(flags);
3582 return;
3583 }
3584
3585#ifdef SERIAL_DEBUG_OPEN
3586 printk("[%d] rs_close ttyS%d, count = %d\n", current->pid,
3587 info->line, info->count);
3588#endif
3589 if ((tty->count == 1) && (info->port.count != 1)) {
3590
3591
3592
3593
3594
3595
3596
3597 printk(KERN_ERR
3598 "rs_close: bad serial port count; tty->count is 1, "
3599 "info->count is %d\n", info->port.count);
3600 info->port.count = 1;
3601 }
3602 if (--info->port.count < 0) {
3603 printk(KERN_ERR "rs_close: bad serial port count for ttyS%d: %d\n",
3604 info->line, info->port.count);
3605 info->port.count = 0;
3606 }
3607 if (info->port.count) {
3608 local_irq_restore(flags);
3609 return;
3610 }
3611
3612
3613
3614
3615 tty->closing = 1;
3616 if (info->port.closing_wait != ASYNC_CLOSING_WAIT_NONE)
3617 tty_wait_until_sent(tty, info->port.closing_wait);
3618
3619
3620
3621
3622#ifdef SERIAL_HANDLE_EARLY_ERRORS
3623 e100_disable_serial_data_irq(info);
3624#endif
3625
3626 e100_disable_rx(info);
3627 e100_disable_rx_irq(info);
3628
3629 if (tty_port_initialized(&info->port)) {
3630
3631
3632
3633
3634
3635 rs_wait_until_sent(tty, HZ);
3636 }
3637
3638 shutdown(info);
3639 rs_flush_buffer(tty);
3640 tty_ldisc_flush(tty);
3641 tty->closing = 0;
3642 info->event = 0;
3643 info->port.tty = NULL;
3644 if (info->port.blocked_open) {
3645 if (info->port.close_delay)
3646 schedule_timeout_interruptible(info->port.close_delay);
3647 wake_up_interruptible(&info->port.open_wait);
3648 }
3649 local_irq_restore(flags);
3650 tty_port_set_active(&info->port, 0);
3651
3652
3653
3654#if defined(CONFIG_ETRAX_RS485)
3655 if (info->rs485.flags & SER_RS485_ENABLED) {
3656 info->rs485.flags &= ~(SER_RS485_ENABLED);
3657#if defined(CONFIG_ETRAX_RS485_ON_PA)
3658 *R_PORT_PA_DATA = port_pa_data_shadow &= ~(1 << rs485_pa_bit);
3659#endif
3660 }
3661#endif
3662
3663
3664
3665
3666 if (info->dma_in_enabled) {
3667 free_irq(info->dma_in_irq_nbr, info);
3668 cris_free_dma(info->dma_in_nbr, info->dma_in_irq_description);
3669 info->uses_dma_in = 0;
3670#ifdef SERIAL_DEBUG_OPEN
3671 printk(KERN_DEBUG "DMA irq '%s' freed\n",
3672 info->dma_in_irq_description);
3673#endif
3674 }
3675 if (info->dma_out_enabled) {
3676 free_irq(info->dma_out_irq_nbr, info);
3677 cris_free_dma(info->dma_out_nbr, info->dma_out_irq_description);
3678 info->uses_dma_out = 0;
3679#ifdef SERIAL_DEBUG_OPEN
3680 printk(KERN_DEBUG "DMA irq '%s' freed\n",
3681 info->dma_out_irq_description);
3682#endif
3683 }
3684}
3685
3686
3687
3688
3689static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
3690{
3691 unsigned long orig_jiffies;
3692 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3693 unsigned long curr_time = jiffies;
3694 unsigned long curr_time_usec = GET_JIFFIES_USEC();
3695 long elapsed_usec =
3696 (curr_time - info->last_tx_active) * (1000000/HZ) +
3697 curr_time_usec - info->last_tx_active_usec;
3698
3699
3700
3701
3702
3703 orig_jiffies = jiffies;
3704 while (info->xmit.head != info->xmit.tail ||
3705 (*info->ostatusadr & 0x007f) ||
3706 (elapsed_usec < 2*info->char_time_usec)) {
3707 schedule_timeout_interruptible(1);
3708 if (signal_pending(current))
3709 break;
3710 if (timeout && time_after(jiffies, orig_jiffies + timeout))
3711 break;
3712 curr_time = jiffies;
3713 curr_time_usec = GET_JIFFIES_USEC();
3714 elapsed_usec =
3715 (curr_time - info->last_tx_active) * (1000000/HZ) +
3716 curr_time_usec - info->last_tx_active_usec;
3717 }
3718 set_current_state(TASK_RUNNING);
3719}
3720
3721
3722
3723
3724void
3725rs_hangup(struct tty_struct *tty)
3726{
3727 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
3728
3729 rs_flush_buffer(tty);
3730 shutdown(info);
3731 info->event = 0;
3732 info->port.count = 0;
3733 tty_port_set_active(&info->port, 0);
3734 info->port.tty = NULL;
3735 wake_up_interruptible(&info->port.open_wait);
3736}
3737
3738
3739
3740
3741
3742
3743static int
3744block_til_ready(struct tty_struct *tty, struct file * filp,
3745 struct e100_serial *info)
3746{
3747 DECLARE_WAITQUEUE(wait, current);
3748 unsigned long flags;
3749 int retval;
3750 int do_clocal = 0;
3751
3752
3753
3754
3755
3756 if ((filp->f_flags & O_NONBLOCK) || tty_io_error(tty)) {
3757 tty_port_set_active(&info->port, 1);
3758 return 0;
3759 }
3760
3761 if (C_CLOCAL(tty))
3762 do_clocal = 1;
3763
3764
3765
3766
3767
3768
3769
3770
3771 retval = 0;
3772 add_wait_queue(&info->port.open_wait, &wait);
3773#ifdef SERIAL_DEBUG_OPEN
3774 printk("block_til_ready before block: ttyS%d, count = %d\n",
3775 info->line, info->port.count);
3776#endif
3777 local_irq_save(flags);
3778 info->port.count--;
3779 local_irq_restore(flags);
3780 info->port.blocked_open++;
3781 while (1) {
3782 local_irq_save(flags);
3783
3784 e100_rts(info, 1);
3785 e100_dtr(info, 1);
3786 local_irq_restore(flags);
3787 set_current_state(TASK_INTERRUPTIBLE);
3788 if (tty_hung_up_p(filp) || !tty_port_initialized(&info->port)) {
3789#ifdef SERIAL_DO_RESTART
3790 if (info->port.flags & ASYNC_HUP_NOTIFY)
3791 retval = -EAGAIN;
3792 else
3793 retval = -ERESTARTSYS;
3794#else
3795 retval = -EAGAIN;
3796#endif
3797 break;
3798 }
3799 if (do_clocal)
3800
3801 break;
3802 if (signal_pending(current)) {
3803 retval = -ERESTARTSYS;
3804 break;
3805 }
3806#ifdef SERIAL_DEBUG_OPEN
3807 printk("block_til_ready blocking: ttyS%d, count = %d\n",
3808 info->line, info->port.count);
3809#endif
3810 tty_unlock(tty);
3811 schedule();
3812 tty_lock(tty);
3813 }
3814 set_current_state(TASK_RUNNING);
3815 remove_wait_queue(&info->port.open_wait, &wait);
3816 if (!tty_hung_up_p(filp))
3817 info->port.count++;
3818 info->port.blocked_open--;
3819#ifdef SERIAL_DEBUG_OPEN
3820 printk("block_til_ready after blocking: ttyS%d, count = %d\n",
3821 info->line, info->port.count);
3822#endif
3823 if (retval)
3824 return retval;
3825 tty_port_set_active(&info->port, 1);
3826 return 0;
3827}
3828
3829static void
3830deinit_port(struct e100_serial *info)
3831{
3832 if (info->dma_out_enabled) {
3833 cris_free_dma(info->dma_out_nbr, info->dma_out_irq_description);
3834 free_irq(info->dma_out_irq_nbr, info);
3835 }
3836 if (info->dma_in_enabled) {
3837 cris_free_dma(info->dma_in_nbr, info->dma_in_irq_description);
3838 free_irq(info->dma_in_irq_nbr, info);
3839 }
3840}
3841
3842
3843
3844
3845
3846static int
3847rs_open(struct tty_struct *tty, struct file * filp)
3848{
3849 struct e100_serial *info;
3850 int retval;
3851 int allocated_resources = 0;
3852
3853 info = rs_table + tty->index;
3854 if (!info->enabled)
3855 return -ENODEV;
3856
3857#ifdef SERIAL_DEBUG_OPEN
3858 printk("[%d] rs_open %s, count = %d\n", current->pid, tty->name,
3859 info->port.count);
3860#endif
3861
3862 info->port.count++;
3863 tty->driver_data = info;
3864 info->port.tty = tty;
3865
3866 info->port.low_latency = !!(info->port.flags & ASYNC_LOW_LATENCY);
3867
3868
3869
3870
3871 if (info->port.count == 1) {
3872 allocated_resources = 1;
3873 if (info->dma_in_enabled) {
3874 if (request_irq(info->dma_in_irq_nbr,
3875 rec_interrupt,
3876 info->dma_in_irq_flags,
3877 info->dma_in_irq_description,
3878 info)) {
3879 printk(KERN_WARNING "DMA irq '%s' busy; "
3880 "falling back to non-DMA mode\n",
3881 info->dma_in_irq_description);
3882
3883
3884 info->dma_in_enabled = 0;
3885 } else if (cris_request_dma(info->dma_in_nbr,
3886 info->dma_in_irq_description,
3887 DMA_VERBOSE_ON_ERROR,
3888 info->dma_owner)) {
3889 free_irq(info->dma_in_irq_nbr, info);
3890 printk(KERN_WARNING "DMA '%s' busy; "
3891 "falling back to non-DMA mode\n",
3892 info->dma_in_irq_description);
3893
3894
3895 info->dma_in_enabled = 0;
3896 }
3897#ifdef SERIAL_DEBUG_OPEN
3898 else
3899 printk(KERN_DEBUG "DMA irq '%s' allocated\n",
3900 info->dma_in_irq_description);
3901#endif
3902 }
3903 if (info->dma_out_enabled) {
3904 if (request_irq(info->dma_out_irq_nbr,
3905 tr_interrupt,
3906 info->dma_out_irq_flags,
3907 info->dma_out_irq_description,
3908 info)) {
3909 printk(KERN_WARNING "DMA irq '%s' busy; "
3910 "falling back to non-DMA mode\n",
3911 info->dma_out_irq_description);
3912
3913
3914 info->dma_out_enabled = 0;
3915 } else if (cris_request_dma(info->dma_out_nbr,
3916 info->dma_out_irq_description,
3917 DMA_VERBOSE_ON_ERROR,
3918 info->dma_owner)) {
3919 free_irq(info->dma_out_irq_nbr, info);
3920 printk(KERN_WARNING "DMA '%s' busy; "
3921 "falling back to non-DMA mode\n",
3922 info->dma_out_irq_description);
3923
3924
3925 info->dma_out_enabled = 0;
3926 }
3927#ifdef SERIAL_DEBUG_OPEN
3928 else
3929 printk(KERN_DEBUG "DMA irq '%s' allocated\n",
3930 info->dma_out_irq_description);
3931#endif
3932 }
3933 }
3934
3935
3936
3937
3938
3939 retval = startup(info);
3940 if (retval) {
3941 if (allocated_resources)
3942 deinit_port(info);
3943
3944
3945 return retval;
3946 }
3947
3948
3949 retval = block_til_ready(tty, filp, info);
3950 if (retval) {
3951#ifdef SERIAL_DEBUG_OPEN
3952 printk("rs_open returning after block_til_ready with %d\n",
3953 retval);
3954#endif
3955 if (allocated_resources)
3956 deinit_port(info);
3957
3958 return retval;
3959 }
3960
3961#ifdef SERIAL_DEBUG_OPEN
3962 printk("rs_open ttyS%d successful...\n", info->line);
3963#endif
3964 DLOG_INT_TRIG( log_int_pos = 0);
3965
3966 DFLIP( if (info->line == SERIAL_DEBUG_LINE) {
3967 info->icount.rx = 0;
3968 } );
3969
3970 return 0;
3971}
3972
3973#ifdef CONFIG_PROC_FS
3974
3975
3976
3977
3978static void seq_line_info(struct seq_file *m, struct e100_serial *info)
3979{
3980 unsigned long tmp;
3981
3982 seq_printf(m, "%d: uart:E100 port:%lX irq:%d",
3983 info->line, (unsigned long)info->ioport, info->irq);
3984
3985 if (!info->ioport || (info->type == PORT_UNKNOWN)) {
3986 seq_printf(m, "\n");
3987 return;
3988 }
3989
3990 seq_printf(m, " baud:%d", info->baud);
3991 seq_printf(m, " tx:%lu rx:%lu",
3992 (unsigned long)info->icount.tx,
3993 (unsigned long)info->icount.rx);
3994 tmp = CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
3995 if (tmp)
3996 seq_printf(m, " tx_pend:%lu/%lu",
3997 (unsigned long)tmp,
3998 (unsigned long)SERIAL_XMIT_SIZE);
3999
4000 seq_printf(m, " rx_pend:%lu/%lu",
4001 (unsigned long)info->recv_cnt,
4002 (unsigned long)info->max_recv_cnt);
4003
4004#if 1
4005 if (info->port.tty) {
4006 if (info->port.tty->stopped)
4007 seq_printf(m, " stopped:%i",
4008 (int)info->port.tty->stopped);
4009 }
4010
4011 {
4012 unsigned char rstat = info->ioport[REG_STATUS];
4013 if (rstat & IO_MASK(R_SERIAL0_STATUS, xoff_detect))
4014 seq_printf(m, " xoff_detect:1");
4015 }
4016
4017#endif
4018
4019 if (info->icount.frame)
4020 seq_printf(m, " fe:%lu", (unsigned long)info->icount.frame);
4021
4022 if (info->icount.parity)
4023 seq_printf(m, " pe:%lu", (unsigned long)info->icount.parity);
4024
4025 if (info->icount.brk)
4026 seq_printf(m, " brk:%lu", (unsigned long)info->icount.brk);
4027
4028 if (info->icount.overrun)
4029 seq_printf(m, " oe:%lu", (unsigned long)info->icount.overrun);
4030
4031
4032
4033
4034 if (!E100_RTS_GET(info))
4035 seq_puts(m, "|RTS");
4036 if (!E100_CTS_GET(info))
4037 seq_puts(m, "|CTS");
4038 if (!E100_DTR_GET(info))
4039 seq_puts(m, "|DTR");
4040 if (!E100_DSR_GET(info))
4041 seq_puts(m, "|DSR");
4042 if (!E100_CD_GET(info))
4043 seq_puts(m, "|CD");
4044 if (!E100_RI_GET(info))
4045 seq_puts(m, "|RI");
4046 seq_puts(m, "\n");
4047}
4048
4049
4050static int crisv10_proc_show(struct seq_file *m, void *v)
4051{
4052 int i;
4053
4054 seq_printf(m, "serinfo:1.0 driver:%s\n", serial_version);
4055
4056 for (i = 0; i < NR_PORTS; i++) {
4057 if (!rs_table[i].enabled)
4058 continue;
4059 seq_line_info(m, &rs_table[i]);
4060 }
4061#ifdef DEBUG_LOG_INCLUDED
4062 for (i = 0; i < debug_log_pos; i++) {
4063 seq_printf(m, "%-4i %lu.%lu ",
4064 i, debug_log[i].time,
4065 timer_data_to_ns(debug_log[i].timer_data));
4066 seq_printf(m, debug_log[i].string, debug_log[i].value);
4067 }
4068 seq_printf(m, "debug_log %i/%i\n", i, DEBUG_LOG_SIZE);
4069 debug_log_pos = 0;
4070#endif
4071 return 0;
4072}
4073
4074static int crisv10_proc_open(struct inode *inode, struct file *file)
4075{
4076 return single_open(file, crisv10_proc_show, NULL);
4077}
4078
4079static const struct file_operations crisv10_proc_fops = {
4080 .owner = THIS_MODULE,
4081 .open = crisv10_proc_open,
4082 .read = seq_read,
4083 .llseek = seq_lseek,
4084 .release = single_release,
4085};
4086#endif
4087
4088
4089
4090
4091static void show_serial_version(void)
4092{
4093 printk(KERN_INFO
4094 "ETRAX 100LX serial-driver %s, "
4095 "(c) 2000-2004 Axis Communications AB\r\n",
4096 &serial_version[11]);
4097}
4098
4099
4100
4101static const struct tty_operations rs_ops = {
4102 .open = rs_open,
4103 .close = rs_close,
4104 .write = rs_write,
4105 .flush_chars = rs_flush_chars,
4106 .write_room = rs_write_room,
4107 .chars_in_buffer = rs_chars_in_buffer,
4108 .flush_buffer = rs_flush_buffer,
4109 .ioctl = rs_ioctl,
4110 .throttle = rs_throttle,
4111 .unthrottle = rs_unthrottle,
4112 .set_termios = rs_set_termios,
4113 .stop = rs_stop,
4114 .start = rs_start,
4115 .hangup = rs_hangup,
4116 .break_ctl = rs_break,
4117 .send_xchar = rs_send_xchar,
4118 .wait_until_sent = rs_wait_until_sent,
4119 .tiocmget = rs_tiocmget,
4120 .tiocmset = rs_tiocmset,
4121#ifdef CONFIG_PROC_FS
4122 .proc_fops = &crisv10_proc_fops,
4123#endif
4124};
4125
4126static int __init rs_init(void)
4127{
4128 int i;
4129 struct e100_serial *info;
4130 struct tty_driver *driver = alloc_tty_driver(NR_PORTS);
4131
4132 if (!driver)
4133 return -ENOMEM;
4134
4135 show_serial_version();
4136
4137
4138
4139#if !defined(CONFIG_ETRAX_SERIAL_FAST_TIMER)
4140 setup_timer(&flush_timer, timed_flush_handler, 0);
4141 mod_timer(&flush_timer, jiffies + 5);
4142#endif
4143
4144#if defined(CONFIG_ETRAX_RS485)
4145#if defined(CONFIG_ETRAX_RS485_ON_PA)
4146 if (cris_io_interface_allocate_pins(if_serial_0, 'a', rs485_pa_bit,
4147 rs485_pa_bit)) {
4148 printk(KERN_ERR "ETRAX100LX serial: Could not allocate "
4149 "RS485 pin\n");
4150 put_tty_driver(driver);
4151 return -EBUSY;
4152 }
4153#endif
4154#endif
4155
4156
4157
4158 driver->driver_name = "serial";
4159 driver->name = "ttyS";
4160 driver->major = TTY_MAJOR;
4161 driver->minor_start = 64;
4162 driver->type = TTY_DRIVER_TYPE_SERIAL;
4163 driver->subtype = SERIAL_TYPE_NORMAL;
4164 driver->init_termios = tty_std_termios;
4165 driver->init_termios.c_cflag =
4166 B115200 | CS8 | CREAD | HUPCL | CLOCAL;
4167 driver->init_termios.c_ispeed = 115200;
4168 driver->init_termios.c_ospeed = 115200;
4169 driver->flags = TTY_DRIVER_REAL_RAW;
4170
4171 tty_set_operations(driver, &rs_ops);
4172 serial_driver = driver;
4173
4174
4175 for (i = 0, info = rs_table; i < NR_PORTS; i++,info++) {
4176 if (info->enabled) {
4177 if (cris_request_io_interface(info->io_if,
4178 info->io_if_description)) {
4179 printk(KERN_ERR "ETRAX100LX async serial: "
4180 "Could not allocate IO pins for "
4181 "%s, port %d\n",
4182 info->io_if_description, i);
4183 info->enabled = 0;
4184 }
4185 }
4186 tty_port_init(&info->port);
4187 info->uses_dma_in = 0;
4188 info->uses_dma_out = 0;
4189 info->line = i;
4190 info->port.tty = NULL;
4191 info->type = PORT_ETRAX;
4192 info->tr_running = 0;
4193 info->forced_eop = 0;
4194 info->baud_base = DEF_BAUD_BASE;
4195 info->custom_divisor = 0;
4196 info->x_char = 0;
4197 info->event = 0;
4198 info->xmit.buf = NULL;
4199 info->xmit.tail = info->xmit.head = 0;
4200 info->first_recv_buffer = info->last_recv_buffer = NULL;
4201 info->recv_cnt = info->max_recv_cnt = 0;
4202 info->last_tx_active_usec = 0;
4203 info->last_tx_active = 0;
4204
4205#if defined(CONFIG_ETRAX_RS485)
4206
4207 info->rs485.flags &= ~(SER_RS485_RTS_ON_SEND);
4208 info->rs485.flags |= SER_RS485_RTS_AFTER_SEND;
4209 info->rs485.delay_rts_before_send = 0;
4210 info->rs485.flags &= ~(SER_RS485_ENABLED);
4211#endif
4212 INIT_WORK(&info->work, do_softint);
4213
4214 if (info->enabled) {
4215 printk(KERN_INFO "%s%d at %p is a builtin UART with DMA\n",
4216 serial_driver->name, info->line, info->ioport);
4217 }
4218 tty_port_link_device(&info->port, driver, i);
4219 }
4220
4221 if (tty_register_driver(driver))
4222 panic("Couldn't register serial driver\n");
4223
4224#ifdef CONFIG_ETRAX_FAST_TIMER
4225#ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
4226 memset(fast_timers, 0, sizeof(fast_timers));
4227#endif
4228#ifdef CONFIG_ETRAX_RS485
4229 memset(fast_timers_rs485, 0, sizeof(fast_timers_rs485));
4230#endif
4231 fast_timer_init();
4232#endif
4233
4234#ifndef CONFIG_ETRAX_KGDB
4235
4236
4237
4238 if (request_irq(SERIAL_IRQ_NBR, ser_interrupt,
4239 IRQF_SHARED, "serial ", driver))
4240 panic("%s: Failed to request irq8", __func__);
4241
4242#endif
4243
4244 return 0;
4245}
4246
4247
4248device_initcall(rs_init);
4249