summaryrefslogtreecommitdiff
path: root/sys
AgeCommit message (Collapse)Author
2004-12-29fix a few more locators with ? that snuck in; mickey okTheo de Raadt
2004-12-29indentation repair; marco okTheo de Raadt
2004-12-29from freebsd: ehci.c 1.13, ehci_pci.c 1.13, ehcireg.h 1.5, ehcivar.h 1.3David Gwynne
log message: Attempt to follow the correct procedure for synchronising with the system BIOS to disable legacy device emulation as per the "EHCI Extended Capability: Pre-OS to OS Handoff Synchronisation" section of the EHCI spec. BIOSes that implement legacy emulation using SMIs are supposed to disable the emulation when this procedure is performed. tested on various archs by jsg@ and me ok pascoe@, looks sane jsg@
2004-12-29another Marvell PHYBrad Smith
2004-12-29Add commented entries for David Young's Realtek 8180 driver (rtw).Jonathan Gray
2004-12-29regenBrad Smith
2004-12-29another Marvell Gig PHY, noticed on a macppc system.Brad Smith
2004-12-29Driver for Realtek 802.11 devices from NetBSD.Jonathan Gray
Not yet working.
2004-12-28Sync with recent NetBSD ieee80211_compute_duration() changes.Jonathan Gray
2004-12-28add sqphyBrad Smith
2004-12-28when panicing from timeout_add being < 0, print the value; ok miodTheo de Raadt
2004-12-28clean dirty accident by miodTheo de Raadt
2004-12-28indent properlyTheo de Raadt
2004-12-28Since we don't enable interrupts until autoconf is over, we don't needMiod Vallat
to skip the first few clock interrupts, as done on luna68k.
2004-12-28fix new line in dmesg print on 8k cpusMichael Shalayeff
2004-12-28correct snprintf return val mishandling; ok krw marcoTheo de Raadt
2004-12-28Don't allow an infinite number of SCSI bus resets per i/o.Kenneth R Westerback
ok marco@.
2004-12-27Fix tag handling for non-U320/packetized devices. Allow tags for theseKenneth R Westerback
devices. Tidy up man page, remove lies and cruft. ok marco@.
2004-12-27unusedMartin Reindl
ok miod@
2004-12-27Gremlin crept in; found by drahn@Miod Vallat
2004-12-27Finally put copyrights on files I wrote _long_ ago. prodded by miod@Dale Rahn
2004-12-27remove useless debugging leftoverPeter Valchev
2004-12-26boundry -> boundaryBrad Smith
2004-12-26strored -> storedMiod Vallat
2004-12-26_C_LABEL(foo) -> foo when in comments.Miod Vallat
2004-12-26TypoMiod Vallat
2004-12-26TyposMiod Vallat
2004-12-26Better include-once-only preprocessor symbol name.Miod Vallat
2004-12-26If writedisklabel() is invoked on a DPME-labeled disk, read back the DPMEMiod Vallat
partition table - it might have been modified behind our back. From NetBSD.
2004-12-26_HP300_INTR_H_PRIVATE is long dead.Miod Vallat
2004-12-26Use list and queue macros where applicable to make the code easier to read;Miod Vallat
no change in compiler assembly output.
2004-12-26Bounce the mbuf to the BPF listener before committing it to the wirePeter Valchev
in the TX case, fixes rare problems associated with accessing already free'd memory if the encap routine bails out (panic in PROMISC mode). ok deraadt
2004-12-26htole32 and friends to get this working on big endian (macppc)Peter Valchev
2004-12-26Properly indent with tabs rather than spaces.Jonathan Gray
Noticed by brad@
2004-12-26Remove uneeded ifdefs/code.Jonathan Gray
2004-12-26add BGE_QUIRK_PCIX_DMA_ALIGN_BUG for BCM5701 A0Brad Smith
2004-12-26do not waste time having ises onTheo de Raadt
2004-12-26enable ami. ok beck@Marco Peereboom
2004-12-26Make debug less verbose. Prompted by mickey@Marco Peereboom
And for the archives: * Peruse the handshake mechanism between driver and firmware from the Linux driver which is maintained by LSI. * Copy only the first 16 bytes of the mailbox (under heavy IO overwriting the 17th byte could cause the firmware to crash). * Limit ULTRA HBAs (a.k.a. schwartz) to one single LD (Logical Drive) because for some reason having more than 1 ccb causes the firmware to hang. Whenever the driver limits the LDs it issues a warning in dmesg.
2004-12-26This should fix long outstanding issues with ami(4). The reportedMarco Peereboom
symptoms that were fixed are: * Very slow throughput * ccb timeout (i.e. ami0: timeout ccb 1) * All IO to ami devices hangs * Only 1 LD (Logical Drive) can be accessed at the same time * System hangs/freezes when running IO to ami cards. Issues it doesn't fix: * Really old ULTRA-2 controllers still crash whenever more than 1 LD are accessed at the same time therefore the driver limits the maximum LDs to 1. Tested by several folks and ok beck@ mickey@
2004-12-26Make this compile and bring the last few vga fixes in.Miod Vallat
Compiles (with an ega0 at isa?; wsdisplay* at ega? couple of lines in the kernel configuration file); not tested on real hardware.
2004-12-25Do not allow loading a font in an used font slot; discussed with and ok mickey@Miod Vallat
2004-12-25Use list and queue macros where applicable to make the code easier to read;Miod Vallat
no functional change.
2004-12-25correct indentTheo de Raadt
2004-12-25in real C, there is not , after the last enum entry; ok reykTheo de Raadt
2004-12-25much space has been regained because of ramdisk fitting exercises inTheo de Raadt
MI code. this has led to the i386 "laptop" floppy having a lot of extra space. heck, let's add minimum usb support! umass, ukbd, aue, url, and wi at usb should now work here.
2004-12-25strncmp() the correct size when looking for ki2c companion.Miod Vallat
2004-12-25- remove unneccessary breakBrad Smith
- reorder operations and a few return (0)'s to break's with MII_TICK switch case
2004-12-24brad should compile before commitingTheo de Raadt
2004-12-24init Jumbo RX ring by default.Brad Smith
ok krw@