History log of /openbsd/sys/dev/mii/urlphy.c (Results 1 – 18 of 18)
Revision Date Author Comments
# 471aeecf 06-Apr-2022 naddy <naddy@openbsd.org>

constify struct cfattach


# 21dab745 14-Mar-2015 jsg <jsg@openbsd.org>

Remove some includes include-what-you-use claims don't
have any direct symbols used. Tested for indirect use by compiling
amd64/i386/sparc64 kernels.

ok tedu@ deraadt@


# 0deb6685 05-Dec-2014 mpi <mpi@openbsd.org>

Explicitly include <net/if_var.h> instead of pulling it in <net/if.h>.

ok mikeb@, krw@, bluhm@, tedu@


# fa9fb3ed 28-Dec-2013 deraadt <deraadt@openbsd.org>

mii drivers no longer need activate functions. Repair of the PHY
configuration setting is done at resume time because all networks
drivers which were previously up, do an IFF_UP operation which
hits

mii drivers no longer need activate functions. Repair of the PHY
configuration setting is done at resume time because all networks
drivers which were previously up, do an IFF_UP operation which
hits PHY_RESET.
This was in snapshots for about 2 weeks.

show more ...


# 0919571e 28-May-2013 mikeb <mikeb@openbsd.org>

Fix a common issue across different PHY drivers to reset the
autonegotiation timer when PHY gets the link so that if we
restart the timer the mii_ticks value would be sane.

Lifted originally from Fr

Fix a common issue across different PHY drivers to reset the
autonegotiation timer when PHY gets the link so that if we
restart the timer the mii_ticks value would be sane.

Lifted originally from FreeBSD, tested by a few on re(4) and
bge(4), ok kettenis

show more ...


# d0a5e875 08-Sep-2008 brad <brad@openbsd.org>

remove some useless comments.


# bc654221 27-Dec-2006 kettenis <kettenis@openbsd.org>

Always explicitly set IFM_HDX for half-duplex.

From brad@


# e9a12bcb 27-May-2005 brad <brad@openbsd.org>

some cleanup


# cf4a2375 26-Mar-2005 krw <krw@openbsd.org>

Cleanup. Use defines, standard names, consistant comparison operators, etc.
for auto negotiation ticks code. No functional change.

ok brad@


# 59b0bdc6 05-Feb-2005 brad <brad@openbsd.org>

no RTL8201L PHY's here..


# d240c9bf 28-Jan-2005 brad <brad@openbsd.org>

Get flags passed down to PHY drivers correctly. This was done on
an adhoc basis in a couple of PHY drivers, this fixes it more generally.

From NetBSD

Fixes panics with aue(4) NICs.


# 5fc33c28 17-Oct-2004 deraadt <deraadt@openbsd.org>

model internal phy chunk on the one from rlphy


# 0d859a72 29-Sep-2004 dlg <dlg@openbsd.org>

from netbsd: if_url.c 1.8, if_urlreg.h 1.2, urlphy.c 1.9 and urlphyreg.h 1.2
via Jonathan Gray
log message:

Remove advertising clauses from code written by Shingo WATANABE.
He has kindly consented i

from netbsd: if_url.c 1.8, if_urlreg.h 1.2, urlphy.c 1.9 and urlphyreg.h 1.2
via Jonathan Gray
log message:

Remove advertising clauses from code written by Shingo WATANABE.
He has kindly consented it.

show more ...


# 78a92591 26-Sep-2004 brad <brad@openbsd.org>

Restructure the PHY entry points to use a structure of
entry points instead of descrete function pointers, and
extend this to include a "reset" entry point. Make sure
any PHY-specific reset routine i

Restructure the PHY entry points to use a structure of
entry points instead of descrete function pointers, and
extend this to include a "reset" entry point. Make sure
any PHY-specific reset routine is always used.

From NetBSD

ok mcbride@

show more ...


# dd9058e3 20-Sep-2004 brad <brad@openbsd.org>

don't include sys/malloc.h, no memory management functions are used
by any of the MII drivers.

From NetBSD


# 24a9f1af 26-Jun-2002 espie <espie@openbsd.org>

Kill __FUNCTION__.


# 57f47a24 07-May-2002 nate <nate@openbsd.org>

Less verbose. noticed by fgsch


# f1a8203a 07-May-2002 nate <nate@openbsd.org>

Add urlphy(4) which is used by url(4).
From NetBSD