GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / include / linux / isicom.h
blobb92e0565063939ede488f0764011614999e0c148
1 #ifndef _LINUX_ISICOM_H
2 #define _LINUX_ISICOM_H
4 #define YES 1
5 #define NO 0
7 /*
8 * ISICOM Driver definitions ...
12 #define ISICOM_NAME "ISICom"
15 * PCI definitions
18 #define DEVID_COUNT 9
19 #define VENDOR_ID 0x10b5
22 * These are now officially allocated numbers
25 #define ISICOM_NMAJOR 112 /* normal */
26 #define ISICOM_CMAJOR 113 /* callout */
27 #define ISICOM_MAGIC (('M' << 8) | 'T')
29 #define WAKEUP_CHARS 256 /* hard coded for now */
30 #define TX_SIZE 254
32 #define BOARD_COUNT 4
33 #define PORT_COUNT (BOARD_COUNT*16)
35 /* character sizes */
37 #define ISICOM_CS5 0x0000
38 #define ISICOM_CS6 0x0001
39 #define ISICOM_CS7 0x0002
40 #define ISICOM_CS8 0x0003
42 /* stop bits */
44 #define ISICOM_1SB 0x0000
45 #define ISICOM_2SB 0x0004
47 /* parity */
49 #define ISICOM_NOPAR 0x0000
50 #define ISICOM_ODPAR 0x0008
51 #define ISICOM_EVPAR 0x0018
53 /* flow control */
55 #define ISICOM_CTSRTS 0x03
56 #define ISICOM_INITIATE_XONXOFF 0x04
57 #define ISICOM_RESPOND_XONXOFF 0x08
59 #define BOARD(line) (((line) >> 4) & 0x3)
61 /* isi kill queue bitmap */
63 #define ISICOM_KILLTX 0x01
64 #define ISICOM_KILLRX 0x02
66 /* isi_board status bitmap */
68 #define FIRMWARE_LOADED 0x0001
69 #define BOARD_ACTIVE 0x0002
70 #define BOARD_INIT 0x0004
72 /* isi_port status bitmap */
74 #define ISI_CTS 0x1000
75 #define ISI_DSR 0x2000
76 #define ISI_RI 0x4000
77 #define ISI_DCD 0x8000
78 #define ISI_DTR 0x0100
79 #define ISI_RTS 0x0200
82 #define ISI_TXOK 0x0001
84 #endif /* ISICOM_H */