summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2003-06-27syncHenning Brauer
2003-06-27Sunix covers a whole range of cards under this one ID so change the nameHenning Brauer
accordingly
2003-06-27ansi functionsJason Wright
2003-06-27These don't need linear mappings either.Jason Wright
2003-06-27Don't need LINEAR mappings.Jason Wright
2003-06-27ansify and add an alaw <-> mulaw conversionJason Wright
2003-06-26syncTheo de Raadt
2003-06-26intel PRO_2100_3B wirelessTheo de Raadt
2003-06-26alignment for extent_alloc_subregion cannot be zeroMichael Shalayeff
2003-06-26constify readonly dataMichael Shalayeff
2003-06-26regenMichael Shalayeff
2003-06-26add netgear ha501 802.11aMichael Shalayeff
2003-06-26fix probing for ami raid owned hba properly; mjacob@ okMichael Shalayeff
2003-06-26it's better w/ a comma between irq and addressMichael Shalayeff
2003-06-26align acb size to 256 bytes to avoid cache issues; krw@ okMichael Shalayeff
2003-06-26space vs tab consistancyMichael Shalayeff
2003-06-25constify some readonly dataMichael Shalayeff
2003-06-25fix #if/ifdef issue and use u_int16_t instead of int where appropriateMichael Shalayeff
2003-06-25Typo police: attribute is better written with an 'r'.Miod Vallat
2003-06-25Acknowledge the status interrupt in some odd and usually rare cases, whichMiod Vallat
could render a sparc so crazy it would panic...
2003-06-25mimic delays pattern from i82365 on socket enable. actually pull the reset ↵Michael Shalayeff
line before clearing it. this together makes some more cards work and unwedges my wedged wedgy on reboot alright; miod@ ok and testing
2003-06-25AN_RID_ACTUALCFG gets the same endianesslessness as AN_RID_GENCONFIGMichael Shalayeff
2003-06-25add topic97b support; from netbsd and tested by Pedro la Peu <pedro@am-gen.org>Michael Shalayeff
2003-06-25fix all the _BITS and their useMichael Shalayeff
2003-06-25implement new means of manipulating buf queues, bufq.Ted Unangst
accessed with BUFQ macros, bufq structs support extensible, potentially changable algorithms and queue formats. the current default scheme should support nice priority based queuing, but is missing some vfs_bio.c support. only on wd.c for now, other drivers are easy converts. as a side bonus, this makes the driver code look cleaner. idea for the name comes from netbsd, but this scheme is incompatible. thanks to various people for testing. ok grange@
2003-06-25Restore the original wdcdebug_mask instead of clearing DEBUG_PROBE whenHenric Jungheim
done with it. This makes "wdcprobe()" consistent with "wdcattach()". ok grange@
2003-06-25Extend the sparc bus_space_tag_t to store access endianness in it, andMiod Vallat
adapt all bus_space functions to do proper endianness conversion whenever necessary, except for the raw ones. This allows us to remove the forced endianness conversions in if_wi. with help from and ok mickey@
2003-06-25Let the stp driver use different bus_space_tag_t for its own device access,Miod Vallat
and for access to the pcmcia windows from the pcmcia drivers.
2003-06-25#include <machine/intr.h> is not necessary here.Miod Vallat
2003-06-25a bit whitespace/tab KNF while I'm hereHenning Brauer
2003-06-25support Moxa C104HHenning Brauer
from Raul Aldaz <raul.aldaz at grupocarreras.com> with minor polishing by me, thanks!
2003-06-25regenHenning Brauer
2003-06-25Moxa C104HHenning Brauer
2003-06-24Add a "where" argument to the sparc64 interrupt code. This lets usHenric Jungheim
associate a name with each interrupt handler. This is not visible outside the kernel (yet). ok jason@
2003-06-23no need for an explicit <machine/intr.h> inclusionMichael Shalayeff
2003-06-23Split the stp driver into its core, and md attachment routines, and provideMiod Vallat
attachment routines for sparc and sparc64.
2003-06-18For HPT370 chips disable interrupt prediction and correct timingAlexander Yurchenko
value for UDMA5. Enable UDMA5 for HPT370A again since it's safe now. Work by Otto Moerbeek <otto@drijf.net> via PR 3282. Help in testing from gluk@.
2003-06-18Switch to fbxxx() API.Miod Vallat
cgsix tested and ok jason@, the rest tested by me.
2003-06-18we already set the rx descriptor length to accept vlan packets... justJason Wright
need to advertise the capability; tested by tsar at polarcap dot org
2003-06-17Sync with share/misc/license.template and add missing DARPA creditTodd C. Miller
where applicable.
2003-06-17New driver and wsdisplay type for the Weitek Power9000 and Brooktree Bt445Miod Vallat
combination, found on the Tadpole SPARCbook 3 only (later model use the Power9100 and are already supported). Untested for lack of hardware and volunteers, but carefully crafted; if it does not work out of the box, this should be a good starting point. "worth having in the tree" millert@
2003-06-17A few typos in the Bt initialisation sequence were introduced in 1.29, andMiod Vallat
curiously this only broke some cgthree clones, but not the genuine Sun's...
2003-06-16Provide more "dead_symbol + space -> symbol" entries in the compose table;Miod Vallat
fixes PR #3295
2003-06-16syncTheo de Raadt
2003-06-16remove bullshitTheo de Raadt
2003-06-16Avoid a NULL deref in cnkqfilter() for certain cases. Modeled afterTodd C. Miller
cnwrite(); closes PR 3317.
2003-06-16syncKevin Lo
2003-06-16add NS SC1201 socKevin Lo
2003-06-16- limited number of processes per systraceJun-ichiro itojun Hagino
- escape fixes for special characters markus, sturm ok. from provos
2003-06-16be more sane w/ byte swapping and leave the le archs at the same behaviour ↵Michael Shalayeff
and give be archs a better chance at getting the correct mac address as tested on the mac and hppa where mac has an additional bug w/ the phy bit still remaining and hppa seems fine; jason@ ok