Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-04-04 | ratecheck(9) only seems to be used to limit things to very coarse intervals | David Gwynne | |
like .25 seconds or 5 seconds. the accuracy of microuptime is not really needed then, so switch it to getmicrouptime. ok henning@ art@ | |||
2008-04-04 | tht is cool cos it generates interrupts when the link state change. | David Gwynne | |
however, tht is uncool cos it generates these interrupts spuriously (up to 8000 times a second). this rate limits the reading of the link state off the hardware to 100 times a second. less bus_space reads is a good thing. tested by and ok thib@ | |||
2008-04-04 | if full-duplex is being turned on, also set the oprtational mode to | Jacob Meuser | |
for both recording and playback. ok ratchov | |||
2008-04-03 | Use atomic operations to invalidate TSB entries. | Mark Kettenis | |
2008-04-03 | Clean up the DMA read/write control register setup code and add some | Brad Smith | |
comments. Tested by a number of users with a variety of chipsets. From FreeBSD ok kettenis@ | |||
2008-04-03 | Add missing half duplex flags for the media status. | Brad Smith | |
ok kettenis@ | |||
2008-04-03 | Switch it(4) back to PnP config mode. Avoid possible | Oleg Safiullin | |
conflicts with SMSC or similar chips. | |||
2008-04-03 | Make ebus(4) work on sun4v. | Mark Kettenis | |
2008-04-03 | Some cosmetic changes. | Mark Kettenis | |
2008-04-03 | Ensure that we wrap around to the start of the TXD buffer when incrementing | Joel Sing | |
the TXD pointer beyond the end. Fixes PR5786. | |||
2008-04-02 | Add nsgphy(4). | Mark Kettenis | |
2008-04-02 | Add support for the National Semiconductor Saturn (which really is a Sun | Mark Kettenis | |
Cassini MAC integrated with a National Semiconductor DP83865 PHY). | |||
2008-04-02 | Add support for the DP83865. | Mark Kettenis | |
ok brad@ | |||
2008-04-02 | regen | Mark Kettenis | |
2008-04-02 | Add the National Semiconductor DP83865 Gigabit PHY. | Mark Kettenis | |
2008-04-02 | Rewrite the startup code for the mvme88k bootblocks, once again. Some of | Miod Vallat | |
them (especially the netboot ones) will now self-relocate, which makes BUG configuration much simpler. WARNING: for disk-based systems, you need to update bootxx and bootsd at the same time. New bootsd will not run when loaded from an older bootxx. This doesn't matter much since you need both with installboot. | |||
2008-04-02 | fix bad printf if metadata clearing failed | Martin Reindl | |
from Rainer Giedat ok marco@ | |||
2008-04-02 | regen | Brad Smith | |
2008-04-02 | Add the Cicada CS8204 quad port PHY. | Brad Smith | |
From FreeBSD ok sthen@ | |||
2008-04-02 | For some reason using the ASI_SCRATCHPAD register at offset 0x08 makes the | Mark Kettenis | |
t1k freak out upon reboot/halt/powerdown. Use the register at offset 0x10 instead. | |||
2008-04-02 | Return right away for unknown media types instead of falling | Brad Smith | |
through and setting the half duplex flag. ok jsg@ | |||
2008-04-02 | repair code which blocks passing fd's for block devices or | Theo de Raadt | |
dir-outside-chroot-directory into a chroot jail ok markus | |||
2008-04-02 | sync | Theo de Raadt | |
2008-04-02 | intel host bridge | Theo de Raadt | |
2008-04-02 | attach the ZTE CMDMA MSM modem from qualcomm. | Felix Kronlage | |
from freebsd, ok jsg@ | |||
2008-04-02 | regen | Felix Kronlage | |
2008-04-02 | add another vendor id for Qualcomm as well as one of their modems. | Felix Kronlage | |
from freebsd. ok jsg@ | |||
2008-04-02 | Correct error message printing and add a missing error | Brad Smith | |
message for bus_dmamap_load() failure in bce_attach(). ok dlg@ | |||
2008-04-01 | typo | Miod Vallat | |
2008-04-01 | Add Corega CG-WLUSB2GPX. | Jonathan Gray | |
From FreeBSD. | |||
2008-04-01 | regen | Jonathan Gray | |
2008-04-01 | Corega CG-WLUSB2GPX | Jonathan Gray | |
2008-04-01 | toast unused args from a printf call; ok deraadt | Constantine A. Murenin | |
2008-04-01 | match more versions of w83793g; whilst here, also ensure that the bank 0 | Constantine A. Murenin | |
registers are only tested if bank 0 is selected; 'looks ok' deraadt | |||
2008-04-01 | Add some defines and remove some of the magic numbers from the code. | Brad Smith | |
From DragonFly ok jsg@ | |||
2008-04-01 | only need 8 words to learn about i2c spd jc-42.4 sensors | Theo de Raadt | |
2008-03-31 | nope, sorry, the miod/naddy raidframe change breaks almost all ramdisks. | Theo de Raadt | |
the basic idea is that ramdisks boot the same way as swap generic -- this commit also improves the comment in that area. in this case the one outlier is raidframe, and those who use it will no longer be able to put off repairing it -- raidframe must follow the same setroot() / bootdv API that everything else in the system uses. debugged with krw | |||
2008-03-31 | purge memory in the tty clist rings as we advance; tested by a few | Theo de Raadt | |
2008-03-31 | Refine "netboot" interface group semantics to indicate the interface we | Theo de Raadt | |
booted from to the most precision; preferring the boot device, or if that is not known, the root device discussed with miod and reyk tested by beck | |||
2008-03-31 | Switch bootloaders to mi loadfile(). | Miod Vallat | |
2008-03-31 | Make MULTIPROCESSOR kernels work on sun4v. Won't gracefully halt, powerdown | Mark Kettenis | |
or reboot yet, but that will (hopefully) be fixed in the near future. | |||
2008-03-31 | Correctly load ZMAGIC a.out binaries. | Miod Vallat | |
2008-03-31 | Compile libsa with -D_STANDALONE. | Miod Vallat | |
2008-03-31 | strictly interpret msg_controllen to be the exact total length of the | Theo de Raadt | |
cmsg's, including alignments, ie. the sum of CMSG_SPACE()'s. any other interpretation would be in violation of various unix specifications. RFC3542 section 20.2 is totally and completely wrong -- it is not allowed to over-ride the specification of msg_controllen, since the intent is that one could mix-and-match various types of cmsg's and an exact match is therefore required. ok kettenis, tested by many | |||
2008-03-31 | Fix format strings in a.out loader. | Miod Vallat | |
2008-03-31 | if iobase is 0, lm child is not configured by the bios; ok kettenis | Theo de Raadt | |
2008-03-31 | Add define for 24 hour time. | Joel Sing | |
2008-03-31 | Re-enable lii(4). | Brad Smith | |
ok deraadt@ | |||
2008-03-31 | Oops, a chunk was commited too early. | Miod Vallat | |
2008-03-30 | nam2blk[] clearly must contain "rd" ... found by krw | Theo de Raadt | |