summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2006-05-30hush; ok dlgJason Wright
2006-05-29increase the timeout on the enabling commands during attach so that sasDavid Gwynne
controllers have a chance to respond.
2006-05-29Check for possible NULL dereference in aml_showvalueCan Erkin Acar
tested & ok gwk@ dim@
2006-05-29add the sas1064 as a supported deviceDavid Gwynne
2006-05-29Convert NetBSD new-style %b strings to old-style.Miod Vallat
2006-05-29Do not cast a bus_addr_t back in to a pointer as these types may not beMiod Vallat
compatible; plus this makes a computation clearer. ok damien@
2006-05-29Regen (although this does not change anything for these keyboards).Miod Vallat
2006-05-29Add support for the audio volume keys found on many laptops' builtinMiod Vallat
keyboard. These specific keys are posted to a kernel thread which will issue mixer commands if an audio device exists. Written by Alexey Vatchenko <avv , mail zp ua> with tweaks by deraadt@ and I.
2006-05-29limit the number of scatter gather entries sent with the scsi_io commandsDavid Gwynne
so it fits in the maximum request frame size. this will do until i can write sgl chaining in a nice way.
2006-05-29add more mpi goo for scsi task management and port configDavid Gwynne
2006-05-29Nuke unused local variable (ok beck deraadt) and unused structMichael Knudsen
bio_softc declaration (ok and testing dlg).
2006-05-29NVIDIA nForce MCP04 (some kind of nForce4) AC97 should work hereJonathan Gray
as well going by the Linux driver. "fine by me" jason@
2006-05-29put the 64bit flag in the right place on the scatter gather list.David Gwynne
2006-05-29split mpi_poll out into mpi_complete, and rewrite poll to use start andDavid Gwynne
complete to do its job. enforce the use of a timeout on polled commands and make the callers check if the timeout happened.
2006-05-29remove some if 0 codeDavid Gwynne
2006-05-29bump mpi up to using 64bit for all dvaDavid Gwynne
2006-05-29Only claim an interrupt if a real interrupt event occured, prevents falseDale Rahn
counts on shared interrupts. Flush the tx data buffer before handing the buffer over to the hardware, fixes tx on arm. ok pval@ looked at by jsg@
2006-05-29Fix a comment, remove a stray variable assignment.Christopher Pascoe
2006-05-29Eliminate variable shadowing.Christopher Pascoe
From NetBSD r1.104
2006-05-29Missed header file change in previous commit.Christopher Pascoe
2006-05-29Correct status value check for OHCI isoc transfer;Christopher Pascoe
the spec says that "not accessed" is 111x, not 1111. From NetBSD rev1.158
2006-05-29Only check USBD_FORCE_SHORT_XFER for writes.Christopher Pascoe
From NetBSD rev1.164
2006-05-29Only do the software part of an abort if we are dying.Christopher Pascoe
2006-05-29Only do the software part of an abort if we are dying.Christopher Pascoe
2006-05-29Check the return value of aml_ederef isnt NULL before use.Gordon Willem Klok
Fixes a few panics. ok canacar@
2006-05-29minor space nitPeter Valchev
2006-05-29garbage collect NFE_NO_JUMBO.Brad Smith
2006-05-29Add embedded controller support.Can Erkin Acar
ok marco@ deraadt@ testing & ok gwk@
2006-05-29Fix a memory overrun in the aml parser code.Can Erkin Acar
ok deraadt@, gwk@
2006-05-29formattingBrad Smith
2006-05-29Make sure all physical addresses are filled in the qTD even when we haveChristopher Pascoe
a page offset. From Dan Ellis via NetBSD rev 1.103
2006-05-28Make sure to honor the USBD_FORCE_SHORT_XFER flag and generate an emptyChristopher Pascoe
transfer when necessary. From Dan Ellis via NetBSD rev 1.102
2006-05-28- force the maximum receivable frame size down to 1518 bytes forBrad Smith
strict alignment architectures for the time being. - remove the m_adj() on non-strict alignment architectures as this seems to resolve the Jumbo crashing issue. tested by a few developers. ok reyk@
2006-05-28junk to read and write configuration pages.David Gwynne
2006-05-28Change the timedelta sensor descritpion so that the first four bytes containMarc Balmer
the NTP identifier (filled with spaces), followed by a space and the station name (which might be the same as the NTP identifier). All timedelta sensor have to follow this scheme as OpenNTPD needs it. Requested by henning.
2006-05-28don't #undef SDMMC_DEBUGUwe Stuehler
2006-05-28Support for standard SD host controllers like the Ricoh 5C822, a smallUwe Stuehler
generic bus layer, and SCSI emulation for SD/MMC memory cards.
2006-05-28Allow len == 1 in systrace_fname(), so systraced processes can proceedPedro Martelletto
their *stat() calls, for example, and get ENOENT, which is expected for "", instead of a forced EINVAL. Fixes the spurious 'rm: : Invalid argument' warnings when building with option USE_SYSTRACE, reported on ports@. Okay provos@ sturm@ deraadt@
2006-05-28remove the dev/isa/isavar.h include, as it is not neededFelix Kronlage
ok miod@, martin@
2006-05-28Remove device id from hotplug events.Michael Knudsen
ok henning
2006-05-28always set if_hardmtu.Brad Smith
2006-05-28Remove dead code; free commit on behalf of dlg@Uwe Stuehler
2006-05-28regenJonathan Gray
2006-05-28Add a few more devices from submitted dmesgs.Jonathan Gray
2006-05-28pass the reply from the hardware via the ccb rather than on the stack toDavid Gwynne
the function handling the completion. this means that the completion function can do nothing with the reply, instead leaving it up to the requester to deal with.
2006-05-28Include device id in hotplug events. This will be used by ntpd to checkMichael Knudsen
sensors on attach/detach. hotplugd changes following in a minute. ok henning.
2006-05-28rename mpi_complete to mpi_poll and make it call mpi_start itself.David Gwynne
2006-05-28cleanup whitespaces, tabs are so much nicerFelix Kronlage
ok mbalmer@
2006-05-28use if_hardmtu for MTU ioctl handler.Brad Smith
2006-05-28- remove ETHER_MAX_LEN_JUMBO and ETHERMTU_JUMBO.Brad Smith
- use if_hardmtu for MTU ioctl handlers. ok reyk@