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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
/* $OpenBSD: rl2var.h,v 1.3 1999/07/14 03:54:38 d Exp $ */
/*
* David Leonard <d@openbsd.org>, 1999. Public domain.
*
* Proxim RangeLAN2 soft state copy.
*/
/*
* Mailboxes are used to communicate card-initiated messages
* from the interrupt handler to other kernel threads.
*/
struct rl2_mbox {
void * mb_buf; /* Message buffer */
size_t mb_len; /* Message buffer size */
size_t mb_actlen; /* Actual message size */
u_int8_t mb_state; /* Mailbox state */
#define RL2MBOX_VOID 0
#define RL2MBOX_EMPTY 1
#define RL2MBOX_FILLING 2
#define RL2MBOX_FILLED 3
};
#define RL2_NMBOX 0x7c /* Same as max msg seq number */
/* Soft state */
struct rl2_softc {
struct device sc_dev;
void *sc_ih; /* Interrupt handler */
struct arpcom sc_arpcom; /* Ethernet common part */
bus_space_tag_t sc_iot; /* Bus cookie */
bus_space_handle_t sc_ioh; /* Bus i/o handle */
u_int8_t sc_width; /* Bus transfer width */
u_int8_t sc_irq; /* IRQ for card */
u_int16_t sc_cardtype; /* Set from config flags */
#define RL2_CTYPE_OEM 0x01
#define RL2_CTYPE_UISA 0x02
#define RL2_CTYPE_ONE_PIECE 0x04
u_int8_t sc_intsel; /* Copy of INTSEL */
u_int8_t sc_status; /* Copy of STATUS */
u_int8_t sc_control; /* Copy of CONTROL */
#ifdef RL2DEBUG_REG
u_int8_t dbg_oreg[8]; /* Last reg value written */
#endif
u_int8_t sc_pktseq; /* Card message seq no */
u_int8_t sc_txseq; /* Tx packet seq no */
u_int16_t sc_state; /* Soft state. */
#define RL2_STATE_SYNC 0x0001 /* Card is synchronised */
#define RL2_STATE_NEEDINIT 0x0002 /* Card needs reset+init */
#define RL2_STATE_PROMISC 0x0004 /* Receive all packets */
struct rl2_mbox sc_mbox[0x80]; /* Per-message mailboxes */
struct rl2_param sc_param; /* User controlled parameters */
};
#define rl2_need_reset(sc) \
(sc)->sc_state |= RL2_STATE_NEEDINIT
/* Structure used to hold partial read state for rl2_rx_pdata() */
struct rl2_pdata {
u_int8_t p_data; /* extra data read but not consumed */
int p_nremain; /* size of unconsumed data */
};
#define RL2_PDATA_INIT {0,0}
/* Structure used to hold partial transmit state for rl2_msg_tx_*() */
struct rl2_msg_tx_state {
int ien; /* saved interrupt state */
u_int8_t w; /* saved wakup state */
struct rl2_pdata pd; /* saved partial write state */
};
struct rl2_mm_cmd; /* fwd decl */
#define RL2_WAKEUP_SET 0xff
#define RL2_WAKEUP_NOCHANGE (0x80|0x10)
void rl2config __P((struct rl2_softc *));
int rl2intr __P((void *));
void rl2read __P((struct rl2_softc *, struct rl2_mm_cmd *, int));
int rl2_enable __P((struct rl2_softc *, int));
int rl2_reset __P((struct rl2_softc *));
u_int8_t rl2_wakeup __P((struct rl2_softc *, u_int8_t));
int rl2_rx_request __P((struct rl2_softc *, int));
int rl2_rx_data __P((struct rl2_softc *, void *, int));
void rl2_rx_pdata __P((struct rl2_softc *, void *, int,
struct rl2_pdata *));
void rl2_rx_end __P((struct rl2_softc *));
void rl2_clear_nak __P((struct rl2_softc *));
u_int8_t rl2_newseq __P((struct rl2_softc *));
void rl2_msg_tx_data __P((struct rl2_softc *, void *, u_int16_t,
struct rl2_msg_tx_state *));
int rl2_msg_tx_start __P((struct rl2_softc *, void *, int,
struct rl2_msg_tx_state *));
int rl2_msg_tx_end __P((struct rl2_softc *,
struct rl2_msg_tx_state *));
int rl2_msg_txrx __P((struct rl2_softc *, void *, int,
void *, int));
int rl2_mbox_create __P((struct rl2_softc *, u_int8_t, void *,
size_t));
int rl2_mbox_wait __P((struct rl2_softc *, u_int8_t, int));
int rl2_mbox_lock __P((struct rl2_softc *, u_int8_t, void **,
size_t*));
void rl2_mbox_unlock __P((struct rl2_softc *, u_int8_t, size_t));
/* debug all card operations */
#ifdef RL2DEBUG
#define dprintf(fmt, args...) printf(fmt , ## args)
/* log(LOG_DEBUG, fmt , ## args) */
#define dprinthex(buf, len) do { \
unsigned char *_b = (unsigned char*)(buf); \
int _i, _l=(len); \
printf("{"); \
for(_i = 0; _i < _l; _i++) { \
printf("%02x", _b[_i]); \
if (_i % 4 == 3 && _i != _l - 1) \
printf(","); \
} \
printf("}"); \
} while (0)
#else
#define dprintf(fmt, args...) /* nothing */
#define dprinthex(buf, len) /* nothing */
#endif
/* debug messages to/from card. prints 4-octet groups separated by commas */
#define RL2DUMP
#define RL2DUMPHEX(buf, buflen) do { \
int _i; \
for (_i = 0; _i < (buflen); _i++) { \
printf("%02x", ((unsigned char *)(buf))[_i]); \
if (_i != (buflen) - 1 && _i % 4 == 3) \
printf(","); \
} \
} while (0)
|