blob: ee7cd0802eb34a13908b81a48fd58ba80c4ec598 (
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
|
# $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 that media has been set.
#
METHOD void mediainit {
device_t dev;
};
|