1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21 #include <dev/mii/miivar.h>
22
23 #define INTERFACE_NAME_LEN 32
24
25
26
27
28 struct dp8390_softc {
29 struct device sc_dev;
30 void *sc_ih;
31 int sc_flags;
32
33 struct arpcom sc_arpcom;
34 struct mii_data sc_mii;
35 #define sc_media sc_mii.mii_media
36
37 bus_space_tag_t sc_regt;
38 bus_space_handle_t sc_regh;
39 bus_space_tag_t sc_buft;
40 bus_space_handle_t sc_bufh;
41
42 bus_size_t sc_reg_map[16];
43
44 int is790;
45
46 u_int8_t cr_proto;
47 u_int8_t rcr_proto;
48 u_int8_t dcr_reg;
49
50 int mem_start;
51 int mem_end;
52 int mem_size;
53 int mem_ring;
54
55 u_short txb_cnt;
56 u_short txb_inuse;
57
58 u_short txb_new;
59 u_short txb_next_tx;
60 u_short txb_len[8];
61 u_short tx_page_start;
62 u_short rec_page_start;
63 u_short rec_page_stop;
64 u_short next_packet;
65
66 int sc_enabled;
67
68 int (*test_mem)(struct dp8390_softc *);
69 void (*init_card)(struct dp8390_softc *);
70 void (*stop_card)(struct dp8390_softc *);
71 void (*read_hdr)(struct dp8390_softc *,
72 int, struct dp8390_ring *);
73 void (*recv_int)(struct dp8390_softc *);
74 int (*ring_copy)(struct dp8390_softc *,
75 int, caddr_t, u_short);
76 int (*write_mbuf)(struct dp8390_softc *, struct mbuf *, int);
77
78 int (*sc_enable)(struct dp8390_softc *);
79 void (*sc_disable)(struct dp8390_softc *);
80
81 void (*sc_media_init)(struct dp8390_softc *);
82 void (*sc_media_fini)(struct dp8390_softc *);
83
84 int (*sc_mediachange)(struct dp8390_softc *);
85 void (*sc_mediastatus)(struct dp8390_softc *,
86 struct ifmediareq *);
87 };
88
89
90
91
92 #define DP8390_VENDOR_UNKNOWN 0xff
93 #define DP8390_VENDOR_WD_SMC 0x00
94 #define DP8390_VENDOR_3COM 0x01
95 #define DP8390_VENDOR_NOVELL 0x02
96 #define DP8390_VENDOR_APPLE 0x10
97 #define DP8390_VENDOR_INTERLAN 0x11
98 #define DP8390_VENDOR_DAYNA 0x12
99 #define DP8390_VENDOR_ASANTE 0x13
100 #define DP8390_VENDOR_FARALLON 0x14
101 #define DP8390_VENDOR_FOCUS 0x15
102 #define DP8390_VENDOR_KINETICS 0x16
103 #define DP8390_VENDOR_CABLETRON 0x17
104
105
106
107
108
109
110
111 #define DP8390_DISABLE_TRANSCEIVER 0x0001
112
113
114
115
116
117 #define DP8390_FORCE_8BIT_MODE 0x0002
118 #define DP8390_FORCE_16BIT_MODE 0x0004
119
120
121
122
123 #define DP8390_NO_MULTI_BUFFERING 0x0008
124
125
126
127
128
129 #define DP8390_FORCE_PIO 0x0010
130
131
132
133
134 #define DP8390_DO_AX88190_WORKAROUND 0x0020
135
136 #define DP8390_ATTACHED 0x0040
137
138
139
140
141
142 #define DP8390_NO_REMOTE_DMA_COMPLETE 0x0080
143
144
145
146
147 #define NIC_GET(t, h, reg) bus_space_read_1(t, h, \
148 ((sc)->sc_reg_map[reg]))
149 #define NIC_PUT(t, h, reg, val) bus_space_write_1(t, h, \
150 ((sc)->sc_reg_map[reg]), (val))
151 #define NIC_BARRIER(t, h) bus_space_barrier(t, h, 0, 0x10, \
152 BUS_SPACE_BARRIER_READ | BUS_SPACE_BARRIER_WRITE)
153
154 int dp8390_config(struct dp8390_softc *);
155 int dp8390_intr(void *);
156 int dp8390_ioctl(struct ifnet *, u_long, caddr_t);
157 void dp8390_start(struct ifnet *);
158 void dp8390_watchdog(struct ifnet *);
159 void dp8390_reset(struct dp8390_softc *);
160 void dp8390_init(struct dp8390_softc *);
161 void dp8390_stop(struct dp8390_softc *);
162
163 int dp8390_mediachange(struct ifnet *);
164 void dp8390_mediastatus(struct ifnet *, struct ifmediareq *);
165
166 void dp8390_media_init(struct dp8390_softc *);
167
168 int dp8390_detach(struct dp8390_softc *, int);
169
170 void dp8390_rint(struct dp8390_softc *);
171
172 void dp8390_getmcaf(struct arpcom *, u_int8_t *);
173 struct mbuf *dp8390_get(struct dp8390_softc *, int, u_short);
174 void dp8390_read(struct dp8390_softc *, int, u_short);