CVS log for src/sys/dev/mii/tlphy.c
Up to [cvs.NetBSD.org] / src / sys / dev / mii
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.71.20.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 22:11:29 2023 UTC (17 months, 1 week ago) by martin
Branches: netbsd-10
CVS tags: netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1
Diff to: previous 1.71: preferred, colored; next MAIN 1.72: preferred, colored
Changes since revision 1.71: +3 -3
lines
Pull up following revision(s) (requested by msaitoh in ticket #208):
sys/dev/mii/ciphy.c: revision 1.42
sys/dev/mii/brgphy.c: revision 1.91
sys/dev/mii/mii_physubr.c: revision 1.102
sys/dev/mii/ipgphy.c: revision 1.11
sys/dev/mii/tlphy.c: revision 1.72
sys/dev/mii/jmphy.c: revision 1.5
sys/dev/mii/urlphy.c: revision 1.40
sys/dev/mii/atphy.c: revision 1.31
Retry autonegotiation every mii_anegticks seconds instead of mii_anegticks+1.
Revision 1.72: download - view: text, markup, annotated - select for diffs
Wed Feb 22 08:09:09 2023 UTC (21 months, 1 week ago) by msaitoh
Branches: MAIN
CVS tags: thorpej-ifq-base,
thorpej-ifq,
thorpej-altq-separation-base,
thorpej-altq-separation,
perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
HEAD
Diff to: previous 1.71: preferred, colored
Changes since revision 1.71: +3 -3
lines
Retry autonegotiation every mii_anegticks seconds instead of mii_anegticks+1.
Revision 1.71: download - view: text, markup, annotated - select for diffs
Tue Jul 7 08:44:12 2020 UTC (4 years, 4 months ago) by msaitoh
Branches: MAIN
CVS tags: thorpej-i2c-spi-conf2-base,
thorpej-i2c-spi-conf2,
thorpej-i2c-spi-conf-base,
thorpej-i2c-spi-conf,
thorpej-futex2-base,
thorpej-futex2,
thorpej-futex-base,
thorpej-futex,
thorpej-cfargs2-base,
thorpej-cfargs2,
thorpej-cfargs-base,
thorpej-cfargs,
netbsd-10-base,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x,
bouyer-sunxi-drm-base,
bouyer-sunxi-drm
Branch point for: netbsd-10
Diff to: previous 1.70: preferred, colored
Changes since revision 1.70: +3 -11
lines
- Remove the waitfor argument from mii_phy_auto().
- Whitespace fix.
Revision 1.70: download - view: text, markup, annotated - select for diffs
Tue Jul 7 08:35:16 2020 UTC (4 years, 4 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.69: preferred, colored
Changes since revision 1.69: +37 -13
lines
- Call tlphy_auto correctly.
- It's not required to do busy-wait by mii_phy_auto(sc, 1). Now there is
no any PHY driver which calls mii_phy_auto(sc, 1).
Revision 1.69: download - view: text, markup, annotated - select for diffs
Tue Jul 7 06:59:22 2020 UTC (4 years, 4 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.68: preferred, colored
Changes since revision 1.68: +9 -7
lines
"no media present" is intended case on tlphy(4), so don't use
aprint_error_dev().
Revision 1.62.28.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:08:08 2020 UTC (4 years, 7 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.62.28.1: preferred, colored; branchpoint 1.62: preferred, colored; next MAIN 1.63: preferred, colored
Changes since revision 1.62.28.1: +18 -11
lines
Merge changes from current as of 20200406
Revision 1.68: download - view: text, markup, annotated - select for diffs
Sun Mar 15 23:04:50 2020 UTC (4 years, 8 months ago) by thorpej
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
bouyer-xenpvh-base2,
bouyer-xenpvh-base1,
bouyer-xenpvh-base,
bouyer-xenpvh
Diff to: previous 1.67: preferred, colored
Changes since revision 1.67: +11 -2
lines
Define and implement a locking protocol for the ifmedia / mii layers:
- MP-safe drivers provide a mutex to ifmedia that is used to serialize
access to media-related structures / hardware regsiters. Converted
drivers use the new ifmedia_init_with_lock() function for this. The
new name is provided to ease the transition.
- Un-converted drivers continue to call ifmedia_init(), which will supply
a compatibility lock to be used instead. Several media-related entry
points must be aware of this compatibility lock, and are able to acquire
it recursively a limited number of times, if needed. This is a SPIN
mutex with priority IPL_NET.
- This same lock is used to serialize access to PHY registers and other
MII-related data structures.
The PHY drivers are modified to acquire and release the lock, as needed,
and assert the lock is held as a diagnostic aid.
The "usbnet" framework has had an overhaul of its internal locking
protocols to fit in with the media / mii changes, and the drivers adapted.
USB wifi drivers have been changed to provide their own adaptive mutex
to the ifmedia later via a new ieee80211_media_init_with_lock() function.
This is required because the USB drivers need an adaptive mutex.
Besised "usbnet", a few other drivers are converted: vmx, wm, ixgbe / ixv.
mcx also now calls ifmedia_init_with_lock() because it needs to also use
an adaptive mutex. The mcx driver still needs to be fully converted to
NET_MPSAFE.
Revision 1.67: download - view: text, markup, annotated - select for diffs
Wed Nov 27 10:19:21 2019 UTC (5 years ago) by msaitoh
Branches: MAIN
CVS tags: is-mlppp-base,
is-mlppp,
ad-namecache-base3,
ad-namecache-base2,
ad-namecache-base1,
ad-namecache-base,
ad-namecache
Diff to: previous 1.66: preferred, colored
Changes since revision 1.66: +9 -11
lines
- Simplify sc->mii_anegticks setting. Same as FreeBSD.
Don't set the default value not in the attach function. Instead, set the
default value (MII_ANEGTICKS) first in the beginning of the
mii_phy_add_media(). The function already has the code to change the value to
MII_ANEGTICKS_GIGE if it's gigabit capable.
- Remove extra pmf_device_register() call. It's done in mii_phy_add_media().
Revision 1.62.28.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:07:14 2019 UTC (5 years, 5 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +56 -59
lines
Sync with HEAD
Revision 1.62.20.1: download - view: text, markup, annotated - select for diffs
Fri Mar 29 19:48:35 2019 UTC (5 years, 8 months ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE,
netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1
Diff to: previous 1.62: preferred, colored; next MAIN 1.63: preferred, colored
Changes since revision 1.62: +14 -7
lines
Pull up following revision(s) (requested by msaitoh in ticket #1224):
sys/dev/mii/tlphy.c: revision 1.65
sys/dev/usb/if_url.c: revision 1.62
sys/dev/usb/if_aue.c: revision 1.148
mii_phy_add_media() automatically install power handler, but if_media_add()
doesn't. When mii_phy_add_media() isn't used, call pmf_device_register().
-
Use pmf(9).
-
Use pmf(9).
Revision 1.66: download - view: text, markup, annotated - select for diffs
Mon Mar 25 09:20:46 2019 UTC (5 years, 8 months ago) by msaitoh
Branches: MAIN
CVS tags: phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9,
isaki-audio2-base,
isaki-audio2
Diff to: previous 1.65: preferred, colored
Changes since revision 1.65: +25 -33
lines
KNF. No functional change.
Revision 1.65: download - view: text, markup, annotated - select for diffs
Tue Mar 5 02:13:15 2019 UTC (5 years, 9 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.64: preferred, colored
Changes since revision 1.64: +14 -7
lines
mii_phy_add_media() automatically install power handler, but if_media_add()
doesn't. When mii_phy_add_media() isn't used, call pmf_device_register().
Revision 1.64: download - view: text, markup, annotated - select for diffs
Sun Feb 24 17:22:21 2019 UTC (5 years, 9 months ago) by christos
Branches: MAIN
Diff to: previous 1.63: preferred, colored
Changes since revision 1.63: +4 -7
lines
use a macro to tidy up the phydesc array initialization, from FreeBSD
Revision 1.62.26.1: download - view: text, markup, annotated - select for diffs
Sat Jan 26 22:00:06 2019 UTC (5 years, 10 months ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.62: preferred, colored; next MAIN 1.63: preferred, colored
Changes since revision 1.62: +19 -18
lines
Sync with HEAD
Revision 1.63: download - view: text, markup, annotated - select for diffs
Tue Jan 22 03:42:27 2019 UTC (5 years, 10 months ago) by msaitoh
Branches: MAIN
CVS tags: pgoyette-compat-20190127
Diff to: previous 1.62: preferred, colored
Changes since revision 1.62: +19 -18
lines
Change MII PHY read/write API from:
int (*mii_readreg_t)(device_t, int, int);
void (*mii_writereg_t)(device_t, int, int, int);
to:
int (*mii_readreg_t)(device_t, int, int, uint16_t *);
int (*mii_writereg_t)(device_t, int, int, uint16_t);
Now we can test if a read/write operation failed or not by the return value.
In 802.3 spec says that the PHY shall not respond to read/write transaction
to the unimplemented register(22.2.4.3). Detecting timeout can be used to
check whether a register is implemented or not (if the register conforms to
the spec). ukphy(4) can be used this for MII_MMDACR and MII_MMDAADR.
Note that I noticed that the following code do infinite loop in the
read/wirte function. If it accesses unimplemented PHY register, it will hang.
It should be fixed:
arm/at91/at91emac.c
arm/ep93xx/epe.c
arm/omap/omapl1x_emac.c
mips/ralink/ralink_eth.c
arch/powerpc/booke/dev/pq3etsec.c(read)
dev/cadence/if_cemac.c <- hkenken
dev/ic/lan9118.c
Tested with the following device:
axe+ukphy
axe+rgephy
axen+rgephy (tested by Andrius V)
wm+atphy
wm+ukphy
wm+igphy
wm+ihphy
wm+makphy
sk+makphy
sk+brgphy
sk+gentbi
msk+makphy
sip+icsphy
sip+ukphy
re+rgephy
bge+brgphy
bnx+brgphy
gsip+gphyter
rtk+rlphy
fxp+inphy (tested by Andrius V)
tlp+acphy
ex+exphy
epic+qsphy
vge+ciphy (tested by Andrius V)
vr+ukphy (tested by Andrius V)
vte+ukphy (tested by Andrius V)
Not tested (MAC):
arm:at91emac
arm:cemac
arm:epe
arm:geminigmac
arm:enet
arm:cpsw
arm:emac(omac)
arm:emac(sunxi)
arm:npe
evbppc:temac
macppc:bm
macppc:gm
mips:aumac
mips:ae
mips:cnmac
mips:reth
mips:sbmac
playstation2:smap
powerpc:tsec
powerpc:emac(ibm4xx)
sgimips:mec
sparc:be
sf
ne(ax88190, dl10019)
awge
ep
gem
hme
smsh
mtd
sm
age
alc
ale
bce
cas
et
jme
lii
nfe
pcn
ste
stge
tl
xi
aue
mue
smsc
udav
url
Not tested (PHY):
amhphy
bmtphy
dmphy
etphy
glxtphy
ikphy
iophy
lxtphy
nsphyter
pnaphy
rdcphy
sqphy
tlphy
tqphy
urlphy
Revision 1.59.18.1: download - view: text, markup, annotated - select for diffs
Sun Nov 9 12:13:15 2014 UTC (10 years ago) by martin
Branches: netbsd-6
Diff to: previous 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59: +4 -2
lines
Pull up following revision(s) (requested by msaitoh in ticket #1189):
sys/dev/pci/if_wm.c: revision 1.270
sys/dev/mii/inphy.c: revision 1.53
sys/dev/mii/glxtphy.c: revision 1.24
sys/dev/mii/tlphy.c: revision 1.62
sys/dev/mii/iophy.c: revision 1.37
sys/dev/mii/brgphy.c: revision 1.70
sys/dev/mii/ihphy.c: revision 1.8
sys/dev/mii/bmtphy.c: revision 1.31
sys/dev/mii/urlphy.c: revision 1.30
sys/dev/mii/makphy.c: revision 1.40
sys/dev/mii/qsphy.c: revision 1.48
sys/dev/mii/igphy.c: revision 1.23
sys/dev/mii/nsphy.c: revision 1.58
sys/dev/mii/mvphy.c: revision 1.10
sys/dev/pci/if_txp.c: revision 1.41
sys/dev/mii/nsphy.c: revision 1.59
sys/dev/mii/rlphy.c: revision 1.28
sys/dev/mii/icsphy.c: revision 1.49
sys/dev/mii/rlphy.c: revision 1.29
sys/dev/mii/lxtphy.c: revision 1.49
sys/dev/mii/ciphyreg.h: revision 1.5
sys/dev/mii/nsphyter.c: revision 1.38
sys/dev/mii/sqphy.c: revision 1.50
sys/dev/mii/gentbi.c: revision 1.26
sys/dev/mii/gentbi.c: revision 1.27
sys/dev/mii/tqphy.c: revision 1.39
sys/dev/mii/ikphy.c: revision 1.10
sys/dev/mii/dmphy.c: revision 1.35
sys/dev/mii/amhphy.c: revision 1.20
sys/dev/mii/acphy.c: revision 1.24
sys/dev/mii/ciphy.c: revision 1.25
sys/dev/mii/brgphyreg.h: revision 1.8
sys/dev/mii/ukphy_subr.c: revision 1.12
sys/dev/ic/rtl80x9.c: revision 1.16
sys/arch/mips/adm5120/dev/if_admsw.c: revision 1.12
sys/dev/pci/if_kse.c: revision 1.28
sys/dev/mii/ukphy_subr.c: revision 1.13
sys/dev/mii/mii.h: revision 1.18
sys/dev/mii/gphyter.c: revision 1.29
No functional change:
- Fix typo.
- Remove trailing white spaces.
- Capitalize comments.
- Tabify.
- KNF.
IFM_FDX and IFM_HDX use different bit, so set IFM_HDX bit if it's not full
duplex. For many drivers, it recognize half duplex if IFM_FDX isn't set,
but not for others. Same as {Free|Open}BSD.
Revision 1.59.22.2: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:03:41 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.59.22.1: preferred, colored; branchpoint 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59.22.1: +2 -0
lines
Rebase to HEAD as of a few days ago.
Revision 1.61.6.1: download - view: text, markup, annotated - select for diffs
Sun Aug 10 06:54:53 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-earlyentropy
Diff to: previous 1.61: preferred, colored; next MAIN 1.62: preferred, colored
Changes since revision 1.61: +4 -2
lines
Rebase.
Revision 1.62: download - view: text, markup, annotated - select for diffs
Mon Jun 16 16:48:16 2014 UTC (10 years, 5 months ago) by msaitoh
Branches: MAIN
CVS tags: tls-maxphys-base-20171202,
tls-maxphys-base,
tls-earlyentropy-base,
prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
phil-wifi-base,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
pgoyette-compat-base,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
nick-nhusb-base-20170825,
nick-nhusb-base-20170204,
nick-nhusb-base-20161204,
nick-nhusb-base-20161004,
nick-nhusb-base-20160907,
nick-nhusb-base-20160529,
nick-nhusb-base-20160422,
nick-nhusb-base-20160319,
nick-nhusb-base-20151226,
nick-nhusb-base-20150921,
nick-nhusb-base-20150606,
nick-nhusb-base-20150406,
nick-nhusb-base,
nick-nhusb,
netbsd-8-base,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-base,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE,
netbsd-7-0,
netbsd-7,
matt-nb8-mediatek-base,
matt-nb8-mediatek,
localcount-20160914,
jdolecek-ncqfixes-base,
jdolecek-ncqfixes,
jdolecek-ncq-base,
jdolecek-ncq,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan
Branch point for: phil-wifi,
pgoyette-compat,
netbsd-8
Diff to: previous 1.61: preferred, colored
Changes since revision 1.61: +4 -2
lines
IFM_FDX and IFM_HDX use different bit, so set IFM_HDX bit if it's not full
duplex. For many drivers, it recognize half duplex if IFM_FDX isn't set,
but not for others. Same as {Free|Open}BSD.
Revision 1.59.12.1: download - view: text, markup, annotated - select for diffs
Thu May 22 11:40:23 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.59: preferred, colored; next MAIN 1.60: preferred, colored
Changes since revision 1.59: +2 -14
lines
sync with head.
for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
Revision 1.59.22.1: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:20:18 2013 UTC (11 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +2 -14
lines
resync from head
Revision 1.61: download - view: text, markup, annotated - select for diffs
Tue Jun 11 07:22:08 2013 UTC (11 years, 5 months ago) by msaitoh
Branches: MAIN
CVS tags: yamt-pagecache-base9,
rmind-smpnet-nbase,
rmind-smpnet-base,
rmind-smpnet,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2
Branch point for: tls-earlyentropy
Diff to: previous 1.60: preferred, colored
Changes since revision 1.60: +2 -14
lines
Remove duplicated code. The code to check IFF_UP and autonegotiation
is in mii_phy_tick(), too.
Revision 1.60: download - view: text, markup, annotated - select for diffs
Sun Jun 9 09:15:51 2013 UTC (11 years, 5 months ago) by msaitoh
Branches: MAIN
Diff to: previous 1.59: preferred, colored
Changes since revision 1.59: +7 -7
lines
Don't "return" but "break" in MII_TICK when the interface isn't doing
autonegotiaton or the link is up to update the status.
Revision 1.54.4.3: download - view: text, markup, annotated - select for diffs
Thu Mar 11 15:03:41 2010 UTC (14 years, 8 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.54.4.2: preferred, colored; branchpoint 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54.4.2: +2 -7
lines
sync with head
Revision 1.59: download - view: text, markup, annotated - select for diffs
Mon Oct 19 18:41:14 2009 UTC (15 years, 1 month ago) by bouyer
Branches: MAIN
CVS tags: yamt-pagecache-tag8,
yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
yamt-nfs-mp-base9,
yamt-nfs-mp-base11,
yamt-nfs-mp-base10,
uebayasi-xip-base4,
uebayasi-xip-base3,
uebayasi-xip-base2,
uebayasi-xip-base1,
uebayasi-xip-base,
uebayasi-xip,
rmind-uvmplock-nbase,
rmind-uvmplock-base,
rmind-uvmplock,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
matt-premerge-20091211,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
matt-mips64-premerge-20101231,
khorben-n900,
jym-xensuspend-nbase,
jruoho-x86intr-base,
jruoho-x86intr,
jmcneill-usbmp-pre-base2,
jmcneill-usbmp-base9,
jmcneill-usbmp-base8,
jmcneill-usbmp-base7,
jmcneill-usbmp-base6,
jmcneill-usbmp-base5,
jmcneill-usbmp-base4,
jmcneill-usbmp-base3,
jmcneill-usbmp-base2,
jmcneill-usbmp-base10,
jmcneill-usbmp-base,
jmcneill-usbmp,
jmcneill-audiomp3-base,
jmcneill-audiomp3,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2,
agc-symver-base,
agc-symver
Branch point for: yamt-pagecache,
tls-maxphys,
netbsd-6
Diff to: previous 1.58: preferred, colored
Changes since revision 1.58: +2 -7
lines
Remove closes 3 & 4 from my licence. Lots of thanks to Soren Jacobsen
for the booring work !
Revision 1.54.4.2: download - view: text, markup, annotated - select for diffs
Mon May 4 08:12:52 2009 UTC (15 years, 7 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.54.4.1: preferred, colored; branchpoint 1.54: preferred, colored
Changes since revision 1.54.4.1: +6 -5
lines
sync with head.
Revision 1.57.8.1: download - view: text, markup, annotated - select for diffs
Mon Jan 19 13:18:14 2009 UTC (15 years, 10 months ago) by skrll
Branches: nick-hppapmap
Diff to: previous 1.57: preferred, colored; next MAIN 1.58: preferred, colored
Changes since revision 1.57: +6 -5
lines
Sync with HEAD.
Revision 1.53.6.2: download - view: text, markup, annotated - select for diffs
Sat Jan 17 13:28:58 2009 UTC (15 years, 10 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.53.6.1: preferred, colored; branchpoint 1.53: preferred, colored; next MAIN 1.54: preferred, colored
Changes since revision 1.53.6.1: +4 -3
lines
Sync with HEAD.
Revision 1.57.6.1: download - view: text, markup, annotated - select for diffs
Sat Dec 13 01:14:27 2008 UTC (15 years, 11 months ago) by haad
Branches: haad-dm
Diff to: previous 1.57: preferred, colored; next MAIN 1.58: preferred, colored
Changes since revision 1.57: +6 -5
lines
Update haad-dm branch to haad-dm-base2.
Revision 1.58: download - view: text, markup, annotated - select for diffs
Mon Nov 17 03:04:27 2008 UTC (16 years ago) by dyoung
Branches: MAIN
CVS tags: yamt-nfs-mp-base8,
yamt-nfs-mp-base7,
yamt-nfs-mp-base6,
yamt-nfs-mp-base5,
yamt-nfs-mp-base4,
yamt-nfs-mp-base3,
nick-hppapmap-base4,
nick-hppapmap-base3,
nick-hppapmap-base2,
nick-hppapmap-base,
mjf-devfs2-base,
jymxensuspend-base,
jym-xensuspend-base,
jym-xensuspend,
haad-nbase2,
haad-dm-base2,
haad-dm-base,
ad-audiomp2-base,
ad-audiomp2
Diff to: previous 1.57: preferred, colored
Changes since revision 1.57: +6 -5
lines
Reduce code duplication: most PHY drivers call mii_phy_add_media()
when they attach to the device tree, so call pmf_device_register(9)
once there instead of once in more than twenty drivers.
Revision 1.53.6.1: download - view: text, markup, annotated - select for diffs
Mon Jun 2 13:23:35 2008 UTC (16 years, 6 months ago) by mjf
Branches: mjf-devfs2
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +73 -77
lines
Sync with HEAD.
Revision 1.54.2.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:34:13 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.54: preferred, colored; next MAIN 1.55: preferred, colored
Changes since revision 1.54: +73 -77
lines
sync with head.
Revision 1.54.4.1: download - view: text, markup, annotated - select for diffs
Fri May 16 02:24:37 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-nfs-mp
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +73 -77
lines
sync with head.
Revision 1.57: download - view: text, markup, annotated - select for diffs
Tue May 6 11:35:38 2008 UTC (16 years, 7 months ago) by tsutsui
Branches: MAIN
CVS tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
yamt-nfs-mp-base2,
wrstuden-revivesa-base-4,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
simonb-wapbl-nbase,
simonb-wapbl-base,
simonb-wapbl,
netbsd-5-base,
netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
hpcarm-cleanup-nbase,
haad-dm-base1
Branch point for: nick-hppapmap,
haad-dm
Diff to: previous 1.56: preferred, colored
Changes since revision 1.56: +67 -64
lines
Rename some softc variables for readability.
Revision 1.56: download - view: text, markup, annotated - select for diffs
Sun May 4 17:06:10 2008 UTC (16 years, 7 months ago) by xtraeme
Branches: MAIN
Diff to: previous 1.55: preferred, colored
Changes since revision 1.55: +10 -10
lines
device_t/softc split for all mii(4) devices, and other related
cosmetic changes.
Revision 1.55: download - view: text, markup, annotated - select for diffs
Mon Apr 28 20:23:53 2008 UTC (16 years, 7 months ago) by martin
Branches: MAIN
Diff to: previous 1.54: preferred, colored
Changes since revision 1.54: +2 -9
lines
Remove clause 3 and 4 from TNF licenses
Revision 1.54: download - view: text, markup, annotated - select for diffs
Tue Apr 8 20:10:20 2008 UTC (16 years, 7 months ago) by cegger
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base,
yamt-nfs-mp-base
Branch point for: yamt-pf42,
yamt-nfs-mp
Diff to: previous 1.53: preferred, colored
Changes since revision 1.53: +4 -4
lines
use aprint_*_dev and device_xname
Revision 1.51.2.1: download - view: text, markup, annotated - select for diffs
Mon Feb 18 21:05:51 2008 UTC (16 years, 9 months ago) by mjf
Branches: mjf-devfs
Diff to: previous 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51: +2 -5
lines
Sync with HEAD.
Revision 1.42.4.4: download - view: text, markup, annotated - select for diffs
Mon Jan 21 09:43:30 2008 UTC (16 years, 10 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.42.4.3: preferred, colored; branchpoint 1.42: preferred, colored; next MAIN 1.43: preferred, colored
Changes since revision 1.42.4.3: +5 -5
lines
sync with head
Revision 1.50.24.2: download - view: text, markup, annotated - select for diffs
Wed Jan 9 01:53:24 2008 UTC (16 years, 10 months ago) by matt
Branches: matt-armv6
Diff to: previous 1.50.24.1: preferred, colored; branchpoint 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50.24.1: +5 -5
lines
sync with HEAD
Revision 1.52.2.1: download - view: text, markup, annotated - select for diffs
Wed Jan 2 21:54:35 2008 UTC (16 years, 11 months ago) by bouyer
Branches: bouyer-xeni386
CVS tags: bouyer-xeni386-merge1
Diff to: previous 1.52: preferred, colored; next MAIN 1.53: preferred, colored
Changes since revision 1.52: +2 -5
lines
Sync with HEAD
Revision 1.53: download - view: text, markup, annotated - select for diffs
Sat Dec 29 19:34:56 2007 UTC (16 years, 11 months ago) by dyoung
Branches: MAIN
CVS tags: yamt-lazymbuf-base15,
yamt-lazymbuf-base14,
nick-net80211-sync-base,
nick-net80211-sync,
mjf-devfs-base,
matt-armv6-nbase,
matt-armv6-base,
keiichi-mipv6-nbase,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-base,
bouyer-xeni386-nbase,
bouyer-xeni386-base,
ad-socklock-base1
Branch point for: mjf-devfs2
Diff to: previous 1.52: preferred, colored
Changes since revision 1.52: +2 -5
lines
Remove the device_is_active() check from each individual PHY's
service routine. Add a wrapper for PHY_SERVICE(), called phy_service(),
and check device_is_active() there. Make the mii_*() routines call
the PHY service routines thorugh phy_service() instead of PHY_SERVICE().
In mii_phy_resume(), restore a PHY's state after resetting it by
sending a MII_MEDIACHG command. This change makes bnx(4) resume
more reliably and more quickly; it should help other NICs to resume,
too, if they attach PHYs through MII.
Revision 1.51.4.1: download - view: text, markup, annotated - select for diffs
Wed Dec 26 19:46:38 2007 UTC (16 years, 11 months ago) by ad
Branches: vmlocking2
Diff to: previous 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51: +5 -2
lines
Sync with head.
Revision 1.51.6.1: download - view: text, markup, annotated - select for diffs
Tue Dec 11 15:29:25 2007 UTC (16 years, 11 months ago) by yamt
Branches: yamt-kmem
Diff to: previous 1.51: preferred, colored; next MAIN 1.52: preferred, colored
Changes since revision 1.51: +5 -2
lines
sync with head.
Revision 1.52: download - view: text, markup, annotated - select for diffs
Sun Dec 9 20:28:04 2007 UTC (16 years, 11 months ago) by jmcneill
Branches: MAIN
CVS tags: yamt-kmem-base3,
yamt-kmem-base2,
vmlocking2-base3,
cube-autoconf-base,
cube-autoconf
Branch point for: bouyer-xeni386
Diff to: previous 1.51: preferred, colored
Changes since revision 1.51: +5 -2
lines
Merge jmcneill-pm branch.
Revision 1.50.22.3: download - view: text, markup, annotated - select for diffs
Sat Dec 8 16:21:20 2007 UTC (16 years, 11 months ago) by jmcneill
Branches: jmcneill-pm
Diff to: previous 1.50.22.2: preferred, colored; branchpoint 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50.22.2: +3 -3
lines
Rename pnp(9) -> pmf(9), as requested by many.
Revision 1.50.22.2: download - view: text, markup, annotated - select for diffs
Tue Nov 27 09:28:24 2007 UTC (17 years ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.50.22.1: preferred, colored; branchpoint 1.50: preferred, colored
Changes since revision 1.50.22.1: +5 -2
lines
Register MII PHY drives with the PM framework. Nothing to do on suspend,
just reset the PHY on resume.
Revision 1.50.24.1: download - view: text, markup, annotated - select for diffs
Tue Nov 6 23:28:24 2007 UTC (17 years, 1 month ago) by matt
Branches: matt-armv6
CVS tags: matt-armv6-prevmlocking
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -3
lines
sync with HEAD
Revision 1.42.4.3: download - view: text, markup, annotated - select for diffs
Sat Oct 27 11:32:19 2007 UTC (17 years, 1 month ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.42.4.2: preferred, colored; branchpoint 1.42: preferred, colored
Changes since revision 1.42.4.2: +3 -3
lines
sync with head.
Revision 1.50.22.1: download - view: text, markup, annotated - select for diffs
Fri Oct 26 15:45:44 2007 UTC (17 years, 1 month ago) by joerg
Branches: jmcneill-pm
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -3
lines
Sync with HEAD.
Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.
Revision 1.50.28.1: download - view: text, markup, annotated - select for diffs
Thu Oct 25 22:38:39 2007 UTC (17 years, 1 month ago) by bouyer
Branches: bouyer-xenamd64
Diff to: previous 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50: +3 -3
lines
Sync with HEAD.
Revision 1.50.8.1: download - view: text, markup, annotated - select for diffs
Tue Oct 23 20:08:33 2007 UTC (17 years, 1 month ago) by ad
Branches: vmlocking
Diff to: previous 1.50: preferred, colored; next MAIN 1.51: preferred, colored
Changes since revision 1.50: +3 -3
lines
Sync with head.
Revision 1.51: download - view: text, markup, annotated - select for diffs
Fri Oct 19 12:00:36 2007 UTC (17 years, 1 month ago) by ad
Branches: MAIN
CVS tags: yamt-kmem-base,
vmlocking2-base2,
vmlocking2-base1,
vmlocking-nbase,
reinoud-bufcleanup-nbase,
reinoud-bufcleanup-base,
jmcneill-pm-base,
jmcneill-base,
bouyer-xenamd64-base2,
bouyer-xenamd64-base
Branch point for: yamt-kmem,
vmlocking2,
mjf-devfs
Diff to: previous 1.50: preferred, colored
Changes since revision 1.50: +3 -3
lines
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
Revision 1.42.4.2: download - view: text, markup, annotated - select for diffs
Sat Dec 30 20:48:38 2006 UTC (17 years, 11 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.42.4.1: preferred, colored; branchpoint 1.42: preferred, colored
Changes since revision 1.42.4.1: +5 -4
lines
sync with head.
Revision 1.47.10.2: download - view: text, markup, annotated - select for diffs
Sun Dec 10 07:17:36 2006 UTC (17 years, 11 months ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.47.10.1: preferred, colored; branchpoint 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47.10.1: +5 -5
lines
sync with head.
Revision 1.47.8.1: download - view: text, markup, annotated - select for diffs
Sat Nov 18 21:34:27 2006 UTC (18 years ago) by ad
Branches: newlock2
Diff to: previous 1.47: preferred, colored; next MAIN 1.48: preferred, colored
Changes since revision 1.47: +5 -4
lines
Sync with head.
Revision 1.50: download - view: text, markup, annotated - select for diffs
Thu Nov 16 21:24:07 2006 UTC (18 years ago) by christos
Branches: MAIN
CVS tags: yamt-x86pmap-base4,
yamt-x86pmap-base3,
yamt-x86pmap-base2,
yamt-x86pmap-base,
yamt-x86pmap,
yamt-splraiseipl-base5,
yamt-splraiseipl-base4,
yamt-splraiseipl-base3,
yamt-idlelwp-base8,
yamt-idlelwp,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
vmlocking-base,
thorpej-atomic-base,
thorpej-atomic,
reinoud-bufcleanup,
post-newlock2-merge,
nick-csl-alignment-base5,
nick-csl-alignment-base,
nick-csl-alignment,
newlock2-nbase,
newlock2-base,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
mjf-ufs-trans-base,
mjf-ufs-trans,
matt-nb4-arm-base,
matt-nb4-arm,
matt-mips64-base,
matt-mips64,
hpcarm-cleanup,
ad-audiomp-base,
ad-audiomp
Branch point for: vmlocking,
matt-armv6,
jmcneill-pm,
bouyer-xenamd64
Diff to: previous 1.49: preferred, colored
Changes since revision 1.49: +3 -3
lines
- don't hardcode 5, 10 define and use MII_ANEGTICKS{,_GIGE}
- instead of != limit, use <= limit (conservative)
Revision 1.49: download - view: text, markup, annotated - select for diffs
Thu Nov 16 01:33:06 2006 UTC (18 years ago) by christos
Branches: MAIN
Diff to: previous 1.48: preferred, colored
Changes since revision 1.48: +4 -4
lines
__unused removal on arguments; approved by core.
Revision 1.47.10.1: download - view: text, markup, annotated - select for diffs
Sun Oct 22 06:06:12 2006 UTC (18 years, 1 month ago) by yamt
Branches: yamt-splraiseipl
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +5 -4
lines
sync with head
Revision 1.48: download - view: text, markup, annotated - select for diffs
Thu Oct 12 01:31:25 2006 UTC (18 years, 1 month ago) by christos
Branches: MAIN
CVS tags: yamt-splraiseipl-base2
Diff to: previous 1.47: preferred, colored
Changes since revision 1.47: +5 -4
lines
- sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386
Revision 1.43.4.1: download - view: text, markup, annotated - select for diffs
Sat Sep 9 02:52:03 2006 UTC (18 years, 2 months ago) by rpaulo
Branches: rpaulo-netinet-merge-pcb
Diff to: previous 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43: +6 -6
lines
sync with head
Revision 1.42.4.1: download - view: text, markup, annotated - select for diffs
Wed Jun 21 15:04:46 2006 UTC (18 years, 5 months ago) by yamt
Branches: yamt-lazymbuf
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +6 -6
lines
sync with head.
Revision 1.43.6.1: download - view: text, markup, annotated - select for diffs
Sat Apr 22 11:39:11 2006 UTC (18 years, 7 months ago) by simonb
Branches: simonb-timecounters
CVS tags: simonb-timcounters-final
Diff to: previous 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43: +6 -6
lines
Sync with head.
Revision 1.44.4.1: download - view: text, markup, annotated - select for diffs
Wed Apr 19 03:25:23 2006 UTC (18 years, 7 months ago) by elad
Branches: elad-kernelauth
Diff to: previous 1.44: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44: +5 -5
lines
sync with head.
Revision 1.44.2.1: download - view: text, markup, annotated - select for diffs
Sat Apr 1 12:07:11 2006 UTC (18 years, 8 months ago) by yamt
Branches: yamt-pdpolicy
Diff to: previous 1.44: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44: +5 -5
lines
sync with head.
Revision 1.44.6.2: download - view: text, markup, annotated - select for diffs
Fri Mar 31 09:45:22 2006 UTC (18 years, 8 months ago) by tron
Branches: peter-altq
Diff to: previous 1.44.6.1: preferred, colored; branchpoint 1.44: preferred, colored; next MAIN 1.45: preferred, colored
Changes since revision 1.44.6.1: +5 -5
lines
Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
Revision 1.47: download - view: text, markup, annotated - select for diffs
Wed Mar 29 17:18:55 2006 UTC (18 years, 8 months ago) by thorpej
Branches: MAIN
CVS tags: yamt-splraiseipl-base,
yamt-pdpolicy-base9,
yamt-pdpolicy-base8,
yamt-pdpolicy-base7,
yamt-pdpolicy-base6,
yamt-pdpolicy-base5,
yamt-pdpolicy-base4,
yamt-pdpolicy-base3,
simonb-timecounters-base,
rpaulo-netinet-merge-pcb-base,
gdamore-uart-base,
gdamore-uart,
elad-kernelauth-base,
chap-midi-nbase,
chap-midi-base,
chap-midi,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-splraiseipl,
newlock2
Diff to: previous 1.46: preferred, colored
Changes since revision 1.46: +3 -3
lines
Fix an oversight in previous.
Revision 1.46: download - view: text, markup, annotated - select for diffs
Wed Mar 29 07:05:24 2006 UTC (18 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.45: preferred, colored
Changes since revision 1.45: +5 -5
lines
Use device_private().
Revision 1.44.6.1: download - view: text, markup, annotated - select for diffs
Tue Mar 28 09:42:12 2006 UTC (18 years, 8 months ago) by tron
Branches: peter-altq
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -3
lines
Merge 2006-03-28 NetBSD-current into the "peter-altq" branch.
Revision 1.45: download - view: text, markup, annotated - select for diffs
Sat Mar 25 23:17:36 2006 UTC (18 years, 8 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.44: preferred, colored
Changes since revision 1.44: +3 -3
lines
Use device_parent().
Revision 1.43.2.1: download - view: text, markup, annotated - select for diffs
Wed Mar 1 09:28:21 2006 UTC (18 years, 9 months ago) by yamt
Branches: yamt-uio_vmspace
Diff to: previous 1.43: preferred, colored; next MAIN 1.44: preferred, colored
Changes since revision 1.43: +3 -3
lines
sync with head.
Revision 1.44: download - view: text, markup, annotated - select for diffs
Mon Feb 20 16:50:37 2006 UTC (18 years, 9 months ago) by thorpej
Branches: MAIN
CVS tags: yamt-uio_vmspace-base5,
yamt-pdpolicy-base2,
yamt-pdpolicy-base,
peter-altq-base
Branch point for: yamt-pdpolicy,
peter-altq,
elad-kernelauth
Diff to: previous 1.43: preferred, colored
Changes since revision 1.43: +3 -3
lines
Use device_is_active() rather than testing dv_flags for DVF_ACTIVE
directly.
Revision 1.43: download - view: text, markup, annotated - select for diffs
Sun Dec 11 12:22:42 2005 UTC (18 years, 11 months ago) by christos
Branches: MAIN
Branch point for: yamt-uio_vmspace,
simonb-timecounters,
rpaulo-netinet-merge-pcb
Diff to: previous 1.42: preferred, colored
Changes since revision 1.42: +2 -2
lines
merge ktrace-lwp.
Revision 1.41.4.1: download - view: text, markup, annotated - select for diffs
Fri Apr 29 11:29:04 2005 UTC (19 years, 7 months ago) by kent
Branches: kent-audio2
Diff to: previous 1.41: preferred, colored; next MAIN 1.42: preferred, colored
Changes since revision 1.41: +6 -6
lines
sync with -current
Revision 1.41.6.1: download - view: text, markup, annotated - select for diffs
Sat Mar 19 08:34:59 2005 UTC (19 years, 8 months ago) by yamt
Branches: yamt-km
Diff to: previous 1.41: preferred, colored; next MAIN 1.42: preferred, colored
Changes since revision 1.41: +6 -6
lines
sync with head. xen and whitespace. xen part is not finished.
Revision 1.39.2.5: download - view: text, markup, annotated - select for diffs
Fri Mar 4 16:44:57 2005 UTC (19 years, 9 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.39.2.4: preferred, colored; next MAIN 1.40: preferred, colored
Changes since revision 1.39.2.4: +6 -6
lines
Sync with HEAD.
Hi Perry!
Revision 1.42: download - view: text, markup, annotated - select for diffs
Sun Feb 27 00:27:31 2005 UTC (19 years, 9 months ago) by perry
Branches: MAIN
CVS tags: yamt-vop-base3,
yamt-vop-base2,
yamt-vop-base,
yamt-vop,
yamt-readahead-pervnode,
yamt-readahead-perfile,
yamt-readahead-base3,
yamt-readahead-base2,
yamt-readahead-base,
yamt-readahead,
yamt-km-base4,
yamt-km-base3,
thorpej-vnode-attr-base,
thorpej-vnode-attr,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
ktrace-lwp-base,
kent-audio2-base
Branch point for: yamt-lazymbuf
Diff to: previous 1.41: preferred, colored
Changes since revision 1.41: +6 -6
lines
nuke trailing whitespace
Revision 1.39.2.4: download - view: text, markup, annotated - select for diffs
Tue Sep 21 13:30:41 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.39.2.3: preferred, colored
Changes since revision 1.39.2.3: +2 -2
lines
Fix the sync with head I botched.
Revision 1.39.2.3: download - view: text, markup, annotated - select for diffs
Sat Sep 18 14:48:44 2004 UTC (20 years, 2 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.39.2.2: preferred, colored
Changes since revision 1.39.2.2: +2 -2
lines
Sync with HEAD.
Revision 1.39.2.2: download - view: text, markup, annotated - select for diffs
Wed Aug 25 06:58:05 2004 UTC (20 years, 3 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.39.2.1: preferred, colored
Changes since revision 1.39.2.1: +16 -16
lines
Sync with HEAD.
Revision 1.41: download - view: text, markup, annotated - select for diffs
Mon Aug 23 06:16:07 2004 UTC (20 years, 3 months ago) by thorpej
Branches: MAIN
CVS tags: yamt-km-base2,
yamt-km-base,
kent-audio1-beforemerge,
kent-audio1-base,
kent-audio1
Branch point for: yamt-km,
kent-audio2
Diff to: previous 1.40: preferred, colored
Changes since revision 1.40: +16 -16
lines
Make use of static.
Revision 1.39.2.1: download - view: text, markup, annotated - select for diffs
Tue Aug 3 10:48:49 2004 UTC (20 years, 4 months ago) by skrll
Branches: ktrace-lwp
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -4
lines
Sync with HEAD
Revision 1.40: download - view: text, markup, annotated - select for diffs
Tue Sep 30 09:35:15 2003 UTC (21 years, 2 months ago) by tron
Branches: MAIN
CVS tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Diff to: previous 1.39: preferred, colored
Changes since revision 1.39: +2 -4
lines
Fix build problem caused by integration of new I2C framework.
Revision 1.39: download - view: text, markup, annotated - select for diffs
Tue Apr 29 01:49:34 2003 UTC (21 years, 7 months ago) by thorpej
Branches: MAIN
Branch point for: ktrace-lwp
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +9 -8
lines
Use aprint*().
Revision 1.27.2.8: download - view: text, markup, annotated - select for diffs
Mon Nov 11 22:10:53 2002 UTC (22 years ago) by nathanw
Branches: nathanw_sa
CVS tags: nathanw_sa_end
Diff to: previous 1.27.2.7: preferred, colored; next MAIN 1.28: preferred, colored
Changes since revision 1.27.2.7: +1 -1
lines
Catch up to -current
Revision 1.38: download - view: text, markup, annotated - select for diffs
Wed Oct 23 01:50:11 2002 UTC (22 years, 1 month ago) by perry
Branches: MAIN
CVS tags: nathanw_sa_before_merge,
nathanw_sa_base,
kqueue-beforemerge,
kqueue-aftermerge,
gmcgarry_ucred_base,
gmcgarry_ucred,
gmcgarry_ctxsw_base,
gmcgarry_ctxsw,
fvdl_fs64_base
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +3 -3
lines
fix lint warnings about things being stringified under cpp -traditional
Revision 1.27.2.7: download - view: text, markup, annotated - select for diffs
Fri Oct 18 02:42:49 2002 UTC (22 years, 1 month ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27.2.6: preferred, colored
Changes since revision 1.27.2.6: +2 -4
lines
Catch up to -current.
Revision 1.30.2.5: download - view: text, markup, annotated - select for diffs
Thu Oct 10 18:40:10 2002 UTC (22 years, 1 month ago) by jdolecek
Branches: kqueue
Diff to: previous 1.30.2.4: preferred, colored; next MAIN 1.31: preferred, colored
Changes since revision 1.30.2.4: +4 -6
lines
sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
Revision 1.37: download - view: text, markup, annotated - select for diffs
Wed Oct 2 16:34:21 2002 UTC (22 years, 2 months ago) by thorpej
Branches: MAIN
CVS tags: kqueue-base
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +3 -3
lines
Add trailing ; to CFATTACH_DECL.
Revision 1.36: download - view: text, markup, annotated - select for diffs
Mon Sep 30 21:57:50 2002 UTC (22 years, 2 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +4 -6
lines
Use CFATTACH_DECL().
Revision 1.35: download - view: text, markup, annotated - select for diffs
Fri Sep 27 20:39:26 2002 UTC (22 years, 2 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +3 -3
lines
Declare all cfattach structures const.
Revision 1.30.2.4: download - view: text, markup, annotated - select for diffs
Sun Jun 23 17:47:27 2002 UTC (22 years, 5 months ago) by jdolecek
Branches: kqueue
Diff to: previous 1.30.2.3: preferred, colored
Changes since revision 1.30.2.3: +3 -3
lines
catch up with -current on kqueue branch
Revision 1.27.2.6: download - view: text, markup, annotated - select for diffs
Mon Apr 1 07:46:14 2002 UTC (22 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27.2.5: preferred, colored
Changes since revision 1.27.2.5: +2 -2
lines
Catch up to -current.
(CVS: It's not just a program. It's an adventure!)
Revision 1.34: download - view: text, markup, annotated - select for diffs
Mon Mar 25 20:51:26 2002 UTC (22 years, 8 months ago) by thorpej
Branches: MAIN
CVS tags: netbsd-1-6-base,
netbsd-1-6-RELEASE,
netbsd-1-6-RC3,
netbsd-1-6-RC2,
netbsd-1-6-RC1,
netbsd-1-6-PATCH002-RELEASE,
netbsd-1-6-PATCH002-RC4,
netbsd-1-6-PATCH002-RC3,
netbsd-1-6-PATCH002-RC2,
netbsd-1-6-PATCH002-RC1,
netbsd-1-6-PATCH002,
netbsd-1-6-PATCH001-RELEASE,
netbsd-1-6-PATCH001-RC3,
netbsd-1-6-PATCH001-RC2,
netbsd-1-6-PATCH001-RC1,
netbsd-1-6-PATCH001,
netbsd-1-6,
gehenna-devsw-base,
gehenna-devsw
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +3 -3
lines
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.
Per a discussion w/ Cliff Neighbors <cliff@allegronetworks.com>.
Revision 1.30.2.3: download - view: text, markup, annotated - select for diffs
Thu Jan 10 19:56:17 2002 UTC (22 years, 10 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.30.2.2: preferred, colored
Changes since revision 1.30.2.2: +4 -1
lines
Sync kqueue branch with -current.
Revision 1.27.2.5: download - view: text, markup, annotated - select for diffs
Wed Nov 14 19:15:03 2001 UTC (23 years ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27.2.4: preferred, colored
Changes since revision 1.27.2.4: +4 -1
lines
Catch up to -current.
Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Nov 13 07:41:37 2001 UTC (23 years ago) by lukem
Branches: MAIN
CVS tags: newlock-base,
newlock,
ifpoll-base,
eeh-devprop-base,
eeh-devprop
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +4 -1
lines
add RCSID
Revision 1.27.2.4: download - view: text, markup, annotated - select for diffs
Fri Sep 21 22:35:51 2001 UTC (23 years, 2 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27.2.3: preferred, colored
Changes since revision 1.27.2.3: +13 -25
lines
Catch up to -current.
Revision 1.30.2.2: download - view: text, markup, annotated - select for diffs
Thu Sep 13 01:15:47 2001 UTC (23 years, 2 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.30.2.1: preferred, colored
Changes since revision 1.30.2.1: +13 -25
lines
Update the kqueue branch to HEAD.
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sat Aug 25 18:04:02 2001 UTC (23 years, 3 months ago) by thorpej
Branches: MAIN
CVS tags: thorpej-mips-cache-base,
thorpej-mips-cache,
thorpej-devvp-base3,
thorpej-devvp-base2,
thorpej-devvp-base,
thorpej-devvp,
pre-chs-ubcperf,
post-chs-ubcperf
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +13 -25
lines
ANSI'ify.
Revision 1.30.2.1: download - view: text, markup, annotated - select for diffs
Sat Aug 25 06:16:22 2001 UTC (23 years, 3 months ago) by thorpej
Branches: kqueue
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -4
lines
Merge Aug 24 -current into the kqueue branch.
Revision 1.27.2.3: download - view: text, markup, annotated - select for diffs
Fri Aug 24 00:09:59 2001 UTC (23 years, 3 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27.2.2: preferred, colored
Changes since revision 1.27.2.2: +2 -4
lines
Catch up with -current.
Revision 1.31: download - view: text, markup, annotated - select for diffs
Sat Aug 4 02:21:24 2001 UTC (23 years, 4 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +2 -4
lines
Ops, forgot to commit this one:
- kill carrier detection code, it's not that usefull and give false indications
on loaded ethernet segments
Revision 1.27.2.2: download - view: text, markup, annotated - select for diffs
Thu Jun 21 20:04:25 2001 UTC (23 years, 5 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27.2.1: preferred, colored
Changes since revision 1.27.2.1: +14 -5
lines
Catch up to -current.
Revision 1.30: download - view: text, markup, annotated - select for diffs
Sat Jun 2 21:39:41 2001 UTC (23 years, 6 months ago) by thorpej
Branches: MAIN
Branch point for: kqueue
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +13 -5
lines
Make PHY matching all table-driven.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Thu May 31 16:02:29 2001 UTC (23 years, 6 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +2 -1
lines
Make the number of ticks between auto-negotiation tries PHY-specific,
and default every PHY to 5 seconds (what we used before). If we find
Gig-E media on a PHY, bump it to 10 seconds, since it can take 5
seconds just to negotiate a Gig-E link.
Revision 1.18.2.2: download - view: text, markup, annotated - select for diffs
Sat Apr 21 17:49:05 2001 UTC (23 years, 7 months ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.18.2.1: preferred, colored; branchpoint 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18.2.1: +4 -4
lines
Sync with HEAD
Revision 1.27.2.1: download - view: text, markup, annotated - select for diffs
Mon Apr 9 01:56:56 2001 UTC (23 years, 8 months ago) by nathanw
Branches: nathanw_sa
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -4
lines
Catch up with -current.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Wed Mar 28 14:16:49 2001 UTC (23 years, 8 months ago) by drochner
Branches: MAIN
CVS tags: thorpej_scsipi_nbase,
thorpej_scsipi_beforemerge,
thorpej_scsipi_base
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +4 -4
lines
update for miidevs changes
Revision 1.18.2.1: download - view: text, markup, annotated - select for diffs
Mon Nov 20 11:42:12 2000 UTC (24 years ago) by bouyer
Branches: thorpej_scsipi
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +33 -49
lines
Update thorpej_scsipi to -current as of a month ago
A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
(will be updated later). i386 IDE/ATAPI and ncr work, as well as
sparc/esp_sbus. alpha should work as well (untested yet).
siop, ahc and bha will be updated once I've updated the branch to current
-current, as well as machine-dependant code.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Wed Oct 11 22:03:33 2000 UTC (24 years, 1 month ago) by sommerfeld
Branches: MAIN
Branch point for: nathanw_sa
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +2 -2
lines
Silence format warning.
Revision 1.25.4.1: download - view: text, markup, annotated - select for diffs
Tue Jul 4 04:11:13 2000 UTC (24 years, 5 months ago) by thorpej
Branches: netbsd-1-5
CVS tags: netbsd-1-5-RELEASE,
netbsd-1-5-PATCH003,
netbsd-1-5-PATCH002,
netbsd-1-5-PATCH001,
netbsd-1-5-BETA2,
netbsd-1-5-BETA,
netbsd-1-5-ALPHA2
Diff to: previous 1.25: preferred, colored; next MAIN 1.26: preferred, colored
Changes since revision 1.25: +8 -5
lines
Update from trunk:
Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for the LXT-970 which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
Revision 1.26: download - view: text, markup, annotated - select for diffs
Tue Jul 4 03:29:00 2000 UTC (24 years, 5 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +8 -5
lines
Restructure the PHY entry points to use a structure of entry points
instead of discrete function pointers, and extend this to include
a "reset" entry point. Make sure any PHY-specific reset routine is
always used, and provide one for the LXT-970 which disables MII
interrupts (as is done for a few other PHYs we have drivers for).
Revision 1.25: download - view: text, markup, annotated - select for diffs
Mon Mar 6 20:56:57 2000 UTC (24 years, 9 months ago) by thorpej
Branches: MAIN
CVS tags: netbsd-1-5-base,
minoura-xpg4dl-base,
minoura-xpg4dl
Branch point for: netbsd-1-5
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +3 -23
lines
Factor out the tick handling code into a common function, and send
rt_ifmsg's when the link speed or link status changes.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Wed Feb 2 17:50:46 2000 UTC (24 years, 10 months ago) by thorpej
Branches: MAIN
CVS tags: chs-ubc2-newbase
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +7 -5
lines
Make PHY drivers provide a pointer to their status routine, and add
a generic mii_phy_status() that calls back into the PHY. It doesn't
do anything interesting yet, but it will soon.
Revision 1.23: download - view: text, markup, annotated - select for diffs
Wed Feb 2 17:09:45 2000 UTC (24 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -1
lines
Don't dry to diving MIIF_NOISOLATE in the PHY drivers. Instead, pass
flags down from the parent to child vi mii_attach().
Revision 1.22: download - view: text, markup, annotated - select for diffs
Wed Feb 2 08:05:34 2000 UTC (24 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +4 -4
lines
Bring some order to the chaos which was the MII code function naming
"conventions".
Revision 1.21: download - view: text, markup, annotated - select for diffs
Thu Jan 27 16:44:30 2000 UTC (24 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +6 -2
lines
Add detachment support to the MII layer.
Revision 1.18.8.1: download - view: text, markup, annotated - select for diffs
Mon Dec 27 18:35:13 1999 UTC (24 years, 11 months ago) by wrstuden
Branches: wrstuden-devbsize
Diff to: previous 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18: +12 -18
lines
Pull up to last week's -current.
Revision 1.18.4.1: download - view: text, markup, annotated - select for diffs
Mon Nov 15 00:40:57 1999 UTC (25 years ago) by fvdl
Branches: fvdl-softdep
Diff to: previous 1.18: preferred, colored; next MAIN 1.19: preferred, colored
Changes since revision 1.18: +12 -18
lines
Sync with -current
Revision 1.20: download - view: text, markup, annotated - select for diffs
Fri Nov 12 18:13:01 1999 UTC (25 years ago) by thorpej
Branches: MAIN
CVS tags: wrstuden-devbsize-base,
wrstuden-devbsize-19991221,
fvdl-softdep-base
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +5 -1
lines
Add mii_down(), which is used by MAC drivers to inform PHYs that the
interface is now down. PHYs use this to cancel pending asynchronous
operations.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Wed Nov 3 22:30:32 1999 UTC (25 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +8 -18
lines
Clean up the code that adds media a little, and make media selection
table-driven in preparation for some other changes to be made.
Revision 1.16.6.1.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 21 01:18:23 1999 UTC (25 years, 5 months ago) by thorpej
Branches: chs-ubc2
Diff to: previous 1.16.6.1: preferred, colored; next MAIN 1.17: preferred, colored
Changes since revision 1.16.6.1: +4 -4
lines
Sync w/ -current.
Revision 1.18: download - view: text, markup, annotated - select for diffs
Fri May 14 11:40:28 1999 UTC (25 years, 6 months ago) by drochner
Branches: MAIN
CVS tags: comdex-fall-1999-base,
comdex-fall-1999,
chs-ubc2-base
Branch point for: wrstuden-devbsize,
thorpej_scsipi,
fvdl-softdep
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +4 -4
lines
use the new "xx" prefixed OUIs because the mapping to the ID register
bits differs from the MII_OUI() way
Revision 1.16.6.1: download - view: text, markup, annotated - select for diffs
Fri Apr 23 15:40:13 1999 UTC (25 years, 7 months ago) by perry
Branches: netbsd-1-4
CVS tags: netbsd-1-4-RELEASE,
netbsd-1-4-PATCH003,
netbsd-1-4-PATCH002,
netbsd-1-4-PATCH001,
kame_14_19990705,
kame_14_19990628,
kame_141_19991130,
kame
Branch point for: chs-ubc2
Diff to: previous 1.16: preferred, colored; next MAIN 1.17: preferred, colored
Changes since revision 1.16: +42 -14
lines
pullup 1.16->1.17 (thorpej): Fix PR7361
Revision 1.17: download - view: text, markup, annotated - select for diffs
Fri Apr 23 04:24:32 1999 UTC (25 years, 7 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +42 -14
lines
Implement asynchronous autonegotiation when driven by the MII tick
(one-second clock). Prevents .5s delays every 5 seconds when the interface
is up but there is no link. Fixes PR 7361.
Revision 1.16: download - view: text, markup, annotated - select for diffs
Thu Nov 5 00:19:32 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
CVS tags: netbsd-1-4-base,
kenh-if-detach-base,
kenh-if-detach,
chs-ubc-base,
chs-ubc
Branch point for: netbsd-1-4
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +6 -7
lines
Place the essentially common "ticks" and "active" members into the
mii_softc (generic phy goo), and just switch all of the PHY drivers
(except tlphy, which really does have special stuff) to use an mii_softc
instead of a private one.
Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Nov 4 23:44:09 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -2
lines
Return a higher-priority match than 1. These are specific drivers. This
allows for a "generic unknown PHY" driver to be implemented.
Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed Nov 4 23:28:15 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -25
lines
Factor out the common reset code. Use the NOISOLATE flags as appropriate
to prevent a PHY from being isolated in the event the MAC can't deal with
this. (3Com 3c905B-TX, and Intel i82557).
Revision 1.13: download - view: text, markup, annotated - select for diffs
Wed Nov 4 23:07:15 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +8 -23
lines
Factor out some common code from all the PHY drivers (autonegotiation, for
now.)
Revision 1.12: download - view: text, markup, annotated - select for diffs
Wed Nov 4 22:15:41 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +27 -32
lines
Define and use generic PHY read/write reg macros.
Revision 1.11: download - view: text, markup, annotated - select for diffs
Mon Nov 2 22:31:37 1998 UTC (26 years, 1 month ago) by thorpej
Branches: MAIN
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +9 -13
lines
When doing a media change service request, use the media word from the
current ifmedia_entry, not from the user-supplied media word. The
user supplied media word may not necessarily match e.g. instance (if
the parent MAC driver is intentionally ignoring instance if its expecting
multiple PHYs with non-overlapping media, e.g. TI ThunderLAN) the media
word we are actually switching to.
Since PHY drivers use `instance' to determine if they should isolate
themselves, the ThunderLAN PHY was sometimes being incorrectly isolated
when in fact the user attempted to select that PHY (for e.g. BNC operation).
Revision 1.10: download - view: text, markup, annotated - select for diffs
Mon Aug 17 16:41:45 1998 UTC (26 years, 3 months ago) by bouyer
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +18 -13
lines
- use sc_tlphycap with bitmasks instead of direct comparaison (needed now
that we may have (TLPHY_MEDIA_10_x | TLPHY_MEDIA_NO_10_T).
- add carrier detect for AUI/BNC.
This now works properly with a "Compaq Netelligent 10/100 TX" and a
"Compaq ProLiant Integrated Netelligent 10/100 TX", untested with others
(but should work as well).
Revision 1.9: download - view: text, markup, annotated - select for diffs
Wed Aug 12 20:56:38 1998 UTC (26 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -3
lines
If autonegotiation is enabled in the BMSR, and the BMCR doens't claim
that it has completed, report "none" as the active media type.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Aug 12 20:46:47 1998 UTC (26 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +5 -2
lines
Ugh, don't print out "autonegotiation failed to complete" if it did.
We get these once a second if we're in auto mode, the interface is up,
and there's no carrier.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Mon Aug 10 23:59:58 1998 UTC (26 years, 3 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +348 -142
lines
Adapt to the new MII layer. This PHY driver now properly supports
802.3u autonegotiation, and will report the precise media selected
by autonegotiation by reading PHY-specific registers.
XXX There is still some work to do wrt. autonegotiation and the
BNC/AUI support in the ThunderLAN PHY.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Tue Jun 9 07:30:44 1998 UTC (26 years, 6 months ago) by thorpej
Branches: MAIN
CVS tags: eeh-paddr_t-base,
eeh-paddr_t
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -9
lines
Nuke __BROKEN_INDIRECT_CONFIG.
Revision 1.5: download - view: text, markup, annotated - select for diffs
Mon Jan 12 09:28:54 1998 UTC (26 years, 10 months ago) by thorpej
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +1 -5
lines
Adjust for config changes.
Revision 1.4: download - view: text, markup, annotated - select for diffs
Mon Nov 17 09:07:32 1997 UTC (27 years ago) by thorpej
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +50 -43
lines
KNF.
Revision 1.1.2.2: download - view: text, markup, annotated - select for diffs
Mon Nov 17 02:07:07 1997 UTC (27 years ago) by thorpej
Branches: netbsd-1-3
CVS tags: netbsd-1-3-RELEASE,
netbsd-1-3-PATCH003-CANDIDATE2,
netbsd-1-3-PATCH003-CANDIDATE1,
netbsd-1-3-PATCH003-CANDIDATE0,
netbsd-1-3-PATCH003,
netbsd-1-3-PATCH002,
netbsd-1-3-PATCH001,
netbsd-1-3-BETA
Diff to: previous 1.1.2.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.2.1: +6 -2
lines
sync w/ trunk.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Sun Nov 16 22:38:34 1997 UTC (27 years ago) by christos
Branches: MAIN
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +6 -2
lines
PR/4510: William Coldwell: Recognize TI thunderlan.
Revision 1.1.2.1: download - view: text, markup, annotated - select for diffs
Tue Oct 21 08:25:21 1997 UTC (27 years, 1 month ago) by mrg
Branches: netbsd-1-3
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2
lines
pull up from trunk: Correct ThunderLAN spelling
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Oct 21 05:54:21 1997 UTC (27 years, 1 month ago) by bouyer
Branches: MAIN
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +2 -2
lines
Correct 'ThunderLAN' spelling
Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Oct 17 17:34:05 1997 UTC (27 years, 1 month ago) by bouyer
Branches: MAIN
CVS tags: netbsd-1-3-base
Branch point for: netbsd-1-3
Generic functions for the MII layer. mii attaches to mii-capable network
adapters, and provide media-selections and status to the parent.
This includes drivers for the Thunderland integrated PHY, and
National Semiconductor's DP83840A.
Note: The interface betweeen network controller and mii is not complete yet,
and will need some minors tweaks to support media auto-selection.
CVSweb <webmaster@jp.NetBSD.org>