serial.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:103k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /* $Id: serial.c,v 1.37 2002/08/13 13:02:37 bjornw Exp $
  2.  *
  3.  * Serial port driver for the ETRAX 100LX chip
  4.  *
  5.  *      Copyright (C) 1998, 1999, 2000, 2001, 2002  Axis Communications AB
  6.  *
  7.  *      Many, many authors. Based once upon a time on serial.c for 16x50.
  8.  *
  9.  * $Log: serial.c,v $
  10.  * Revision 1.37  2002/08/13 13:02:37  bjornw
  11.  * Removed some warnings because of unused code
  12.  *
  13.  * Revision 1.36  2002/08/08 12:50:01  starvik
  14.  * Serial interrupt is shared with synchronous serial port driver
  15.  *
  16.  * Revision 1.35  2002/06/03 10:40:49  starvik
  17.  * Increased RS-485 RTS toggle timer to 2 characters
  18.  *
  19.  * Revision 1.34  2002/05/28 18:59:36  johana
  20.  * Whitespace and comment fixing to be more like etrax100ser.c 1.71.
  21.  *
  22.  * Revision 1.33  2002/05/28 17:55:43  johana
  23.  * RS-485 uses FAST_TIMER if enabled, and starts a short (one char time)
  24.  * timer from tranismit_chars (interrupt context).
  25.  * The timer toggles RTS in interrupt context when expired giving minimum
  26.  * latencies.
  27.  *
  28.  * Revision 1.32  2002/05/22 13:58:00  johana
  29.  * Renamed rs_write() to raw_write() and made it inline.
  30.  * New rs_write() handles RS-485 if configured and enabled
  31.  * (moved code from e100_write_rs485()).
  32.  * RS-485 ioctl's uses copy_from_user() instead of verify_area().
  33.  *
  34.  * Revision 1.31  2002/04/22 11:20:03  johana
  35.  * Updated copyright years.
  36.  *
  37.  * Revision 1.30  2002/04/22 09:39:12  johana
  38.  * RS-485 support compiles.
  39.  *
  40.  * Revision 1.29  2002/01/14 16:10:01  pkj
  41.  * Allocate the receive buffers dynamically. The static 4kB buffer was
  42.  * too small for the peaks. This means that we can get rid of the extra
  43.  * buffer and the copying to it. It also means we require less memory
  44.  * under normal operations, but can use more when needed (there is a
  45.  * cap at 64kB for safety reasons). If there is no memory available
  46.  * we panic(), and die a horrible death...
  47.  *
  48.  * Revision 1.28  2001/12/18 15:04:53  johana
  49.  * Cleaned up write_rs485() - now it works correctly without padding extra
  50.  * char.
  51.  * Added sane default initialisation of rs485.
  52.  * Added #ifdef around dummy variables.
  53.  *
  54.  * Revision 1.27  2001/11/29 17:00:41  pkj
  55.  * 2kB seems to be too small a buffer when using 921600 bps,
  56.  * so increase it to 4kB (this was already done for the elinux
  57.  * version of the serial driver).
  58.  *
  59.  * Revision 1.26  2001/11/19 14:20:41  pkj
  60.  * Minor changes to comments and unused code.
  61.  *
  62.  * Revision 1.25  2001/11/12 20:03:43  pkj
  63.  * Fixed compiler warnings.
  64.  *
  65.  * Revision 1.24  2001/11/12 15:10:05  pkj
  66.  * Total redesign of the receiving part of the serial driver.
  67.  * Uses eight chained descriptors to write to a 4kB buffer.
  68.  * This data is then serialised into a 2kB buffer. From there it
  69.  * is copied into the TTY's flip buffers when they become available.
  70.  * A lot of copying, and the sizes of the buffers might need to be
  71.  * tweaked, but all in all it should work better than the previous
  72.  * version, without the need to modify the TTY code in any way.
  73.  * Also note that erroneous bytes are now correctly marked in the
  74.  * flag buffers (instead of always marking the first byte).
  75.  *
  76.  * Revision 1.23  2001/10/30 17:53:26  pkj
  77.  * * Set info->uses_dma to 0 when a port is closed.
  78.  * * Mark the timer1 interrupt as a fast one (SA_INTERRUPT).
  79.  * * Call start_flush_timer() in start_receive() if
  80.  *   CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST is defined.
  81.  *
  82.  * Revision 1.22  2001/10/30 17:44:03  pkj
  83.  * Use %lu for received and transmitted counters in line_info().
  84.  *
  85.  * Revision 1.21  2001/10/30 17:40:34  pkj
  86.  * Clean-up. The only change to functionality is that
  87.  * CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS(=5) is used instead of
  88.  * MAX_FLUSH_TIME(=8).
  89.  *
  90.  * Revision 1.20  2001/10/30 15:24:49  johana
  91.  * Added char_time stuff from 2.0 driver.
  92.  *
  93.  * Revision 1.19  2001/10/30 15:23:03  johana
  94.  * Merged with 1.13.2 branch + fixed indentation
  95.  * and changed CONFIG_ETRAX100_XYS to CONFIG_ETRAX_XYZ
  96.  *
  97.  * Revision 1.18  2001/09/24 09:27:22  pkj
  98.  * Completed ext_baud_table[] in cflag_to_baud() and cflag_to_etrax_baud().
  99.  *
  100.  * Revision 1.17  2001/08/24 11:32:49  ronny
  101.  * More fixes for the CONFIG_ETRAX_SERIAL_PORT0 define.
  102.  *
  103.  * Revision 1.16  2001/08/24 07:56:22  ronny
  104.  * Added config ifdefs around ser0 irq requests.
  105.  *
  106.  * Revision 1.15  2001/08/16 09:10:31  bjarne
  107.  * serial.c - corrected the initialization of rs_table, the wrong defines
  108.  *            where used.
  109.  *            Corrected a test in timed_flush_handler.
  110.  *            Changed configured to enabled.
  111.  * serial.h - Changed configured to enabled.
  112.  *
  113.  * Revision 1.14  2001/08/15 07:31:23  bjarne
  114.  * Introduced two new members to the e100_serial struct.
  115.  * configured - Will be set to 1 if the port has been configured in .config
  116.  * uses_dma   - Should be set to 1 if the port uses DMA. Currently it is set 
  117.  *              to 1
  118.  *              when a port is opened. This is used to limit the DMA interrupt
  119.  *              routines to only manipulate DMA channels actually used by the
  120.  *              serial driver.
  121.  *
  122.  * Revision 1.13.2.2  2001/10/17 13:57:13  starvik
  123.  * Receiver was broken by the break fixes
  124.  *
  125.  * Revision 1.13.2.1  2001/07/20 13:57:39  ronny
  126.  * Merge with new stuff from etrax100ser.c. Works but haven't checked stuff
  127.  * like break handling.
  128.  *
  129.  * Revision 1.13  2001/05/09 12:40:31  johana
  130.  * Use DMA_NBR and IRQ_NBR defines from dma.h and irq.h
  131.  *
  132.  * Revision 1.12  2001/04/19 12:23:07  bjornw
  133.  * CONFIG_RS485 -> CONFIG_ETRAX_RS485
  134.  *
  135.  * Revision 1.11  2001/04/05 14:29:48  markusl
  136.  * Updated according to review remarks i.e.
  137.  * -Use correct types in port structure to avoid compiler warnings
  138.  * -Try to use IO_* macros whenever possible
  139.  * -Open should never return -EBUSY
  140.  *
  141.  * Revision 1.10  2001/03/05 13:14:07  bjornw
  142.  * Another spelling fix
  143.  *
  144.  * Revision 1.9  2001/02/23 13:46:38  bjornw
  145.  * Spellling check
  146.  *
  147.  * Revision 1.8  2001/01/23 14:56:35  markusl
  148.  * Made use of ser1 optional
  149.  * Needed by USB
  150.  *
  151.  * Revision 1.7  2001/01/19 16:14:48  perf
  152.  * Added kernel options for serial ports 234.
  153.  * Changed option names from CONFIG_ETRAX100_XYZ to CONFIG_ETRAX_XYZ.
  154.  *
  155.  * Revision 1.6  2000/11/22 16:36:09  bjornw
  156.  * Please marketing by using the correct case when spelling Etrax.
  157.  *
  158.  * Revision 1.5  2000/11/21 16:43:37  bjornw
  159.  * Fixed so it compiles under CONFIG_SVINTO_SIM
  160.  *
  161.  * Revision 1.4  2000/11/15 17:34:12  bjornw
  162.  * Added a timeout timer for flushing input channels. The interrupt-based
  163.  * fast flush system should be easy to merge with this later (works the same
  164.  * way, only with an irq instead of a system timer_list)
  165.  *
  166.  * Revision 1.3  2000/11/13 17:19:57  bjornw
  167.  * * Incredibly, this almost complete rewrite of serial.c worked (at least
  168.  *   for output) the first time.
  169.  *
  170.  *   Items worth noticing:
  171.  *
  172.  *      No Etrax100 port 1 workarounds (does only compile on 2.4 anyway now)
  173.  *      RS485 is not ported (why cant it be done in userspace as on x86 ?)
  174.  *      Statistics done through async_icount - if any more stats are needed,
  175.  *      that's the place to put them or in an arch-dep version of it.
  176.  *      timeout_interrupt and the other fast timeout stuff not ported yet
  177.  *      There be dragons in this 3k+ line driver
  178.  *
  179.  * Revision 1.2  2000/11/10 16:50:28  bjornw
  180.  * First shot at a 2.4 port, does not compile totally yet
  181.  *
  182.  * Revision 1.1  2000/11/10 16:47:32  bjornw
  183.  * Added verbatim copy of rev 1.49 etrax100ser.c from elinux
  184.  *
  185.  * Revision 1.49  2000/10/30 15:47:14  tobiasa
  186.  * Changed version number.
  187.  *
  188.  * Revision 1.48  2000/10/25 11:02:43  johana
  189.  * Changed %ul to %lu in printf's
  190.  *
  191.  * Revision 1.47  2000/10/18 15:06:53  pkj
  192.  * Compile correctly with CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST and
  193.  * CONFIG_ETRAX_SERIAL_PROC_ENTRY together.
  194.  * Some clean-up of the /proc/serial file.
  195.  *
  196.  * Revision 1.46  2000/10/16 12:59:40  johana
  197.  * Added CONFIG_ETRAX_SERIAL_PROC_ENTRY for statistics and debug info.
  198.  *
  199.  * Revision 1.45  2000/10/13 17:10:59  pkj
  200.  * Do not flush DMAs while flipping TTY buffers.
  201.  *
  202.  * Revision 1.44  2000/10/13 16:34:29  pkj
  203.  * Added a delay in ser_interrupt() for 2.3ms when an error is detected.
  204.  * We do not know why this delay is required yet, but without it the
  205.  * irmaflash program does not work (this was the program that needed
  206.  * the ser_interrupt() to be needed in the first place). This should not
  207.  * affect normal use of the serial ports.
  208.  *
  209.  * Revision 1.43  2000/10/13 16:30:44  pkj
  210.  * New version of the fast flush of serial buffers code. This time
  211.  * it is localized to the serial driver and uses a fast timer to
  212.  * do the work.
  213.  *
  214.  * Revision 1.42  2000/10/13 14:54:26  bennyo
  215.  * Fix for switching RTS when using rs485
  216.  *
  217.  * Revision 1.41  2000/10/12 11:43:44  pkj
  218.  * Cleaned up a number of comments.
  219.  *
  220.  * Revision 1.40  2000/10/10 11:58:39  johana
  221.  * Made RS485 support generic for all ports.
  222.  * Toggle rts in interrupt if no delay wanted.
  223.  * WARNING: No true transmitter empty check??
  224.  * Set d_wait bit when sending data so interrupt is delayed until
  225.  * fifo flushed. (Fix tcdrain() problem)
  226.  *
  227.  * Revision 1.39  2000/10/04 16:08:02  bjornw
  228.  * * Use virt_to_phys etc. for DMA addresses
  229.  * * Removed CONFIG_FLUSH_DMA_FAST hacks
  230.  * * Indentation fix
  231.  *
  232.  * Revision 1.38  2000/10/02 12:27:10  mattias
  233.  * * added variable used when using fast flush on serial dma.
  234.  *   (CONFIG_FLUSH_DMA_FAST)
  235.  *
  236.  * Revision 1.37  2000/09/27 09:44:24  pkj
  237.  * Uncomment definition of SERIAL_HANDLE_EARLY_ERRORS.
  238.  *
  239.  * Revision 1.36  2000/09/20 13:12:52  johana
  240.  * Support for CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS:
  241.  *   Number of timer ticks between flush of receive fifo (1 tick = 10ms).
  242.  *   Try 0-3 for low latency applications. Approx 5 for high load
  243.  *   applications (e.g. PPP). Maybe this should be more adaptive some day...
  244.  *
  245.  * Revision 1.35  2000/09/20 10:36:08  johana
  246.  * Typo in get_lsr_info()
  247.  *
  248.  * Revision 1.34  2000/09/20 10:29:59  johana
  249.  * Let rs_chars_in_buffer() check fifo content as well.
  250.  * get_lsr_info() might work now (not tested).
  251.  * Easier to change the port to debug.
  252.  *
  253.  * Revision 1.33  2000/09/13 07:52:11  torbjore
  254.  * Support RS485
  255.  *
  256.  * Revision 1.32  2000/08/31 14:45:37  bjornw
  257.  * After sending a break we need to reset the transmit DMA channel
  258.  *
  259.  * Revision 1.31  2000/06/21 12:13:29  johana
  260.  * Fixed wait for all chars sent when closing port.
  261.  * (Used to always take 1 second!)
  262.  * Added shadows for directions of status/ctrl signals.
  263.  *
  264.  * Revision 1.30  2000/05/29 16:27:55  bjornw
  265.  * Simulator ifdef moved a bit
  266.  *
  267.  * Revision 1.29  2000/05/09 09:40:30  mattias
  268.  * * Added description of dma registers used in timeout_interrupt
  269.  * * Removed old code
  270.  *
  271.  * Revision 1.28  2000/05/08 16:38:58  mattias
  272.  * * Bugfix for flushing fifo in timeout_interrupt
  273.  *   Problem occurs when bluetooth stack waits for a small number of bytes
  274.  *   containing an event acknowledging free buffers in bluetooth HW
  275.  *   As before, data was stuck in fifo until more data came on uart and
  276.  *   flushed it up to the stack.
  277.  *
  278.  * Revision 1.27  2000/05/02 09:52:28  jonasd
  279.  * Added fix for peculiar etrax behaviour when eop is forced on an empty
  280.  * fifo. This is used when flashing the IRMA chip. Disabled by default.
  281.  *
  282.  * Revision 1.26  2000/03/29 15:32:02  bjornw
  283.  * 2.0.34 updates
  284.  *
  285.  * Revision 1.25  2000/02/16 16:59:36  bjornw
  286.  * * Receive DMA directly into the flip-buffer, eliminating an intermediary
  287.  *   receive buffer and a memcpy. Will avoid some overruns.
  288.  * * Error message on debug port if an overrun or flip buffer overrun occurs.
  289.  * * Just use the first byte in the flag flip buffer for errors.
  290.  * * Check for timeout on the serial ports only each 5/100 s, not 1/100.
  291.  *
  292.  * Revision 1.24  2000/02/09 18:02:28  bjornw
  293.  * * Clear serial errors (overrun, framing, parity) correctly. Before, the
  294.  *   receiver would get stuck if an error occurred and we did not restart
  295.  *   the input DMA.
  296.  * * Cosmetics (indentation, some code made into inlines)
  297.  * * Some more debug options
  298.  * * Actually shut down the serial port (DMA irq, DMA reset, receiver stop)
  299.  *   when the last open is closed. Corresponding fixes in startup().
  300.  * * rs_close() "tx FIFO wait" code moved into right place, bug & -> && fixed
  301.  *   and make a special case out of port 1 (R_DMA_CHx_STATUS is broken for that)
  302.  * * e100_disable_rx/enable_rx just disables/enables the receiver, not RTS
  303.  *
  304.  * Revision 1.23  2000/01/24 17:46:19  johana
  305.  * Wait for flush of DMA/FIFO when closing port.
  306.  *
  307.  * Revision 1.22  2000/01/20 18:10:23  johana
  308.  * Added TIOCMGET ioctl to return modem status.
  309.  * Implemented modem status/control that works with the extra signals
  310.  * (DTR, DSR, RI,CD) as well.
  311.  * 3 different modes supported:
  312.  * ser0 on PB (Bundy), ser1 on PB (Lisa) and ser2 on PA (Bundy)
  313.  * Fixed DEF_TX value that caused the serial transmitter pin (txd) to go to 0 when
  314.  * closing the last filehandle, NASTY!.
  315.  * Added break generation, not tested though!
  316.  * Use SA_SHIRQ when request_irq() for ser2 and ser3 (shared with) par0 and par1.
  317.  * You can't use them at the same time (yet..), but you can hopefully switch
  318.  * between ser2/par0, ser3/par1 with the same kernel config.
  319.  * Replaced some magic constants with defines
  320.  *
  321.  *
  322.  */
  323. static char *serial_version = "$Revision: 1.37 $";
  324. #include <linux/config.h>
  325. #include <linux/version.h>
  326. #include <linux/types.h>
  327. #include <linux/errno.h>
  328. #include <linux/signal.h>
  329. #include <linux/sched.h>
  330. #include <linux/timer.h>
  331. #include <linux/interrupt.h>
  332. #include <linux/tty.h>
  333. #include <linux/tty_flip.h>
  334. #include <linux/major.h>
  335. #include <linux/string.h>
  336. #include <linux/fcntl.h>
  337. #include <linux/mm.h>
  338. #include <linux/slab.h>
  339. #if (LINUX_VERSION_CODE >= 131343)
  340. #include <linux/init.h>
  341. #endif
  342. #if (LINUX_VERSION_CODE >= 131336)
  343. #include <asm/uaccess.h>
  344. #endif
  345. #include <linux/kernel.h>
  346. #include <asm/io.h>
  347. #include <asm/irq.h>
  348. #include <asm/system.h>
  349. #include <asm/segment.h>
  350. #include <asm/bitops.h>
  351. #include <linux/delay.h>
  352. #include <asm/svinto.h>
  353. /* non-arch dependant serial structures are in linux/serial.h */
  354. #include <linux/serial.h>
  355. /* while we keep our own stuff (struct e100_serial) in a local .h file */
  356. #include "serial.h"
  357. #include <asm/fasttimer.h>
  358. #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
  359. #ifdef CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST
  360. #error "Disable SERIAL_FLUSH_DMA_FAST to use SERIAL_FAST_TIMER"
  361. #endif
  362. #ifndef CONFIG_ETRAX_FAST_TIMER
  363. #error "Enable FAST_TIMER to use SERIAL_FAST_TIMER"
  364. #endif
  365. #endif
  366. /*
  367.  * All of the compatibilty code so we can compile serial.c against
  368.  * older kernels is hidden in serial_compat.h
  369.  */
  370. #if defined(LOCAL_HEADERS) || (LINUX_VERSION_CODE < 0x020317) /* 2.3.23 */
  371. #include "serial_compat.h"
  372. #endif
  373. #define _INLINE_ inline
  374. static DECLARE_TASK_QUEUE(tq_serial);
  375. struct tty_driver serial_driver, callout_driver;
  376. static int serial_refcount;
  377. /* serial subtype definitions */
  378. #ifndef SERIAL_TYPE_NORMAL
  379. #define SERIAL_TYPE_NORMAL 1
  380. #define SERIAL_TYPE_CALLOUT 2
  381. #endif
  382. /* number of characters left in xmit buffer before we ask for more */
  383. #define WAKEUP_CHARS 256
  384. //#define SERIAL_DEBUG_INTR
  385. //#define SERIAL_DEBUG_OPEN 
  386. //#define SERIAL_DEBUG_FLOW
  387. //#define SERIAL_DEBUG_DATA
  388. //#define SERIAL_DEBUG_THROTTLE
  389. //#define SERIAL_DEBUG_IO  /* Debug for Extra control and status pins */
  390. #define SERIAL_DEBUG_LINE 0 /* What serport we want to debug */
  391. /* Enable this to use serial interrupts to handle when you
  392.    expect the first received event on the serial port to
  393.    be an error, break or similar. Used to be able to flash IRMA
  394.    from eLinux */
  395. #define SERIAL_HANDLE_EARLY_ERRORS
  396. #define TTY_THROTTLE_LIMIT (TTY_FLIPBUF_SIZE/10)
  397. #define SERIAL_DESCR_BUF_SIZE 256
  398. /* Add an x here to log a lot of timer stuff */
  399. #define TIMERD(x)
  400. #define DEBUG_LOG(line, string, value)
  401. #ifndef CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS
  402. /* Default number of timer ticks before flushing rx fifo 
  403.  * When using "little data, low latency applications: use 0
  404.  * When using "much data applications (PPP)" use ~5
  405.  */
  406. #define CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS 5 
  407. #endif
  408. static void change_speed(struct e100_serial *info);
  409. static void rs_wait_until_sent(struct tty_struct *tty, int timeout);
  410. static int rs_write(struct tty_struct * tty, int from_user,
  411.                     const unsigned char *buf, int count);
  412. static inline int raw_write(struct tty_struct * tty, int from_user,
  413.                             const unsigned char *buf, int count);
  414. #ifdef CONFIG_ETRAX_RS485
  415. static int e100_write_rs485(struct tty_struct * tty, int from_user,
  416.                             const unsigned char *buf, int count);
  417. #endif
  418. static int 
  419. get_lsr_info(struct e100_serial * info, unsigned int *value);
  420. #define DEF_BAUD 0x99   /* 115.2 kbit/s */
  421. #define STD_FLAGS (ASYNC_BOOT_AUTOCONF | ASYNC_SKIP_TEST)
  422. #define DEF_RX 0x20  /* or SERIAL_CTRL_W >> 8 */
  423. /* Default value of tx_ctrl register: has txd(bit 7)=1 (idle) as default */
  424. #define DEF_TX 0x80  /* or SERIAL_CTRL_B */
  425. /* offsets from R_SERIALx_CTRL */
  426. #define REG_DATA 0
  427. #define REG_TR_DATA 0
  428. #define REG_STATUS 1
  429. #define REG_TR_CTRL 1
  430. #define REG_REC_CTRL 2
  431. #define REG_BAUD 3
  432. #define REG_XOFF 4  /* this is a 32 bit register */
  433. /* The bitfields are the same for all serial ports */
  434. #define SER_RXD_MASK         IO_MASK(R_SERIAL0_STATUS, rxd)
  435. #define SER_DATA_AVAIL_MASK  IO_MASK(R_SERIAL0_STATUS, data_avail)
  436. #define SER_FRAMING_ERR_MASK IO_MASK(R_SERIAL0_STATUS, framing_err)
  437. #define SER_PAR_ERR_MASK     IO_MASK(R_SERIAL0_STATUS, par_err)
  438. #define SER_OVERRUN_MASK     IO_MASK(R_SERIAL0_STATUS, overrun)
  439. #define SER_ERROR_MASK (SER_OVERRUN_MASK | SER_PAR_ERR_MASK | SER_FRAMING_ERR_MASK)
  440. /* Values for info->errorcode */
  441. #define ERRCODE_SET_BREAK    (TTY_BREAK)
  442. #define ERRCODE_INSERT        0x100
  443. #define ERRCODE_INSERT_BREAK (ERRCODE_INSERT | TTY_BREAK)
  444. #define FORCE_EOP(info)  *R_SET_EOP = 1U << info->iseteop;
  445. /*
  446.  * General note regarding the use of IO_* macros in this file: 
  447.  *
  448.  * We will use the bits defined for DMA channel 6 when using various
  449.  * IO_* macros (e.g. IO_STATE, IO_MASK, IO_EXTRACT) and _assume_ they are
  450.  * the same for all channels (which of course they are).
  451.  *
  452.  * We will also use the bits defined for serial port 0 when writing commands
  453.  * to the different ports, as these bits too are the same for all ports.
  454.  */
  455. /* this is the data for the four serial ports in the etrax100 */
  456. /*  DMA2(ser2), DMA4(ser3), DMA6(ser0) or DMA8(ser1) */
  457. /* R_DMA_CHx_CLR_INTR, R_DMA_CHx_FIRST, R_DMA_CHx_CMD */
  458. static struct e100_serial rs_table[] = {
  459. { DEF_BAUD, (unsigned char *)R_SERIAL0_CTRL, 1U << 12, /* uses DMA 6 and 7 */
  460.   R_DMA_CH6_CLR_INTR, R_DMA_CH6_FIRST, R_DMA_CH6_CMD,
  461.   R_DMA_CH6_STATUS, R_DMA_CH6_HWSW, R_DMA_CH6_DESCR,
  462.   R_DMA_CH7_CLR_INTR, R_DMA_CH7_FIRST, R_DMA_CH7_CMD,
  463.   R_DMA_CH7_STATUS, R_DMA_CH7_HWSW, R_DMA_CH7_DESCR,
  464.   STD_FLAGS, DEF_RX, DEF_TX, 2,
  465. #ifdef CONFIG_ETRAX_SERIAL_PORT0
  466.           1
  467. #else
  468.           0
  469. #endif
  470. },  /* ttyS0 */
  471. #ifndef CONFIG_SVINTO_SIM
  472. { DEF_BAUD, (unsigned char *)R_SERIAL1_CTRL, 1U << 16, /* uses DMA 8 and 9 */
  473.   R_DMA_CH8_CLR_INTR, R_DMA_CH8_FIRST, R_DMA_CH8_CMD,
  474.   R_DMA_CH8_STATUS, R_DMA_CH8_HWSW, R_DMA_CH8_DESCR,
  475.   R_DMA_CH9_CLR_INTR, R_DMA_CH9_FIRST, R_DMA_CH9_CMD,
  476.   R_DMA_CH9_STATUS, R_DMA_CH9_HWSW, R_DMA_CH9_DESCR,
  477.   STD_FLAGS, DEF_RX, DEF_TX, 3 ,
  478. #ifdef CONFIG_ETRAX_SERIAL_PORT1
  479.           1
  480. #else
  481.           0
  482. #endif
  483. },  /* ttyS1 */
  484. { DEF_BAUD, (unsigned char *)R_SERIAL2_CTRL, 1U << 4,  /* uses DMA 2 and 3 */
  485.   R_DMA_CH2_CLR_INTR, R_DMA_CH2_FIRST, R_DMA_CH2_CMD,
  486.   R_DMA_CH2_STATUS, R_DMA_CH2_HWSW, R_DMA_CH2_DESCR,
  487.   R_DMA_CH3_CLR_INTR, R_DMA_CH3_FIRST, R_DMA_CH3_CMD,
  488.   R_DMA_CH3_STATUS, R_DMA_CH3_HWSW, R_DMA_CH3_DESCR,
  489.   STD_FLAGS, DEF_RX, DEF_TX, 0,
  490. #ifdef CONFIG_ETRAX_SERIAL_PORT2
  491.           1
  492. #else
  493.           0
  494. #endif
  495.  },  /* ttyS2 */
  496. { DEF_BAUD, (unsigned char *)R_SERIAL3_CTRL, 1U << 8,  /* uses DMA 4 and 5 */
  497.   R_DMA_CH4_CLR_INTR, R_DMA_CH4_FIRST, R_DMA_CH4_CMD,
  498.   R_DMA_CH4_STATUS, R_DMA_CH4_HWSW, R_DMA_CH4_DESCR,
  499.   R_DMA_CH5_CLR_INTR, R_DMA_CH5_FIRST, R_DMA_CH5_CMD,
  500.   R_DMA_CH5_STATUS, R_DMA_CH5_HWSW, R_DMA_CH5_DESCR,
  501.   STD_FLAGS, DEF_RX, DEF_TX, 1,
  502. #ifdef CONFIG_ETRAX_SERIAL_PORT3
  503.           1
  504. #else
  505.           0
  506. #endif
  507.  }   /* ttyS3 */
  508. #endif
  509. };
  510. #define NR_PORTS (sizeof(rs_table)/sizeof(struct e100_serial))
  511.   
  512. static struct tty_struct *serial_table[NR_PORTS]; 
  513. static struct termios *serial_termios[NR_PORTS];
  514. static struct termios *serial_termios_locked[NR_PORTS];
  515. #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
  516. static struct fast_timer fast_timers[NR_PORTS];
  517. #endif
  518. #ifdef CONFIG_ETRAX_SERIAL_PROC_ENTRY
  519. #define PROCSTAT(x) x
  520. struct ser_statistics_type {
  521. int overrun_cnt;
  522. int early_errors_cnt;
  523. int ser_ints_ok_cnt;
  524. int errors_cnt;
  525. unsigned long int processing_flip;
  526. unsigned long processing_flip_still_room;
  527. unsigned long int timeout_flush_cnt;
  528. int rx_dma_ints;
  529. int tx_dma_ints;
  530. int rx_tot;
  531. int tx_tot;
  532. };
  533. static struct ser_statistics_type ser_stat[NR_PORTS];
  534. #else
  535. #define PROCSTAT(x)
  536. #endif /* CONFIG_ETRAX_SERIAL_PROC_ENTRY */
  537. /* RS-485 */
  538. #if defined(CONFIG_ETRAX_RS485)
  539. #ifdef CONFIG_ETRAX_FAST_TIMER
  540. static struct fast_timer fast_timers_rs485[NR_PORTS];
  541. #endif
  542. #if defined(CONFIG_ETRAX_RS485_ON_PA)
  543. static int rs485_pa_bit = CONFIG_ETRAX_RS485_ON_PA_BIT;
  544. #endif
  545. #endif
  546.   
  547. /* For now we assume that all bits are on the same port for each serial port */
  548. /* Dummy shadow variables */
  549. #if !defined(CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_ON_PB)
  550. static unsigned char dummy_ser0 = 0x00;
  551. static unsigned char dummy_dir_ser0 = 0x00;
  552. #endif
  553. #if !defined(CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_ON_PB)
  554. static unsigned char dummy_ser1 = 0x00;
  555. static unsigned char dummy_dir_ser1 = 0x00;
  556. #endif
  557. #if !defined(CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_ON_PA)
  558. static unsigned char dummy_ser2 = 0x00;
  559. static unsigned char dummy_dir_ser2 = 0x00;
  560. #endif
  561. static unsigned char dummy_ser3 = 0x00;
  562. static unsigned char dummy_dir_ser3 = 0x00;
  563. /* Info needed for each ports extra control/status signals.
  564.    We only supports that all pins uses same register for each port */
  565. struct control_pins
  566. {
  567. volatile unsigned char *port;
  568. volatile unsigned char *shadow;
  569. volatile unsigned char *dir_shadow;
  570. unsigned char dtr_bit;
  571. unsigned char ri_bit;
  572. unsigned char dsr_bit;
  573. unsigned char cd_bit;
  574. };
  575. static const struct control_pins e100_modem_pins[NR_PORTS] = 
  576. {
  577. /* Ser 0 */
  578. {
  579. #if defined(CONFIG_ETRAX_SER0_DTR_RI_DSR_CD_ON_PB)
  580. R_PORT_PB_DATA, &port_pb_data_shadow, &port_pb_dir_shadow,
  581. CONFIG_ETRAX_SER0_DTR_ON_PB_BIT,
  582. CONFIG_ETRAX_SER0_RI_ON_PB_BIT,
  583. CONFIG_ETRAX_SER0_DSR_ON_PB_BIT,
  584. CONFIG_ETRAX_SER0_CD_ON_PB_BIT
  585. #else
  586. &dummy_ser0, &dummy_ser0, &dummy_dir_ser0, 0, 1, 2, 3
  587. #endif
  588. },
  589. /* Ser 1 */
  590. {
  591. #if defined(CONFIG_ETRAX_SER1_DTR_RI_DSR_CD_ON_PB)
  592. R_PORT_PB_DATA, &port_pb_data_shadow, &port_pb_dir_shadow,
  593. CONFIG_ETRAX_SER1_DTR_ON_PB_BIT,
  594. CONFIG_ETRAX_SER1_RI_ON_PB_BIT,
  595. CONFIG_ETRAX_SER1_DSR_ON_PB_BIT,
  596. CONFIG_ETRAX_SER1_CD_ON_PB_BIT
  597. #else
  598. &dummy_ser1, &dummy_ser1, &dummy_dir_ser1, 0, 1, 2, 3
  599. #endif
  600. },
  601. /* Ser 2 */
  602. {
  603. #if defined(CONFIG_ETRAX_SER2_DTR_RI_DSR_CD_ON_PA)
  604. R_PORT_PA_DATA, &port_pa_data_shadow, &port_pa_dir_shadow,
  605. CONFIG_ETRAX_SER2_DTR_ON_PA_BIT,
  606. CONFIG_ETRAX_SER2_RI_ON_PA_BIT,
  607. CONFIG_ETRAX_SER2_DSR_ON_PA_BIT,
  608. CONFIG_ETRAX_SER2_CD_ON_PA_BIT
  609. #else
  610. &dummy_ser2, &dummy_ser2, &dummy_dir_ser2, 0, 1, 2, 3
  611. #endif
  612. },
  613. /* Ser 3 */
  614. {
  615. &dummy_ser3, &dummy_ser3, &dummy_dir_ser3, 0, 1, 2, 3
  616. }
  617. };
  618. #if defined(CONFIG_ETRAX_RS485) && defined(CONFIG_ETRAX_RS485_ON_PA)
  619. unsigned char rs485_pa_port = CONFIG_ETRAX_RS485_ON_PA_BIT;
  620. #endif
  621. #define E100_RTS_MASK 0x20
  622. #define E100_CTS_MASK 0x40
  623. /* All serial port signals are active low:
  624.  * active   = 0 -> 3.3V to RS-232 driver -> -12V on RS-232 level
  625.  * inactive = 1 -> 0V   to RS-232 driver -> +12V on RS-232 level
  626.  *
  627.  * These macros returns the pin value: 0=0V, >=1 = 3.3V on ETRAX chip
  628.  */
  629. /* Output */
  630. #define E100_RTS_GET(info) ((info)->rx_ctrl & E100_RTS_MASK)
  631. /* Input */
  632. #define E100_CTS_GET(info) ((info)->port[REG_STATUS] & E100_CTS_MASK)
  633. /* These are typically PA or PB and 0 means 0V, 1 means 3.3V */
  634. /* Is an output */
  635. #define E100_DTR_GET(info) ((*e100_modem_pins[(info)->line].shadow) & (1 << e100_modem_pins[(info)->line].dtr_bit))
  636. /* Normally inputs */
  637. #define E100_RI_GET(info) ((*e100_modem_pins[(info)->line].port) & (1 << e100_modem_pins[(info)->line].ri_bit))
  638. #define E100_CD_GET(info) ((*e100_modem_pins[(info)->line].port) & (1 << e100_modem_pins[(info)->line].cd_bit))
  639. /* Input */
  640. #define E100_DSR_GET(info) ((*e100_modem_pins[(info)->line].port) & (1 << e100_modem_pins[(info)->line].dsr_bit))
  641. #ifndef MIN
  642. #define MIN(a,b) ((a) < (b) ? (a) : (b))
  643. #endif
  644. /*
  645.  * tmp_buf is used as a temporary buffer by serial_write.  We need to
  646.  * lock it in case the memcpy_fromfs blocks while swapping in a page,
  647.  * and some other program tries to do a serial write at the same time.
  648.  * Since the lock will only come under contention when the system is
  649.  * swapping and available memory is low, it makes sense to share one
  650.  * buffer across all the serial ports, since it significantly saves
  651.  * memory if large numbers of serial ports are open.
  652.  */
  653. static unsigned char *tmp_buf;
  654. #ifdef DECLARE_MUTEX
  655. static DECLARE_MUTEX(tmp_buf_sem);
  656. #else
  657. static struct semaphore tmp_buf_sem = MUTEX;
  658. #endif
  659. #ifdef CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST
  660. /* clock select 10 for timer 1 gives 230400 Hz */
  661. #define FASTTIMER_SELECT (10)
  662. /* we use a source of 230400 Hz and a divider of 15 => 15360 Hz */
  663. #define FASTTIMER_DIV (15)
  664. /* fast flush timer stuff */
  665. static int fast_timer_started = 0;
  666. static unsigned long int fast_timer_ints = 0;
  667. static void _INLINE_ start_flush_timer(void)
  668. {
  669. if (fast_timer_started)
  670. return;
  671. *R_TIMER_CTRL = r_timer_ctrl_shadow = 
  672. (r_timer_ctrl_shadow &
  673.  ~IO_MASK(R_TIMER_CTRL, timerdiv1) &
  674.  ~IO_MASK(R_TIMER_CTRL, tm1) &
  675.  ~IO_MASK(R_TIMER_CTRL, clksel1)) | 
  676. IO_FIELD(R_TIMER_CTRL, timerdiv1, FASTTIMER_DIV) |
  677. IO_STATE(R_TIMER_CTRL, tm1, stop_ld) | 
  678. IO_FIELD(R_TIMER_CTRL, clksel1, FASTTIMER_SELECT);
  679. *R_TIMER_CTRL = r_timer_ctrl_shadow = 
  680. (r_timer_ctrl_shadow & ~IO_MASK(R_TIMER_CTRL, tm1)) |
  681. IO_STATE(R_TIMER_CTRL, tm1, run);
  682. /* enable timer1 irq */
  683. *R_IRQ_MASK0_SET = IO_STATE(R_IRQ_MASK0_SET, timer1, set);
  684. fast_timer_started = 1;
  685. }
  686. #endif /* CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST */
  687. /* Calculate the chartime depending on baudrate, numbor of bits etc. */
  688. static void update_char_time(struct e100_serial * info)
  689. {
  690. tcflag_t cflags = info->tty->termios->c_cflag;
  691. int bits;
  692. /* calc. number of bits / data byte */
  693. /* databits + startbit and 1 stopbit */
  694. if ((cflags & CSIZE) == CS7)
  695. bits = 9;
  696. else
  697. bits = 10;  
  698. if (cflags & CSTOPB)     /* 2 stopbits ? */
  699. bits++;
  700. if (cflags & PARENB)     /* parity bit ? */
  701. bits++;
  702. /* calc timeout */
  703. info->char_time_usec = ((bits * 1000000) / info->baud) + 1;
  704. }
  705. /*
  706.  * This function maps from the Bxxxx defines in asm/termbits.h into real
  707.  * baud rates.
  708.  */
  709. static int 
  710. cflag_to_baud(unsigned int cflag)
  711. {
  712. static int baud_table[] = {
  713. 0, 50, 75, 110, 134, 150, 200, 300, 600, 1200, 1800, 2400,
  714. 4800, 9600, 19200, 38400 };
  715. static int ext_baud_table[] = {
  716. 0, 57600, 115200, 230400, 460800, 921600, 1843200, 6250000,
  717.                 0, 0, 0, 0, 0, 0, 0, 0 };
  718. if (cflag & CBAUDEX)
  719. return ext_baud_table[(cflag & CBAUD) & ~CBAUDEX];
  720. else 
  721. return baud_table[cflag & CBAUD];
  722. }
  723. /* and this maps to an etrax100 hardware baud constant */
  724. static unsigned char 
  725. cflag_to_etrax_baud(unsigned int cflag)
  726. {
  727. char retval;
  728. static char baud_table[] = {
  729. -1, -1, -1, -1, -1, -1, -1, 0, 1, 2, -1, 3, 4, 5, 6, 7 };
  730. static char ext_baud_table[] = {
  731. -1, 8, 9, 10, 11, 12, 13, 14, -1, -1, -1, -1, -1, -1, -1, -1 };
  732. if (cflag & CBAUDEX)
  733. retval = ext_baud_table[(cflag & CBAUD) & ~CBAUDEX];
  734. else 
  735. retval = baud_table[cflag & CBAUD];
  736. if (retval < 0) {
  737. printk("serdriver tried setting invalid baud rate, flags %x.n", cflag);
  738. retval = 5; /* choose default 9600 instead */
  739. }
  740. return retval | (retval << 4); /* choose same for both TX and RX */
  741. }
  742. /* Various static support functions */
  743. /* Functions to set or clear DTR/RTS on the requested line */
  744. /* It is complicated by the fact that RTS is a serial port register, while
  745.  * DTR might not be implemented in the HW at all, and if it is, it can be on
  746.  * any general port.
  747.  */
  748. static inline void 
  749. e100_dtr(struct e100_serial *info, int set)
  750. {
  751. #ifndef CONFIG_SVINTO_SIM
  752. unsigned char mask = (1 << e100_modem_pins[info->line].dtr_bit);
  753. #ifdef SERIAL_DEBUG_IO  
  754. printk("ser%i dtr %i mask: 0x%02Xn", info->line, set, mask);
  755. printk("ser%i shadow before 0x%02X get: %in", 
  756.        info->line, *e100_modem_pins[info->line].shadow,
  757.        E100_DTR_GET(info));
  758. #endif
  759. /* DTR is active low */
  760. {
  761. unsigned long flags;
  762. save_flags(flags);
  763. cli();
  764. *e100_modem_pins[info->line].shadow &= ~mask;
  765. *e100_modem_pins[info->line].shadow |= (set ? 0 : mask); 
  766. *e100_modem_pins[info->line].port = *e100_modem_pins[info->line].shadow;
  767. restore_flags(flags);
  768. }
  769. #if 0
  770. REG_SHADOW_SET(e100_modem_pins[info->line].port,
  771.        *e100_modem_pins[info->line].shadow,
  772.        e100_modem_pins[info->line].dtr_bit, !set);
  773. #endif
  774. #ifdef SERIAL_DEBUG_IO
  775. printk("ser%i shadow after 0x%02X get: %in", 
  776.        info->line, *e100_modem_pins[info->line].shadow, 
  777.        E100_DTR_GET(info));
  778. #endif
  779. #endif
  780. }
  781. /* set = 0 means 3.3V on the pin, bitvalue: 0=active, 1=inactive  
  782.  *                                          0=0V    , 1=3.3V
  783.  */
  784. static inline void 
  785. e100_rts(struct e100_serial *info, int set)
  786. {
  787. #ifndef CONFIG_SVINTO_SIM
  788. info->rx_ctrl &= ~E100_RTS_MASK;
  789. info->rx_ctrl |= (set ? 0 : E100_RTS_MASK);  /* RTS is active low */
  790. info->port[REG_REC_CTRL] = info->rx_ctrl;
  791. #ifdef SERIAL_DEBUG_IO  
  792. printk("ser%i rts %in", info->line, set);
  793. #endif
  794. #endif
  795. }
  796. /* If this behaves as a modem, RI and CD is an output */
  797. static inline void 
  798. e100_ri_out(struct e100_serial *info, int set)
  799. {
  800. #ifndef CONFIG_SVINTO_SIM
  801. /* RI is active low */
  802. {
  803. unsigned char mask = (1 << e100_modem_pins[info->line].ri_bit);
  804. unsigned long flags;
  805. save_flags(flags);
  806. cli();
  807. *e100_modem_pins[info->line].shadow &= ~mask;
  808. *e100_modem_pins[info->line].shadow |= (set ? 0 : mask); 
  809. *e100_modem_pins[info->line].port = *e100_modem_pins[info->line].shadow;
  810. restore_flags(flags);
  811. }
  812. #endif
  813. }
  814. static inline void 
  815. e100_cd_out(struct e100_serial *info, int set)
  816. {
  817. #ifndef CONFIG_SVINTO_SIM
  818. /* CD is active low */
  819. {
  820. unsigned char mask = (1 << e100_modem_pins[info->line].cd_bit);
  821. unsigned long flags;
  822. save_flags(flags);
  823. cli();
  824. *e100_modem_pins[info->line].shadow &= ~mask;
  825. *e100_modem_pins[info->line].shadow |= (set ? 0 : mask); 
  826. *e100_modem_pins[info->line].port = *e100_modem_pins[info->line].shadow;
  827. restore_flags(flags);
  828. }
  829. #endif
  830. }
  831. static inline void
  832. e100_disable_rx(struct e100_serial *info)
  833. {
  834. #ifndef CONFIG_SVINTO_SIM
  835. /* disable the receiver */
  836. info->port[REG_REC_CTRL] =
  837. (info->rx_ctrl &= ~IO_MASK(R_SERIAL0_REC_CTRL, rec_enable));
  838. #endif
  839. }
  840. static inline void 
  841. e100_enable_rx(struct e100_serial *info)
  842. {
  843. #ifndef CONFIG_SVINTO_SIM
  844. /* enable the receiver */
  845. info->port[REG_REC_CTRL] =
  846. (info->rx_ctrl |= IO_MASK(R_SERIAL0_REC_CTRL, rec_enable));
  847. #endif
  848. }
  849. /* the rx DMA uses both the dma_descr and the dma_eop interrupts */
  850. static inline void
  851. e100_disable_rxdma_irq(struct e100_serial *info) 
  852. {
  853. #ifdef SERIAL_DEBUG_INTR
  854. printk("rxdma_irq(%d): 0n",info->line);
  855. #endif
  856. *R_IRQ_MASK2_CLR = (info->irq << 2) | (info->irq << 3);
  857. }
  858. static inline void
  859. e100_enable_rxdma_irq(struct e100_serial *info) 
  860. {
  861. #ifdef SERIAL_DEBUG_INTR
  862. printk("rxdma_irq(%d): 1n",info->line);
  863. #endif
  864. *R_IRQ_MASK2_SET = (info->irq << 2) | (info->irq << 3);
  865. }
  866. /* the tx DMA uses only dma_descr interrupt */
  867. static inline void
  868. e100_disable_txdma_irq(struct e100_serial *info) 
  869. {
  870. #ifdef SERIAL_DEBUG_INTR
  871. printk("txdma_irq(%d): 0n",info->line);
  872. #endif
  873. *R_IRQ_MASK2_CLR = info->irq;
  874. }
  875. static inline void
  876. e100_enable_txdma_irq(struct e100_serial *info) 
  877. {
  878. #ifdef SERIAL_DEBUG_INTR
  879. printk("txdma_irq(%d): 1n",info->line);
  880. #endif
  881. *R_IRQ_MASK2_SET = info->irq;
  882. }
  883. #ifdef SERIAL_HANDLE_EARLY_ERRORS
  884. /* in order to detect and fix errors on the first byte
  885.    we have to use the serial interrupts as well. */
  886. static inline void
  887. e100_disable_serial_data_irq(struct e100_serial *info) 
  888. {
  889. #ifdef SERIAL_DEBUG_INTR
  890. printk("ser_irq(%d): 0n",info->line);
  891. #endif
  892. *R_IRQ_MASK1_CLR = (1U << (8+2*info->line));
  893. }
  894. static inline void
  895. e100_enable_serial_data_irq(struct e100_serial *info) 
  896. {
  897. #ifdef SERIAL_DEBUG_INTR
  898. printk("ser_irq(%d): 1n",info->line);
  899. printk("**** %d = %dn",
  900.        (8+2*info->line),
  901.        (1U << (8+2*info->line)));
  902. #endif
  903. *R_IRQ_MASK1_SET = (1U << (8+2*info->line));
  904. }
  905. #endif
  906. #if defined(CONFIG_ETRAX_RS485)
  907. /* Enable RS-485 mode on selected port. This is UGLY. */
  908. static int
  909. e100_enable_rs485(struct tty_struct *tty,struct rs485_control *r)
  910. {
  911. struct e100_serial * info = (struct e100_serial *)tty->driver_data;
  912. #if defined(CONFIG_ETRAX_RS485_ON_PA)
  913. *R_PORT_PA_DATA = port_pa_data_shadow |= (1 << rs485_pa_bit);
  914. #endif
  915. info->rs485.rts_on_send = 0x01 & r->rts_on_send;
  916. info->rs485.rts_after_sent = 0x01 & r->rts_after_sent;
  917. info->rs485.delay_rts_before_send = r->delay_rts_before_send;
  918. info->rs485.enabled = r->enabled;
  919. /* printk("rts: on send = %i, after = %i, enabled = %i",
  920.     info->rs485.rts_on_send,
  921.     info->rs485.rts_after_sent,
  922.     info->rs485.enabled
  923. );
  924. */
  925. return 0;
  926. }
  927. static int
  928. e100_write_rs485(struct tty_struct *tty, int from_user,
  929.                  const unsigned char *buf, int count)
  930. {
  931. struct e100_serial * info = (struct e100_serial *)tty->driver_data;
  932. int old_enabled = info->rs485.enabled;
  933. /* rs485 is always implicitly enabled if we're using the ioctl() 
  934.  * but it doesn't have to be set in the rs485_control
  935.  * (to be backward compatible with old apps)
  936.  * So we store, set and restore it.
  937.  */
  938. info->rs485.enabled = 1;
  939. /* rs_write now deals with RS485 if enabled */
  940. count = rs_write(tty, from_user, buf, count);
  941. info->rs485.enabled = old_enabled;
  942. return count;
  943. }
  944. #ifdef CONFIG_ETRAX_FAST_TIMER
  945. /* Timer function to toggle RTS when using FAST_TIMER */
  946. static void rs485_toggle_rts_timer_function(unsigned long data)
  947. {
  948. struct e100_serial *info = (struct e100_serial *)data;
  949. fast_timers_rs485[info->line].function = NULL;
  950. e100_rts(info, info->rs485.rts_after_sent);
  951. #if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
  952. e100_enable_rx(info);
  953. e100_enable_rxdma_irq(info);
  954. #endif
  955. }
  956. #endif
  957. #endif /* CONFIG_ETRAX_RS485 */
  958. /*
  959.  * ------------------------------------------------------------
  960.  * rs_stop() and rs_start()
  961.  *
  962.  * This routines are called before setting or resetting tty->stopped.
  963.  * They enable or disable transmitter interrupts, as necessary.
  964.  * ------------------------------------------------------------
  965.  */
  966. /* FIXME - when are these used and what is the purpose ? 
  967.  * In rs_stop we probably just can block the transmit DMA ready irq
  968.  * and in rs_start we re-enable it (and then the old one will come).
  969.  */
  970. static void 
  971. rs_stop(struct tty_struct *tty)
  972. {
  973. }
  974. static void 
  975. rs_start(struct tty_struct *tty)
  976. {
  977. }
  978. /*
  979.  * ----------------------------------------------------------------------
  980.  *
  981.  * Here starts the interrupt handling routines.  All of the following
  982.  * subroutines are declared as inline and are folded into
  983.  * rs_interrupt().  They were separated out for readability's sake.
  984.  *
  985.  * Note: rs_interrupt() is a "fast" interrupt, which means that it
  986.  * runs with interrupts turned off.  People who may want to modify
  987.  * rs_interrupt() should try to keep the interrupt handler as fast as
  988.  * possible.  After you are done making modifications, it is not a bad
  989.  * idea to do:
  990.  * 
  991.  * gcc -S -DKERNEL -Wall -Wstrict-prototypes -O6 -fomit-frame-pointer serial.c
  992.  *
  993.  * and look at the resulting assemble code in serial.s.
  994.  *
  995.  *  - Ted Ts'o (tytso@mit.edu), 7-Mar-93
  996.  * -----------------------------------------------------------------------
  997.  */
  998. /*
  999.  * This routine is used by the interrupt handler to schedule
  1000.  * processing in the software interrupt portion of the driver.
  1001.  */
  1002. static _INLINE_ void 
  1003. rs_sched_event(struct e100_serial *info,
  1004.     int event)
  1005. {
  1006. info->event |= 1 << event;
  1007. queue_task(&info->tqueue, &tq_serial);
  1008. mark_bh(SERIAL_BH);
  1009. }
  1010. /* The output DMA channel is free - use it to send as many chars as possible
  1011.  * NOTES:
  1012.  *   We don't pay attention to info->x_char, which means if the TTY wants to
  1013.  *   use XON/XOFF it will set info->x_char but we won't send any X char!
  1014.  * 
  1015.  *   To implement this, we'd just start a DMA send of 1 byte pointing at a
  1016.  *   buffer containing the X char, and skip updating xmit. We'd also have to
  1017.  *   check if the last sent char was the X char when we enter this function
  1018.  *   the next time, to avoid updating xmit with the sent X value.
  1019.  */
  1020. static void 
  1021. transmit_chars(struct e100_serial *info)
  1022. {
  1023. unsigned int c, sentl;
  1024. struct etrax_dma_descr *descr;
  1025. #ifdef CONFIG_SVINTO_SIM
  1026. /* This will output too little if tail is not 0 always since
  1027.  * we don't reloop to send the other part. Anyway this SHOULD be a
  1028.  * no-op - transmit_chars would never really be called during sim
  1029.  * since rs_write does not write into the xmit buffer then.
  1030.  */
  1031. if (info->xmit.tail)
  1032. printk("Error in serial.c:transmit_chars(), tail!=0n");
  1033. if (info->xmit.head != info->xmit.tail) {
  1034. SIMCOUT(info->xmit.buf + info->xmit.tail,
  1035. CIRC_CNT(info->xmit.head,
  1036.  info->xmit.tail,
  1037.  SERIAL_XMIT_SIZE));
  1038. info->xmit.head = info->xmit.tail;  /* move back head */
  1039. info->tr_running = 0;
  1040. }
  1041. return;
  1042. #endif
  1043. /* acknowledge both dma_descr and dma_eop irq in R_DMA_CHx_CLR_INTR */
  1044. *info->oclrintradr =
  1045. IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
  1046. IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
  1047. #ifdef SERIAL_DEBUG_INTR
  1048. if (info->line == SERIAL_DEBUG_LINE)
  1049. printk("tcn");
  1050. #endif
  1051. if (!info->tr_running) {
  1052. /* weirdo... we shouldn't get here! */
  1053. printk("Achtung: transmit_chars with !tr_runningn");
  1054. return;
  1055. }
  1056. descr = &info->tr_descr;
  1057. /* first get the amount of bytes sent during the last DMA transfer,
  1058.    and update xmit accordingly */
  1059. /* if the stop bit was not set, all data has been sent */
  1060. if (!(descr->status & d_stop)) {
  1061. sentl = descr->sw_len;
  1062. } else 
  1063. /* otherwise we find the amount of data sent here */
  1064. sentl = descr->hw_len;
  1065. /* update stats */
  1066. info->icount.tx += sentl;
  1067. /* update xmit buffer */
  1068. info->xmit.tail = (info->xmit.tail + sentl) & (SERIAL_XMIT_SIZE - 1);
  1069. /* if there is only a few chars left in the buf, wake up the blocked
  1070.    write if any */
  1071. if (CIRC_CNT(info->xmit.head,
  1072.      info->xmit.tail,
  1073.      SERIAL_XMIT_SIZE) < WAKEUP_CHARS)
  1074. rs_sched_event(info, RS_EVENT_WRITE_WAKEUP);
  1075. /* find out the largest amount of consecutive bytes we want to send now */
  1076. c = CIRC_CNT_TO_END(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
  1077. if (c <= 0) {
  1078. /* our job here is done, don't schedule any new DMA transfer */
  1079. info->tr_running = 0;
  1080. #if defined(CONFIG_ETRAX_RS485) && defined(CONFIG_ETRAX_FAST_TIMER)
  1081. if (info->rs485.enabled) {
  1082. /* Set a short timer to toggle RTS */
  1083. start_one_shot_timer(&fast_timers_rs485[info->line],
  1084.                      rs485_toggle_rts_timer_function,
  1085.                      (unsigned long)info,
  1086.                      info->char_time_usec*2,
  1087.                      "RS-485");
  1088. }
  1089. #endif /* RS485 */
  1090. return;
  1091. }
  1092. /* ok we can schedule a dma send of c chars starting at info->xmit.tail */
  1093. /* set up the descriptor correctly for output */
  1094. descr->ctrl = d_int | d_eol | d_wait; /* Wait needed for tty_wait_until_sent() */
  1095. descr->sw_len = c;
  1096. descr->buf = virt_to_phys(info->xmit.buf + info->xmit.tail);
  1097. descr->status = 0;
  1098. *info->ofirstadr = virt_to_phys(descr); /* write to R_DMAx_FIRST */
  1099. *info->ocmdadr = 1;       /* dma command start -> R_DMAx_CMD */
  1100. /* DMA is now running (hopefully) */
  1101. } /* transmit_chars */
  1102. static void 
  1103. start_transmit(struct e100_serial *info)
  1104. {
  1105. #if 0
  1106. if (info->line == SERIAL_DEBUG_LINE)
  1107. printk("xn");
  1108. #endif
  1109. info->tr_descr.sw_len = 0;
  1110. info->tr_descr.hw_len = 0;
  1111. info->tr_descr.status = 0;
  1112. info->tr_running = 1;
  1113. transmit_chars(info);
  1114. } /* start_transmit */
  1115. #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
  1116. static int serial_fast_timer_started = 0;
  1117. static int serial_fast_timer_expired = 0;
  1118. static void flush_timeout_function(unsigned long data);
  1119. #define START_FLUSH_FAST_TIMER(info, string) {
  1120.   unsigned long timer_flags; 
  1121.   save_flags(timer_flags); 
  1122.   cli(); 
  1123.   if (fast_timers[info->line].function == NULL) { 
  1124.     serial_fast_timer_started++; 
  1125.     TIMERD(DEBUG_LOG(info->line, "start_timer %i ", info->line)); 
  1126.     TIMERD(DEBUG_LOG(info->line, "num started: %in", serial_fast_timer_started)); 
  1127.     start_one_shot_timer(&fast_timers[info->line], 
  1128.                          flush_timeout_function, 
  1129.                          (unsigned long)info, 
  1130.                          info->char_time_usec*4, 
  1131.                          string); 
  1132.   } 
  1133.   else { 
  1134.     TIMERD(DEBUG_LOG(info->line, "timer %i already runningn", info->line)); 
  1135.   } 
  1136.   restore_flags(timer_flags); 
  1137. }
  1138. #else
  1139. #define START_FLUSH_FAST_TIMER(info, string)
  1140. #endif
  1141. static struct etrax_recv_buffer *
  1142. alloc_recv_buffer(unsigned int size)
  1143. {
  1144. struct etrax_recv_buffer *buffer;
  1145. if (!(buffer = kmalloc(sizeof *buffer + size, GFP_ATOMIC)))
  1146. return NULL;
  1147. buffer->next = NULL;
  1148. buffer->length = 0;
  1149. buffer->error = TTY_NORMAL;
  1150. return buffer;
  1151. }
  1152. static void
  1153. append_recv_buffer(struct e100_serial *info, struct etrax_recv_buffer *buffer)
  1154. {
  1155. unsigned long flags;
  1156. save_flags(flags);
  1157. cli();
  1158. if (!info->first_recv_buffer)
  1159. info->first_recv_buffer = buffer;
  1160. else
  1161. info->last_recv_buffer->next = buffer;
  1162. info->last_recv_buffer = buffer;
  1163. info->recv_cnt += buffer->length;
  1164. if (info->recv_cnt > info->max_recv_cnt)
  1165. info->max_recv_cnt = info->recv_cnt;
  1166. restore_flags(flags);
  1167. }
  1168. static int
  1169. add_char_and_flag(struct e100_serial *info, unsigned char data, unsigned char flag)
  1170. {
  1171. struct etrax_recv_buffer *buffer;
  1172. if (!(buffer = alloc_recv_buffer(4)))
  1173. return 0;
  1174. buffer->length = 1;
  1175. buffer->error = flag;
  1176. buffer->buffer[0] = data;
  1177. append_recv_buffer(info, buffer);
  1178. info->icount.rx++;
  1179. return 1;
  1180. }
  1181. static _INLINE_ unsigned int
  1182. handle_descr_data(struct e100_serial *info, struct etrax_dma_descr *descr, unsigned int recvl)
  1183. {
  1184. struct etrax_recv_buffer *buffer = phys_to_virt(descr->buf) - sizeof *buffer;
  1185. if (info->recv_cnt + recvl > 65536) {
  1186. printk(__FUNCTION__ ": Too much pending incoming serial data! Dropping %u bytes.n", recvl);
  1187. return 0;
  1188. }
  1189. buffer->length = recvl;
  1190. if (info->errorcode == ERRCODE_SET_BREAK)
  1191. buffer->error = TTY_BREAK;
  1192. info->errorcode = 0;
  1193. append_recv_buffer(info, buffer);
  1194. if (!(buffer = alloc_recv_buffer(SERIAL_DESCR_BUF_SIZE)))
  1195. panic(__FUNCTION__ ": Failed to allocate memory for receive buffer!n");
  1196. descr->buf = virt_to_phys(buffer->buffer);
  1197. return recvl;
  1198. }
  1199. static _INLINE_ unsigned int
  1200. handle_all_descr_data(struct e100_serial *info)
  1201. {
  1202. struct etrax_dma_descr *descr;
  1203. unsigned int recvl;
  1204. unsigned int ret = 0;
  1205. while (1)
  1206. {
  1207. descr = &info->rec_descr[info->cur_rec_descr];
  1208. if (descr == phys_to_virt(*info->idescradr))
  1209. break;
  1210. if (++info->cur_rec_descr == SERIAL_RECV_DESCRIPTORS)
  1211. info->cur_rec_descr = 0;
  1212. /* find out how many bytes were read */
  1213. /* if the eop bit was not set, all data has been received */
  1214. if (!(descr->status & d_eop)) {
  1215. recvl = descr->sw_len;
  1216. } else {
  1217. /* otherwise we find the amount of data received here */
  1218. recvl = descr->hw_len;
  1219. }
  1220. /* Reset the status information */
  1221. descr->status = 0;
  1222. DEBUG_LOG(info->line, "recvl %lun", recvl);
  1223. /* update stats */
  1224. info->icount.rx += recvl;
  1225. ret += handle_descr_data(info, descr, recvl);
  1226. }
  1227. return ret;
  1228. }
  1229. static _INLINE_ void 
  1230. receive_chars(struct e100_serial *info)
  1231. {
  1232. struct tty_struct *tty;
  1233. unsigned char rstat;
  1234. #ifdef CONFIG_SVINTO_SIM
  1235. /* No receive in the simulator.  Will probably be when the rest of
  1236.  * the serial interface works, and this piece will just be removed.
  1237.  */
  1238. return;
  1239. #endif
  1240. /* Acknowledge both dma_descr and dma_eop irq in R_DMA_CHx_CLR_INTR */
  1241. *info->iclrintradr =
  1242. IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
  1243. IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
  1244. tty = info->tty;
  1245. if (!tty) /* Something wrong... */
  1246. return;
  1247. #ifdef SERIAL_HANDLE_EARLY_ERRORS
  1248. e100_enable_serial_data_irq(info);
  1249. #endif
  1250. if (info->errorcode == ERRCODE_INSERT_BREAK)
  1251. add_char_and_flag(info, '', TTY_BREAK);
  1252. handle_all_descr_data(info);
  1253. /* Read the status register to detect errors */
  1254. rstat = info->port[REG_STATUS];
  1255. if (rstat & SER_ERROR_MASK) {
  1256. /* If we got an error, we must reset it by reading the
  1257.  * data_in field
  1258.  */
  1259. unsigned char data = info->port[REG_DATA];
  1260. PROCSTAT(ser_stat[info->line].errors_cnt++);
  1261. DEBUG_LOG(info->line, "#dERR: s d 0x%04Xn",
  1262.   ((rstat & SER_ERROR_MASK) << 8) | data);
  1263. if (rstat & SER_PAR_ERR_MASK)
  1264. add_char_and_flag(info, data, TTY_PARITY);
  1265. else if (rstat & SER_OVERRUN_MASK)
  1266. add_char_and_flag(info, data, TTY_OVERRUN);
  1267. else if (rstat & SER_FRAMING_ERR_MASK)
  1268. add_char_and_flag(info, data, TTY_FRAME);
  1269. }
  1270. START_FLUSH_FAST_TIMER(info, "receive_chars");
  1271. /* Restart the receiving DMA */
  1272. *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, restart);
  1273. }
  1274. static _INLINE_ int
  1275. start_recv_dma(struct e100_serial *info)
  1276. {
  1277. struct etrax_dma_descr *descr = info->rec_descr;
  1278. struct etrax_recv_buffer *buffer;
  1279.         int i;
  1280. /* Set up the receiving descriptors */
  1281. for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++) {
  1282. if (!(buffer = alloc_recv_buffer(SERIAL_DESCR_BUF_SIZE)))
  1283. panic(__FUNCTION__ ": Failed to allocate memory for receive buffer!n");
  1284. descr[i].ctrl = d_int;
  1285. descr[i].buf = virt_to_phys(buffer->buffer);
  1286. descr[i].sw_len = SERIAL_DESCR_BUF_SIZE;
  1287. descr[i].hw_len = 0;
  1288. descr[i].status = 0;
  1289. descr[i].next = virt_to_phys(&descr[i+1]);
  1290. }
  1291. /* Link the last descriptor to the first */
  1292. descr[i-1].next = virt_to_phys(&descr[0]);
  1293. /* Start with the first descriptor in the list */
  1294. info->cur_rec_descr = 0;
  1295. /* Start the DMA */
  1296. *info->ifirstadr = virt_to_phys(&descr[info->cur_rec_descr]);
  1297. *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, start);
  1298. /* Input DMA should be running now */
  1299. return 1;
  1300. }
  1301. static void 
  1302. start_receive(struct e100_serial *info)
  1303. {
  1304. #ifdef CONFIG_SVINTO_SIM
  1305. /* No receive in the simulator.  Will probably be when the rest of
  1306.  * the serial interface works, and this piece will just be removed.
  1307.  */
  1308. return;
  1309. #endif
  1310. /* reset the input dma channel to be sure it works */
  1311. *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
  1312. while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->icmdadr) ==
  1313.        IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
  1314. info->tty->flip.count = 0;
  1315. start_recv_dma(info);
  1316. #ifdef CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST
  1317. start_flush_timer();
  1318. #endif
  1319. }
  1320. static _INLINE_ void 
  1321. status_handle(struct e100_serial *info, unsigned short status)
  1322. {
  1323. }
  1324. /* the bits in the MASK2 register are laid out like this:
  1325.    DMAI_EOP DMAI_DESCR DMAO_EOP DMAO_DESCR
  1326.    where I is the input channel and O is the output channel for the port.
  1327.    info->irq is the bit number for the DMAO_DESCR so to check the others we
  1328.    shift info->irq to the left.
  1329. */
  1330. /* dma output channel interrupt handler
  1331.    this interrupt is called from DMA2(ser2), DMA4(ser3), DMA6(ser0) or
  1332.    DMA8(ser1) when they have finished a descriptor with the intr flag set.
  1333. */
  1334. static void 
  1335. tr_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1336. {
  1337. struct e100_serial *info;
  1338. unsigned long ireg;
  1339. int i;
  1340. #ifdef CONFIG_SVINTO_SIM
  1341. /* No receive in the simulator.  Will probably be when the rest of
  1342.  * the serial interface works, and this piece will just be removed.
  1343.  */
  1344. {
  1345. const char *s = "What? tr_interrupt in simulator??n";
  1346. SIMCOUT(s,strlen(s));
  1347. }
  1348. return;
  1349. #endif
  1350. /* find out the line that caused this irq and get it from rs_table */
  1351. ireg = *R_IRQ_MASK2_RD;  /* get the active irq bits for the dma channels */
  1352. for (i = 0; i < NR_PORTS; i++) {
  1353. info = rs_table + i;
  1354. if (!info->uses_dma) 
  1355. continue; 
  1356. /* check for dma_descr (don't need to check for dma_eop in output dma for serial */
  1357. if (ireg & info->irq) {  
  1358. /* we can send a new dma bunch. make it so. */
  1359. DEBUG_LOG(info->line, "tr_interrupt %in", i);
  1360. /* Read jiffies_usec first, 
  1361.  * we want this time to be as late as possible
  1362.  */
  1363.   PROCSTAT(ser_stat[info->line].tx_dma_ints++);
  1364. info->last_tx_active_usec = GET_JIFFIES_USEC();
  1365. info->last_tx_active = jiffies;
  1366. transmit_chars(info);
  1367. }
  1368. /* FIXME: here we should really check for a change in the
  1369.    status lines and if so call status_handle(info) */
  1370. }
  1371. }
  1372. /* dma input channel interrupt handler */
  1373. static void 
  1374. rec_interrupt(int irq, void *dev_id, struct pt_regs * regs)
  1375. {
  1376. struct e100_serial *info;
  1377. unsigned long ireg;
  1378. int i;
  1379. #ifdef CONFIG_SVINTO_SIM
  1380. /* No receive in the simulator.  Will probably be when the rest of
  1381.  * the serial interface works, and this piece will just be removed.
  1382.  */
  1383. {
  1384. const char *s = "What? rec_interrupt in simulator??n";
  1385. SIMCOUT(s,strlen(s));
  1386. }
  1387. return;
  1388. #endif
  1389. /* find out the line that caused this irq and get it from rs_table */
  1390. ireg = *R_IRQ_MASK2_RD;  /* get the active irq bits for the dma channels */
  1391. for (i = 0; i < NR_PORTS; i++) {
  1392. info = rs_table + i;
  1393. if (!info->uses_dma) 
  1394. continue; 
  1395. /* check for both dma_eop and dma_descr for the input dma channel */
  1396. if (ireg & ((info->irq << 2) | (info->irq << 3))) {
  1397. /* we have received something */
  1398. receive_chars(info);
  1399. }
  1400. /* FIXME: here we should really check for a change in the
  1401.    status lines and if so call status_handle(info) */
  1402. }
  1403. }
  1404. static _INLINE_ int
  1405. force_eop_if_needed(struct e100_serial *info)
  1406. {
  1407. /* We check data_avail bit to determine if data has 
  1408.  * arrived since last time
  1409.  */ 
  1410. unsigned char rstat = info->port[REG_STATUS];
  1411. /* error or datavail? */
  1412. if (rstat & SER_ERROR_MASK) { 
  1413. /* Some error has occurred. If there has been valid data, an
  1414.  * EOP interrupt will be made automatically. If no data, the
  1415.  * normal ser_interrupt should be enabled and handle it.
  1416.  * So do nothing!
  1417.  */
  1418. DEBUG_LOG(info->line, "timeout err: rstat 0x%03Xn",
  1419.           rstat | (info->line << 8));
  1420. return 0;
  1421. }
  1422. if (rstat & SER_DATA_AVAIL_MASK) { 
  1423. /* Ok data, no error, count it */
  1424. TIMERD(DEBUG_LOG(info->line, "timeout: rstat 0x%03Xn",
  1425.           rstat | (info->line << 8)));
  1426. /* Read data to clear status flags */
  1427. (void)info->port[REG_DATA];
  1428. info->forced_eop = 0;
  1429. START_FLUSH_FAST_TIMER(info, "magic");
  1430. return 0;
  1431. }
  1432. /* hit the timeout, force an EOP for the input
  1433.  * dma channel if we haven't already
  1434.  */
  1435. if (!info->forced_eop) {
  1436. info->forced_eop = 1;
  1437. PROCSTAT(ser_stat[info->line].timeout_flush_cnt++);
  1438. DEBUG_LOG(info->line, "timeout EOP %in", info->line);
  1439. FORCE_EOP(info);
  1440. }
  1441. return 1;
  1442. }
  1443. static _INLINE_ void
  1444. flush_to_flip_buffer(struct e100_serial *info)
  1445. {
  1446. struct tty_struct *tty = info->tty;
  1447. struct etrax_recv_buffer *buffer;
  1448. unsigned int length;
  1449. unsigned long flags;
  1450. if (!info->first_recv_buffer)
  1451. return;
  1452. save_flags(flags);
  1453. cli();
  1454. length = tty->flip.count;
  1455. while ((buffer = info->first_recv_buffer) && length < TTY_FLIPBUF_SIZE) {
  1456. unsigned int count = buffer->length;
  1457. if (length + count > TTY_FLIPBUF_SIZE)
  1458. count = TTY_FLIPBUF_SIZE - length;
  1459. memcpy(tty->flip.char_buf_ptr + length, buffer->buffer, count);
  1460. memset(tty->flip.flag_buf_ptr + length, TTY_NORMAL, count);
  1461. tty->flip.flag_buf_ptr[length] = buffer->error;
  1462. length += count;
  1463. info->recv_cnt -= count;
  1464. if (count == buffer->length) {
  1465. info->first_recv_buffer = buffer->next;
  1466. kfree(buffer);
  1467. } else {
  1468. buffer->length -= count;
  1469. memmove(buffer->buffer, buffer->buffer + count, buffer->length);
  1470. buffer->error = TTY_NORMAL;
  1471. }
  1472. }
  1473. if (!info->first_recv_buffer)
  1474. info->last_recv_buffer = NULL;
  1475. tty->flip.count = length;
  1476. restore_flags(flags);
  1477. #if LINUX_VERSION_CODE > KERNEL_VERSION(2,1,66)
  1478. /* this includes a check for low-latency */
  1479. tty_flip_buffer_push(tty);
  1480. #else
  1481. queue_task_irq_off(&tty->flip.tqueue, &tq_timer);
  1482. #endif
  1483. }
  1484. static _INLINE_ void
  1485. check_flush_timeout(struct e100_serial *info)
  1486. {
  1487. force_eop_if_needed(info);
  1488. flush_to_flip_buffer(info);
  1489. if (info->first_recv_buffer)
  1490. START_FLUSH_FAST_TIMER(info, "flip");
  1491. }
  1492. #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
  1493. static void flush_timeout_function(unsigned long data)
  1494. {
  1495. struct e100_serial *info = (struct e100_serial *)data;
  1496. fast_timers[info->line].function = NULL;
  1497. serial_fast_timer_expired++;
  1498. TIMERD(DEBUG_LOG(info->line, "flush_timout %i ", info->line));
  1499. TIMERD(DEBUG_LOG(info->line, "num expired: %in", serial_fast_timer_expired));
  1500. check_flush_timeout(info);
  1501. }
  1502. #elif defined(CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST)
  1503. static void 
  1504. timeout_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1505. {
  1506. struct e100_serial *info;
  1507. int i;
  1508. #ifdef CONFIG_SVINTO_SIM
  1509. /* No receive in the simulator.  Will probably be when the rest of
  1510.  * the serial interface works, and this piece will just be removed.
  1511.  */
  1512. {
  1513. const char *s = "What? timeout_interrupt in simulator??n";
  1514. SIMCOUT(s,strlen(s));
  1515. }
  1516. return;
  1517. #endif
  1518. /* acknowledge the timer1 irq */
  1519. *R_TIMER_CTRL = r_timer_ctrl_shadow | IO_STATE(R_TIMER_CTRL, i1, clr);
  1520. PROCSTAT(fast_timer_ints++);
  1521. for (i = 0; i < NR_PORTS; i++) {
  1522. info = rs_table + i;
  1523. if (info->uses_dma) 
  1524. check_flush_timeout(info);
  1525. }
  1526. } /* timeout_interrupt */
  1527. #else
  1528. /* dma fifo/buffer timeout handler
  1529.    forces an end-of-packet for the dma input channel if no chars 
  1530.    have been received for CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS/100 s.
  1531.    If CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST is configured then this
  1532.    handler is instead run at 15360 Hz.
  1533. */
  1534. static struct timer_list flush_timer;
  1535. static void 
  1536. timed_flush_handler(unsigned long ptr)
  1537. {
  1538. struct e100_serial *info;
  1539. int i;
  1540. #ifdef CONFIG_SVINTO_SIM
  1541. return;
  1542. #endif
  1543. for (i = 0; i < NR_PORTS; i++) {
  1544. info = rs_table + i;
  1545. if (info->uses_dma) 
  1546. check_flush_timeout(info);
  1547. }
  1548. /* restart flush timer */
  1549. mod_timer(&flush_timer, jiffies + CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS);
  1550. }
  1551. #endif
  1552. #ifdef SERIAL_HANDLE_EARLY_ERRORS
  1553. /* If there is an error (ie break) when the DMA is running and
  1554.  * there are no bytes in the fifo the DMA is stopped and we get no
  1555.  * eop interrupt. Thus we have to monitor the first bytes on a DMA
  1556.  * transfer, and if it is without error we can turn the serial
  1557.  * interrupts off.
  1558.  */
  1559. /*
  1560. BREAK handling on ETRAX 100:
  1561. ETRAX will generate interrupt although there is no stop bit between the
  1562. characters.
  1563. Depending on how long the break sequence is, the end of the breaksequence
  1564. will look differently:
  1565. | indicates start/end of a character.
  1566. B= Break character (0x00) with framing error.
  1567. E= Error byte with parity error received after B characters.
  1568. F= "Faked" valid byte received immediatly after B characters.
  1569. V= Valid byte
  1570. 1.
  1571.     B          BL         ___________________________ V
  1572. .._|__________|__________|                           |valid data |
  1573. Multiple frame errors with data == 0x00 (B),
  1574. the timing matches up "perfectly" so no extra ending char is detected.
  1575. The RXD pin is 1 in the last interrupt, in that case
  1576. we set info->errorcode = ERRCODE_INSERT_BREAK, but we can't really
  1577. know if another byte will come and this really is case 2. below 
  1578. (e.g F=0xFF or 0xFE)
  1579. If RXD pin is 0 we can expect another character (see 2. below).
  1580. 2.
  1581.     B          B          E or F__________________..__ V
  1582. .._|__________|__________|______    |                 |valid data
  1583.                           "valid" or 
  1584.                           parity error
  1585. Multiple frame errors with data == 0x00 (B),
  1586. but the part of the break trigs is interpreted as a start bit (and possibly
  1587. some 0 bits followed by a number of 1 bits and a stop bit).
  1588. Depending on parity settings etc. this last character can be either
  1589. a fake "valid" char (F) or have a parity error (E).
  1590. If the character is valid it will be put in the buffer,
  1591. we set info->errorcode = ERRCODE_SET_BREAK so the receive interrupt
  1592. will set the flags so the tty will handle it,
  1593. if it's an error byte it will not be put in the buffer
  1594. and we set info->errorcode = ERRCODE_INSERT_BREAK.
  1595. To distinguish a V byte in 1. from an F byte in 2. we keep a timestamp
  1596. of the last faulty char (B) and compares it with the current time:
  1597. If the time elapsed time is less then 2*char_time_usec we will assume
  1598. it's a faked F char and not a Valid char and set 
  1599. info->errorcode = ERRCODE_SET_BREAK. 
  1600. Flaws in the above solution:
  1601. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  1602. We use the timer to distinguish a F character from a V character,
  1603. if a V character is to close after the break we might make the wrong decision.
  1604. TODO: The break will be delayed until an F or V character is received.
  1605. */
  1606. static void _INLINE_ handle_ser_interrupt(struct e100_serial *info)
  1607. {
  1608. unsigned char rstat = info->port[REG_STATUS];
  1609. #ifdef SERIAL_DEBUG_INTR
  1610. printk("Interrupt from serport %dn", i);
  1611. #endif
  1612. /* DEBUG_LOG(info->line, "ser_interrupt stat %03Xn", rstat | (i << 8)); */
  1613. if (rstat & SER_ERROR_MASK) {
  1614. unsigned char data;
  1615. info->last_rx_active_usec = GET_JIFFIES_USEC();
  1616. info->last_rx_active = jiffies;
  1617. /* If we got an error, we must reset it by reading the
  1618.  * data_in field
  1619.  */
  1620. data = info->port[REG_DATA];
  1621. if (!data && (rstat & SER_FRAMING_ERR_MASK)) {
  1622. /* Most likely a break, but we get interrupts over and
  1623.  * over again.
  1624.  */
  1625. if (!info->break_detected_cnt) {
  1626. DEBUG_LOG(info->line, "#BRK startn", 0);
  1627. }
  1628. if (rstat & SER_RXD_MASK) {
  1629. /* The RX pin is high now, so the break
  1630.  * must be over, but....
  1631.  * we can't really know if we will get another
  1632.  * last byte ending the break or not. 
  1633.  * And we don't know if the byte (if any) will 
  1634.  * have an error or look valid.
  1635.  */
  1636. DEBUG_LOG(info->line, "# BL BRKn", 0);
  1637. info->errorcode = ERRCODE_INSERT_BREAK;
  1638. }
  1639. info->break_detected_cnt++;
  1640. } else {
  1641. /* The error does not look like a break, but could be
  1642.  * the end of one
  1643.  */
  1644. if (info->break_detected_cnt) {
  1645. DEBUG_LOG(info->line, "EBRK %in", info->break_detected_cnt);
  1646. info->errorcode = ERRCODE_INSERT_BREAK;
  1647. } else {
  1648. if (info->errorcode == ERRCODE_INSERT_BREAK)
  1649. add_char_and_flag(info, '', TTY_BREAK);
  1650. if (rstat & SER_PAR_ERR_MASK)
  1651. add_char_and_flag(info, data, TTY_PARITY);
  1652. else if (rstat & SER_OVERRUN_MASK)
  1653. add_char_and_flag(info, data, TTY_OVERRUN);
  1654. else if (rstat & SER_FRAMING_ERR_MASK)
  1655. add_char_and_flag(info, data, TTY_FRAME);
  1656. info->errorcode = 0;
  1657. }
  1658. info->break_detected_cnt = 0;
  1659. DEBUG_LOG(info->line, "#iERR s d %04Xn",
  1660.           ((rstat & SER_ERROR_MASK) << 8) | data);
  1661. }
  1662. PROCSTAT(ser_stat[info->line].early_errors_cnt++);
  1663. } else { /* It was a valid byte, now let the DMA do the rest */
  1664. unsigned long curr_time_u = GET_JIFFIES_USEC();
  1665. unsigned long curr_time = jiffies;
  1666. if (info->break_detected_cnt) {
  1667. /* Detect if this character is a new valid char or the
  1668.  * last char in a break sequence: If LSBits are 0 and
  1669.  * MSBits are high AND the time is close to the
  1670.  * previous interrupt we should discard it.
  1671.  */
  1672. long elapsed_usec = 
  1673.   (curr_time - info->last_rx_active) * (1000000/HZ) + 
  1674.   curr_time_u - info->last_rx_active_usec;
  1675. if (elapsed_usec < 2*info->char_time_usec) {
  1676. DEBUG_LOG(info->line, "FBRK %in", info->line);
  1677. /* Report as BREAK (error) and let
  1678.  * receive_chars() handle it
  1679.  */
  1680. info->errorcode = ERRCODE_SET_BREAK;
  1681. } else {
  1682. DEBUG_LOG(info->line, "Not end of BRK (V)%in", info->line);
  1683. }
  1684. DEBUG_LOG(info->line, "num brk %in", info->break_detected_cnt);
  1685. }
  1686. #ifdef SERIAL_DEBUG_INTR
  1687. printk("** OK, disabling ser_interuptsn");
  1688. #endif
  1689. e100_disable_serial_data_irq(info);
  1690. info->break_detected_cnt = 0;
  1691. PROCSTAT(ser_stat[info->line].ser_ints_ok_cnt++);
  1692. DEBUG_LOG(info->line, "ser_int OK %dn", info->line);
  1693. }
  1694. /* Restarting the DMA never hurts */
  1695. *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, restart);
  1696. START_FLUSH_FAST_TIMER(info, "ser_int");
  1697. } /* handle_ser_interrupt */
  1698. static void 
  1699. ser_interrupt(int irq, void *dev_id, struct pt_regs *regs)
  1700. {
  1701. struct e100_serial *info;
  1702. int i;
  1703. for (i = 0; i < NR_PORTS; i++) {
  1704. info = rs_table + i;
  1705. if (!info->enabled || !info->uses_dma) 
  1706. continue; 
  1707. /* Which line caused the irq? */
  1708. if (*R_IRQ_MASK1_RD & (1U << (8+2*info->line))) { 
  1709. handle_ser_interrupt(info);
  1710. }
  1711. }
  1712. } /* ser_interrupt */
  1713. #endif
  1714. /*
  1715.  * -------------------------------------------------------------------
  1716.  * Here ends the serial interrupt routines.
  1717.  * -------------------------------------------------------------------
  1718.  */
  1719. /*
  1720.  * This routine is used to handle the "bottom half" processing for the
  1721.  * serial driver, known also the "software interrupt" processing.
  1722.  * This processing is done at the kernel interrupt level, after the
  1723.  * rs_interrupt() has returned, BUT WITH INTERRUPTS TURNED ON.  This
  1724.  * is where time-consuming activities which can not be done in the
  1725.  * interrupt driver proper are done; the interrupt driver schedules
  1726.  * them using rs_sched_event(), and they get done here.
  1727.  */
  1728. static void 
  1729. do_serial_bh(void)
  1730. {
  1731. run_task_queue(&tq_serial);
  1732. }
  1733. static void 
  1734. do_softint(void *private_)
  1735. {
  1736. struct e100_serial *info = (struct e100_serial *) private_;
  1737. struct tty_struct *tty;
  1738. tty = info->tty;
  1739. if (!tty)
  1740. return;
  1741. if (test_and_clear_bit(RS_EVENT_WRITE_WAKEUP, &info->event)) {
  1742. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  1743.     tty->ldisc.write_wakeup)
  1744. (tty->ldisc.write_wakeup)(tty);
  1745. wake_up_interruptible(&tty->write_wait);
  1746. }
  1747. }
  1748. static int 
  1749. startup(struct e100_serial * info)
  1750. {
  1751. unsigned long flags;
  1752. unsigned long xmit_page;
  1753. int i;
  1754. xmit_page = get_zeroed_page(GFP_KERNEL);
  1755. if (!xmit_page)
  1756. return -ENOMEM;
  1757. save_flags(flags); 
  1758. cli();
  1759. /* if it was already initialized, skip this */
  1760. if (info->flags & ASYNC_INITIALIZED) {
  1761. restore_flags(flags);
  1762. free_page(xmit_page);
  1763. return 0;
  1764. }
  1765. if (info->xmit.buf)
  1766. free_page(xmit_page);
  1767. else
  1768. info->xmit.buf = (unsigned char *) xmit_page;
  1769. #ifdef SERIAL_DEBUG_OPEN
  1770. printk("starting up ttyS%d (xmit_buf 0x%p, recv_buf 0x%p)...n", info->line, info->xmit.buf, info->recv.buf);
  1771. #endif
  1772. #ifdef CONFIG_SVINTO_SIM
  1773. /* Bits and pieces collected from below.  Better to have them
  1774.    in one ifdef:ed clause than to mix in a lot of ifdefs,
  1775.    right? */
  1776. if (info->tty)
  1777. clear_bit(TTY_IO_ERROR, &info->tty->flags);
  1778. info->xmit.head = info->xmit.tail = 0;
  1779. info->first_recv_buffer = info->last_recv_buffer = NULL;
  1780. info->recv_cnt = info->max_recv_cnt = 0;
  1781. for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++)
  1782. info->rec_descr[i].buf = NULL;
  1783. /* No real action in the simulator, but may set info important
  1784.    to ioctl. */
  1785. change_speed(info);
  1786. #else
  1787. /*
  1788.  * Clear the FIFO buffers and disable them
  1789.  * (they will be reenabled in change_speed())
  1790.  */
  1791. /*
  1792.  * Reset the DMA channels and make sure their interrupts are cleared
  1793.  */
  1794. info->uses_dma = 1;
  1795. *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
  1796. *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
  1797. /* Wait until reset cycle is complete */
  1798. while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->icmdadr) ==
  1799.        IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
  1800. while (IO_EXTRACT(R_DMA_CH6_CMD, cmd, *info->ocmdadr) ==
  1801.        IO_STATE_VALUE(R_DMA_CH6_CMD, cmd, reset));
  1802. /* Make sure the irqs are cleared */
  1803. *info->iclrintradr =
  1804. IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
  1805. IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
  1806. *info->oclrintradr =
  1807. IO_STATE(R_DMA_CH6_CLR_INTR, clr_descr, do) |
  1808. IO_STATE(R_DMA_CH6_CLR_INTR, clr_eop, do);
  1809. if (info->tty)
  1810. clear_bit(TTY_IO_ERROR, &info->tty->flags);
  1811. info->xmit.head = info->xmit.tail = 0;
  1812. info->first_recv_buffer = info->last_recv_buffer = NULL;
  1813. info->recv_cnt = info->max_recv_cnt = 0;
  1814. for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++)
  1815. info->rec_descr[i].buf = 0;
  1816. /*
  1817.  * and set the speed and other flags of the serial port
  1818.  * this will start the rx/tx as well
  1819.  */
  1820. #ifdef SERIAL_HANDLE_EARLY_ERRORS
  1821. e100_enable_serial_data_irq(info);
  1822. #endif
  1823. change_speed(info);
  1824. /* dummy read to reset any serial errors */
  1825. (void)info->port[REG_DATA];
  1826. /* enable the interrupts */
  1827. e100_enable_txdma_irq(info);
  1828. e100_enable_rxdma_irq(info);
  1829. info->tr_running = 0; /* to be sure we don't lock up the transmitter */
  1830. /* setup the dma input descriptor and start dma */
  1831. start_receive(info);
  1832. /* for safety, make sure the descriptors last result is 0 bytes written */
  1833. info->tr_descr.sw_len = 0;
  1834. info->tr_descr.hw_len = 0;
  1835. info->tr_descr.status = 0;
  1836. /* enable RTS/DTR last */
  1837. e100_rts(info, 1);
  1838. e100_dtr(info, 1);
  1839. #endif /* CONFIG_SVINTO_SIM */
  1840. info->flags |= ASYNC_INITIALIZED;
  1841. restore_flags(flags);
  1842. return 0;
  1843. }
  1844. /*
  1845.  * This routine will shutdown a serial port; interrupts are disabled, and
  1846.  * DTR is dropped if the hangup on close termio flag is on.
  1847.  */
  1848. static void 
  1849. shutdown(struct e100_serial * info)
  1850. {
  1851. unsigned long flags;
  1852. struct etrax_dma_descr *descr = info->rec_descr;
  1853. struct etrax_recv_buffer *buffer;
  1854. int i;
  1855. #ifndef CONFIG_SVINTO_SIM
  1856. /* shut down the transmitter and receiver */
  1857. e100_disable_rx(info);
  1858. info->port[REG_TR_CTRL] = (info->tx_ctrl &= ~0x40);
  1859. e100_disable_rxdma_irq(info);
  1860. e100_disable_txdma_irq(info);
  1861. info->tr_running = 0;
  1862. /* reset both dma channels */
  1863. *info->icmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
  1864. *info->ocmdadr = IO_STATE(R_DMA_CH6_CMD, cmd, reset);
  1865. info->uses_dma = 0;
  1866. #endif /* CONFIG_SVINTO_SIM */
  1867. if (!(info->flags & ASYNC_INITIALIZED))
  1868. return;
  1869. #ifdef SERIAL_DEBUG_OPEN
  1870. printk("Shutting down serial port %d (irq %d)....n", info->line,
  1871.        info->irq);
  1872. #endif
  1873. save_flags(flags);
  1874. cli(); /* Disable interrupts */
  1875. if (info->xmit.buf) {
  1876. free_page((unsigned long)info->xmit.buf);
  1877. info->xmit.buf = NULL;
  1878. }
  1879. for (i = 0; i < SERIAL_RECV_DESCRIPTORS; i++)
  1880. if (descr[i].buf) {
  1881. buffer = phys_to_virt(descr[i].buf) - sizeof *buffer;
  1882. kfree(buffer);
  1883. descr[i].buf = 0;
  1884. }
  1885. if (!info->tty || (info->tty->termios->c_cflag & HUPCL)) {
  1886. /* hang up DTR and RTS if HUPCL is enabled */
  1887. e100_dtr(info, 0);
  1888. e100_rts(info, 0); /* could check CRTSCTS before doing this */
  1889. }
  1890. if (info->tty)
  1891. set_bit(TTY_IO_ERROR, &info->tty->flags);
  1892. info->flags &= ~ASYNC_INITIALIZED;
  1893. restore_flags(flags);
  1894. }
  1895. /* change baud rate and other assorted parameters */
  1896. static void 
  1897. change_speed(struct e100_serial *info)
  1898. {
  1899. unsigned int cflag;
  1900. /* first some safety checks */
  1901. if (!info->tty || !info->tty->termios)
  1902. return;
  1903. if (!info->port)
  1904. return;
  1905. cflag = info->tty->termios->c_cflag;
  1906. /* possibly, the tx/rx should be disabled first to do this safely */
  1907. /* change baud-rate and write it to the hardware */
  1908. info->baud = cflag_to_baud(cflag);
  1909. #ifndef CONFIG_SVINTO_SIM
  1910. info->port[REG_BAUD] = cflag_to_etrax_baud(cflag);
  1911. /* start with default settings and then fill in changes */
  1912. /* 8 bit, no/even parity */
  1913. info->rx_ctrl &= ~(IO_MASK(R_SERIAL0_REC_CTRL, rec_bitnr) |
  1914.    IO_MASK(R_SERIAL0_REC_CTRL, rec_par_en) |
  1915.    IO_MASK(R_SERIAL0_REC_CTRL, rec_par));
  1916. /* 8 bit, no/even parity, 1 stop bit, no cts */
  1917. info->tx_ctrl &= ~(IO_MASK(R_SERIAL0_TR_CTRL, tr_bitnr) |
  1918.    IO_MASK(R_SERIAL0_TR_CTRL, tr_par_en) |
  1919.    IO_MASK(R_SERIAL0_TR_CTRL, tr_par) |
  1920.    IO_MASK(R_SERIAL0_TR_CTRL, stop_bits) |
  1921.    IO_MASK(R_SERIAL0_TR_CTRL, auto_cts));
  1922. if ((cflag & CSIZE) == CS7) {
  1923. /* set 7 bit mode */
  1924. info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_bitnr, tr_7bit);
  1925. info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_bitnr, rec_7bit);
  1926. }
  1927. if (cflag & CSTOPB) {
  1928. /* set 2 stop bit mode */
  1929. info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, stop_bits, two_bits);
  1930. }   
  1931. if (cflag & PARENB) {
  1932. /* enable parity */
  1933. info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_par_en, enable);
  1934. info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_par_en, enable);
  1935. }
  1936. if (cflag & PARODD) {
  1937. /* set odd parity */
  1938. info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_par, odd);
  1939. info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_par, odd);
  1940. }
  1941. if (cflag & CRTSCTS) {
  1942. /* enable automatic CTS handling */
  1943. info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, auto_cts, active);
  1944. }
  1945. /* make sure the tx and rx are enabled */
  1946. info->tx_ctrl |= IO_STATE(R_SERIAL0_TR_CTRL, tr_enable, enable);
  1947. info->rx_ctrl |= IO_STATE(R_SERIAL0_REC_CTRL, rec_enable, enable);
  1948. /* actually write the control regs to the hardware */
  1949. info->port[REG_TR_CTRL] = info->tx_ctrl;
  1950. info->port[REG_REC_CTRL] = info->rx_ctrl;
  1951. *((unsigned long *)&info->port[REG_XOFF]) = 0;
  1952. #endif /* !CONFIG_SVINTO_SIM */
  1953. update_char_time(info);
  1954. } /* change_speed */
  1955. /* start transmitting chars NOW */
  1956. static void 
  1957. rs_flush_chars(struct tty_struct *tty)
  1958. {
  1959. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  1960. unsigned long flags;
  1961. if (info->tr_running ||
  1962.     info->xmit.head == info->xmit.tail ||
  1963.     tty->stopped ||
  1964.     tty->hw_stopped ||
  1965.     !info->xmit.buf)
  1966. return;
  1967. #ifdef SERIAL_DEBUG_FLOW
  1968. printk("rs_flush_charsn");
  1969. #endif
  1970. /* this protection might not exactly be necessary here */
  1971. save_flags(flags);
  1972. cli();
  1973. start_transmit(info);
  1974. restore_flags(flags);
  1975. }
  1976. static inline int 
  1977. raw_write(struct tty_struct * tty, int from_user,
  1978.   const unsigned char *buf, int count)
  1979. {
  1980. int c, ret = 0;
  1981. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  1982. unsigned long flags;
  1983. /* first some sanity checks */
  1984. if (!tty || !info->xmit.buf || !tmp_buf)
  1985. return 0;
  1986. #ifdef SERIAL_DEBUG_DATA
  1987. if (info->line == SERIAL_DEBUG_LINE)
  1988. printk("raw_write (%d), status %dn", 
  1989.        count, info->port[REG_STATUS]);
  1990. #endif
  1991. #ifdef CONFIG_SVINTO_SIM
  1992. /* Really simple.  The output is here and now. */
  1993. SIMCOUT(buf, count);
  1994. return count;
  1995. #endif
  1996. save_flags(flags);
  1997. /* the cli/restore_flags pairs below are needed because the
  1998.  * DMA interrupt handler moves the info->xmit values. the memcpy
  1999.  * needs to be in the critical region unfortunately, because we
  2000.  * need to read xmit values, memcpy, write xmit values in one
  2001.  * atomic operation... this could perhaps be avoided by more clever
  2002.  * design.
  2003.  */
  2004. if (from_user) {
  2005. down(&tmp_buf_sem);
  2006. while (1) {
  2007. int c1;
  2008. c = CIRC_SPACE_TO_END(info->xmit.head,
  2009.       info->xmit.tail,
  2010.       SERIAL_XMIT_SIZE);
  2011. if (count < c)
  2012. c = count;
  2013. if (c <= 0)
  2014. break;
  2015. c -= copy_from_user(tmp_buf, buf, c);
  2016. if (!c) {
  2017. if (!ret)
  2018. ret = -EFAULT;
  2019. break;
  2020. }
  2021. cli();
  2022. c1 = CIRC_SPACE_TO_END(info->xmit.head,
  2023.        info->xmit.tail,
  2024.        SERIAL_XMIT_SIZE);
  2025. if (c1 < c)
  2026. c = c1;
  2027. memcpy(info->xmit.buf + info->xmit.head, tmp_buf, c);
  2028. info->xmit.head = ((info->xmit.head + c) &
  2029.    (SERIAL_XMIT_SIZE-1));
  2030. restore_flags(flags);
  2031. buf += c;
  2032. count -= c;
  2033. ret += c;
  2034. }
  2035. up(&tmp_buf_sem);
  2036. } else {
  2037. cli();
  2038. while (1) {
  2039. c = CIRC_SPACE_TO_END(info->xmit.head,
  2040.       info->xmit.tail,
  2041.       SERIAL_XMIT_SIZE);
  2042. if (count < c)
  2043. c = count;
  2044. if (c <= 0)
  2045. break;
  2046. memcpy(info->xmit.buf + info->xmit.head, buf, c);
  2047. info->xmit.head = (info->xmit.head + c) &
  2048. (SERIAL_XMIT_SIZE-1);
  2049. buf += c;
  2050. count -= c;
  2051. ret += c;
  2052. }
  2053. restore_flags(flags);
  2054. }
  2055. /* enable transmitter if not running, unless the tty is stopped
  2056.  * this does not need IRQ protection since if tr_running == 0
  2057.  * the IRQ's are not running anyway for this port.
  2058.  */
  2059. if (info->xmit.head != info->xmit.tail &&
  2060.     !tty->stopped &&
  2061.     !tty->hw_stopped &&
  2062.     !info->tr_running) {
  2063. start_transmit(info);
  2064. }
  2065.  
  2066. return ret;
  2067. } /* raw_write() */
  2068. static int 
  2069. rs_write(struct tty_struct * tty, int from_user,
  2070.  const unsigned char *buf, int count)
  2071. {
  2072. #if defined(CONFIG_ETRAX_RS485)
  2073. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2074. if (info->rs485.enabled)
  2075. {
  2076. /* If we are in RS-485 mode, we need to toggle RTS and disable
  2077.  * the receiver before initiating a DMA transfer
  2078.  */
  2079. #ifdef CONFIG_ETRAX_FAST_TIMER
  2080. /* Abort any started timer */
  2081. fast_timers_rs485[info->line].function = NULL;
  2082. del_fast_timer(&fast_timers_rs485[info->line]);
  2083. #endif
  2084. e100_rts(info, info->rs485.rts_on_send);
  2085. #if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
  2086. e100_disable_rx(info);
  2087. e100_disable_rxdma_irq(info);
  2088. #endif
  2089. if (info->rs485.delay_rts_before_send > 0) {
  2090. set_current_state(TASK_INTERRUPTIBLE);
  2091. schedule_timeout((info->rs485.delay_rts_before_send * HZ)/1000);
  2092. }
  2093. }
  2094. #endif /* CONFIG_ETRAX_RS485 */
  2095. count = raw_write(tty, from_user, buf, count);
  2096. #if defined(CONFIG_ETRAX_RS485)
  2097. if (info->rs485.enabled)
  2098. {
  2099. unsigned int val;
  2100. /* If we are in RS-485 mode the following has to be done:
  2101.  * wait until DMA is ready
  2102.  * wait on transmit shift register
  2103.  * toggle RTS
  2104.  * enable the receiver
  2105.  */
  2106. /* Sleep until all sent */
  2107. tty_wait_until_sent(tty, 0);
  2108. #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
  2109. /* Now sleep a little more so that shift register is empty */
  2110. schedule_usleep(info->char_time_usec * 2);
  2111. #endif
  2112. /* wait on transmit shift register */
  2113. do{
  2114. get_lsr_info(info, &val);
  2115. }while (!(val & TIOCSER_TEMT));
  2116. e100_rts(info, info->rs485.rts_after_sent);
  2117. #if defined(CONFIG_ETRAX_RS485_DISABLE_RECEIVER)
  2118. e100_enable_rx(info);
  2119. e100_enable_rxdma_irq(info);
  2120. #endif
  2121. }
  2122. #endif /* CONFIG_ETRAX_RS485 */
  2123. return count;
  2124. } /* rs_write */
  2125. /* how much space is available in the xmit buffer? */
  2126. static int 
  2127. rs_write_room(struct tty_struct *tty)
  2128. {
  2129. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2130. return CIRC_SPACE(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
  2131. }
  2132. /* How many chars are in the xmit buffer?
  2133.  * This does not include any chars in the transmitter FIFO.
  2134.  * Use wait_until_sent for waiting for FIFO drain.
  2135.  */
  2136. static int 
  2137. rs_chars_in_buffer(struct tty_struct *tty)
  2138. {
  2139. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2140. return CIRC_CNT(info->xmit.head, info->xmit.tail, SERIAL_XMIT_SIZE);
  2141. }
  2142. /* discard everything in the xmit buffer */
  2143. static void 
  2144. rs_flush_buffer(struct tty_struct *tty)
  2145. {
  2146. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2147. unsigned long flags;
  2148. save_flags(flags);
  2149. cli();
  2150. info->xmit.head = info->xmit.tail = 0;
  2151. restore_flags(flags);
  2152. wake_up_interruptible(&tty->write_wait);
  2153. if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) &&
  2154.     tty->ldisc.write_wakeup)
  2155. (tty->ldisc.write_wakeup)(tty);
  2156. }
  2157. /*
  2158.  * This function is used to send a high-priority XON/XOFF character to
  2159.  * the device
  2160.  *
  2161.  * Since we don't bother to check for info->x_char in transmit_chars yet,
  2162.  * we don't really implement this function yet.
  2163.  */
  2164. static void rs_send_xchar(struct tty_struct *tty, char ch)
  2165. {
  2166. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2167. printk("serial.c:rs_send_xchar not implemented!n");
  2168. info->x_char = ch;
  2169. if (ch) {
  2170. /* Make sure transmit interrupts are on */
  2171. /* TODO. */
  2172. }
  2173. }
  2174. /*
  2175.  * ------------------------------------------------------------
  2176.  * rs_throttle()
  2177.  * 
  2178.  * This routine is called by the upper-layer tty layer to signal that
  2179.  * incoming characters should be throttled.
  2180.  * ------------------------------------------------------------
  2181.  */
  2182. static void 
  2183. rs_throttle(struct tty_struct * tty)
  2184. {
  2185. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2186. unsigned long flags;
  2187. #ifdef SERIAL_DEBUG_THROTTLE
  2188. char buf[64];
  2189. printk("throttle %s: %d....n", _tty_name(tty, buf),
  2190.        tty->ldisc.chars_in_buffer(tty));
  2191. #endif
  2192. if (I_IXOFF(tty))
  2193. info->x_char = STOP_CHAR(tty);
  2194. /* Turn off RTS line (do this atomic) should here be an else ?? */
  2195. save_flags(flags); 
  2196. cli();
  2197. e100_rts(info, 0);
  2198. restore_flags(flags);
  2199. }
  2200. static void 
  2201. rs_unthrottle(struct tty_struct * tty)
  2202. {
  2203. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2204. unsigned long flags;
  2205. #ifdef SERIAL_DEBUG_THROTTLE
  2206. char buf[64];
  2207. printk("unthrottle %s: %d....n", _tty_name(tty, buf),
  2208.        tty->ldisc.chars_in_buffer(tty));
  2209. #endif
  2210. if (I_IXOFF(tty)) {
  2211. if (info->x_char)
  2212. info->x_char = 0;
  2213. else
  2214. info->x_char = START_CHAR(tty);
  2215. }
  2216. /* Assert RTS line (do this atomic) */
  2217. save_flags(flags); 
  2218. cli();
  2219. e100_rts(info, 1);
  2220. restore_flags(flags);
  2221. }
  2222. /*
  2223.  * ------------------------------------------------------------
  2224.  * rs_ioctl() and friends
  2225.  * ------------------------------------------------------------
  2226.  */
  2227. static int 
  2228. get_serial_info(struct e100_serial * info,
  2229. struct serial_struct * retinfo)
  2230. {
  2231. struct serial_struct tmp;
  2232. /* this is all probably wrong, there are a lot of fields
  2233.  * here that we don't have in e100_serial and maybe we
  2234.  * should set them to something else than 0.
  2235.  */
  2236. if (!retinfo)
  2237. return -EFAULT;
  2238. memset(&tmp, 0, sizeof(tmp));
  2239. tmp.type = info->type;
  2240. tmp.line = info->line;
  2241. tmp.port = (int)info->port;
  2242. tmp.irq = info->irq;
  2243. tmp.flags = info->flags;
  2244. tmp.close_delay = info->close_delay;
  2245. tmp.closing_wait = info->closing_wait;
  2246. if (copy_to_user(retinfo, &tmp, sizeof(*retinfo)))
  2247. return -EFAULT;
  2248. return 0;
  2249. }
  2250. static int
  2251. set_serial_info(struct e100_serial *info,
  2252. struct serial_struct *new_info)
  2253. {
  2254. struct serial_struct new_serial;
  2255. struct e100_serial old_info;
  2256. int retval = 0;
  2257. if (copy_from_user(&new_serial, new_info, sizeof(new_serial)))
  2258. return -EFAULT;
  2259. old_info = *info;
  2260. if (!capable(CAP_SYS_ADMIN)) {
  2261. if ((new_serial.type != info->type) ||
  2262.     (new_serial.close_delay != info->close_delay) ||
  2263.     ((new_serial.flags & ~ASYNC_USR_MASK) !=
  2264.      (info->flags & ~ASYNC_USR_MASK)))
  2265. return -EPERM;
  2266. info->flags = ((info->flags & ~ASYNC_USR_MASK) |
  2267.        (new_serial.flags & ASYNC_USR_MASK));
  2268. goto check_and_exit;
  2269. }
  2270. if (info->count > 1)
  2271. return -EBUSY;
  2272. /*
  2273.  * OK, past this point, all the error checking has been done.
  2274.  * At this point, we start making changes.....
  2275.  */
  2276. info->flags = ((info->flags & ~ASYNC_FLAGS) |
  2277.        (new_serial.flags & ASYNC_FLAGS));
  2278. info->type = new_serial.type;
  2279. info->close_delay = new_serial.close_delay;
  2280. info->closing_wait = new_serial.closing_wait;
  2281. #if (LINUX_VERSION_CODE > 0x20100)
  2282. info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  2283. #endif
  2284.  check_and_exit:
  2285. if (info->flags & ASYNC_INITIALIZED) {
  2286. change_speed(info);
  2287. } else
  2288. retval = startup(info);
  2289. return retval;
  2290. }
  2291. /*
  2292.  * get_lsr_info - get line status register info
  2293.  *
  2294.  * Purpose: Let user call ioctl() to get info when the UART physically
  2295.  *      is emptied.  On bus types like RS485, the transmitter must
  2296.  *      release the bus after transmitting. This must be done when
  2297.  *      the transmit shift register is empty, not be done when the
  2298.  *      transmit holding register is empty.  This functionality
  2299.  *      allows an RS485 driver to be written in user space. 
  2300.  */
  2301. static int 
  2302. get_lsr_info(struct e100_serial * info, unsigned int *value)
  2303. {
  2304. unsigned int result = TIOCSER_TEMT;
  2305. #ifndef CONFIG_SVINTO_SIM
  2306. unsigned long curr_time = jiffies;
  2307. unsigned long curr_time_usec = GET_JIFFIES_USEC();
  2308. unsigned long elapsed_usec = 
  2309. (curr_time - info->last_tx_active) * 1000000/HZ + 
  2310. curr_time_usec - info->last_tx_active_usec;
  2311. if (info->xmit.head != info->xmit.tail || 
  2312.     elapsed_usec < 2*info->char_time_usec) {
  2313. result = 0;
  2314. }
  2315. #endif
  2316. if (copy_to_user(value, &result, sizeof(int)))
  2317. return -EFAULT;
  2318. return 0;
  2319. }
  2320. #ifdef SERIAL_DEBUG_IO 
  2321. struct state_str
  2322. {
  2323. int state;
  2324. const char *str;
  2325. };
  2326. const struct state_str control_state_str[] = {
  2327. {TIOCM_DTR, "DTR" },
  2328. {TIOCM_RTS, "RTS"},
  2329. {TIOCM_ST, "ST?" },
  2330. {TIOCM_SR, "SR?" },
  2331. {TIOCM_CTS, "CTS" },
  2332. {TIOCM_CD, "CD" },
  2333. {TIOCM_RI, "RI" },
  2334. {TIOCM_DSR, "DSR" },
  2335. {0, NULL }
  2336. };
  2337. char *get_control_state_str(int MLines, char *s)
  2338. {
  2339. int i = 0;
  2340. s[0]='';
  2341. while (control_state_str[i].str != NULL) {
  2342. if (MLines & control_state_str[i].state) {
  2343. if (s[0] != '') {
  2344. strcat(s, ", ");
  2345. }
  2346. strcat(s, control_state_str[i].str);
  2347. }
  2348. i++;
  2349. }
  2350. return s;
  2351. }
  2352. #endif
  2353. static int 
  2354. get_modem_info(struct e100_serial * info, unsigned int *value)
  2355. {
  2356. unsigned int result;
  2357. /* Polarity isn't verified */
  2358. #if 0 /*def SERIAL_DEBUG_IO  */
  2359. printk("get_modem_info: RTS: %i DTR: %i CD: %i RI: %i DSR: %i CTS: %in",
  2360.        E100_RTS_GET(info),
  2361.        E100_DTR_GET(info),
  2362.        E100_CD_GET(info),
  2363.        E100_RI_GET(info),
  2364.        E100_DSR_GET(info),
  2365.        E100_CTS_GET(info));
  2366. #endif
  2367. result =  
  2368. (!E100_RTS_GET(info) ? TIOCM_RTS : 0)
  2369. | (!E100_DTR_GET(info) ? TIOCM_DTR : 0)
  2370. | (!E100_CD_GET(info) ? TIOCM_CAR : 0)
  2371. | (!E100_RI_GET(info) ? TIOCM_RNG : 0)
  2372. | (!E100_DSR_GET(info) ? TIOCM_DSR : 0)
  2373. | (!E100_CTS_GET(info) ? TIOCM_CTS : 0);
  2374. #ifdef SERIAL_DEBUG_IO 
  2375. printk("e100ser: modem state: %i 0x%08Xn", result, result);
  2376. {
  2377. char s[100];
  2378. get_control_state_str(result, s);
  2379. printk("state: %sn", s);
  2380. }
  2381. #endif  
  2382. if (copy_to_user(value, &result, sizeof(int)))
  2383. return -EFAULT;
  2384. return 0;
  2385. }
  2386. static int
  2387. set_modem_info(struct e100_serial * info, unsigned int cmd,
  2388.        unsigned int *value)
  2389. {
  2390. unsigned int arg;
  2391. if (copy_from_user(&arg, value, sizeof(int)))
  2392. return -EFAULT;
  2393. switch (cmd) {
  2394. case TIOCMBIS: 
  2395. if (arg & TIOCM_RTS) {
  2396. e100_rts(info, 1);
  2397. }
  2398. if (arg & TIOCM_DTR) {
  2399. e100_dtr(info, 1);
  2400. }
  2401. /* Handle FEMALE behaviour */
  2402. if (arg & TIOCM_RI) {
  2403. e100_ri_out(info, 1);
  2404. }
  2405. if (arg & TIOCM_CD) {
  2406. e100_cd_out(info, 1);
  2407. }
  2408. break;
  2409. case TIOCMBIC:
  2410. if (arg & TIOCM_RTS) {
  2411. e100_rts(info, 0);
  2412. }
  2413. if (arg & TIOCM_DTR) {
  2414. e100_dtr(info, 0);
  2415. }
  2416. /* Handle FEMALE behaviour */
  2417. if (arg & TIOCM_RI) {
  2418. e100_ri_out(info, 0);
  2419. }
  2420. if (arg & TIOCM_CD) {
  2421. e100_cd_out(info, 0);
  2422. }
  2423. break;
  2424. case TIOCMSET:
  2425. e100_rts(info, arg & TIOCM_RTS);
  2426. e100_dtr(info, arg & TIOCM_DTR);
  2427. /* Handle FEMALE behaviour */
  2428. e100_ri_out(info, arg & TIOCM_RI);
  2429. e100_cd_out(info, arg & TIOCM_CD);
  2430. break;
  2431. default:
  2432. return -EINVAL;
  2433. }
  2434. return 0;
  2435. }
  2436. /*
  2437.  * This routine sends a break character out the serial port.
  2438.  */
  2439. #if (LINUX_VERSION_CODE < 131394) /* Linux 2.1.66 */
  2440. static void 
  2441. send_break(struct e100_serial * info, int duration)
  2442. {
  2443. unsigned long flags;
  2444. if (!info->port)
  2445. return;
  2446. current->state = TASK_INTERRUPTIBLE;
  2447. current->timeout = jiffies + duration;
  2448. save_flags(flags);
  2449. cli();
  2450. /* Go to manual mode and set the txd pin to 0 */
  2451. info->tx_ctrl &= 0x3F; /* Clear bit 7 (txd) and 6 (tr_enable) */
  2452. info->port[REG_TR_CTRL] = info->tx_ctrl;
  2453. /* wait for "duration" jiffies */
  2454. schedule();
  2455. info->tx_ctrl |= (0x80 | 0x40); /* Set bit 7 (txd) and 6 (tr_enable) */
  2456. info->port[REG_TR_CTRL] = info->tx_ctrl;
  2457. /* the DMA gets awfully confused if we toggle the tranceiver like this 
  2458.  * so we need to reset it 
  2459.  */
  2460. *info->ocmdadr = 4;
  2461. restore_flags(flags);
  2462. }
  2463. #else
  2464. static void 
  2465. rs_break(struct tty_struct *tty, int break_state)
  2466. {
  2467. struct e100_serial * info = (struct e100_serial *)tty->driver_data;
  2468. unsigned long flags;
  2469. if (!info->port)
  2470. return;
  2471. save_flags(flags);
  2472. cli();
  2473. if (break_state == -1) {
  2474. /* Go to manual mode and set the txd pin to 0 */
  2475. info->tx_ctrl &= 0x3F; /* Clear bit 7 (txd) and 6 (tr_enable) */
  2476. } else {
  2477. info->tx_ctrl |= (0x80 | 0x40); /* Set bit 7 (txd) and 6 (tr_enable) */
  2478. }
  2479. info->port[REG_TR_CTRL] = info->tx_ctrl;
  2480. restore_flags(flags);
  2481. }
  2482. #endif
  2483. static int 
  2484. rs_ioctl(struct tty_struct *tty, struct file * file,
  2485.  unsigned int cmd, unsigned long arg)
  2486. {
  2487. struct e100_serial * info = (struct e100_serial *)tty->driver_data;
  2488. #if (LINUX_VERSION_CODE < 131394) /* Linux 2.1.66 */
  2489. int error;
  2490. #endif
  2491. #if (LINUX_VERSION_CODE < 131394) /* Linux 2.1.66 */
  2492. int retval;
  2493. #endif
  2494. if ((cmd != TIOCGSERIAL) && (cmd != TIOCSSERIAL) &&
  2495.     (cmd != TIOCSERCONFIG) && (cmd != TIOCSERGWILD)  &&
  2496.     (cmd != TIOCSERSWILD) && (cmd != TIOCSERGSTRUCT)) {
  2497. if (tty->flags & (1 << TTY_IO_ERROR))
  2498. return -EIO;
  2499. }
  2500. switch (cmd) {
  2501. #if (LINUX_VERSION_CODE < 131394) /* Linux 2.1.66 */
  2502.         case TCSBRK: /* SVID version: non-zero arg --> no break */
  2503. retval = tty_check_change(tty);
  2504. if (retval)
  2505. return retval;
  2506. tty_wait_until_sent(tty, 0);
  2507. if (signal_pending(current))
  2508. return -EINTR;
  2509. if (!arg) {
  2510. send_break(info, HZ/4); /* 1/4 second */
  2511. if (signal_pending(current))
  2512. return -EINTR;
  2513. }
  2514. return 0;
  2515. case TCSBRKP: /* support for POSIX tcsendbreak() */
  2516. retval = tty_check_change(tty);
  2517. if (retval)
  2518. return retval;
  2519. tty_wait_until_sent(tty, 0);
  2520. if (signal_pending(current))
  2521. return -EINTR;
  2522. send_break(info, arg ? arg*(HZ/10) : HZ/4);
  2523. if (signal_pending(current))
  2524. return -EINTR;
  2525. return 0;
  2526. case TIOCGSOFTCAR:
  2527. error = verify_area(VERIFY_WRITE, (void *) arg,sizeof(long));
  2528. if (error)
  2529. return error;
  2530. put_fs_long(C_CLOCAL(tty) ? 1 : 0,
  2531.     (unsigned long *) arg);
  2532. return 0;
  2533. case TIOCSSOFTCAR:
  2534. arg = get_fs_long((unsigned long *) arg);
  2535. tty->termios->c_cflag =
  2536. ((tty->termios->c_cflag & ~CLOCAL) |
  2537.  (arg ? CLOCAL : 0));
  2538. return 0;
  2539. #endif
  2540. case TIOCMGET:
  2541. return get_modem_info(info, (unsigned int *) arg);
  2542. case TIOCMBIS:
  2543. case TIOCMBIC:
  2544. case TIOCMSET:
  2545. return set_modem_info(info, cmd, (unsigned int *) arg);
  2546. case TIOCGSERIAL:
  2547. return get_serial_info(info,
  2548.        (struct serial_struct *) arg);
  2549. case TIOCSSERIAL:
  2550. return set_serial_info(info,
  2551.        (struct serial_struct *) arg);
  2552. case TIOCSERGETLSR: /* Get line status register */
  2553. return get_lsr_info(info, (unsigned int *) arg);
  2554. case TIOCSERGSTRUCT:
  2555. if (copy_to_user((struct e100_serial *) arg,
  2556.  info, sizeof(struct e100_serial)))
  2557. return -EFAULT;
  2558. return 0;
  2559. #if defined(CONFIG_ETRAX_RS485)
  2560. case TIOCSERSETRS485:
  2561. {
  2562. struct rs485_control rs485ctrl;
  2563. if (copy_from_user(&rs485ctrl, (struct rs485_control*)arg, sizeof(rs485ctrl)))
  2564. return -EFAULT;
  2565. return e100_enable_rs485(tty, &rs485ctrl);
  2566. }
  2567. case TIOCSERWRRS485:
  2568. {
  2569. struct rs485_write rs485wr;
  2570. if (copy_from_user(&rs485wr, (struct rs485_write*)arg, sizeof(rs485wr)))
  2571. return -EFAULT;
  2572. return e100_write_rs485(tty, 1, rs485wr.outc, rs485wr.outc_size);
  2573. }
  2574. #endif
  2575. default:
  2576. return -ENOIOCTLCMD;
  2577. }
  2578. return 0;
  2579. }
  2580. static void 
  2581. rs_set_termios(struct tty_struct *tty, struct termios *old_termios)
  2582. {
  2583. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2584. if (tty->termios->c_cflag == old_termios->c_cflag)
  2585. return;
  2586. change_speed(info);
  2587. if ((old_termios->c_cflag & CRTSCTS) &&
  2588.     !(tty->termios->c_cflag & CRTSCTS)) {
  2589. tty->hw_stopped = 0;
  2590. rs_start(tty);
  2591. }
  2592. }
  2593. /*
  2594.  * ------------------------------------------------------------
  2595.  * rs_close()
  2596.  * 
  2597.  * This routine is called when the serial port gets closed.  First, we
  2598.  * wait for the last remaining data to be sent.  Then, we unlink its
  2599.  * S structure from the interrupt chain if necessary, and we free
  2600.  * that IRQ if nothing is left in the chain.
  2601.  * ------------------------------------------------------------
  2602.  */
  2603. static void 
  2604. rs_close(struct tty_struct *tty, struct file * filp)
  2605. {
  2606. struct e100_serial * info = (struct e100_serial *)tty->driver_data;
  2607. unsigned long flags;
  2608. if (!info)
  2609. return;
  2610.   
  2611. /* interrupts are disabled for this entire function */
  2612.   
  2613. save_flags(flags); 
  2614. cli();
  2615.   
  2616. if (tty_hung_up_p(filp)) {
  2617. restore_flags(flags);
  2618. return;
  2619. }
  2620.   
  2621. #ifdef SERIAL_DEBUG_OPEN
  2622. printk("[%d] rs_close ttyS%d, count = %dn", current->pid, 
  2623.        info->line, info->count);
  2624. #endif
  2625. if ((tty->count == 1) && (info->count != 1)) {
  2626. /*
  2627.  * Uh, oh.  tty->count is 1, which means that the tty
  2628.  * structure will be freed.  Info->count should always
  2629.  * be one in these conditions.  If it's greater than
  2630.  * one, we've got real problems, since it means the
  2631.  * serial port won't be shutdown.
  2632.  */
  2633. printk("rs_close: bad serial port count; tty->count is 1, "
  2634.        "info->count is %dn", info->count);
  2635. info->count = 1;
  2636. }
  2637. if (--info->count < 0) {
  2638. printk("rs_close: bad serial port count for ttyS%d: %dn",
  2639.        info->line, info->count);
  2640. info->count = 0;
  2641. }
  2642. if (info->count) {
  2643. restore_flags(flags);
  2644. return;
  2645. }
  2646. info->flags |= ASYNC_CLOSING;
  2647. /*
  2648.  * Save the termios structure, since this port may have
  2649.  * separate termios for callout and dialin.
  2650.  */
  2651. if (info->flags & ASYNC_NORMAL_ACTIVE)
  2652. info->normal_termios = *tty->termios;
  2653. if (info->flags & ASYNC_CALLOUT_ACTIVE)
  2654. info->callout_termios = *tty->termios;
  2655. /*
  2656.  * Now we wait for the transmit buffer to clear; and we notify 
  2657.  * the line discipline to only process XON/XOFF characters.
  2658.  */
  2659. tty->closing = 1;
  2660. if (info->closing_wait != ASYNC_CLOSING_WAIT_NONE)
  2661. tty_wait_until_sent(tty, info->closing_wait);
  2662. /*
  2663.  * At this point we stop accepting input.  To do this, we
  2664.  * disable the serial receiver and the DMA receive interrupt.
  2665.  */
  2666. #ifdef SERIAL_HANDLE_EARLY_ERRORS 
  2667. e100_disable_serial_data_irq(info);
  2668. #endif
  2669. #ifndef CONFIG_SVINTO_SIM
  2670. e100_disable_rx(info);
  2671. e100_disable_rxdma_irq(info);
  2672. if (info->flags & ASYNC_INITIALIZED) {
  2673. /*
  2674.  * Before we drop DTR, make sure the UART transmitter
  2675.  * has completely drained; this is especially
  2676.  * important as we have a transmit FIFO!
  2677.  */
  2678. rs_wait_until_sent(tty, HZ);
  2679. }
  2680. #endif
  2681. shutdown(info);
  2682. if (tty->driver.flush_buffer)
  2683. tty->driver.flush_buffer(tty);
  2684. if (tty->ldisc.flush_buffer)
  2685. tty->ldisc.flush_buffer(tty);
  2686. tty->closing = 0;
  2687. info->event = 0;
  2688. info->tty = 0;
  2689. if (info->blocked_open) {
  2690. if (info->close_delay) {
  2691. set_current_state(TASK_INTERRUPTIBLE);
  2692. schedule_timeout(info->close_delay);
  2693. }
  2694. wake_up_interruptible(&info->open_wait);
  2695. }
  2696. info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE|
  2697.  ASYNC_CLOSING);
  2698. wake_up_interruptible(&info->close_wait);
  2699. restore_flags(flags);
  2700. /* port closed */
  2701. #if defined(CONFIG_ETRAX_RS485)
  2702. if (info->rs485.enabled) {
  2703. info->rs485.enabled = 0;
  2704. #if defined(CONFIG_ETRAX_RS485_ON_PA)
  2705. *R_PORT_PA_DATA = port_pa_data_shadow &= ~(1 << rs485_pa_bit);
  2706. #endif
  2707. }
  2708. #endif
  2709. }
  2710. /*
  2711.  * rs_wait_until_sent() --- wait until the transmitter is empty
  2712.  */
  2713. static void rs_wait_until_sent(struct tty_struct *tty, int timeout)
  2714. {
  2715. unsigned long orig_jiffies;
  2716. struct e100_serial *info = (struct e100_serial *)tty->driver_data;
  2717. unsigned long curr_time = jiffies;
  2718. unsigned long curr_time_usec = GET_JIFFIES_USEC();
  2719. long elapsed_usec = 
  2720. (curr_time - info->last_tx_active) * (1000000/HZ) + 
  2721. curr_time_usec - info->last_tx_active_usec;
  2722. /*
  2723.  * Check R_DMA_CHx_STATUS bit 0-6=number of available bytes in FIFO
  2724.  * R_DMA_CHx_HWSW bit 31-16=nbr of bytes left in DMA buffer (0=64k)
  2725.  */
  2726. orig_jiffies = jiffies;
  2727. while (info->xmit.head != info->xmit.tail || /* More in send queue */
  2728.        (*info->ostatusadr & 0x007f) ||  /* more in FIFO */
  2729.        (elapsed_usec < 2*info->char_time_usec)) {
  2730. set_current_state(TASK_INTERRUPTIBLE);
  2731. schedule_timeout(1);
  2732. if (signal_pending(current))
  2733. break;
  2734. if (timeout && time_after(jiffies, orig_jiffies + timeout))
  2735. break;
  2736. curr_time = jiffies;
  2737. curr_time_usec = GET_JIFFIES_USEC();
  2738. elapsed_usec = 
  2739. (curr_time - info->last_tx_active) * (1000000/HZ) + 
  2740. curr_time_usec - info->last_tx_active_usec;
  2741. }
  2742. set_current_state(TASK_RUNNING);
  2743. }
  2744. /*
  2745.  * rs_hangup() --- called by tty_hangup() when a hangup is signaled.
  2746.  */
  2747. void 
  2748. rs_hangup(struct tty_struct *tty)
  2749. {
  2750. struct e100_serial * info = (struct e100_serial *)tty->driver_data;
  2751. rs_flush_buffer(tty);
  2752. shutdown(info);
  2753. info->event = 0;
  2754. info->count = 0;
  2755. info->flags &= ~(ASYNC_NORMAL_ACTIVE|ASYNC_CALLOUT_ACTIVE);
  2756. info->tty = 0;
  2757. wake_up_interruptible(&info->open_wait);
  2758. }
  2759. /*
  2760.  * ------------------------------------------------------------
  2761.  * rs_open() and friends
  2762.  * ------------------------------------------------------------
  2763.  */
  2764. static int 
  2765. block_til_ready(struct tty_struct *tty, struct file * filp,
  2766. struct e100_serial *info)
  2767. {
  2768. DECLARE_WAITQUEUE(wait, current);
  2769. unsigned long flags;
  2770. int retval;
  2771. int do_clocal = 0, extra_count = 0;
  2772. /*
  2773.  * If the device is in the middle of being closed, then block
  2774.  * until it's done, and then try again.
  2775.  */
  2776. if (tty_hung_up_p(filp) ||
  2777.     (info->flags & ASYNC_CLOSING)) {
  2778. if (info->flags & ASYNC_CLOSING)
  2779. interruptible_sleep_on(&info->close_wait);
  2780. #ifdef SERIAL_DO_RESTART
  2781. if (info->flags & ASYNC_HUP_NOTIFY)
  2782. return -EAGAIN;
  2783. else
  2784. return -ERESTARTSYS;
  2785. #else
  2786. return -EAGAIN;
  2787. #endif
  2788. }
  2789.   
  2790. /*
  2791.  * If this is a callout device, then just make sure the normal
  2792.  * device isn't being used.
  2793.  */
  2794. if (tty->driver.subtype == SERIAL_TYPE_CALLOUT) {
  2795. if (info->flags & ASYNC_NORMAL_ACTIVE)
  2796. return -EBUSY;
  2797. if ((info->flags & ASYNC_CALLOUT_ACTIVE) &&
  2798.     (info->flags & ASYNC_SESSION_LOCKOUT) &&
  2799.     (info->session != current->session))
  2800. return -EBUSY;
  2801. if ((info->flags & ASYNC_CALLOUT_ACTIVE) &&
  2802.     (info->flags & ASYNC_PGRP_LOCKOUT) &&
  2803.     (info->pgrp != current->pgrp))
  2804. return -EBUSY;
  2805. info->flags |= ASYNC_CALLOUT_ACTIVE;
  2806. return 0;
  2807. }
  2808. /*
  2809.  * If non-blocking mode is set, or the port is not enabled,
  2810.  * then make the check up front and then exit.
  2811.  */
  2812. if ((filp->f_flags & O_NONBLOCK) ||
  2813.     (tty->flags & (1 << TTY_IO_ERROR))) {
  2814. if (info->flags & ASYNC_CALLOUT_ACTIVE)
  2815. return -EBUSY;
  2816. info->flags |= ASYNC_NORMAL_ACTIVE;
  2817. return 0;
  2818. }
  2819. if (info->flags & ASYNC_CALLOUT_ACTIVE) {
  2820. if (info->normal_termios.c_cflag & CLOCAL)
  2821. do_clocal = 1;
  2822. } else {
  2823. if (tty->termios->c_cflag & CLOCAL)
  2824. do_clocal = 1;
  2825. }
  2826. /*
  2827.  * Block waiting for the carrier detect and the line to become
  2828.  * free (i.e., not in use by the callout).  While we are in
  2829.  * this loop, info->count is dropped by one, so that
  2830.  * rs_close() knows when to free things.  We restore it upon
  2831.  * exit, either normal or abnormal.
  2832.  */
  2833. retval = 0;
  2834. add_wait_queue(&info->open_wait, &wait);
  2835. #ifdef SERIAL_DEBUG_OPEN
  2836. printk("block_til_ready before block: ttyS%d, count = %dn",
  2837.        info->line, info->count);
  2838. #endif
  2839. save_flags(flags); 
  2840. cli();
  2841. if (!tty_hung_up_p(filp)) {
  2842. extra_count++;
  2843. info->count--;
  2844. }
  2845. restore_flags(flags);
  2846. info->blocked_open++;
  2847. while (1) {
  2848. save_flags(flags);
  2849. cli();
  2850. if (!(info->flags & ASYNC_CALLOUT_ACTIVE)) {
  2851. /* assert RTS and DTR */
  2852. e100_rts(info, 1);
  2853. e100_dtr(info, 1);
  2854. }
  2855. restore_flags(flags);
  2856. set_current_state(TASK_INTERRUPTIBLE);
  2857. if (tty_hung_up_p(filp) ||
  2858.     !(info->flags & ASYNC_INITIALIZED)) {
  2859. #ifdef SERIAL_DO_RESTART
  2860. if (info->flags & ASYNC_HUP_NOTIFY)
  2861. retval = -EAGAIN;
  2862. else
  2863. retval = -ERESTARTSYS;
  2864. #else
  2865. retval = -EAGAIN;
  2866. #endif
  2867. break;
  2868. }
  2869. if (!(info->flags & ASYNC_CALLOUT_ACTIVE) &&
  2870.     !(info->flags & ASYNC_CLOSING) && do_clocal)
  2871. /* && (do_clocal || DCD_IS_ASSERTED) */
  2872. break;
  2873. if (signal_pending(current)) {
  2874. retval = -ERESTARTSYS;
  2875. break;
  2876. }
  2877. #ifdef SERIAL_DEBUG_OPEN
  2878. printk("block_til_ready blocking: ttyS%d, count = %dn",
  2879.        info->line, info->count);
  2880. #endif
  2881. schedule();
  2882. }
  2883. set_current_state(TASK_RUNNING);
  2884. remove_wait_queue(&info->open_wait, &wait);
  2885. if (extra_count)
  2886. info->count++;
  2887. info->blocked_open--;
  2888. #ifdef SERIAL_DEBUG_OPEN
  2889. printk("block_til_ready after blocking: ttyS%d, count = %dn",
  2890.        info->line, info->count);
  2891. #endif
  2892. if (retval)
  2893. return retval;
  2894. info->flags |= ASYNC_NORMAL_ACTIVE;
  2895. return 0;
  2896. }
  2897. /*
  2898.  * This routine is called whenever a serial port is opened. 
  2899.  * It performs the serial-specific initialization for the tty structure.
  2900.  */
  2901. static int 
  2902. rs_open(struct tty_struct *tty, struct file * filp)
  2903. {
  2904. struct e100_serial *info;
  2905. int  retval, line;
  2906. unsigned long           page;
  2907. /* find which port we want to open */
  2908. line = MINOR(tty->device) - tty->driver.minor_start;
  2909.   
  2910. if (line < 0 || line >= NR_PORTS)
  2911. return -ENODEV;
  2912. /* find the corresponding e100_serial struct in the table */
  2913. info = rs_table + line;
  2914. /* don't allow the opening of ports that are not enabled in the HW config */
  2915. if (!info->enabled)
  2916. return -ENODEV; 
  2917.   
  2918. #ifdef SERIAL_DEBUG_OPEN
  2919. printk("[%d] rs_open %s%d, count = %dn", current->pid,
  2920.        tty->driver.name, info->line,
  2921.        info->count);
  2922. #endif
  2923. info->count++;
  2924. tty->driver_data = info;
  2925. info->tty = tty;
  2926. #if (LINUX_VERSION_CODE > 0x20100)
  2927. info->tty->low_latency = (info->flags & ASYNC_LOW_LATENCY) ? 1 : 0;
  2928. #endif
  2929. if (!tmp_buf) {
  2930. page = get_zeroed_page(GFP_KERNEL);
  2931. if (!page) {
  2932. return -ENOMEM;
  2933. }
  2934. if (tmp_buf)
  2935. free_page(page);
  2936. else
  2937. tmp_buf = (unsigned char *) page;
  2938. }
  2939. /*
  2940.  * If the port is in the middle of closing, bail out now
  2941.  */
  2942. if (tty_hung_up_p(filp) ||
  2943.     (info->flags & ASYNC_CLOSING)) {
  2944. if (info->flags & ASYNC_CLOSING)
  2945. interruptible_sleep_on(&info->close_wait);
  2946. #ifdef SERIAL_DO_RESTART
  2947. return ((info->flags & ASYNC_HUP_NOTIFY) ?
  2948. -EAGAIN : -ERESTARTSYS);
  2949. #else
  2950. return -EAGAIN;
  2951. #endif
  2952. }
  2953. /*
  2954.  * Start up the serial port
  2955.  */
  2956. retval = startup(info);
  2957. if (retval)
  2958. return retval;
  2959.   
  2960. retval = block_til_ready(tty, filp, info);
  2961. if (retval) {
  2962. #ifdef SERIAL_DEBUG_OPEN
  2963. printk("rs_open returning after block_til_ready with %dn",
  2964.        retval);
  2965. #endif
  2966. return retval;
  2967. }
  2968. if ((info->count == 1) && (info->flags & ASYNC_SPLIT_TERMIOS)) {
  2969. if (tty->driver.subtype == SERIAL_TYPE_NORMAL)
  2970. *tty->termios = info->normal_termios;
  2971. else 
  2972. *tty->termios = info->callout_termios;
  2973. change_speed(info);
  2974. }
  2975. info->session = current->session;
  2976. info->pgrp = current->pgrp;
  2977.   
  2978. #ifdef SERIAL_DEBUG_OPEN
  2979. printk("rs_open ttyS%d successful...n", info->line);
  2980. #endif
  2981. return 0;
  2982. }
  2983. /*
  2984.  * /proc fs routines....
  2985.  */
  2986. static inline int line_info(char *buf, struct e100_serial *info)
  2987. {
  2988. char stat_buf[30];
  2989. int ret;
  2990. ret = sprintf(buf, "%d: uart:E100 port:%lX irq:%d",
  2991.       info->line, (unsigned long)info->port, info->irq);
  2992. if (!info->port || (info->type == PORT_UNKNOWN)) {
  2993. ret += sprintf(buf+ret, "n");
  2994. return ret;
  2995. }
  2996. stat_buf[0] = 0;
  2997. stat_buf[1] = 0;
  2998. if (E100_RTS_GET(info))
  2999. strcat(stat_buf, "|RTS");
  3000. if (E100_CTS_GET(info))
  3001. strcat(stat_buf, "|CTS");
  3002. if (E100_DTR_GET(info))
  3003. strcat(stat_buf, "|DTR");
  3004. if (E100_DSR_GET(info))
  3005. strcat(stat_buf, "|DSR");
  3006. if (E100_CD_GET(info))
  3007. strcat(stat_buf, "|CD");
  3008. if (E100_RI_GET(info))
  3009. strcat(stat_buf, "|RI");
  3010. ret += sprintf(buf+ret, " baud:%d", info->baud);
  3011. ret += sprintf(buf+ret, " tx:%lu rx:%lu",
  3012.        (unsigned long)info->icount.tx,
  3013.        (unsigned long)info->icount.rx);
  3014. ret += sprintf(buf+ret, " rx_pend:%lu/%lu",
  3015.        (unsigned long)info->recv_cnt,
  3016.        (unsigned long)info->max_recv_cnt);
  3017. if (info->icount.frame)
  3018. ret += sprintf(buf+ret, " fe:%lu",
  3019.        (unsigned long)info->icount.frame);
  3020. if (info->icount.parity)
  3021. ret += sprintf(buf+ret, " pe:%lu",
  3022.        (unsigned long)info->icount.parity);
  3023. if (info->icount.brk)
  3024. ret += sprintf(buf+ret, " brk:%lu",
  3025.        (unsigned long)info->icount.brk);
  3026. if (info->icount.overrun)
  3027. ret += sprintf(buf+ret, " oe:%lu",
  3028.        (unsigned long)info->icount.overrun);
  3029. /*
  3030.  * Last thing is the RS-232 status lines
  3031.  */
  3032. ret += sprintf(buf+ret, " %sn", stat_buf+1);
  3033. return ret;
  3034. }
  3035. int rs_read_proc(char *page, char **start, off_t off, int count,
  3036.  int *eof, void *data)
  3037. {
  3038. int i, len = 0, l;
  3039. off_t begin = 0;
  3040. len += sprintf(page, "serinfo:1.0 driver:%sn",
  3041.        serial_version);
  3042. for (i = 0; i < NR_PORTS && len < 4000; i++) {
  3043. if (!rs_table[i].enabled) 
  3044. continue; 
  3045. l = line_info(page + len, &rs_table[i]);
  3046. len += l;
  3047. if (len+begin > off+count)
  3048. goto done;
  3049. if (len+begin < off) {
  3050. begin += len;
  3051. len = 0;
  3052. }
  3053. }
  3054. *eof = 1;
  3055. done:
  3056. if (off >= len+begin)
  3057. return 0;
  3058. *start = page + (off-begin);
  3059. return ((count < begin+len-off) ? count : begin+len-off);
  3060. }
  3061. /* Finally, routines used to initialize the serial driver. */
  3062. static void 
  3063. show_serial_version(void)
  3064. {
  3065. printk("ETRAX 100LX serial-driver %s, (c) 2000-2002 Axis Communications ABrn",
  3066.        &serial_version[11]); /* "$Revision: x.yy" */
  3067. }
  3068. /* rs_init inits the driver at boot (using the module_init chain) */
  3069. static int __init
  3070. rs_init(void)
  3071. {
  3072. int i;
  3073. struct e100_serial *info;
  3074. show_serial_version();
  3075.         
  3076. init_bh(SERIAL_BH, do_serial_bh);
  3077. /* Setup the timed flush handler system */
  3078. #if !defined(CONFIG_ETRAX_SERIAL_FAST_TIMER) && !defined(CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST)
  3079. init_timer(&flush_timer);
  3080. flush_timer.function = timed_flush_handler;
  3081. mod_timer(&flush_timer, jiffies + CONFIG_ETRAX_SERIAL_RX_TIMEOUT_TICKS);
  3082. #endif
  3083. /* Initialize the tty_driver structure */
  3084.   
  3085. memset(&serial_driver, 0, sizeof(struct tty_driver));
  3086. serial_driver.magic = TTY_DRIVER_MAGIC;
  3087. #if (LINUX_VERSION_CODE > 0x20100)
  3088. serial_driver.driver_name = "serial";
  3089. #endif
  3090. serial_driver.name = "ttyS";
  3091. serial_driver.major = TTY_MAJOR;
  3092. serial_driver.minor_start = 64;
  3093. serial_driver.num = NR_PORTS;       /* etrax100 has 4 serial ports */
  3094. serial_driver.type = TTY_DRIVER_TYPE_SERIAL;
  3095. serial_driver.subtype = SERIAL_TYPE_NORMAL;
  3096. serial_driver.init_termios = tty_std_termios;
  3097. serial_driver.init_termios.c_cflag =
  3098. B115200 | CS8 | CREAD | HUPCL | CLOCAL; /* is normally B9600 default... */
  3099. serial_driver.flags = TTY_DRIVER_REAL_RAW | TTY_DRIVER_NO_DEVFS;
  3100. serial_driver.refcount = &serial_refcount;
  3101. serial_driver.table = serial_table;
  3102. serial_driver.termios = serial_termios;
  3103. serial_driver.termios_locked = serial_termios_locked;
  3104.   
  3105. serial_driver.open = rs_open;
  3106. serial_driver.close = rs_close;
  3107. serial_driver.write = rs_write;
  3108. /* should we have an rs_put_char as well here ? */
  3109. serial_driver.flush_chars = rs_flush_chars;
  3110. serial_driver.write_room = rs_write_room;
  3111. serial_driver.chars_in_buffer = rs_chars_in_buffer;
  3112. serial_driver.flush_buffer = rs_flush_buffer;
  3113. serial_driver.ioctl = rs_ioctl;
  3114. serial_driver.throttle = rs_throttle;
  3115. serial_driver.unthrottle = rs_unthrottle;
  3116. serial_driver.set_termios = rs_set_termios;
  3117. serial_driver.stop = rs_stop;
  3118. serial_driver.start = rs_start;
  3119. serial_driver.hangup = rs_hangup;
  3120. #if (LINUX_VERSION_CODE >= 131394) /* Linux 2.1.66 */
  3121. serial_driver.break_ctl = rs_break;
  3122. #endif
  3123. #if (LINUX_VERSION_CODE >= 131343)
  3124. serial_driver.send_xchar = rs_send_xchar;
  3125. serial_driver.wait_until_sent = rs_wait_until_sent;
  3126. serial_driver.read_proc = rs_read_proc;
  3127. #endif
  3128.   
  3129. /*
  3130.  * The callout device is just like normal device except for
  3131.  * major number and the subtype code.
  3132.  */
  3133. callout_driver = serial_driver;
  3134. callout_driver.name = "cua";
  3135. callout_driver.major = TTYAUX_MAJOR;
  3136. callout_driver.subtype = SERIAL_TYPE_CALLOUT;
  3137. #if (LINUX_VERSION_CODE >= 131343)
  3138. callout_driver.read_proc = 0;
  3139. callout_driver.proc_entry = 0;
  3140. #endif
  3141.   
  3142. if (tty_register_driver(&serial_driver))
  3143. panic("Couldn't register serial drivern");
  3144. if (tty_register_driver(&callout_driver))
  3145. panic("Couldn't register callout drivern");
  3146.   
  3147. /* do some initializing for the separate ports */
  3148.   
  3149. for (i = 0, info = rs_table; i < NR_PORTS; i++,info++) {
  3150. info->uses_dma = 0;   
  3151. info->line = i;
  3152. info->tty = 0;
  3153. info->type = PORT_ETRAX;
  3154. info->tr_running = 0;
  3155. info->forced_eop = 0;
  3156. info->flags = 0;
  3157. info->close_delay = 5*HZ/10;
  3158. info->closing_wait = 30*HZ;
  3159. info->x_char = 0;
  3160. info->event = 0;
  3161. info->count = 0;
  3162. info->blocked_open = 0;
  3163. info->tqueue.routine = do_softint;
  3164. info->tqueue.data = info;
  3165. info->callout_termios = callout_driver.init_termios;
  3166. info->normal_termios = serial_driver.init_termios;
  3167. init_waitqueue_head(&info->open_wait);
  3168. init_waitqueue_head(&info->close_wait);
  3169. info->xmit.buf = NULL;
  3170. info->xmit.tail = info->xmit.head = 0;
  3171. info->first_recv_buffer = info->last_recv_buffer = NULL;
  3172. info->recv_cnt = info->max_recv_cnt = 0;
  3173. info->last_tx_active_usec = 0;
  3174. info->last_tx_active = 0;
  3175. #if defined(CONFIG_ETRAX_RS485)
  3176. /* Set sane defaults */
  3177. info->rs485.rts_on_send = 0;
  3178. info->rs485.rts_after_sent = 1;
  3179. info->rs485.delay_rts_before_send = 0;
  3180. info->rs485.enabled = 0;
  3181. #endif
  3182. if (info->enabled) {
  3183. printk(KERN_INFO "%s%d at 0x%x is a builtin UART with DMAn",
  3184.        serial_driver.name, info->line, (unsigned int)info->port);
  3185. }
  3186. }
  3187. #ifdef CONFIG_ETRAX_FAST_TIMER
  3188. #ifdef CONFIG_ETRAX_SERIAL_FAST_TIMER
  3189. memset(fast_timers, 0, sizeof(fast_timers));
  3190. #endif
  3191. #ifdef CONFIG_ETRAX_RS485
  3192. memset(fast_timers_rs485, 0, sizeof(fast_timers_rs485));
  3193. #endif
  3194. fast_timer_init();
  3195. #endif
  3196. #ifndef CONFIG_SVINTO_SIM
  3197. /* Not needed in simulator.  May only complicate stuff. */
  3198. /* hook the irq's for DMA channel 6 and 7, serial output and input, and some more... */
  3199. #ifdef CONFIG_ETRAX_SERIAL_PORT0
  3200. if (request_irq(SER0_DMA_TX_IRQ_NBR, tr_interrupt, SA_INTERRUPT, "serial 0 dma tr", NULL))
  3201. panic("irq22");
  3202. if (request_irq(SER0_DMA_RX_IRQ_NBR, rec_interrupt, SA_INTERRUPT, "serial 0 dma rec", NULL))
  3203. panic("irq23");
  3204. #endif
  3205. #ifdef SERIAL_HANDLE_EARLY_ERRORS
  3206. if (request_irq(SERIAL_IRQ_NBR, ser_interrupt, SA_SHIRQ | SA_INTERRUPT, "serial ", NULL))
  3207. panic("irq8");
  3208. #endif
  3209. #ifdef CONFIG_ETRAX_SERIAL_PORT1
  3210. if (request_irq(SER1_DMA_TX_IRQ_NBR, tr_interrupt, SA_INTERRUPT, "serial 1 dma tr", NULL))
  3211. panic("irq24");
  3212. if (request_irq(SER1_DMA_RX_IRQ_NBR, rec_interrupt, SA_INTERRUPT, "serial 1 dma rec", NULL))
  3213. panic("irq25");
  3214. #endif
  3215. #ifdef CONFIG_ETRAX_SERIAL_PORT2
  3216. /* DMA Shared with par0 (and SCSI0 and ATA) */
  3217. if (request_irq(SER2_DMA_TX_IRQ_NBR, tr_interrupt, SA_SHIRQ, "serial 2 dma tr", NULL))
  3218. panic("irq18");
  3219. if (request_irq(SER2_DMA_RX_IRQ_NBR, rec_interrupt, SA_SHIRQ, "serial 2 dma rec", NULL))
  3220. panic("irq19");
  3221. #endif
  3222. #ifdef CONFIG_ETRAX_SERIAL_PORT3
  3223. /* DMA Shared with par1 (and SCSI1 and Extern DMA 0) */
  3224. if (request_irq(SER3_DMA_TX_IRQ_NBR, tr_interrupt, SA_SHIRQ, "serial 3 dma tr", NULL))
  3225. panic("irq20");
  3226. if (request_irq(SER3_DMA_RX_IRQ_NBR, rec_interrupt, SA_SHIRQ, "serial 3 dma rec", NULL))
  3227. panic("irq21");
  3228. #endif
  3229. #ifdef CONFIG_ETRAX_SERIAL_FLUSH_DMA_FAST
  3230. if (request_irq(TIMER1_IRQ_NBR, timeout_interrupt, SA_SHIRQ | SA_INTERRUPT,
  3231.        "fast serial dma timeout", NULL)) {
  3232. printk("err: timer1 irqn");
  3233. }
  3234. #endif
  3235. #endif /* CONFIG_SVINTO_SIM */
  3236. return 0;
  3237. }
  3238. /* this makes sure that rs_init is called during kernel boot */
  3239. module_init(rs_init);
  3240. /*
  3241.  * register_serial and unregister_serial allows for serial ports to be
  3242.  * configured at run-time, to support PCMCIA modems.
  3243.  */
  3244. int 
  3245. register_serial(struct serial_struct *req)
  3246. {
  3247. return -1;
  3248. }
  3249. void unregister_serial(int line)
  3250. {
  3251. }