License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-2.6/btrfs-unstable.git] / drivers / tty / serial / crisv10.c
blob1421804975e0b08115232b3c0d7d8430fa46bf24
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3 * Serial port driver for the ETRAX 100LX chip
5 * Copyright (C) 1998-2007 Axis Communications AB
7 * Many, many authors. Based once upon a time on serial.c for 16x50.
9 */
11 static char *serial_version = "$Revision: 1.25 $";
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>
35 #include <asm/irq.h>
36 #include <asm/dma.h>
38 #include <arch/svinto.h>
39 #include <arch/system.h>
41 /* non-arch dependent serial structures are in linux/serial.h */
42 #include <linux/serial.h>
43 /* while we keep our own stuff (struct e100_serial) in a local .h file */
44 #include "crisv10.h"
45 #include <asm/fasttimer.h>
46 #include <arch/io_interface_mux.h>
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
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
60 * All of the compatibilty code so we can compile serial.c against
61 * older kernels is hidden in serial_compat.h
63 #if defined(LOCAL_HEADERS)
64 #include "serial_compat.h"
65 #endif
67 struct tty_driver *serial_driver;
69 /* number of characters left in xmit buffer before we ask for more */
70 #define WAKEUP_CHARS 256
72 //#define SERIAL_DEBUG_INTR
73 //#define SERIAL_DEBUG_OPEN
74 //#define SERIAL_DEBUG_FLOW
75 //#define SERIAL_DEBUG_DATA
76 //#define SERIAL_DEBUG_THROTTLE
77 //#define SERIAL_DEBUG_IO /* Debug for Extra control and status pins */
78 //#define SERIAL_DEBUG_LINE 0 /* What serport we want to debug */
80 /* Enable this to use serial interrupts to handle when you
81 expect the first received event on the serial port to
82 be an error, break or similar. Used to be able to flash IRMA
83 from eLinux */
84 #define SERIAL_HANDLE_EARLY_ERRORS
86 /* Currently 16 descriptors x 128 bytes = 2048 bytes */
87 #define SERIAL_DESCR_BUF_SIZE 256
89 #define SERIAL_PRESCALE_BASE 3125000 /* 3.125MHz */
90 #define DEF_BAUD_BASE SERIAL_PRESCALE_BASE
92 /* We don't want to load the system with massive fast timer interrupt
93 * on high baudrates so limit it to 250 us (4kHz) */
94 #define MIN_FLUSH_TIME_USEC 250
96 /* Add an x here to log a lot of timer stuff */
97 #define TIMERD(x)
98 /* Debug details of interrupt handling */
99 #define DINTR1(x) /* irq on/off, errors */
100 #define DINTR2(x) /* tx and rx */
101 /* Debug flip buffer stuff */
102 #define DFLIP(x)
103 /* Debug flow control and overview of data flow */
104 #define DFLOW(x)
105 #define DBAUD(x)
106 #define DLOG_INT_TRIG(x)
108 //#define DEBUG_LOG_INCLUDED
109 #ifndef DEBUG_LOG_INCLUDED
110 #define DEBUG_LOG(line, string, value)
111 #else
112 struct debug_log_info
114 unsigned long time;
115 unsigned long timer_data;
116 // int line;
117 const char *string;
118 int value;
120 #define DEBUG_LOG_SIZE 4096
122 struct debug_log_info debug_log[DEBUG_LOG_SIZE];
123 int debug_log_pos = 0;
125 #define DEBUG_LOG(_line, _string, _value) do { \
126 if ((_line) == SERIAL_DEBUG_LINE) {\
127 debug_log_func(_line, _string, _value); \
129 }while(0)
131 void debug_log_func(int line, const char *string, int value)
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 // debug_log[debug_log_pos].line = line;
137 debug_log[debug_log_pos].string = string;
138 debug_log[debug_log_pos].value = value;
139 debug_log_pos++;
141 /*printk(string, value);*/
143 #endif
145 #ifndef CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS
146 /* Default number of timer ticks before flushing rx fifo
147 * When using "little data, low latency applications: use 0
148 * When using "much data applications (PPP)" use ~5
150 #define CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS 5
151 #endif
153 unsigned long timer_data_to_ns(unsigned long timer_data);
155 static void change_speed(struct e100_serial *info);
156 static void rs_throttle(struct tty_struct * tty);
157 static void rs_wait_until_sent(struct tty_struct *tty, int timeout);
158 static int rs_write(struct tty_struct *tty,
159 const unsigned char *buf, int count);
160 #ifdef CONFIG_ETRAX_RS485
161 static int e100_write_rs485(struct tty_struct *tty,
162 const unsigned char *buf, int count);
163 #endif
164 static int get_lsr_info(struct e100_serial *info, unsigned int *value);
167 #define DEF_BAUD 115200 /* 115.2 kbit/s */
168 #define DEF_RX 0x20 /* or SERIAL_CTRL_W >> 8 */
169 /* Default value of tx_ctrl register: has txd(bit 7)=1 (idle) as default */
170 #define DEF_TX 0x80 /* or SERIAL_CTRL_B */
172 /* offsets from R_SERIALx_CTRL */
174 #define REG_DATA 0
175 #define REG_DATA_STATUS32 0 /* this is the 32 bit register R_SERIALx_READ */
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 /* this is a 32 bit register */
183 /* The bitfields are the same for all serial ports */
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)
190 #define SER_ERROR_MASK (SER_OVERRUN_MASK | SER_PAR_ERR_MASK | SER_FRAMING_ERR_MASK)
192 /* Values for info->errorcode */
193 #define ERRCODE_SET_BREAK (TTY_BREAK)
194 #define ERRCODE_INSERT 0x100
195 #define ERRCODE_INSERT_BREAK (ERRCODE_INSERT | TTY_BREAK)
197 #define FORCE_EOP(info) *R_SET_EOP = 1U << info->iseteop;
200 * General note regarding the use of IO_* macros in this file:
202 * We will use the bits defined for DMA channel 6 when using various
203 * IO_* macros (e.g. IO_STATE, IO_MASK, IO_EXTRACT) and _assume_ they are
204 * the same for all channels (which of course they are).
206 * We will also use the bits defined for serial port 0 when writing commands
207 * to the different ports, as these bits too are the same for all ports.
211 /* Mask for the irqs possibly enabled in R_IRQ_MASK1_RD etc. */
212 static 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
226 unsigned long r_alt_ser_baudrate_shadow = 0;
228 /* this is the data for the four serial ports in the etrax100 */
229 /* DMA2(ser2), DMA4(ser3), DMA6(ser0) or DMA8(ser1) */
230 /* R_DMA_CHx_CLR_INTR, R_DMA_CHx_FIRST, R_DMA_CHx_CMD */
232 static struct e100_serial rs_table[] = {
233 { .baud = DEF_BAUD,
234 .ioport = (unsigned char *)R_SERIAL0_CTRL,
235 .irq = 1U << 12, /* uses DMA 6 and 7 */
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
284 }, /* ttyS0 */
285 { .baud = DEF_BAUD,
286 .ioport = (unsigned char *)R_SERIAL1_CTRL,
287 .irq = 1U << 16, /* uses DMA 8 and 9 */
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 }, /* ttyS1 */
340 { .baud = DEF_BAUD,
341 .ioport = (unsigned char *)R_SERIAL2_CTRL,
342 .irq = 1U << 4, /* uses DMA 2 and 3 */
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 }, /* ttyS2 */
393 { .baud = DEF_BAUD,
394 .ioport = (unsigned char *)R_SERIAL3_CTRL,
395 .irq = 1U << 8, /* uses DMA 4 and 5 */
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 } /* ttyS3 */
448 #define NR_PORTS (sizeof(rs_table)/sizeof(struct e100_serial))
450 #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
451 static struct fast_timer fast_timers[NR_PORTS];
452 #endif
454 /* RS-485 */
455 #if defined(CONFIG_ETRAX_RS485)
456 #ifdef CONFIG_ETRAX_FAST_TIMER
457 static struct fast_timer fast_timers_rs485[NR_PORTS];
458 #endif
459 #if defined(CONFIG_ETRAX_RS485_ON_PA)
460 static int rs485_pa_bit = CONFIG_ETRAX_RS485_ON_PA_BIT;
461 #endif
462 #endif
464 /* Info and macros needed for each ports extra control/status signals. */
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]))
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))
482 #define DUMMY_DTR_MASK 1
483 #define DUMMY_RI_MASK 2
484 #define DUMMY_DSR_MASK 4
485 #define DUMMY_CD_MASK 8
486 static unsigned char dummy_ser[NR_PORTS] = {0xFF, 0xFF, 0xFF,0xFF};
488 /* If not all status pins are used or disabled, use mixed mode */
489 #ifdef CONFIG_ETRAX_SERIAL_PORT0
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)
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
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)
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
541 #endif /* PORT0 */
544 #ifdef CONFIG_ETRAX_SERIAL_PORT1
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)
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
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)
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
596 #endif /* PORT1 */
598 #ifdef CONFIG_ETRAX_SERIAL_PORT2
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)
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
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)
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
650 #endif /* PORT2 */
652 #ifdef CONFIG_ETRAX_SERIAL_PORT3
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)
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
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)
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
704 #endif /* PORT3 */
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
714 #ifdef ETRAX_SERX_DTR_RI_DSR_CD_MIXED
715 /* The pins can be mixed on PA and PB */
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
724 struct control_pins
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;
735 unsigned char dtr_mask;
736 unsigned char ri_mask;
737 unsigned char dsr_mask;
738 unsigned char cd_mask;
741 static const struct control_pins e100_modem_pins[NR_PORTS] =
743 /* Ser 0 */
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
759 /* Ser 1 */
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
775 /* Ser 2 */
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
791 /* Ser 3 */
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
807 #else /* ETRAX_SERX_DTR_RI_DSR_CD_MIXED */
809 /* All pins are on either PA or PB for each serial port */
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
815 struct control_pins
817 volatile unsigned char *port;
818 unsigned char *shadow;
820 unsigned char dtr_mask;
821 unsigned char ri_mask;
822 unsigned char dsr_mask;
823 unsigned char cd_mask;
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
835 static const struct control_pins e100_modem_pins[NR_PORTS] =
837 /* Ser 0 */
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
850 /* Ser 1 */
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
863 /* Ser 2 */
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
876 /* Ser 3 */
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
889 #endif /* !ETRAX_SERX_DTR_RI_DSR_CD_MIXED */
891 #define E100_RTS_MASK 0x20
892 #define E100_CTS_MASK 0x40
894 /* All serial port signals are active low:
895 * active = 0 -> 3.3V to RS-232 driver -> -12V on RS-232 level
896 * inactive = 1 -> 0V to RS-232 driver -> +12V on RS-232 level
898 * These macros returns the pin value: 0=0V, >=1 = 3.3V on ETRAX chip
901 /* Output */
902 #define E100_RTS_GET(info) ((info)->rx_ctrl & E100_RTS_MASK)
903 /* Input */
904 #define E100_CTS_GET(info) ((info)->ioport[REG_STATUS] & E100_CTS_MASK)
906 /* These are typically PA or PB and 0 means 0V, 1 means 3.3V */
907 /* Is an output */
908 #define E100_DTR_GET(info) ((*e100_modem_pins[(info)->line].dtr_shadow) & e100_modem_pins[(info)->line].dtr_mask)
910 /* Normally inputs */
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)
914 /* Input */
915 #define E100_DSR_GET(info) ((*e100_modem_pins[(info)->line].dsr_port) & e100_modem_pins[(info)->line].dsr_mask)
917 /* Calculate the chartime depending on baudrate, numbor of bits etc. */
918 static void update_char_time(struct e100_serial * info)
920 tcflag_t cflags = info->port.tty->termios.c_cflag;
921 int bits;
923 /* calc. number of bits / data byte */
924 /* databits + startbit and 1 stopbit */
925 if ((cflags & CSIZE) == CS7)
926 bits = 9;
927 else
928 bits = 10;
930 if (cflags & CSTOPB) /* 2 stopbits ? */
931 bits++;
933 if (cflags & PARENB) /* parity bit ? */
934 bits++;
936 /* calc timeout */
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;
945 * This function maps from the Bxxxx defines in asm/termbits.h into real
946 * baud rates.
949 static int
950 cflag_to_baud(unsigned int cflag)
952 static int baud_table[] = {
953 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400,
954 4800, 9600, 19200, 38400 };
956 static int ext_baud_table[] = {
957 0, 57600, 115200, 230400, 460800, 921600, 1843200, 6250000,
958 0, 0, 0, 0, 0, 0, 0, 0 };
960 if (cflag & CBAUDEX)
961 return ext_baud_table[(cflag & CBAUD) & ~CBAUDEX];
962 else
963 return baud_table[cflag & CBAUD];
966 /* and this maps to an etrax100 hardware baud constant */
968 static unsigned char
969 cflag_to_etrax_baud(unsigned int cflag)
971 char retval;
973 static char baud_table[] = {
974 -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, -1, 3, 4, 5, 6, 7 };
976 static char ext_baud_table[] = {
977 -1, 8, 9, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1 };
979 if (cflag & CBAUDEX)
980 retval = ext_baud_table[(cflag & CBAUD) & ~CBAUDEX];
981 else
982 retval = baud_table[cflag & CBAUD];
984 if (retval < 0) {
985 printk(KERN_WARNING "serdriver tried setting invalid baud rate, flags %x.\n", cflag);
986 retval = 5; /* choose default 9600 instead */
989 return retval | (retval << 4); /* choose same for both TX and RX */
993 /* Various static support functions */
995 /* Functions to set or clear DTR/RTS on the requested line */
996 /* It is complicated by the fact that RTS is a serial port register, while
997 * DTR might not be implemented in the HW at all, and if it is, it can be on
998 * any general port.
1002 static inline void
1003 e100_dtr(struct e100_serial *info, int set)
1005 unsigned char mask = e100_modem_pins[info->line].dtr_mask;
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 /* DTR is active low */
1015 unsigned long flags;
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);
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
1031 /* set = 0 means 3.3V on the pin, bitvalue: 0=active, 1=inactive
1032 * 0=0V , 1=3.3V
1034 static inline void
1035 e100_rts(struct e100_serial *info, int set)
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); /* RTS is active low */
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
1049 /* If this behaves as a modem, RI and CD is an output */
1050 static inline void
1051 e100_ri_out(struct e100_serial *info, int set)
1053 /* RI is active low */
1055 unsigned char mask = e100_modem_pins[info->line].ri_mask;
1056 unsigned long flags;
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);
1065 static inline void
1066 e100_cd_out(struct e100_serial *info, int set)
1068 /* CD is active low */
1070 unsigned char mask = e100_modem_pins[info->line].cd_mask;
1071 unsigned long flags;
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);
1081 static inline void
1082 e100_disable_rx(struct e100_serial *info)
1084 /* disable the receiver */
1085 info->ioport[REG_REC_CTRL] =
1086 (info->rx_ctrl &= ~IO_MASK(R_SERIAL0_REC_CTRL, rec_enable));
1089 static inline void
1090 e100_enable_rx(struct e100_serial *info)
1092 /* enable the receiver */
1093 info->ioport[REG_REC_CTRL] =
1094 (info->rx_ctrl |= IO_MASK(R_SERIAL0_REC_CTRL, rec_enable));
1097 /* the rx DMA uses both the dma_descr and the dma_eop interrupts */
1099 static inline void
1100 e100_disable_rxdma_irq(struct e100_serial *info)
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);
1109 static inline void
1110 e100_enable_rxdma_irq(struct e100_serial *info)
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);
1119 /* the tx DMA uses only dma_descr interrupt */
1121 static void e100_disable_txdma_irq(struct e100_serial *info)
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;
1130 static void e100_enable_txdma_irq(struct e100_serial *info)
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;
1139 static void e100_disable_txdma_channel(struct e100_serial *info)
1141 unsigned long flags;
1143 /* Disable output DMA channel for the serial port in question
1144 * ( set to something other than serialX)
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);
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);
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);
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);
1173 *R_GEN_CONFIG = genconfig_shadow;
1174 local_irq_restore(flags);
1178 static void e100_enable_txdma_channel(struct e100_serial *info)
1180 unsigned long flags;
1182 local_irq_save(flags);
1183 DFLOW(DEBUG_LOG(info->line, "enable_txdma_channel %i\n", info->line));
1184 /* Enable output DMA channel for the serial port in question */
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);
1198 *R_GEN_CONFIG = genconfig_shadow;
1199 local_irq_restore(flags);
1202 static void e100_disable_rxdma_channel(struct e100_serial *info)
1204 unsigned long flags;
1206 /* Disable input DMA channel for the serial port in question
1207 * ( set to something other than serialX)
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);
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);
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);
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);
1235 *R_GEN_CONFIG = genconfig_shadow;
1236 local_irq_restore(flags);
1240 static void e100_enable_rxdma_channel(struct e100_serial *info)
1242 unsigned long flags;
1244 local_irq_save(flags);
1245 /* Enable input DMA channel for the serial port in question */
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);
1259 *R_GEN_CONFIG = genconfig_shadow;
1260 local_irq_restore(flags);
1263 #ifdef SERIAL_HANDLE_EARLY_ERRORS
1264 /* in order to detect and fix errors on the first byte
1265 we have to use the serial interrupts as well. */
1267 static inline void
1268 e100_disable_serial_data_irq(struct e100_serial *info)
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));
1277 static inline void
1278 e100_enable_serial_data_irq(struct e100_serial *info)
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));
1289 #endif
1291 static inline void
1292 e100_disable_serial_tx_ready_irq(struct e100_serial *info)
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));
1301 static inline void
1302 e100_enable_serial_tx_ready_irq(struct e100_serial *info)
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));
1314 static inline void e100_enable_rx_irq(struct e100_serial *info)
1316 if (info->uses_dma_in)
1317 e100_enable_rxdma_irq(info);
1318 else
1319 e100_enable_serial_data_irq(info);
1321 static inline void e100_disable_rx_irq(struct e100_serial *info)
1323 if (info->uses_dma_in)
1324 e100_disable_rxdma_irq(info);
1325 else
1326 e100_disable_serial_data_irq(info);
1329 #if defined(CONFIG_ETRAX_RS485)
1330 /* Enable RS-485 mode on selected port. This is UGLY. */
1331 static int
1332 e100_enable_rs485(struct tty_struct *tty, struct serial_rs485 *r)
1334 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
1336 #if defined(CONFIG_ETRAX_RS485_ON_PA)
1337 *R_PORT_PA_DATA = port_pa_data_shadow |= (1 << rs485_pa_bit);
1338 #endif
1340 info->rs485 = *r;
1342 /* Maximum delay before RTS equal to 1000 */
1343 if (info->rs485.delay_rts_before_send >= 1000)
1344 info->rs485.delay_rts_before_send = 1000;
1346 /* printk("rts: on send = %i, after = %i, enabled = %i",
1347 info->rs485.rts_on_send,
1348 info->rs485.rts_after_sent,
1349 info->rs485.enabled
1352 return 0;
1355 static int
1356 e100_write_rs485(struct tty_struct *tty,
1357 const unsigned char *buf, int count)
1359 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
1360 int old_value = (info->rs485.flags) & SER_RS485_ENABLED;
1362 /* rs485 is always implicitly enabled if we're using the ioctl()
1363 * but it doesn't have to be set in the serial_rs485
1364 * (to be backward compatible with old apps)
1365 * So we store, set and restore it.
1367 info->rs485.flags |= SER_RS485_ENABLED;
1368 /* rs_write now deals with RS485 if enabled */
1369 count = rs_write(tty, buf, count);
1370 if (!old_value)
1371 info->rs485.flags &= ~(SER_RS485_ENABLED);
1372 return count;
1375 #ifdef CONFIG_ETRAX_FAST_TIMER
1376 /* Timer function to toggle RTS when using FAST_TIMER */
1377 static void rs485_toggle_rts_timer_function(unsigned long data)
1379 struct e100_serial *info = (struct e100_serial *)data;
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
1388 #endif
1389 #endif /* CONFIG_ETRAX_RS485 */
1392 * ------------------------------------------------------------
1393 * rs_stop() and rs_start()
1395 * This routines are called before setting or resetting tty->stopped.
1396 * They enable or disable transmitter using the XOFF registers, as necessary.
1397 * ------------------------------------------------------------
1400 static void
1401 rs_stop(struct tty_struct *tty)
1403 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
1404 if (info) {
1405 unsigned long flags;
1406 unsigned long xoff;
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)));
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);
1419 *((unsigned long *)&info->ioport[REG_XOFF]) = xoff;
1420 local_irq_restore(flags);
1424 static void
1425 rs_start(struct tty_struct *tty)
1427 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
1428 if (info) {
1429 unsigned long flags;
1430 unsigned long xoff;
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);
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);
1446 local_irq_restore(flags);
1451 * ----------------------------------------------------------------------
1453 * Here starts the interrupt handling routines. All of the following
1454 * subroutines are declared as inline and are folded into
1455 * rs_interrupt(). They were separated out for readability's sake.
1457 * Note: rs_interrupt() is a "fast" interrupt, which means that it
1458 * runs with interrupts turned off. People who may want to modify
1459 * rs_interrupt() should try to keep the interrupt handler as fast as
1460 * possible. After you are done making modifications, it is not a bad
1461 * idea to do:
1463 * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
1465 * and look at the resulting assemble code in serial.s.
1467 * - Ted Ts'o (tytso@mit.edu), 7-Mar-93
1468 * -----------------------------------------------------------------------
1472 * This routine is used by the interrupt handler to schedule
1473 * processing in the software interrupt portion of the driver.
1475 static void rs_sched_event(struct e100_serial *info, int event)
1477 if (info->event & (1 << event))
1478 return;
1479 info->event |= 1 << event;
1480 schedule_work(&info->work);
1483 /* The output DMA channel is free - use it to send as many chars as possible
1484 * NOTES:
1485 * We don't pay attention to info->x_char, which means if the TTY wants to
1486 * use XON/XOFF it will set info->x_char but we won't send any X char!
1488 * To implement this, we'd just start a DMA send of 1 byte pointing at a
1489 * buffer containing the X char, and skip updating xmit. We'd also have to
1490 * check if the last sent char was the X char when we enter this function
1491 * the next time, to avoid updating xmit with the sent X value.
1494 static void
1495 transmit_chars_dma(struct e100_serial *info)
1497 unsigned int c, sentl;
1498 struct etrax_dma_descr *descr;
1500 /* acknowledge both dma_descr and dma_eop irq in R_DMA_CHx_CLR_INTR */
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);
1505 #ifdef SERIAL_DEBUG_INTR
1506 if (info->line == SERIAL_DEBUG_LINE)
1507 printk("tc\n");
1508 #endif
1509 if (!info->tr_running) {
1510 /* weirdo... we shouldn't get here! */
1511 printk(KERN_WARNING "Achtung: transmit_chars_dma with !tr_running\n");
1512 return;
1515 descr = &info->tr_descr;
1517 /* first get the amount of bytes sent during the last DMA transfer,
1518 and update xmit accordingly */
1520 /* if the stop bit was not set, all data has been sent */
1521 if (!(descr->status & d_stop)) {
1522 sentl = descr->sw_len;
1523 } else
1524 /* otherwise we find the amount of data sent here */
1525 sentl = descr->hw_len;
1527 DFLOW(DEBUG_LOG(info->line, "TX %i done\n", sentl));
1529 /* update stats */
1530 info->icount.tx += sentl;
1532 /* update xmit buffer */
1533 info->xmit.tail = (info->xmit.tail + sentl) & (SERIAL_XMIT_SIZE - 1);
1535 /* if there is only a few chars left in the buf, wake up the blocked
1536 write if any */
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);
1542 /* find out the largest amount of consecutive bytes we want to send now */
1544 c = CIRC_CNT_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
1546 /* Don't send all in one DMA transfer - divide it so we wake up
1547 * application before all is sent
1550 if (c >= 4*WAKEUP_CHARS)
1551 c = c/2;
1553 if (c <= 0) {
1554 /* our job here is done, don't schedule any new DMA transfer */
1555 info->tr_running = 0;
1557 #if defined(CONFIG_ETRAX_RS485) && defined(CONFIG_ETRAX_FAST_TIMER)
1558 if (info->rs485.flags & SER_RS485_ENABLED) {
1559 /* Set a short timer to toggle RTS */
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");
1566 #endif /* RS485 */
1567 return;
1570 /* ok we can schedule a dma send of c chars starting at info->xmit.tail */
1571 /* set up the descriptor correctly for output */
1572 DFLOW(DEBUG_LOG(info->line, "TX %i\n", c));
1573 descr->ctrl = d_int | d_eol | d_wait; /* Wait needed for tty_wait_until_sent() */
1574 descr->sw_len = c;
1575 descr->buf = virt_to_phys(info->xmit.buf + info->xmit.tail);
1576 descr->status = 0;
1578 *info->ofirstadr = virt_to_phys(descr); /* write to R_DMAx_FIRST */
1579 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, start);
1581 /* DMA is now running (hopefully) */
1582 } /* transmit_chars_dma */
1584 static void
1585 start_transmit(struct e100_serial *info)
1587 #if 0
1588 if (info->line == SERIAL_DEBUG_LINE)
1589 printk("x\n");
1590 #endif
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 } /* start_transmit */
1602 #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
1603 static int serial_fast_timer_started = 0;
1604 static int serial_fast_timer_expired = 0;
1605 static 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); \
1619 else { \
1620 TIMERD(DEBUG_LOG(info->line, "timer %i already running\n", info->line)); \
1622 local_irq_restore(timer_flags); \
1624 #define START_FLUSH_FAST_TIMER(info, string) START_FLUSH_FAST_TIMER_TIME(info, string, info->flush_time_usec)
1626 #else
1627 #define START_FLUSH_FAST_TIMER_TIME(info, string, usec)
1628 #define START_FLUSH_FAST_TIMER(info, string)
1629 #endif
1631 static struct etrax_recv_buffer *
1632 alloc_recv_buffer(unsigned int size)
1634 struct etrax_recv_buffer *buffer;
1636 buffer = kmalloc(sizeof *buffer + size, GFP_ATOMIC);
1637 if (!buffer)
1638 return NULL;
1640 buffer->next = NULL;
1641 buffer->length = 0;
1642 buffer->error = TTY_NORMAL;
1644 return buffer;
1647 static void
1648 append_recv_buffer(struct e100_serial *info, struct etrax_recv_buffer *buffer)
1650 unsigned long flags;
1652 local_irq_save(flags);
1654 if (!info->first_recv_buffer)
1655 info->first_recv_buffer = buffer;
1656 else
1657 info->last_recv_buffer->next = buffer;
1659 info->last_recv_buffer = buffer;
1661 info->recv_cnt += buffer->length;
1662 if (info->recv_cnt > info->max_recv_cnt)
1663 info->max_recv_cnt = info->recv_cnt;
1665 local_irq_restore(flags);
1668 static int
1669 add_char_and_flag(struct e100_serial *info, unsigned char data, unsigned char flag)
1671 struct etrax_recv_buffer *buffer;
1672 if (info->uses_dma_in) {
1673 buffer = alloc_recv_buffer(4);
1674 if (!buffer)
1675 return 0;
1677 buffer->length = 1;
1678 buffer->error = flag;
1679 buffer->buffer[0] = data;
1681 append_recv_buffer(info, buffer);
1683 info->icount.rx++;
1684 } else {
1685 tty_insert_flip_char(&info->port, data, flag);
1686 info->icount.rx++;
1689 return 1;
1692 static unsigned int handle_descr_data(struct e100_serial *info,
1693 struct etrax_dma_descr *descr,
1694 unsigned int recvl)
1696 struct etrax_recv_buffer *buffer = phys_to_virt(descr->buf) - sizeof *buffer;
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;
1704 buffer->length = recvl;
1706 if (info->errorcode == ERRCODE_SET_BREAK)
1707 buffer->error = TTY_BREAK;
1708 info->errorcode = 0;
1710 append_recv_buffer(info, buffer);
1712 buffer = alloc_recv_buffer(SERIAL_DESCR_BUF_SIZE);
1713 if (!buffer)
1714 panic("%s: Failed to allocate memory for receive buffer!\n", __func__);
1716 descr->buf = virt_to_phys(buffer->buffer);
1718 return recvl;
1721 static unsigned int handle_all_descr_data(struct e100_serial *info)
1723 struct etrax_dma_descr *descr;
1724 unsigned int recvl;
1725 unsigned int ret = 0;
1727 while (1)
1729 descr = &info->rec_descr[info->cur_rec_descr];
1731 if (descr == phys_to_virt(*info->idescradr))
1732 break;
1734 if (++info->cur_rec_descr == SERIAL_RECV_DESCRIPTORS)
1735 info->cur_rec_descr = 0;
1737 /* find out how many bytes were read */
1739 /* if the eop bit was not set, all data has been received */
1740 if (!(descr->status & d_eop)) {
1741 recvl = descr->sw_len;
1742 } else {
1743 /* otherwise we find the amount of data received here */
1744 recvl = descr->hw_len;
1747 /* Reset the status information */
1748 descr->status = 0;
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]);
1759 /* update stats */
1760 info->icount.rx += recvl;
1762 ret += handle_descr_data(info, descr, recvl);
1765 return ret;
1768 static void receive_chars_dma(struct e100_serial *info)
1770 struct tty_struct *tty;
1771 unsigned char rstat;
1773 /* Acknowledge both dma_descr and dma_eop irq in R_DMA_CHx_CLR_INTR */
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);
1778 tty = info->port.tty;
1779 if (!tty) /* Something wrong... */
1780 return;
1782 #ifdef SERIAL_HANDLE_EARLY_ERRORS
1783 if (info->uses_dma_in)
1784 e100_enable_serial_data_irq(info);
1785 #endif
1787 if (info->errorcode == ERRCODE_INSERT_BREAK)
1788 add_char_and_flag(info, '\0', TTY_BREAK);
1790 handle_all_descr_data(info);
1792 /* Read the status register to detect errors */
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));
1798 if (rstat & SER_ERROR_MASK) {
1799 /* If we got an error, we must reset it by reading the
1800 * data_in field
1802 unsigned char data = info->ioport[REG_DATA];
1804 DEBUG_LOG(info->line, "#dERR: s d 0x%04X\n",
1805 ((rstat & SER_ERROR_MASK) << 8) | data);
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);
1815 START_FLUSH_FAST_TIMER(info, "receive_chars");
1817 /* Restart the receiving DMA */
1818 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, restart);
1821 static int start_recv_dma(struct e100_serial *info)
1823 struct etrax_dma_descr *descr = info->rec_descr;
1824 struct etrax_recv_buffer *buffer;
1825 int i;
1827 /* Set up the receiving descriptors */
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__);
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]);
1841 /* Link the last descriptor to the first */
1842 descr[i-1].next = virt_to_phys(&descr[0]);
1844 /* Start with the first descriptor in the list */
1845 info->cur_rec_descr = 0;
1847 /* Start the DMA */
1848 *info->ifirstadr = virt_to_phys(&descr[info->cur_rec_descr]);
1849 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, start);
1851 /* Input DMA should be running now */
1852 return 1;
1855 static void
1856 start_receive(struct e100_serial *info)
1858 if (info->uses_dma_in) {
1859 /* reset the input dma channel to be sure it works */
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));
1865 start_recv_dma(info);
1870 /* the bits in the MASK2 register are laid out like this:
1871 DMAI_EOP DMAI_DESCR DMAO_EOP DMAO_DESCR
1872 where I is the input channel and O is the output channel for the port.
1873 info->irq is the bit number for the DMAO_DESCR so to check the others we
1874 shift info->irq to the left.
1877 /* dma output channel interrupt handler
1878 this interrupt is called from DMA2(ser2), DMA4(ser3), DMA6(ser0) or
1879 DMA8(ser1) when they have finished a descriptor with the intr flag set.
1882 static irqreturn_t
1883 tr_interrupt(int irq, void *dev_id)
1885 struct e100_serial *info;
1886 unsigned long ireg;
1887 int i;
1888 int handled = 0;
1890 /* find out the line that caused this irq and get it from rs_table */
1892 ireg = *R_IRQ_MASK2_RD; /* get the active irq bits for the dma channels */
1894 for (i = 0; i < NR_PORTS; i++) {
1895 info = rs_table + i;
1896 if (!info->enabled || !info->uses_dma_out)
1897 continue;
1898 /* check for dma_descr (don't need to check for dma_eop in output dma for serial */
1899 if (ireg & info->irq) {
1900 handled = 1;
1901 /* we can send a new dma bunch. make it so. */
1902 DINTR2(DEBUG_LOG(info->line, "tr_interrupt %i\n", i));
1903 /* Read jiffies_usec first,
1904 * we want this time to be as late as possible
1906 info->last_tx_active_usec = GET_JIFFIES_USEC();
1907 info->last_tx_active = jiffies;
1908 transmit_chars_dma(info);
1911 /* FIXME: here we should really check for a change in the
1912 status lines and if so call status_handle(info) */
1914 return IRQ_RETVAL(handled);
1915 } /* tr_interrupt */
1917 /* dma input channel interrupt handler */
1919 static irqreturn_t
1920 rec_interrupt(int irq, void *dev_id)
1922 struct e100_serial *info;
1923 unsigned long ireg;
1924 int i;
1925 int handled = 0;
1927 /* find out the line that caused this irq and get it from rs_table */
1929 ireg = *R_IRQ_MASK2_RD; /* get the active irq bits for the dma channels */
1931 for (i = 0; i < NR_PORTS; i++) {
1932 info = rs_table + i;
1933 if (!info->enabled || !info->uses_dma_in)
1934 continue;
1935 /* check for both dma_eop and dma_descr for the input dma channel */
1936 if (ireg & ((info->irq << 2) | (info->irq << 3))) {
1937 handled = 1;
1938 /* we have received something */
1939 receive_chars_dma(info);
1942 /* FIXME: here we should really check for a change in the
1943 status lines and if so call status_handle(info) */
1945 return IRQ_RETVAL(handled);
1946 } /* rec_interrupt */
1948 static int force_eop_if_needed(struct e100_serial *info)
1950 /* We check data_avail bit to determine if data has
1951 * arrived since last time
1953 unsigned char rstat = info->ioport[REG_STATUS];
1955 /* error or datavail? */
1956 if (rstat & SER_ERROR_MASK) {
1957 /* Some error has occurred. If there has been valid data, an
1958 * EOP interrupt will be made automatically. If no data, the
1959 * normal ser_interrupt should be enabled and handle it.
1960 * So do nothing!
1962 DEBUG_LOG(info->line, "timeout err: rstat 0x%03X\n",
1963 rstat | (info->line << 8));
1964 return 0;
1967 if (rstat & SER_DATA_AVAIL_MASK) {
1968 /* Ok data, no error, count it */
1969 TIMERD(DEBUG_LOG(info->line, "timeout: rstat 0x%03X\n",
1970 rstat | (info->line << 8)));
1971 /* Read data to clear status flags */
1972 (void)info->ioport[REG_DATA];
1974 info->forced_eop = 0;
1975 START_FLUSH_FAST_TIMER(info, "magic");
1976 return 0;
1979 /* hit the timeout, force an EOP for the input
1980 * dma channel if we haven't already
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);
1988 return 1;
1991 static void flush_to_flip_buffer(struct e100_serial *info)
1993 struct etrax_recv_buffer *buffer;
1994 unsigned long flags;
1996 local_irq_save(flags);
1998 while ((buffer = info->first_recv_buffer) != NULL) {
1999 unsigned int count = buffer->length;
2001 tty_insert_flip_string(&info->port, buffer->buffer, count);
2002 info->recv_cnt -= count;
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;
2014 if (!info->first_recv_buffer)
2015 info->last_recv_buffer = NULL;
2017 local_irq_restore(flags);
2019 /* This includes a check for low-latency */
2020 tty_flip_buffer_push(&info->port);
2023 static void check_flush_timeout(struct e100_serial *info)
2025 /* Flip what we've got (if we can) */
2026 flush_to_flip_buffer(info);
2028 /* We might need to flip later, but not to fast
2029 * since the system is busy processing input... */
2030 if (info->first_recv_buffer)
2031 START_FLUSH_FAST_TIMER_TIME(info, "flip", 2000);
2033 /* Force eop last, since data might have come while we're processing
2034 * and if we started the slow timer above, we won't start a fast
2035 * below.
2037 force_eop_if_needed(info);
2040 #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
2041 static void flush_timeout_function(unsigned long data)
2043 struct e100_serial *info = (struct e100_serial *)data;
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);
2052 #else
2054 /* dma fifo/buffer timeout handler
2055 forces an end-of-packet for the dma input channel if no chars
2056 have been received for CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS/100 s.
2059 static struct timer_list flush_timer;
2061 static void
2062 timed_flush_handler(unsigned long ptr)
2064 struct e100_serial *info;
2065 int i;
2067 for (i = 0; i < NR_PORTS; i++) {
2068 info = rs_table + i;
2069 if (info->uses_dma_in)
2070 check_flush_timeout(info);
2073 /* restart flush timer */
2074 mod_timer(&flush_timer, jiffies + CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS);
2076 #endif
2078 #ifdef SERIAL_HANDLE_EARLY_ERRORS
2080 /* If there is an error (ie break) when the DMA is running and
2081 * there are no bytes in the fifo the DMA is stopped and we get no
2082 * eop interrupt. Thus we have to monitor the first bytes on a DMA
2083 * transfer, and if it is without error we can turn the serial
2084 * interrupts off.
2088 BREAK handling on ETRAX 100:
2089 ETRAX will generate interrupt although there is no stop bit between the
2090 characters.
2092 Depending on how long the break sequence is, the end of the breaksequence
2093 will look differently:
2094 | indicates start/end of a character.
2096 B= Break character (0x00) with framing error.
2097 E= Error byte with parity error received after B characters.
2098 F= "Faked" valid byte received immediately after B characters.
2099 V= Valid byte
2102 B BL ___________________________ V
2103 .._|__________|__________| |valid data |
2105 Multiple frame errors with data == 0x00 (B),
2106 the timing matches up "perfectly" so no extra ending char is detected.
2107 The RXD pin is 1 in the last interrupt, in that case
2108 we set info->errorcode = ERRCODE_INSERT_BREAK, but we can't really
2109 know if another byte will come and this really is case 2. below
2110 (e.g F=0xFF or 0xFE)
2111 If RXD pin is 0 we can expect another character (see 2. below).
2116 B B E or F__________________..__ V
2117 .._|__________|__________|______ | |valid data
2118 "valid" or
2119 parity error
2121 Multiple frame errors with data == 0x00 (B),
2122 but the part of the break trigs is interpreted as a start bit (and possibly
2123 some 0 bits followed by a number of 1 bits and a stop bit).
2124 Depending on parity settings etc. this last character can be either
2125 a fake "valid" char (F) or have a parity error (E).
2127 If the character is valid it will be put in the buffer,
2128 we set info->errorcode = ERRCODE_SET_BREAK so the receive interrupt
2129 will set the flags so the tty will handle it,
2130 if it's an error byte it will not be put in the buffer
2131 and we set info->errorcode = ERRCODE_INSERT_BREAK.
2133 To distinguish a V byte in 1. from an F byte in 2. we keep a timestamp
2134 of the last faulty char (B) and compares it with the current time:
2135 If the time elapsed time is less then 2*char_time_usec we will assume
2136 it's a faked F char and not a Valid char and set
2137 info->errorcode = ERRCODE_SET_BREAK.
2139 Flaws in the above solution:
2140 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2141 We use the timer to distinguish a F character from a V character,
2142 if a V character is to close after the break we might make the wrong decision.
2144 TODO: The break will be delayed until an F or V character is received.
2148 static void handle_ser_rx_interrupt_no_dma(struct e100_serial *info)
2150 unsigned long data_read;
2152 /* Read data and status at the same time */
2153 data_read = *((unsigned long *)&info->ioport[REG_DATA_STATUS32]);
2154 more_data:
2155 if (data_read & IO_MASK(R_SERIAL0_READ, xoff_detect) ) {
2156 DFLOW(DEBUG_LOG(info->line, "XOFF detect\n", 0));
2158 DINTR2(DEBUG_LOG(info->line, "ser_rx %c\n", IO_EXTRACT(R_SERIAL0_READ, data_in, data_read)));
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 /* An error */
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);
2175 if ( ((data_read & IO_MASK(R_SERIAL0_READ, data_in)) == 0) &&
2176 (data_read & IO_MASK(R_SERIAL0_READ, framing_err)) ) {
2177 /* Most likely a break, but we get interrupts over and
2178 * over again.
2181 if (!info->break_detected_cnt) {
2182 DEBUG_LOG(info->line, "#BRK start\n", 0);
2184 if (data_read & IO_MASK(R_SERIAL0_READ, rxd)) {
2185 /* The RX pin is high now, so the break
2186 * must be over, but....
2187 * we can't really know if we will get another
2188 * last byte ending the break or not.
2189 * And we don't know if the byte (if any) will
2190 * have an error or look valid.
2192 DEBUG_LOG(info->line, "# BL BRK\n", 0);
2193 info->errorcode = ERRCODE_INSERT_BREAK;
2195 info->break_detected_cnt++;
2196 } else {
2197 /* The error does not look like a break, but could be
2198 * the end of one
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++;
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;
2222 tty_insert_flip_char(&info->port, data, flag);
2223 info->errorcode = 0;
2225 info->break_detected_cnt = 0;
2227 } else if (data_read & IO_MASK(R_SERIAL0_READ, data_avail)) {
2228 /* No error */
2229 DLOG_INT_TRIG(
2230 if (!log_int_trig1_pos) {
2231 if (log_int_pos >= log_int_size) {
2232 log_int_pos = 0;
2234 log_int_trig0_pos = log_int_pos;
2235 log_int(rdpc(), 0, 0);
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);
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;
2253 tty_flip_buffer_push(&info->port);
2256 static void handle_ser_rx_interrupt(struct e100_serial *info)
2258 unsigned char rstat;
2260 #ifdef SERIAL_DEBUG_INTR
2261 printk("Interrupt from serport %d\n", i);
2262 #endif
2263 /* DEBUG_LOG(info->line, "ser_interrupt stat %03X\n", rstat | (i << 8)); */
2264 if (!info->uses_dma_in) {
2265 handle_ser_rx_interrupt_no_dma(info);
2266 return;
2268 /* DMA is used */
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));
2274 if (rstat & SER_ERROR_MASK) {
2275 unsigned char data;
2277 info->last_rx_active_usec = GET_JIFFIES_USEC();
2278 info->last_rx_active = jiffies;
2279 /* If we got an error, we must reset it by reading the
2280 * data_in field
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 /* Most likely a break, but we get interrupts over and
2287 * over again.
2290 if (!info->break_detected_cnt) {
2291 DEBUG_LOG(info->line, "#BRK start\n", 0);
2293 if (rstat & SER_RXD_MASK) {
2294 /* The RX pin is high now, so the break
2295 * must be over, but....
2296 * we can't really know if we will get another
2297 * last byte ending the break or not.
2298 * And we don't know if the byte (if any) will
2299 * have an error or look valid.
2301 DEBUG_LOG(info->line, "# BL BRK\n", 0);
2302 info->errorcode = ERRCODE_INSERT_BREAK;
2304 info->break_detected_cnt++;
2305 } else {
2306 /* The error does not look like a break, but could be
2307 * the end of one
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);
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);
2329 info->errorcode = 0;
2331 info->break_detected_cnt = 0;
2332 DEBUG_LOG(info->line, "#iERR s d %04X\n",
2333 ((rstat & SER_ERROR_MASK) << 8) | data);
2335 } else { /* It was a valid byte, now let the DMA do the rest */
2336 unsigned long curr_time_u = GET_JIFFIES_USEC();
2337 unsigned long curr_time = jiffies;
2339 if (info->break_detected_cnt) {
2340 /* Detect if this character is a new valid char or the
2341 * last char in a break sequence: If LSBits are 0 and
2342 * MSBits are high AND the time is close to the
2343 * previous interrupt we should discard it.
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 /* Report as BREAK (error) and let
2351 * receive_chars_dma() handle it
2353 info->errorcode = ERRCODE_SET_BREAK;
2354 } else {
2355 DEBUG_LOG(info->line, "Not end of BRK (V)%i\n", info->line);
2357 DEBUG_LOG(info->line, "num brk %i\n", info->break_detected_cnt);
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;
2368 /* Restarting the DMA never hurts */
2369 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, restart);
2370 START_FLUSH_FAST_TIMER(info, "ser_int");
2371 } /* handle_ser_rx_interrupt */
2373 static void handle_ser_tx_interrupt(struct e100_serial *info)
2375 unsigned long flags;
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));
2384 info->ioport[REG_TR_DATA] = info->x_char;
2385 info->icount.tx++;
2386 info->x_char = 0;
2387 /* We must enable since it is disabled in ser_interrupt */
2388 e100_enable_serial_tx_ready_irq(info);
2389 local_irq_restore(flags);
2390 return;
2392 if (info->uses_dma_out) {
2393 unsigned char rstat;
2394 int i;
2395 /* We only use normal tx interrupt when sending x_char */
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 /* Enable the DMA channel and tell it to continue */
2404 e100_enable_txdma_channel(info);
2405 /* Wait 12 cycles before doing the DMA command */
2406 for(i = 6; i > 0; i--)
2407 nop();
2409 *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, continue);
2410 local_irq_restore(flags);
2411 return;
2413 /* Normal char-by-char interrupt */
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;
2422 DINTR2(DEBUG_LOG(info->line, "tx_int %c\n", info->xmit.buf[info->xmit.tail]));
2423 /* Send a byte, rs485 timing is critical so turn of ints */
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 /* Set a short timer to toggle RTS */
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");
2438 #endif /* RS485 */
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 /* We must enable since it is disabled in ser_interrupt */
2446 e100_enable_serial_tx_ready_irq(info);
2448 local_irq_restore(flags);
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);
2455 } /* handle_ser_tx_interrupt */
2457 /* result of time measurements:
2458 * RX duration 54-60 us when doing something, otherwise 6-9 us
2459 * ser_int duration: just sending: 8-15 us normally, up to 73 us
2461 static irqreturn_t
2462 ser_interrupt(int irq, void *dev_id)
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)); /* ser0 data_avail */
2470 int handled = 0;
2471 static volatile unsigned long reentered_ready_mask = 0;
2473 local_irq_save(flags);
2474 irq_mask1_rd = *R_IRQ_MASK1_RD;
2475 /* First handle all rx interrupts with ints disabled */
2476 info = rs_table;
2477 irq_mask1_rd &= e100_ser_int_mask;
2478 for (i = 0; i < NR_PORTS; i++) {
2479 /* Which line caused the data irq? */
2480 if (irq_mask1_rd & data_mask) {
2481 handled = 1;
2482 handle_ser_rx_interrupt(info);
2484 info += 1;
2485 data_mask <<= 2;
2487 /* Handle tx interrupts with interrupts enabled so we
2488 * can take care of new data interrupts while transmitting
2489 * We protect the tx part with the tx_started flag.
2490 * We disable the tr_ready interrupts we are about to handle and
2491 * unblock the serial interrupt so new serial interrupts may come.
2493 * If we get a new interrupt:
2494 * - it migth be due to synchronous serial ports.
2495 * - serial irq will be blocked by general irq handler.
2496 * - async data will be handled above (sync will be ignored).
2497 * - tx_started flag will prevent us from trying to send again and
2498 * we will exit fast - no need to unblock serial irq.
2499 * - Next (sync) serial interrupt handler will be runned with
2500 * disabled interrupt due to restore_flags() at end of function,
2501 * so sync handler will not be preempted or reentered.
2503 if (!tx_started) {
2504 unsigned long ready_mask;
2505 unsigned long
2506 tx_started = 1;
2507 /* Only the tr_ready interrupts left */
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 /* Disable those we are about to handle */
2514 *R_IRQ_MASK1_CLR = irq_mask1_rd;
2515 /* Unblock the serial interrupt */
2516 *R_VECT_MASK_SET = IO_STATE(R_VECT_MASK_SET, serial, set);
2518 local_irq_enable();
2519 ready_mask = (1 << (8+1+2*0)); /* ser0 tr_ready */
2520 info = rs_table;
2521 for (i = 0; i < NR_PORTS; i++) {
2522 /* Which line caused the ready irq? */
2523 if (irq_mask1_rd & ready_mask) {
2524 handled = 1;
2525 handle_ser_tx_interrupt(info);
2527 info += 1;
2528 ready_mask <<= 2;
2530 /* handle_ser_tx_interrupt enables tr_ready interrupts */
2531 local_irq_disable();
2532 /* Handle reentered TX interrupt */
2533 irq_mask1_rd = reentered_ready_mask;
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 /* Disable those we are about to handle */
2546 *R_IRQ_MASK1_CLR = ready_mask;
2547 DFLOW(DEBUG_LOG(SERIAL_DEBUG_LINE, "ser_int reentered with TX %X\n", ready_mask));
2551 local_irq_restore(flags);
2552 return IRQ_RETVAL(handled);
2553 } /* ser_interrupt */
2554 #endif
2557 * -------------------------------------------------------------------
2558 * Here ends the serial interrupt routines.
2559 * -------------------------------------------------------------------
2563 * This routine is used to handle the "bottom half" processing for the
2564 * serial driver, known also the "software interrupt" processing.
2565 * This processing is done at the kernel interrupt level, after the
2566 * rs_interrupt() has returned, BUT WITH INTERRUPTS TURNED ON. This
2567 * is where time-consuming activities which can not be done in the
2568 * interrupt driver proper are done; the interrupt driver schedules
2569 * them using rs_sched_event(), and they get done here.
2571 static void
2572 do_softint(struct work_struct *work)
2574 struct e100_serial *info;
2575 struct tty_struct *tty;
2577 info = container_of(work, struct e100_serial, work);
2579 tty = info->port.tty;
2580 if (!tty)
2581 return;
2583 if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &info->event))
2584 tty_wakeup(tty);
2587 static int
2588 startup(struct e100_serial * info)
2590 unsigned long flags;
2591 unsigned long xmit_page;
2592 int i;
2594 xmit_page = get_zeroed_page(GFP_KERNEL);
2595 if (!xmit_page)
2596 return -ENOMEM;
2598 local_irq_save(flags);
2600 /* if it was already initialized, skip this */
2602 if (tty_port_initialized(&info->port)) {
2603 local_irq_restore(flags);
2604 free_page(xmit_page);
2605 return 0;
2608 if (info->xmit.buf)
2609 free_page(xmit_page);
2610 else
2611 info->xmit.buf = (unsigned char *) xmit_page;
2613 #ifdef SERIAL_DEBUG_OPEN
2614 printk("starting up ttyS%d (xmit_buf 0x%p)...\n", info->line, info->xmit.buf);
2615 #endif
2618 * Clear the FIFO buffers and disable them
2619 * (they will be reenabled in change_speed())
2623 * Reset the DMA channels and make sure their interrupts are cleared
2626 if (info->dma_in_enabled) {
2627 info->uses_dma_in = 1;
2628 e100_enable_rxdma_channel(info);
2630 *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
2632 /* Wait until reset cycle is complete */
2633 while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->icmdadr) ==
2634 IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
2636 /* Make sure the irqs are cleared */
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);
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);
2649 while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->ocmdadr) ==
2650 IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
2652 /* Make sure the irqs are cleared */
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);
2660 if (info->port.tty)
2661 clear_bit(TTY_IO_ERROR, &info->port.tty->flags);
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;
2667 for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++)
2668 info->rec_descr[i].buf = 0;
2671 * and set the speed and other flags of the serial port
2672 * this will start the rx/tx as well
2674 #ifdef SERIAL_HANDLE_EARLY_ERRORS
2675 e100_enable_serial_data_irq(info);
2676 #endif
2677 change_speed(info);
2679 /* dummy read to reset any serial errors */
2681 (void)info->ioport[REG_DATA];
2683 /* enable the interrupts */
2684 if (info->uses_dma_out)
2685 e100_enable_txdma_irq(info);
2687 e100_enable_rx_irq(info);
2689 info->tr_running = 0; /* to be sure we don't lock up the transmitter */
2691 /* setup the dma input descriptor and start dma */
2693 start_receive(info);
2695 /* for safety, make sure the descriptors last result is 0 bytes written */
2697 info->tr_descr.sw_len = 0;
2698 info->tr_descr.hw_len = 0;
2699 info->tr_descr.status = 0;
2701 /* enable RTS/DTR last */
2703 e100_rts(info, 1);
2704 e100_dtr(info, 1);
2706 tty_port_set_initialized(&info->port, 1);
2708 local_irq_restore(flags);
2709 return 0;
2713 * This routine will shutdown a serial port; interrupts are disabled, and
2714 * DTR is dropped if the hangup on close termio flag is on.
2716 static void
2717 shutdown(struct e100_serial * info)
2719 unsigned long flags;
2720 struct etrax_dma_descr *descr = info->rec_descr;
2721 struct etrax_recv_buffer *buffer;
2722 int i;
2724 /* shut down the transmitter and receiver */
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);
2729 /* disable interrupts, reset dma channels */
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);
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;
2748 if (!tty_port_initialized(&info->port))
2749 return;
2751 #ifdef SERIAL_DEBUG_OPEN
2752 printk("Shutting down serial port %d (irq %d)....\n", info->line,
2753 info->irq);
2754 #endif
2756 local_irq_save(flags);
2758 if (info->xmit.buf) {
2759 free_page((unsigned long)info->xmit.buf);
2760 info->xmit.buf = NULL;
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;
2770 if (!info->port.tty || (info->port.tty->termios.c_cflag & HUPCL)) {
2771 /* hang up DTR and RTS if HUPCL is enabled */
2772 e100_dtr(info, 0);
2773 e100_rts(info, 0); /* could check CRTSCTS before doing this */
2776 if (info->port.tty)
2777 set_bit(TTY_IO_ERROR, &info->port.tty->flags);
2779 tty_port_set_initialized(&info->port, 0);
2780 local_irq_restore(flags);
2784 /* change baud rate and other assorted parameters */
2786 static void
2787 change_speed(struct e100_serial *info)
2789 unsigned int cflag;
2790 unsigned long xoff;
2791 unsigned long flags;
2792 /* first some safety checks */
2794 if (!info->port.tty)
2795 return;
2796 if (!info->ioport)
2797 return;
2799 cflag = info->port.tty->termios.c_cflag;
2801 /* possibly, the tx/rx should be disabled first to do this safely */
2803 /* change baud-rate and write it to the hardware */
2804 if ((info->port.flags & ASYNC_SPD_MASK) == ASYNC_SPD_CUST) {
2805 /* Special baudrate */
2806 u32 mask = 0xFF << (info->line*8); /* Each port has 8 bits */
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 /* R_ALT_SER_BAUDRATE selects the source */
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 /* 0, 2-65535 (0=65536) */
2815 u16 divisor = info->custom_divisor;
2816 /* R_SERIAL_PRESCALE (upper 16 bits of R_CLOCK_PRESCALE) */
2817 /* baudrate is 3.125MHz/custom_divisor */
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;
2826 else
2828 /* Bad baudbase, we don't support using timer0
2829 * for baudrate.
2831 printk(KERN_WARNING "Bad baud_base/custom_divisor: %lu/%i\n",
2832 (unsigned long)info->baud_base, info->custom_divisor);
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 /* Normal baudrate */
2839 /* Make sure we use normal baudrate */
2840 u32 mask = 0xFF << (info->line*8); /* Each port has 8 bits */
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;
2848 info->baud = cflag_to_baud(cflag);
2849 info->ioport[REG_BAUD] = cflag_to_etrax_baud(cflag);
2852 /* start with default settings and then fill in changes */
2853 local_irq_save(flags);
2854 /* 8 bit, no/even parity */
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));
2859 /* 8 bit, no/even parity, 1 stop bit, no cts */
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));
2866 if ((cflag & CSIZE) == CS7) {
2867 /* set 7 bit mode */
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);
2872 if (cflag & CSTOPB) {
2873 /* set 2 stop bit mode */
2874 info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, stop_bits, two_bits);
2877 if (cflag & PARENB) {
2878 /* enable parity */
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);
2883 if (cflag & CMSPAR) {
2884 /* enable stick parity, PARODD mean Mark which matches ETRAX */
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);
2888 if (cflag & PARODD) {
2889 /* set odd parity (or Mark if CMSPAR) */
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);
2894 if (cflag & CRTSCTS) {
2895 /* enable automatic CTS handling */
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);
2900 /* make sure the tx and rx are enabled */
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);
2905 /* actually write the control regs to the hardware */
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);
2917 *((unsigned long *)&info->ioport[REG_XOFF]) = xoff;
2918 local_irq_restore(flags);
2920 update_char_time(info);
2922 } /* change_speed */
2924 /* start transmitting chars NOW */
2926 static void
2927 rs_flush_chars(struct tty_struct *tty)
2929 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
2930 unsigned long flags;
2932 if (info->tr_running ||
2933 info->xmit.head == info->xmit.tail ||
2934 tty->stopped ||
2935 !info->xmit.buf)
2936 return;
2938 #ifdef SERIAL_DEBUG_FLOW
2939 printk("rs_flush_chars\n");
2940 #endif
2942 /* this protection might not exactly be necessary here */
2944 local_irq_save(flags);
2945 start_transmit(info);
2946 local_irq_restore(flags);
2949 static int rs_raw_write(struct tty_struct *tty,
2950 const unsigned char *buf, int count)
2952 int c, ret = 0;
2953 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
2954 unsigned long flags;
2956 /* first some sanity checks */
2958 if (!info->xmit.buf)
2959 return 0;
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
2967 local_save_flags(flags);
2968 DFLOW(DEBUG_LOG(info->line, "write count %i ", count));
2969 DFLOW(DEBUG_LOG(info->line, "ldisc\n"));
2972 /* The local_irq_disable/restore_flags pairs below are needed
2973 * because the DMA interrupt handler moves the info->xmit values.
2974 * the memcpy needs to be in the critical region unfortunately,
2975 * because we need to read xmit values, memcpy, write xmit values
2976 * in one atomic operation... this could perhaps be avoided by
2977 * more clever design.
2979 local_irq_disable();
2980 while (count) {
2981 c = CIRC_SPACE_TO_END(info->xmit.head,
2982 info->xmit.tail,
2983 SERIAL_XMIT_SIZE);
2985 if (count < c)
2986 c = count;
2987 if (c <= 0)
2988 break;
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;
2997 local_irq_restore(flags);
2999 /* enable transmitter if not running, unless the tty is stopped
3000 * this does not need IRQ protection since if tr_running == 0
3001 * the IRQ's are not running anyway for this port.
3003 DFLOW(DEBUG_LOG(info->line, "write ret %i\n", ret));
3005 if (info->xmit.head != info->xmit.tail &&
3006 !tty->stopped &&
3007 !info->tr_running) {
3008 start_transmit(info);
3011 return ret;
3012 } /* raw_raw_write() */
3014 static int
3015 rs_write(struct tty_struct *tty,
3016 const unsigned char *buf, int count)
3018 #if defined(CONFIG_ETRAX_RS485)
3019 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3021 if (info->rs485.flags & SER_RS485_ENABLED)
3023 /* If we are in RS-485 mode, we need to toggle RTS and disable
3024 * the receiver before initiating a DMA transfer
3026 #ifdef CONFIG_ETRAX_FAST_TIMER
3027 /* Abort any started timer */
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);
3039 #endif /* CONFIG_ETRAX_RS485 */
3041 count = rs_raw_write(tty, buf, count);
3043 #if defined(CONFIG_ETRAX_RS485)
3044 if (info->rs485.flags & SER_RS485_ENABLED)
3046 unsigned int val;
3047 /* If we are in RS-485 mode the following has to be done:
3048 * wait until DMA is ready
3049 * wait on transmit shift register
3050 * toggle RTS
3051 * enable the receiver
3054 /* Sleep until all sent */
3055 tty_wait_until_sent(tty, 0);
3056 #ifdef CONFIG_ETRAX_FAST_TIMER
3057 /* Now sleep a little more so that shift register is empty */
3058 schedule_usleep(info->char_time_usec * 2);
3059 #endif
3060 /* wait on transmit shift register */
3062 get_lsr_info(info, &val);
3063 }while (!(val & TIOCSER_TEMT));
3065 e100_rts(info, (info->rs485.flags & SER_RS485_RTS_AFTER_SEND));
3067 #if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
3068 e100_enable_rx(info);
3069 e100_enable_rxdma_irq(info);
3070 #endif
3072 #endif /* CONFIG_ETRAX_RS485 */
3074 return count;
3075 } /* rs_write */
3078 /* how much space is available in the xmit buffer? */
3080 static int
3081 rs_write_room(struct tty_struct *tty)
3083 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3085 return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
3088 /* How many chars are in the xmit buffer?
3089 * This does not include any chars in the transmitter FIFO.
3090 * Use wait_until_sent for waiting for FIFO drain.
3093 static int
3094 rs_chars_in_buffer(struct tty_struct *tty)
3096 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3098 return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
3101 /* discard everything in the xmit buffer */
3103 static void
3104 rs_flush_buffer(struct tty_struct *tty)
3106 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3107 unsigned long flags;
3109 local_irq_save(flags);
3110 info->xmit.head = info->xmit.tail = 0;
3111 local_irq_restore(flags);
3113 tty_wakeup(tty);
3117 * This function is used to send a high-priority XON/XOFF character to
3118 * the device
3120 * Since we use DMA we don't check for info->x_char in transmit_chars_dma(),
3121 * but we do it in handle_ser_tx_interrupt().
3122 * We disable DMA channel and enable tx ready interrupt and write the
3123 * character when possible.
3125 static void rs_send_xchar(struct tty_struct *tty, char ch)
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 /* Put the DMA on hold and disable the channel */
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);
3138 /* Must make sure transmitter is not stopped before we can transmit */
3139 if (tty->stopped)
3140 rs_start(tty);
3142 /* Enable manual transmit interrupt and send from there */
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);
3150 * ------------------------------------------------------------
3151 * rs_throttle()
3153 * This routine is called by the upper-layer tty layer to signal that
3154 * incoming characters should be throttled.
3155 * ------------------------------------------------------------
3157 static void
3158 rs_throttle(struct tty_struct * tty)
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"));
3166 /* Do RTS before XOFF since XOFF might take some time */
3167 if (C_CRTSCTS(tty)) {
3168 /* Turn off RTS line */
3169 e100_rts(info, 0);
3171 if (I_IXOFF(tty))
3172 rs_send_xchar(tty, STOP_CHAR(tty));
3176 static void
3177 rs_unthrottle(struct tty_struct * tty)
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 /* Do RTS before XOFF since XOFF might take some time */
3186 if (C_CRTSCTS(tty)) {
3187 /* Assert RTS line */
3188 e100_rts(info, 1);
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));
3201 * ------------------------------------------------------------
3202 * rs_ioctl() and friends
3203 * ------------------------------------------------------------
3206 static int
3207 get_serial_info(struct e100_serial * info,
3208 struct serial_struct * retinfo)
3210 struct serial_struct tmp;
3212 /* this is all probably wrong, there are a lot of fields
3213 * here that we don't have in e100_serial and maybe we
3214 * should set them to something else than 0.
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;
3232 static int
3233 set_serial_info(struct e100_serial *info,
3234 struct serial_struct *new_info)
3236 struct serial_struct new_serial;
3237 struct e100_serial old_info;
3238 int retval = 0;
3240 if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
3241 return -EFAULT;
3243 old_info = *info;
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;
3256 if (info->port.count > 1)
3257 return -EBUSY;
3260 * OK, past this point, all the error checking has been done.
3261 * At this point, we start making changes.....
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;
3273 check_and_exit:
3274 if (tty_port_initialized(&info->port))
3275 change_speed(info);
3276 else
3277 retval = startup(info);
3278 return retval;
3282 * get_lsr_info - get line status register info
3284 * Purpose: Let user call ioctl() to get info when the UART physically
3285 * is emptied. On bus types like RS485, the transmitter must
3286 * release the bus after transmitting. This must be done when
3287 * the transmit shift register is empty, not be done when the
3288 * transmit holding register is empty. This functionality
3289 * allows an RS485 driver to be written in user space.
3291 static int
3292 get_lsr_info(struct e100_serial * info, unsigned int *value)
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;
3301 if (info->xmit.head != info->xmit.tail ||
3302 elapsed_usec < 2*info->char_time_usec) {
3303 result = 0;
3306 if (copy_to_user(value, &result, sizeof(int)))
3307 return -EFAULT;
3308 return 0;
3311 #ifdef SERIAL_DEBUG_IO
3312 struct state_str
3314 int state;
3315 const char *str;
3318 const 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 }
3330 char *get_control_state_str(int MLines, char *s)
3332 int i = 0;
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, ", ");
3340 strcat(s, control_state_str[i].str);
3342 i++;
3344 return s;
3346 #endif
3348 static int
3349 rs_break(struct tty_struct *tty, int break_state)
3351 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3352 unsigned long flags;
3354 if (!info->ioport)
3355 return -EIO;
3357 local_irq_save(flags);
3358 if (break_state == -1) {
3359 /* Go to manual mode and set the txd pin to 0 */
3360 /* Clear bit 7 (txd) and 6 (tr_enable) */
3361 info->tx_ctrl &= 0x3F;
3362 } else {
3363 /* Set bit 7 (txd) and 6 (tr_enable) */
3364 info->tx_ctrl |= (0x80 | 0x40);
3366 info->ioport[REG_TR_CTRL] = info->tx_ctrl;
3367 local_irq_restore(flags);
3368 return 0;
3371 static int
3372 rs_tiocmset(struct tty_struct *tty, unsigned int set, unsigned int clear)
3374 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3375 unsigned long flags;
3377 local_irq_save(flags);
3379 if (clear & TIOCM_RTS)
3380 e100_rts(info, 0);
3381 if (clear & TIOCM_DTR)
3382 e100_dtr(info, 0);
3383 /* Handle FEMALE behaviour */
3384 if (clear & TIOCM_RI)
3385 e100_ri_out(info, 0);
3386 if (clear & TIOCM_CD)
3387 e100_cd_out(info, 0);
3389 if (set & TIOCM_RTS)
3390 e100_rts(info, 1);
3391 if (set & TIOCM_DTR)
3392 e100_dtr(info, 1);
3393 /* Handle FEMALE behaviour */
3394 if (set & TIOCM_RI)
3395 e100_ri_out(info, 1);
3396 if (set & TIOCM_CD)
3397 e100_cd_out(info, 1);
3399 local_irq_restore(flags);
3400 return 0;
3403 static int
3404 rs_tiocmget(struct tty_struct *tty)
3406 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3407 unsigned int result;
3408 unsigned long flags;
3410 local_irq_save(flags);
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);
3420 local_irq_restore(flags);
3422 #ifdef SERIAL_DEBUG_IO
3423 printk(KERN_DEBUG "ser%i: modem state: %i 0x%08X\n",
3424 info->line, result, result);
3426 char s[100];
3428 get_control_state_str(result, s);
3429 printk(KERN_DEBUG "state: %s\n", s);
3431 #endif
3432 return result;
3437 static int
3438 rs_ioctl(struct tty_struct *tty,
3439 unsigned int cmd, unsigned long arg)
3441 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
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;
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: /* Get line status register */
3458 return get_lsr_info(info, (unsigned int *) arg);
3460 case TIOCSERGSTRUCT:
3461 if (copy_to_user((struct e100_serial *) arg,
3462 info, sizeof(struct e100_serial)))
3463 return -EFAULT;
3464 return 0;
3466 #if defined(CONFIG_ETRAX_RS485)
3467 case TIOCSERSETRS485:
3469 /* In this ioctl we still use the old structure
3470 * rs485_control for backward compatibility
3471 * (if we use serial_rs485, then old user-level code
3472 * wouldn't work anymore...).
3473 * The use of this ioctl is deprecated: use TIOCSRS485
3474 * instead.*/
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;
3482 rs485data.delay_rts_before_send = rs485ctrl.delay_rts_before_send;
3483 rs485data.flags = 0;
3485 if (rs485ctrl.enabled)
3486 rs485data.flags |= SER_RS485_ENABLED;
3487 else
3488 rs485data.flags &= ~(SER_RS485_ENABLED);
3490 if (rs485ctrl.rts_on_send)
3491 rs485data.flags |= SER_RS485_RTS_ON_SEND;
3492 else
3493 rs485data.flags &= ~(SER_RS485_RTS_ON_SEND);
3495 if (rs485ctrl.rts_after_sent)
3496 rs485data.flags |= SER_RS485_RTS_AFTER_SEND;
3497 else
3498 rs485data.flags &= ~(SER_RS485_RTS_AFTER_SEND);
3500 return e100_enable_rs485(tty, &rs485data);
3503 case TIOCSRS485:
3505 /* This is the new version of TIOCSRS485, with new
3506 * data structure serial_rs485 */
3507 struct serial_rs485 rs485data;
3508 if (copy_from_user(&rs485data, (struct rs485_control *)arg,
3509 sizeof(rs485data)))
3510 return -EFAULT;
3512 return e100_enable_rs485(tty, &rs485data);
3515 case TIOCGRS485:
3517 struct serial_rs485 *rs485data =
3518 &(((struct e100_serial *)tty->driver_data)->rs485);
3519 /* This is the ioctl to get RS485 data from user-space */
3520 if (copy_to_user((struct serial_rs485 *) arg,
3521 rs485data,
3522 sizeof(struct serial_rs485)))
3523 return -EFAULT;
3524 break;
3527 case TIOCSERWRRS485:
3529 struct rs485_write rs485wr;
3530 if (copy_from_user(&rs485wr, (struct rs485_write *)arg,
3531 sizeof(rs485wr)))
3532 return -EFAULT;
3534 return e100_write_rs485(tty, rs485wr.outc, rs485wr.outc_size);
3536 #endif
3538 default:
3539 return -ENOIOCTLCMD;
3541 return 0;
3544 static void
3545 rs_set_termios(struct tty_struct *tty, struct ktermios *old_termios)
3547 struct e100_serial *info = (struct e100_serial *)tty->driver_data;
3549 change_speed(info);
3551 /* Handle turning off CRTSCTS */
3552 if ((old_termios->c_cflag & CRTSCTS) && !C_CRTSCTS(tty))
3553 rs_start(tty);
3558 * ------------------------------------------------------------
3559 * rs_close()
3561 * This routine is called when the serial port gets closed. First, we
3562 * wait for the last remaining data to be sent. Then, we unlink its
3563 * S structure from the interrupt chain if necessary, and we free
3564 * that IRQ if nothing is left in the chain.
3565 * ------------------------------------------------------------
3567 static void
3568 rs_close(struct tty_struct *tty, struct file * filp)
3570 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
3571 unsigned long flags;
3573 if (!info)
3574 return;
3576 /* interrupts are disabled for this entire function */
3578 local_irq_save(flags);
3580 if (tty_hung_up_p(filp)) {
3581 local_irq_restore(flags);
3582 return;
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)) {
3591 * Uh, oh. tty->count is 1, which means that the tty
3592 * structure will be freed. Info->count should always
3593 * be one in these conditions. If it's greater than
3594 * one, we've got real problems, since it means the
3595 * serial port won't be shutdown.
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;
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;
3607 if (info->port.count) {
3608 local_irq_restore(flags);
3609 return;
3612 * Now we wait for the transmit buffer to clear; and we notify
3613 * the line discipline to only process XON/XOFF characters.
3615 tty->closing = 1;
3616 if (info->port.closing_wait != ASYNC_CLOSING_WAIT_NONE)
3617 tty_wait_until_sent(tty, info->port.closing_wait);
3619 * At this point we stop accepting input. To do this, we
3620 * disable the serial receiver and the DMA receive interrupt.
3622 #ifdef SERIAL_HANDLE_EARLY_ERRORS
3623 e100_disable_serial_data_irq(info);
3624 #endif
3626 e100_disable_rx(info);
3627 e100_disable_rx_irq(info);
3629 if (tty_port_initialized(&info->port)) {
3631 * Before we drop DTR, make sure the UART transmitter
3632 * has completely drained; this is especially
3633 * important as we have a transmit FIFO!
3635 rs_wait_until_sent(tty, HZ);
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);
3649 local_irq_restore(flags);
3650 tty_port_set_active(&info->port, 0);
3652 /* port closed */
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
3661 #endif
3664 * Release any allocated DMA irq's.
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
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
3687 * rs_wait_until_sent() --- wait until the transmitter is empty
3689 static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
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;
3700 * Check R_DMA_CHx_STATUS bit 0-6=number of available bytes in FIFO
3701 * R_DMA_CHx_HWSW bit 31-16=nbr of bytes left in DMA buffer (0=64k)
3703 orig_jiffies = jiffies;
3704 while (info->xmit.head != info->xmit.tail || /* More in send queue */
3705 (*info->ostatusadr & 0x007f) || /* more in FIFO */
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;
3718 set_current_state(TASK_RUNNING);
3722 * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
3724 void
3725 rs_hangup(struct tty_struct *tty)
3727 struct e100_serial * info = (struct e100_serial *)tty->driver_data;
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);
3739 * ------------------------------------------------------------
3740 * rs_open() and friends
3741 * ------------------------------------------------------------
3743 static int
3744 block_til_ready(struct tty_struct *tty, struct file * filp,
3745 struct e100_serial *info)
3747 DECLARE_WAITQUEUE(wait, current);
3748 unsigned long flags;
3749 int retval;
3750 int do_clocal = 0;
3753 * If non-blocking mode is set, or the port is not enabled,
3754 * then make the check up front and then exit.
3756 if ((filp->f_flags & O_NONBLOCK) || tty_io_error(tty)) {
3757 tty_port_set_active(&info->port, 1);
3758 return 0;
3761 if (C_CLOCAL(tty))
3762 do_clocal = 1;
3765 * Block waiting for the carrier detect and the line to become
3766 * free (i.e., not in use by the callout). While we are in
3767 * this loop, info->port.count is dropped by one, so that
3768 * rs_close() knows when to free things. We restore it upon
3769 * exit, either normal or abnormal.
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 /* assert RTS and DTR */
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;
3799 if (do_clocal)
3800 /* && (do_clocal || DCD_IS_ASSERTED) */
3801 break;
3802 if (signal_pending(current)) {
3803 retval = -ERESTARTSYS;
3804 break;
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);
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;
3829 static void
3830 deinit_port(struct e100_serial *info)
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);
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);
3843 * This routine is called whenever a serial port is opened.
3844 * It performs the serial-specific initialization for the tty structure.
3846 static int
3847 rs_open(struct tty_struct *tty, struct file * filp)
3849 struct e100_serial *info;
3850 int retval;
3851 int allocated_resources = 0;
3853 info = rs_table + tty->index;
3854 if (!info->enabled)
3855 return -ENODEV;
3857 #ifdef SERIAL_DEBUG_OPEN
3858 printk("[%d] rs_open %s, count = %d\n", current->pid, tty->name,
3859 info->port.count);
3860 #endif
3862 info->port.count++;
3863 tty->driver_data = info;
3864 info->port.tty = tty;
3866 info->port.low_latency = !!(info->port.flags & ASYNC_LOW_LATENCY);
3869 * If DMA is enabled try to allocate the irq's.
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 /* Make sure we never try to use DMA in */
3883 /* for the port again. */
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 /* Make sure we never try to use DMA in */
3894 /* for the port again. */
3895 info->dma_in_enabled = 0;
3897 #ifdef SERIAL_DEBUG_OPEN
3898 else
3899 printk(KERN_DEBUG "DMA irq '%s' allocated\n",
3900 info->dma_in_irq_description);
3901 #endif
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 /* Make sure we never try to use DMA out */
3913 /* for the port again. */
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 /* Make sure we never try to use DMA out */
3924 /* for the port again. */
3925 info->dma_out_enabled = 0;
3927 #ifdef SERIAL_DEBUG_OPEN
3928 else
3929 printk(KERN_DEBUG "DMA irq '%s' allocated\n",
3930 info->dma_out_irq_description);
3931 #endif
3936 * Start up the serial port
3939 retval = startup(info);
3940 if (retval) {
3941 if (allocated_resources)
3942 deinit_port(info);
3944 /* FIXME Decrease count info->port.count here too? */
3945 return retval;
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);
3958 return retval;
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);
3966 DFLIP( if (info->line == SERIAL_DEBUG_LINE) {
3967 info->icount.rx = 0;
3968 } );
3970 return 0;
3973 #ifdef CONFIG_PROC_FS
3975 * /proc fs routines....
3978 static void seq_line_info(struct seq_file *m, struct e100_serial *info)
3980 unsigned long tmp;
3982 seq_printf(m, "%d: uart:E100 port:%lX irq:%d",
3983 info->line, (unsigned long)info->ioport, info->irq);
3985 if (!info->ioport || (info->type == PORT_UNKNOWN)) {
3986 seq_printf(m, "\n");
3987 return;
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);
4000 seq_printf(m, " rx_pend:%lu/%lu",
4001 (unsigned long)info->recv_cnt,
4002 (unsigned long)info->max_recv_cnt);
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);
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");
4017 #endif
4019 if (info->icount.frame)
4020 seq_printf(m, " fe:%lu", (unsigned long)info->icount.frame);
4022 if (info->icount.parity)
4023 seq_printf(m, " pe:%lu", (unsigned long)info->icount.parity);
4025 if (info->icount.brk)
4026 seq_printf(m, " brk:%lu", (unsigned long)info->icount.brk);
4028 if (info->icount.overrun)
4029 seq_printf(m, " oe:%lu", (unsigned long)info->icount.overrun);
4032 * Last thing is the RS-232 status lines
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");
4050 static int crisv10_proc_show(struct seq_file *m, void *v)
4052 int i;
4054 seq_printf(m, "serinfo:1.0 driver:%s\n", serial_version);
4056 for (i = 0; i < NR_PORTS; i++) {
4057 if (!rs_table[i].enabled)
4058 continue;
4059 seq_line_info(m, &rs_table[i]);
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);
4068 seq_printf(m, "debug_log %i/%i\n", i, DEBUG_LOG_SIZE);
4069 debug_log_pos = 0;
4070 #endif
4071 return 0;
4074 static int crisv10_proc_open(struct inode *inode, struct file *file)
4076 return single_open(file, crisv10_proc_show, NULL);
4079 static 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,
4086 #endif
4089 /* Finally, routines used to initialize the serial driver. */
4091 static void show_serial_version(void)
4093 printk(KERN_INFO
4094 "ETRAX 100LX serial-driver %s, "
4095 "(c) 2000-2004 Axis Communications AB\r\n",
4096 &serial_version[11]); /* "$Revision: x.yy" */
4099 /* rs_init inits the driver at boot (using the initcall chain) */
4101 static 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
4126 static int __init rs_init(void)
4128 int i;
4129 struct e100_serial *info;
4130 struct tty_driver *driver = alloc_tty_driver(NR_PORTS);
4132 if (!driver)
4133 return -ENOMEM;
4135 show_serial_version();
4137 /* Setup the timed flush handler system */
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
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;
4153 #endif
4154 #endif
4156 /* Initialize the tty_driver structure */
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; /* is normally B9600 default... */
4167 driver->init_termios.c_ispeed = 115200;
4168 driver->init_termios.c_ospeed = 115200;
4169 driver->flags = TTY_DRIVER_REAL_RAW;
4171 tty_set_operations(driver, &rs_ops);
4172 serial_driver = driver;
4174 /* do some initializing for the separate ports */
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;
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;
4205 #if defined(CONFIG_ETRAX_RS485)
4206 /* Set sane defaults */
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);
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);
4218 tty_port_link_device(&info->port, driver, i);
4221 if (tty_register_driver(driver))
4222 panic("Couldn't register serial driver\n");
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
4234 #ifndef CONFIG_ETRAX_KGDB
4235 /* Not needed in simulator. May only complicate stuff. */
4236 /* hook the irq's for DMA channel 6 and 7, serial output and input, and some more... */
4238 if (request_irq(SERIAL_IRQ_NBR, ser_interrupt,
4239 IRQF_SHARED, "serial ", driver))
4240 panic("%s: Failed to request irq8", __func__);
4242 #endif
4244 return 0;
4247 /* this makes sure that rs_init is called during kernel boot */
4248 device_initcall(rs_init);