summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2006-11-29Show debug messages depending on current debug level, which may beUwe Stuehler
changed with ddb or sdio(8).
2006-11-29add ioctl hack to support the sdio(8) userland toolUwe Stuehler
2006-11-29Oh, scsi layer already has timeout stuff for us.Alexander Yurchenko
2006-11-29oops, i missed ips when giving scsibus an attach args for drivers to fillDavid Gwynne
in. dedicated to grange, the most talented man at h2k6
2006-11-28give scsi controllers a real attach args to fill in when attaching scsibus.David Gwynne
ok miod@ marco@ deraadt@
2006-11-28I just don't know why I decided to set block count to 512 unconditionalyAlexander Yurchenko
on every scatter-gather transfer.
2006-11-28identify the chipset.Brad Smith
2006-11-28Fixed clearing arg for acpi_init_picJordan Hargrave
ok kettenis@
2006-11-28regenRobert Nagy
2006-11-28add IDs for SiS550/1/2 audio and SiS530/1/2 vgaRobert Nagy
2006-11-28move printing of the interrupt string into re_attach().Brad Smith
2006-11-28Better debug messages.Alexander Yurchenko
2006-11-28Let est not complain about certain strange msr values on Pentium 4's. We can'tDimitry Andric
use the feature on them anyway, since we don't have enough info from Intel.
2006-11-28add additional link states to report the half duplex / full duplexReyk Floeter
state, if known by the driver. this is required to check the full duplex state without depending on the ifmedia ioctl which can't be called in the kernel without process context. ok henning@, brad@
2006-11-28Support "trace /p <pid>" to show the stack trace of any process.Uwe Stuehler
(Keep in mind that $radix is 0x10 by default.); ok by many
2006-11-28fwscsi doesnt exist, so dont have a commented entry for it left around toDavid Gwynne
confuse people.
2006-11-28Implement PT_STEP.Mark Kettenis
2006-11-28Always call cyrix3_get_bus_clock in cyrix3_cpu_setup, since we mightDimitry Andric
need the bus clock later. Add bus clock case for Core cpu's. Rewrite p[34]_update_cpuspeed to make of already detected bus clocks.
2006-11-28some additional registers.Brad Smith
From Pyun YongHyeon <pyunh at gmail dot com>
2006-11-28Try to detect stalled xfers with timeouts.Alexander Yurchenko
2006-11-28sync with new miidevs entries.Brad Smith
2006-11-28regenBrad Smith
2006-11-28rename Marvell Gig PHY E1000_5/6 to E1116/E1118.Brad Smith
From Pyun YongHyeon <pyunh at gmail dot com>
2006-11-28Let nmea(4) use tty timestamps if they are enabled. Using a GPS receiverMarc Balmer
that provides a PPS signal, more precision and less jitter can be expected. With my test setting (a Garmin GPS 18 LVC hooked up to a i386 machine) I observed a skew of 0.03 to 0.05 seconds between the tty timestamp and the soft timestamp. "put it in" deraadt
2006-11-28rename scsibus_attach_args to scsi_attach_args. this can help avoidDavid Gwynne
confusing when trying to attach scsibus to a hba, since it is really meant for attaching scsi devices to scsibus. ok deraadt@ marco@
2006-11-28Don't display cpu brand string, features, etc. a second time, when booting an MPDimitry Andric
kernel on a single cpu machine. discussed with kettenis@
2006-11-28another motorola device.Dale Rahn
2006-11-28syncDale Rahn
2006-11-28yet another cdce device.Dale Rahn
2006-11-28acpi may steal power management functionality, in which case weMark Kettenis
cannot io map the device. Bail out without warning. If we want to retain the rgn we could re-enable io and be very very careful. ok deraadt@
2006-11-28The default debug level is ``error'' for now.Alexander Yurchenko
2006-11-28Keep free ccbs in a queue.Alexander Yurchenko
2006-11-28add needs-flag to allow pxaudc to compile without usbf (to get theUwe Stuehler
previous behaviour of just disabling the USB device controller)
2006-11-28enable usbf/cdcef, can be used during install (somehow)Theo de Raadt
2006-11-28Only use est and other non-acpi setperf mechanisms, if acpi is notDimitry Andric
attached. Also moves their initialization and printing of information until after the primary cpu has attached to mainbus. prodded by deraadt
2006-11-28Add some debug facility.Alexander Yurchenko
2006-11-28remove a comment that was describing a behaviour that was changed over nineDavid Gwynne
years ago.
2006-11-28unhandled ioctls return ENOTTY, not 0David Gwynne
2006-11-28remove dead codeDavid Gwynne
2006-11-28Reorder cfxga initialization sequence for clarity, and minor tweaks; noMiod Vallat
functional changes.
2006-11-28acpi may steal the timer and speedstep functionality, in which case weTheo de Raadt
cannot io map the device. rest of the attach() functionality is still safely intact. we simply do not have to warn about mapping failing. ok kettenis
2006-11-28Make malloc() print out a warning message when returning NULL due toPedro Martelletto
M_CANFAIL, idea from miod@, okay deraadt@
2006-11-28Instead debug message for WEP key setting, just complain if WEP keyMarcus Glocker
setting fails. Always return with error in malo_init() if someting fails. ok claudio@
2006-11-28Pre-allocate the TX DMA maps intead of creating and destroying a DMA mapBrad Smith
per packet sent.
2006-11-28- ixgb_dma_alloc(): Uncomment the line setting the DMA tag to NUL upon failure.Brad Smith
- ixgb_dma_free(): Return if the DMA tag is NUL.
2006-11-28style changes and cleaning. no op.Brad Smith
2006-11-28Pretend to implement SCSI SYNCHRONIZE_CACHE command.Alexander Yurchenko
2006-11-27Replace DMA operations with something less ugly. Still a lot of work remains.Alexander Yurchenko
2006-11-27Post-process PCI config space opregionsJordan Hargrave
Fixed acpiprt for stinky presario v3000 ok marco@
2006-11-27more magic removalBob Beck
ok miod@, deraadt@