blob: 017812f4dfb0aa68af334866f278dc3e658a27b2 (
plain)
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
|
# $FreeBSD$
#include <sys/bus.h>
INTERFACE miibus;
#
# Read register from device on MII bus
#
METHOD int readreg {
device_t dev;
int phy;
int reg;
};
#
# Write register to device on MII bus
#
METHOD int writereg {
device_t dev;
int phy;
int reg;
int val;
};
#
# Notify bus about PHY status change.
#
METHOD void statchg {
device_t dev;
};
#
# Notify bus about PHY link change.
#
METHOD void linkchg {
device_t dev;
};
#
# Notify bus that media has been set.
#
METHOD void mediainit {
device_t dev;
};
|