cronyx.h
来自「基于组件方式开发操作系统的OSKIT源代码」· C头文件 代码 · 共 496 行 · 第 1/2 页
H
496 行
} cx_cor1_x21_t;typedef struct { /* channel option register 2 */ unsigned zero1 : 5; unsigned etc : 1; /* embedded transmitter command enable */ unsigned zero2 : 2;} cx_cor2_x21_t;typedef struct { /* channel option register 3 */ unsigned zero : 4; unsigned scde : 1; /* special character detect enable */ unsigned stripsyn : 1; /* treat SYN chars as special condition */ unsigned ssde : 1; /* steady state detect enable */ unsigned syn : 1; /* the number of SYN chars on receive */} cx_cor3_x21_t;typedef struct { /* channel option register 6 */ unsigned char synchar; /* syn character */} cx_cor6_x21_t;typedef struct { /* x21 channel options */ cx_cor1_x21_t cor1; /* channel option register 1 */ cx_cor2_x21_t cor2; /* channel option register 2 */ cx_cor3_x21_t cor3; /* channel option register 3 */ cx_cor6_x21_t cor6; /* channel option register 6 */ unsigned char schr1; /* special character register 1 */ unsigned char schr2; /* special character register 2 */ unsigned char schr3; /* special character register 3 */} cx_opt_x21_t;/* * CD2400 channel state structure -------------------------------------------- *//* Signal encoding */#define ENCOD_NRZ 0 /* NRZ mode */#define ENCOD_NRZI 1 /* NRZI mode */#define ENCOD_MANCHESTER 2 /* Manchester mode *//* Clock source */#define CLK_0 0 /* clock 0 */#define CLK_1 1 /* clock 1 */#define CLK_2 2 /* clock 2 */#define CLK_3 3 /* clock 3 */#define CLK_4 4 /* clock 4 */#define CLK_EXT 6 /* external clock */#define CLK_RCV 7 /* receive clock *//* Channel type */#define T_NONE 0 /* no channel */#define T_ASYNC 1 /* pure asynchronous RS-232 channel */#define T_SYNC_RS232 2 /* pure synchronous RS-232 channel */#define T_SYNC_V35 3 /* pure synchronous V.35 channel */#define T_SYNC_RS449 4 /* pure synchronous RS-449 channel */#define T_UNIV_RS232 5 /* sync/async RS-232 channel */#define T_UNIV_RS449 6 /* sync/async RS-232/RS-449 channel */#define T_UNIV_V35 7 /* sync/async RS-232/V.35 channel */typedef enum { /* channel mode */ M_ASYNC, /* asynchronous mode */ M_HDLC, /* HDLC mode */ M_BISYNC, /* BISYNC mode */ M_X21, /* X.21 mode */} cx_chan_mode_t;typedef struct { /* channel option register 4 */ unsigned thr : 4; /* FIFO threshold */ unsigned zero : 1; unsigned cts_zd : 1; /* detect 1 to 0 transition on the CTS */ unsigned cd_zd : 1; /* detect 1 to 0 transition on the CD */ unsigned dsr_zd : 1; /* detect 1 to 0 transition on the DSR */} cx_cor4_t;typedef struct { /* channel option register 5 */ unsigned rx_thr : 4; /* receive flow control FIFO threshold */ unsigned zero : 1; unsigned cts_od : 1; /* detect 0 to 1 transition on the CTS */ unsigned cd_od : 1; /* detect 0 to 1 transition on the CD */ unsigned dsr_od : 1; /* detect 0 to 1 transition on the DSR */} cx_cor5_t;typedef struct { /* receive clock option register */ unsigned clk : 3; /* receive clock source */ unsigned encod : 2; /* signal encoding NRZ/NRZI/Manchester */ unsigned dpll : 1; /* DPLL enable */ unsigned zero : 1; unsigned tlval : 1; /* transmit line value */} cx_rcor_t;typedef struct { /* transmit clock option register */ unsigned zero1 : 1; unsigned llm : 1; /* local loopback mode */ unsigned zero2 : 1; unsigned ext1x : 1; /* external 1x clock mode */ unsigned zero3 : 1; unsigned clk : 3; /* transmit clock source */} cx_tcor_t;typedef struct { cx_cor4_t cor4; /* channel option register 4 */ cx_cor5_t cor5; /* channel option register 5 */ cx_rcor_t rcor; /* receive clock option register */ cx_tcor_t tcor; /* transmit clock option register */} cx_chan_opt_t;typedef enum { /* line break mode */ BRK_IDLE, /* normal line mode */ BRK_SEND, /* start sending break */ BRK_STOP, /* stop sending break */} cx_break_t;typedef struct { unsigned cisco : 1; /* cisco mode */ unsigned keepalive : 1; /* keepalive enable */ unsigned ext : 1; /* use external ppp implementation */ unsigned lock : 1; /* channel locked for use by driver */ unsigned norts : 1; /* disable automatic RTS control */} cx_soft_opt_t;#define NCHIP 4 /* the number of controllers per board */#define NCHAN 16 /* the number of channels on the board */typedef struct { unsigned char board; /* adapter number, 0..2 */ unsigned char channel; /* channel number, 0..15 */ unsigned char type; /* channel type (read only) */ unsigned char iftype; /* chan0 interface RS-232/RS-449/V.35 */ unsigned long rxbaud; /* receiver speed */ unsigned long txbaud; /* transmitter speed */ cx_chan_mode_t mode; /* channel mode */ cx_chan_opt_t opt; /* common channel options */ cx_opt_async_t aopt; /* async mode options */ cx_opt_hdlc_t hopt; /* hdlc mode options */ cx_opt_bisync_t bopt; /* bisync mode options */ cx_opt_x21_t xopt; /* x.21 mode options */ cx_soft_opt_t sopt; /* software options and state flags */ char master[16]; /* master interface name or \0 */} cx_options_t; /* user settable options */typedef struct _chan_t { unsigned char type; /* channel type */ unsigned char num; /* channel number, 0..15 */ struct _board_t *board; /* board pointer */ struct _chip_t *chip; /* controller pointer */ struct _stat_t *stat; /* statistics */ unsigned long rxbaud; /* receiver speed */ unsigned long txbaud; /* transmitter speed */ cx_chan_mode_t mode; /* channel mode */ cx_chan_opt_t opt; /* common channel options */ cx_opt_async_t aopt; /* async mode options */ cx_opt_hdlc_t hopt; /* hdlc mode options */ cx_opt_bisync_t bopt; /* bisync mode options */ cx_opt_x21_t xopt; /* x.21 mode options */ unsigned char *arbuf; /* receiver A dma buffer */ unsigned char *brbuf; /* receiver B dma buffer */ unsigned char *atbuf; /* transmitter A dma buffer */ unsigned char *btbuf; /* transmitter B dma buffer */ unsigned long arphys; /* receiver A phys address */ unsigned long brphys; /* receiver B phys address */ unsigned long atphys; /* transmitter A phys address */ unsigned long btphys; /* transmitter B phys address */ unsigned char dtr; /* DTR signal value */ unsigned char rts; /* RTS signal value */#ifdef KERNEL struct tty *ttyp; /* tty structure pointer */ struct ifnet *ifp; /* network interface data */ struct ifnet *master; /* master interface, or ==ifp */ struct _chan_t *slaveq; /* slave queue pointer, or NULL */ caddr_t bpf; /* packet filter data */ cx_soft_opt_t sopt; /* software options and state flags */ cx_break_t brk; /* line break mode */#ifdef __bsdi__ struct ttydevice_tmp *ttydev; /* tty statistics structure */#endif#endif} cx_chan_t;typedef struct _chip_t { unsigned short port; /* base port address, or 0 if no chip */ unsigned char num; /* controller number, 0..3 */ struct _board_t *board; /* board pointer */ unsigned long oscfreq; /* oscillator frequency in Hz */} cx_chip_t;typedef struct _stat_t { unsigned char board; /* adapter number, 0..2 */ unsigned char channel; /* channel number, 0..15 */ unsigned long rintr; /* receive interrupts */ unsigned long tintr; /* transmit interrupts */ unsigned long mintr; /* modem interrupts */ unsigned long ibytes; /* input bytes */ unsigned long ipkts; /* input packets */ unsigned long ierrs; /* input errors */ unsigned long obytes; /* output bytes */ unsigned long opkts; /* output packets */ unsigned long oerrs; /* output errors */} cx_stat_t;typedef struct _board_t { unsigned short port; /* base board port, 0..3f0 */ unsigned short num; /* board number, 0..2 */ unsigned char irq; /* intterupt request {3 5 7 10 11 12 15} */ unsigned char dma; /* DMA request {5 6 7} */ unsigned char if0type; /* chan0 interface RS-232/RS-449/V.35 */ unsigned char if8type; /* chan8 interface RS-232/RS-449/V.35 */ unsigned short bcr0; /* BCR0 image */ unsigned short bcr0b; /* BCR0b image */ unsigned short bcr1; /* BCR1 image */ unsigned short bcr1b; /* BCR1b image */ cx_chip_t chip[NCHIP]; /* controller structures */ cx_chan_t chan[NCHAN]; /* channel structures */ cx_stat_t stat[NCHAN]; /* channel statistics */ char name[16]; /* board version name */ unsigned char nuniv; /* number of universal channels */ unsigned char nsync; /* number of sync. channels */ unsigned char nasync; /* number of async. channels */} cx_board_t;#define CX_SPEED_DFLT 9600extern long cx_rxbaud, cx_txbaud;extern int cx_univ_mode, cx_sync_mode, cx_iftype;extern cx_chan_opt_t chan_opt_dflt; /* default mode-independent options */extern cx_opt_async_t opt_async_dflt; /* default async options */extern cx_opt_hdlc_t opt_hdlc_dflt; /* default hdlc options */extern cx_opt_bisync_t opt_bisync_dflt; /* default bisync options */extern cx_opt_x21_t opt_x21_dflt; /* default x21 options */int cx_probe_board (int port);void cx_init (cx_board_t *b, int num, int port, int irq, int dma);void cx_init_board (cx_board_t *b, int num, int port, int irq, int dma, int chain, int rev, int osc, int rev2, int osc2);void cx_setup_board (cx_board_t *b);void cx_setup_chan (cx_chan_t *c);void cx_chan_dtr (cx_chan_t *c, int on);void cx_chan_rts (cx_chan_t *c, int on);void cx_cmd (int base, int cmd);void cx_disable_dma (cx_board_t *b);void cx_reinit_board (cx_board_t *b);int cx_chan_dsr (cx_chan_t *c);int cx_chan_cd (cx_chan_t *c);void cx_clock (long hz, long ba, int *clk, int *div);#define CXIOCGETMODE _IOWR('x', 1, cx_options_t) /* get channel options */#define CXIOCSETMODE _IOW('x', 2, cx_options_t) /* set channel options */#define CXIOCGETSTAT _IOWR('x', 3, cx_stat_t) /* get channel stats */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?