1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45 #define CUE_CMD_READSRAM 0xF1
46 #define CUE_CMD_GET_MACADDR 0xF2
47 #define CUE_CMD_RESET 0xF4
48 #define CUE_CMD_WRITEREG 0xFA
49 #define CUE_CMD_READREG 0xFB
50 #define CUE_CMD_WRITESRAM 0xFC
51
52
53
54
55 #define CUE_TX_BUFCNT 0x20
56 #define CUE_RX_BUFCNT 0x21
57 #define CUE_ADVANCED_OPMODES 0x22
58 #define CUE_TX_BUFPKTS 0x23
59 #define CUE_RX_BUFPKTS 0x24
60 #define CUE_RX_MAXCHAIN 0x25
61
62 #define CUE_ETHCTL 0x60
63 #define CUE_ETHSTS 0x61
64 #define CUE_PAR5 0x62
65 #define CUE_PAR4 0x63
66 #define CUE_PAR3 0x64
67 #define CUE_PAR2 0x65
68 #define CUE_PAR1 0x66
69 #define CUE_PAR0 0x67
70
71
72 #define CUE_TX_SINGLECOLL 0x69
73 #define CUE_TX_MULTICOLL 0x6B
74 #define CUE_TX_EXCESSCOLL 0x6D
75 #define CUE_RX_FRAMEERR 0x6F
76
77 #define CUE_LEDCTL 0x81
78
79
80 #define CUE_AOP_SRAMWAITS 0x03
81 #define CUE_AOP_EMBED_RXLEN 0x08
82 #define CUE_AOP_RXCOMBINE 0x10
83 #define CUE_AOP_TXCOMBINE 0x20
84 #define CUE_AOP_EVEN_PKT_READS 0x40
85 #define CUE_AOP_LOOPBK 0x80
86
87
88 #define CUE_ETHCTL_RX_ON 0x01
89 #define CUE_ETHCTL_LINK_POLARITY 0x02
90 #define CUE_ETHCTL_LINK_FORCE_OK 0x04
91 #define CUE_ETHCTL_MCAST_ON 0x08
92 #define CUE_ETHCTL_PROMISC 0x10
93
94
95 #define CUE_ETHSTS_NO_CARRIER 0x01
96 #define CUE_ETHSTS_LATECOLL 0x02
97 #define CUE_ETHSTS_EXCESSCOLL 0x04
98 #define CUE_ETHSTS_TXBUF_AVAIL 0x08
99 #define CUE_ETHSTS_BAD_POLARITY 0x10
100 #define CUE_ETHSTS_LINK_OK 0x20
101
102
103 #define CUE_LEDCTL_BLINK_1X 0x00
104 #define CUE_LEDCTL_BLINK_2X 0x01
105 #define CUE_LEDCTL_BLINK_QUARTER_ON 0x02
106 #define CUE_LEDCTL_BLINK_QUARTER_OFF 0x03
107 #define CUE_LEDCTL_OFF 0x04
108 #define CUE_LEDCTL_FOLLOW_LINK 0x08
109
110
111
112
113
114
115
116
117 #define CUE_MCAST_TABLE_ADDR 0xFA80
118 #define CUE_MCAST_TABLE_LEN 64
119
120 #define CUE_TIMEOUT 1000
121 #define CUE_BUFSZ 1536
122 #define CUE_MIN_FRAMELEN 60
123 #define CUE_RX_FRAMES 1
124 #define CUE_TX_FRAMES 1
125
126 #define CUE_RX_LIST_CNT 1
127 #define CUE_TX_LIST_CNT 1
128
129 #define CUE_CTL_READ 0x01
130 #define CUE_CTL_WRITE 0x02
131
132 #define CUE_CONFIG_NO 1
133 #define CUE_IFACE_IDX 0
134
135
136
137
138 #define CUE_ENDPT_RX 0x0
139 #define CUE_ENDPT_TX 0x1
140 #define CUE_ENDPT_INTR 0x2
141 #define CUE_ENDPT_MAX 0x3
142
143 struct cue_type {
144 u_int16_t cue_vid;
145 u_int16_t cue_did;
146 };
147
148 struct cue_softc;
149
150 struct cue_chain {
151 struct cue_softc *cue_sc;
152 usbd_xfer_handle cue_xfer;
153 char *cue_buf;
154 struct mbuf *cue_mbuf;
155 int cue_idx;
156 };
157
158 struct cue_cdata {
159 struct cue_chain cue_tx_chain[CUE_TX_LIST_CNT];
160 struct cue_chain cue_rx_chain[CUE_RX_LIST_CNT];
161 int cue_tx_prod;
162 int cue_tx_cons;
163 int cue_tx_cnt;
164 int cue_rx_prod;
165 };
166
167 struct cue_softc {
168 struct device cue_dev;
169
170 struct arpcom arpcom;
171 #define GET_IFP(sc) (&(sc)->arpcom.ac_if)
172
173 struct timeout cue_stat_ch;
174
175 usbd_device_handle cue_udev;
176 usbd_interface_handle cue_iface;
177 u_int16_t cue_vendor;
178 u_int16_t cue_product;
179 int cue_ed[CUE_ENDPT_MAX];
180 usbd_pipe_handle cue_ep[CUE_ENDPT_MAX];
181 u_int8_t cue_mctab[CUE_MCAST_TABLE_LEN];
182 int cue_if_flags;
183 u_int16_t cue_rxfilt;
184 struct cue_cdata cue_cdata;
185
186 char cue_dying;
187 char cue_attached;
188 u_int cue_rx_errs;
189 struct timeval cue_rx_notice;
190
191 struct usb_task cue_tick_task;
192 struct usb_task cue_stop_task;
193 };