summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2007-01-28Restore spl level before exiting on error.Kenneth R Westerback
Noted by Matthew R. Dempsky.
2007-01-27Only allow a single instance of acpimadt(4).Mark Kettenis
2007-01-27Only allow a single instance of acpimadt(4).Mark Kettenis
2007-01-27When flooding dmesg with ``can't read/write phy register'', be nice enough toMiod Vallat
print the register number, so that someone gets a chance to investigate the problem.
2007-01-27In autoneg mode, use RL_MEDIASTAT on re(4), like we do on rl(4) already.Miod Vallat
2007-01-27Add some more _STA flags.Marco Peereboom
2007-01-27No need to invoke _INI explicitly as this is currently doneMichael Knudsen
automagically out by some acpi voodoo. Pointed out by marco.
2007-01-27Don't invoke methods on the wrong devnode. Sigh.Michael Knudsen
2007-01-27Unbreak build with ACPI_DEBUG.Michael Knudsen
2007-01-27Enable transmit TCP/UDP checksum offload.Kenneth R Westerback
From Brad, tested by Brad, biorn@ and Johan M:son Lindman.
2007-01-27Only set sensor to on when ACPIDOCK_STATUS_DOCKED. Before it would alsoMichael Knudsen
be on if ACPIDOCK_STATUS_UNKNOWN.
2007-01-27Delay status report during attach until after invoking _DCK.Michael Knudsen
2007-01-27convert to our locks to rwlocks.David Gwynne
2007-01-27Say ``docking station'' instead of ``docked'' in the sensor descriptionMichael Knudsen
because this confuses me when I read it: hw.sensors.acpidock0.indicator0=Off, (docked)
2007-01-27Reading the spec again it seems I missed that the _INI methodMichael Knudsen
should be invoked only when _STA says the device is present. Change acpidock_attach to this.
2007-01-26Actually add the acpidock indicator sensor stuff to the softc struct soMichael Knudsen
acpidock compiles. I had this in my tree and forgot to commit with the acpidock.c change yesterday. :( Reported by Johan Mson Lindman.
2007-01-26Deal with zero wraparound in DVMA range checks;Marc Aurele La France
Fix default DVMA range for Schizo's with no "virtual-dma" property; Add TSB size indicator to Schizo & Psycho debugging messages. ok jason@
2007-01-26Workaround for an issue with em(4) interfaces on Lenovo X60/T60 laptops whereTobias Weingartner
the interface will fail to initialize with an EEPROM error if the interface does not have a link upon boot. Tested by mk@ and janek@ From Jack Vogel@Intel via brad
2007-01-26remove duplicate test; from bradJason Wright
2007-01-26remove ancient device-specific trick from ffs1_blkpref()Pedro Martelletto
okay toby@ millert@
2007-01-26When switching mode inherit the TUN_NBIO and TUN_ASYNC flags and clearClaudio Jeker
these flags on close. OK mpf@
2007-01-26As per PCI specs, disable an adapter's transaction response whileMarc Aurele La France
sizing its BARs. tested niallo@, tsi@, ian@, mk@, sturm@, kettenis@, krw@, beck@, drahn@ ok beck@, kettenis@, drahn@
2007-01-25Be a bit more verbose during attach even without ACPI_DEBUG for now.Michael Knudsen
2007-01-25Install an indicator sensor to show if we're docked or not.Michael Knudsen
Note that right now status appears to not be detected correctly on all machines, but let's expose what we think we know.
2007-01-25Make debug output a tad more consistent.Michael Knudsen
2007-01-25Remove comment that I committed by accident.Michael Knudsen
2007-01-25Do the sensor magic correctly. Found by Constantine Murenin.Marco Peereboom
help from mickey
2007-01-24Deal with weird systems that return bogus device numbers for stuff that's notMark Kettenis
really there.
2007-01-24Actually establish interrupt handler in !ioapic_cold case.Mark Kettenis
ok marco@
2007-01-24Check nioapics to see whether we're using I/O APICs.Mark Kettenis
ok marco@
2007-01-24revert changes committed between r1.25 and 1.26.Damien Bergamini
this breaks some RT2560 adapters. pointed out by krw@ and Pierre Riteau.
2007-01-23Handle not-all-lapics intterupts.Mark Kettenis
2007-01-23adjust m_data and m_len directly rather than calling m_adj().Marcus Glocker
From tsutsui@NetBSD over brad, some corrections by claudio@, tested by brad on sparc64 and otto@ on landisk. OK claudio@
2007-01-23Fixes for static integer settingJordan Hargrave
thanks to giovanni ok marco@
2007-01-22Fix a comment and reduce the chattyness of some debug.Michael Knudsen
2007-01-22Add acpidock here too.Michael Knudsen
Gently reminded by marco (``AMD64!'').
2007-01-22Some nits from fkr@, thanks!Michael Knudsen
2007-01-22Add commented out acpidock(4) entry.Michael Knudsen
Reminded by marco.
2007-01-22Actually look for docking stations by looking for _DCK nodes.Michael Knudsen
ok marco
2007-01-22Tell config about acpidock.Michael Knudsen
ok marco
2007-01-22Add driver for ACPI docking stations.Michael Knudsen
Not completely functional yet, e.g. undocking doesn't work yet but put it in the tree to be able to safely work on this. ok marco
2007-01-22Allow pmap_zeropage and pmap_copypage to work with cache enabled onMiod Vallat
MicroSPARC-1, since cache is not write allocate; also provide a smarter routine to flush a small section of the data cache, but do not enable it since we almost never flush less than 2KB (which is the whole MS1 D cache size); adapted from NetBSD, tested on SPARCclassic.
2007-01-22use the MI DP8390 driver instead of rolling our own functionsMartin Reindl
from NetBSD
2007-01-22Fix KAME cvsweb urlsMiod Vallat
2007-01-22iterate over the endpoints looking for appropriate interface descriptors toDavid Gwynne
use. this makes my adsl modem and ckeuthes cable modem work. idea from freebsd, via a diff from Krystian Baniak
2007-01-22regenerateChris Kuethe
ok dlg@
2007-01-22Add the USB interface for my cable modem which is now usableChris Kuethe
ok dlg@
2007-01-21Use addic. %r31,%r31,1 instead of addic. %r31,%r31,%r1.Mark Kettenis
2007-01-21Use MII_ANEGTICKS_GIGE instead of MII_ANEGTICKS.Mark Kettenis
2007-01-21Fix typo. From brad@Mark Kettenis