serial.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:4k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * serial.h: Arch-dep definitions for the Etrax100 serial driver.
  3.  *
  4.  * Copyright (C) 1998, 1999, 2000 Axis Communications AB
  5.  */
  6. #ifndef _ETRAX_SERIAL_H
  7. #define _ETRAX_SERIAL_H
  8. #include <linux/config.h>
  9. #include <linux/circ_buf.h>
  10. #include <asm/termios.h>
  11. /* Software state per channel */
  12. #ifdef __KERNEL__
  13. /*
  14.  * This is our internal structure for each serial port's state.
  15.  * 
  16.  * Many fields are paralleled by the structure used by the serial_struct
  17.  * structure.
  18.  *
  19.  * For definitions of the flags field, see tty.h
  20.  */
  21. #define SERIAL_RECV_DESCRIPTORS 8
  22. struct etrax_recv_buffer {
  23. struct etrax_recv_buffer *next;
  24. unsigned short length;
  25. unsigned char error;
  26. unsigned char pad;
  27. unsigned char buffer[0];
  28. };
  29. struct e100_serial {
  30. int baud;
  31. volatile u8 *port; /* R_SERIALx_CTRL */
  32. u32 irq;  /* bitnr in R_IRQ_MASK2 for dmaX_descr */
  33. /* Output registers */
  34. volatile u8 *oclrintradr; /* adr to R_DMA_CHx_CLR_INTR */
  35. volatile u32 *ofirstadr;   /* adr to R_DMA_CHx_FIRST */
  36. volatile u8 *ocmdadr;     /* adr to R_DMA_CHx_CMD */
  37. const volatile u8 *ostatusadr;  /* adr to R_DMA_CHx_STATUS */
  38. volatile u32 *ohwswadr;    /* adr to R_DMA_CHx_HWSW */
  39. volatile u32 *odescradr;   /* adr to R_DMA_CHx_DESCR */
  40. /* Input registers */
  41. volatile u8 *iclrintradr; /* adr to R_DMA_CHx_CLR_INTR */
  42. volatile u32 *ifirstadr;   /* adr to R_DMA_CHx_FIRST */
  43. volatile u8 *icmdadr;     /* adr to R_DMA_CHx_CMD */
  44. const volatile u8 *istatusadr;  /* adr to R_DMA_CHx_STATUS */
  45. volatile u32 *ihwswadr;    /* adr to R_DMA_CHx_HWSW */
  46. volatile u32 *idescradr;   /* adr to R_DMA_CHx_DESCR */
  47. int flags; /* defined in tty.h */
  48. u8 rx_ctrl; /* shadow for R_SERIALx_REC_CTRL */
  49. u8 tx_ctrl; /* shadow for R_SERIALx_TR_CTRL */
  50. u8 iseteop; /* bit number for R_SET_EOP for the input dma */
  51. int enabled; /* Set to 1 if the port is enabled in HW config */
  52.   
  53. /* end of fields defined in rs_table[] in .c-file */
  54. int uses_dma; /* Set to 1 if DMA should be used */
  55. unsigned char           forced_eop; /* a fifo eop has been forced */
  56. struct etrax_dma_descr tr_descr;
  57. struct etrax_dma_descr rec_descr[SERIAL_RECV_DESCRIPTORS];
  58. int cur_rec_descr;
  59. volatile int tr_running; /* 1 if output is running */
  60. struct tty_struct *tty;
  61. int read_status_mask;
  62. int ignore_status_mask;
  63. int x_char; /* xon/xoff character */
  64. int close_delay;
  65. unsigned short closing_wait;
  66. unsigned short closing_wait2;
  67. unsigned long event;
  68. unsigned long last_active;
  69. int line;
  70. int type;  /* PORT_ETRAX */
  71. int count;     /* # of fd on device */
  72. int blocked_open; /* # of blocked opens */
  73. long session; /* Session of opening process */
  74. long pgrp; /* pgrp of opening process */
  75. struct circ_buf xmit;
  76. struct etrax_recv_buffer *first_recv_buffer;
  77. struct etrax_recv_buffer *last_recv_buffer;
  78. unsigned int recv_cnt;
  79. unsigned int max_recv_cnt;
  80. struct tq_struct tqueue;
  81. struct async_icount icount;   /* error-statistics etc.*/
  82. struct termios normal_termios;
  83. struct termios callout_termios;
  84. #ifdef DECLARE_WAITQUEUE
  85. wait_queue_head_t open_wait;
  86. wait_queue_head_t close_wait;
  87. #else
  88. struct wait_queue *open_wait;
  89. struct wait_queue *close_wait;
  90. #endif  
  91. unsigned long char_time_usec;       /* The time for 1 char, in usecs */
  92. unsigned long last_tx_active_usec;  /* Last tx usec in the jiffies */
  93. unsigned long last_tx_active;       /* Last tx time in jiffies */
  94. unsigned long last_rx_active_usec;  /* Last rx usec in the jiffies */
  95. unsigned long last_rx_active;       /* Last rx time in jiffies */
  96. int break_detected_cnt;
  97. int errorcode;
  98. #ifdef CONFIG_RS485
  99. struct rs485_control rs485;  /* RS-485 support */
  100. #endif
  101. };
  102. /* this PORT is not in the standard serial.h. it's not actually used for
  103.  * anything since we only have one type of async serial-port anyway in this
  104.  * system.
  105.  */
  106. #define PORT_ETRAX 1
  107. /*
  108.  * Events are used to schedule things to happen at timer-interrupt
  109.  * time, instead of at rs interrupt time.
  110.  */
  111. #define RS_EVENT_WRITE_WAKEUP 0
  112. #endif /* __KERNEL__ */
  113. #endif /* !_ETRAX_SERIAL_H */