mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 16:22:46 -04:00
44 lines
521 B
Objective-C
44 lines
521 B
Objective-C
|
|
#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;
|
|
};
|