summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2003-02-03lanergy appian pci lite; peter.galbavy at knowtion.netJason Wright
2003-02-02Real (although generic) negotiation results message during boot.Kenneth R Westerback
2003-02-01Look, noone cares if you run of out rx descriptors and whining about it just ↵Jason Wright
makes the situation worse.
2003-01-31These cards just don't master... don't bother trying to enable it.Jason Wright
2003-01-31Working wscons attachment and block move operations; joint debug by mickeyMiod Vallat
and myself. wsdisplay at sti will be enabled as soon as byte-size rom font loading is done.
2003-01-31more quietTheo de Raadt
2003-01-31fetch the font and use it, some cleanup and knfMichael Shalayeff
2003-01-30Many Ultra 5s likes to hang when starting. The last thing on the consoleHenric Jungheim
is: "pcons at mainbus0 not configured". The problem is that the IDE chip asserts a PCI interrupt line even while the registers on the chip claim that it is not. Doing a channel reset helps, but is almost certainly only a work-around for the real problem. Several other work-arounds have been suggested, but this one has had the most testing. Many have looked and helped (notably grange@). Thanks. ok jason@
2003-01-29oops, test-compiled the wrong source, missing parenMichael Shalayeff
2003-01-29make it work on both yamaha and ensoniq mpus; from hunter@dg.net.uaMichael Shalayeff
2003-01-28Japanese type 5 layout; from a picture of the actual layout on sunsolve,Miod Vallat
checked against prom behaviour with a jumpered type 5.
2003-01-27pad minimum frames with 0's; based on netbsdJason Wright
2003-01-27pad tx buffer on < minimum length frames; based on NetBSD; tested on hppa.Jason Wright
2003-01-27Pad tx buffer with 0's on minimum sized frames; based on NetBSD.Jason Wright
2003-01-26compute record high water mark from record parameters not play parameters; ↵Jason Wright
from NetBSD kern/19614
2003-01-26regenMichael Shalayeff
2003-01-26a bunch of devices used in hp machinesMichael Shalayeff
2003-01-25hppa provides its own IPL_AUDIO, tooJason Wright
2003-01-23- Either memset() or loop and set to zero, not bothJason Wright
- reading RX_COMPLETION is a waste of time (and a -slow- PCI read vs. an, albeit uncached, memory access to determine the same thing). - on RX_OVERFLOW, reset the board; the RX unit has probably wedged
2003-01-23be consistant on the spl everywhere and use splimp(), this seems to prevent ↵Michael Shalayeff
wi_mgmt_xmit: xmit failed messages; millert@ testing and ok
2003-01-22Recognize the Voyager ``Compact-1'' keyboard layouts.Miod Vallat
Currently, they are mapped to the corresponding type 5 layouts, but some tweaks might be necessary in the future.
2003-01-21Use a 2-level timeout for hostap. Instead of of sending a stationTodd C. Miller
a deauth/disassoc packet when the inactivity timer fires, just set a flag, re-queue it and set the master wihap timer if needed. What this does is to effectively bundle (and serialize) deauth/disassoc packets so if a large number need to be sent at once we don't stomp all over the card. We also only do at most 10 stations at a time. The sta_list has been changed from a doubly linked list to a tailq. Inactive stations are kept at the head of the queue, new ones are added to the tail. Idea and OK by mickey@, prompted by an issue found by merith AT vantronix DOT net
2003-01-21fix cut and paste piece in dma programming, caused jumpieness in animation; ↵Michael Shalayeff
good diagnose by Kamil Andrusz <wizz@mniam.net>
2003-01-21Stub out hostap bits #ifdef SMALL_KERNEL to free up space on theTodd C. Miller
floppies; OK mickey@ deraadt@
2003-01-21do not need explicit match on intel; from alexander.guy@andern.orgMichael Shalayeff
2003-01-21bzero() siop_target structure after malloc().Kenneth R Westerback
In combination with previous openings fix makes Niklas happy. Probably fixes some negotiation bugs too. Another good candidate for -stable.
2003-01-20syncTheo de Raadt
2003-01-20the real liar is Tony Pierce <tonypi@pcisig.com>. he says this is a ↵Theo de Raadt
"misunderstanding". how far can one get from the truth
2003-01-19Temporary fix for PR#3069 (thanks for the report, Alex Cichowski), untilThierry Deval
I find time to really follow all cases. At least it works here, and doesn't add new problems, it seems.
2003-01-19Wording.Thierry Deval
2003-01-17syncTheo de Raadt
2003-01-17typoTheo de Raadt
2003-01-1780-pin -> 80-wire in debug output; requested by chris@Alexander Yurchenko
2003-01-16recognize the Hauppauge wintv-fm #191; from wolfgang@wsrcc.comMichael Shalayeff
2003-01-16syncTheo de Raadt
2003-01-16fuckheadsTheo de Raadt
2003-01-16Missing breakAlexander Yurchenko
2003-01-16- add two inline functions for accessing chip configuration spaceAlexander Yurchenko
through the index and data registers - proper registers and bits names - more debug in cable detection - back the code for checking interrupt asserting in case of shared IRQ, it seems to solve the problem with repeatable ``bugus intr'' messages in PDC20376 (one more step to get it working); based on tests by j@pureftpd.org Some input and ok from costa@
2003-01-16regenMichael Shalayeff
2003-01-16add support for a few more devices (sis7012, nforce, amd768, amd8111), from ↵Michael Shalayeff
netbsd
2003-01-16Add channel number to report of registers mapping type.Alexander Yurchenko
2003-01-16Don't hardcode IO mapping for cmd/ctl regs, use pci_mapreg_type()Alexander Yurchenko
instead. This allows chips with memory mapped registers (e.g. Promise PDC20376) to work. ok costa@
2003-01-15regenMichael Shalayeff
2003-01-15a few more products and wdcMichael Shalayeff
2003-01-15Get rid of the remaining vm_offset_t in pci drivers.Artur Grabowski
2003-01-15Get rid of vm_offset_t in bktr.Artur Grabowski
2003-01-15revert last change; request from mickey@Alexander Yurchenko
2003-01-14regenAnil Madhavapeddy
2003-01-14add ATI Radeon 9500/9700 gfx cardAnil Madhavapeddy
henning@ ok
2003-01-14In wihap_shutdown() use a broadcast for disassoc and deauth packetsTodd C. Miller
instead of sending a separate packet to each station. Based on a patch from merith AT vantronix DOT net