Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-05-31 | mpi hardware uses an 8 bit field to describe the number of devices it has | David Gwynne | |
on a port. since 256 wont fit into 8 bits they say 0 means 256. this diff does the appropriate interpretation. it also avoids a divide by zero when we figure the openings out by dividing the number of commands the controller can support by the number of devices it supports. panic found while testing the fc controller at home. | |||
2006-05-31 | allow TULIP_TXTIMER to fit in the softc field tulip_txtimer. | Brad Smith | |
From NetBSD | |||
2006-05-31 | dont display the first manufacturing page | David Gwynne | |
2006-05-31 | c++ style comments shouldnt be in the tree | David Gwynne | |
2006-05-31 | fix Jumbo frames on strict alignment architectures by allocating a new mbuf and | Brad Smith | |
copying the Ethernet header to the new mbuf. The new mbuf is then prepended into the existing mbuf chain. From FreeBSD ok reyk@ pascoe@ jason@ | |||
2006-05-31 | order cdevs alphabetically by vendor | Felix Kronlage | |
ok brad@ | |||
2006-05-31 | Use the watchdog(4) framework for watchdog services instead of rolling | Michael Knudsen | |
more or less the same code. This means that all our watchdog drivers use the framework, and that they all can be configured using sysctl kern.watchdog.{period,auto}, and they can all use watchdogd. At least for now we still support the /dev/wdt0 char device and userland poking using ioctl. Testing by < jg ! rilk , com >, many thanks! ok deraadt | |||
2006-05-31 | int32 i >> 32 is undefined, so cast to unsigned long long first, ok dlg | Theo de Raadt | |
2006-05-31 | implement chained scatter gather lists. | David Gwynne | |
2006-05-30 | Give up trying to communicate after 10 consecutive errors - the device | Christopher Pascoe | |
is most likely not coming back. | |||
2006-05-30 | Do not reset the board, for it will not keep the interrupt configuration the | Miod Vallat | |
BIOS configured it in; from NetBSD via Andrew Daugherity. | |||
2006-05-30 | add Oxford CB950 to the list of devices having more than one BAR, so | Felix Kronlage | |
that it can be attached properly | |||
2006-05-30 | removes the isavar.h include and the ifdef bsdi cruft | Felix Kronlage | |
ok miod | |||
2006-05-30 | remove dev/isa/isavar.h include, not needed anymore | Felix Kronlage | |
ok miod | |||
2006-05-30 | sync with reality. | Christopher Pascoe | |
2006-05-30 | If a zero-length bulk or interrupt transfer is requested then assume | Christopher Pascoe | |
USBD_FORCE_SHORT_XFER to ensure that we actually build and execute a transfer. Based on changes in FreeBSD rev1.47 | |||
2006-05-30 | raise the timeout on the init commands (especially port enable) to give | David Gwynne | |
the sas controller currently being used in jasons blade 2000 a chance to respond. | |||
2006-05-30 | hush; ok dlg | Jason Wright | |
2006-05-29 | increase the timeout on the enabling commands during attach so that sas | David Gwynne | |
controllers have a chance to respond. | |||
2006-05-29 | Check for possible NULL dereference in aml_showvalue | Can Erkin Acar | |
tested & ok gwk@ dim@ | |||
2006-05-29 | add the sas1064 as a supported device | David Gwynne | |
2006-05-29 | Convert NetBSD new-style %b strings to old-style. | Miod Vallat | |
2006-05-29 | Do not cast a bus_addr_t back in to a pointer as these types may not be | Miod Vallat | |
compatible; plus this makes a computation clearer. ok damien@ | |||
2006-05-29 | Regen (although this does not change anything for these keyboards). | Miod Vallat | |
2006-05-29 | Add support for the audio volume keys found on many laptops' builtin | Miod 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-29 | limit the number of scatter gather entries sent with the scsi_io commands | David 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-29 | add more mpi goo for scsi task management and port config | David Gwynne | |
2006-05-29 | Nuke unused local variable (ok beck deraadt) and unused struct | Michael Knudsen | |
bio_softc declaration (ok and testing dlg). | |||
2006-05-29 | NVIDIA nForce MCP04 (some kind of nForce4) AC97 should work here | Jonathan Gray | |
as well going by the Linux driver. "fine by me" jason@ | |||
2006-05-29 | put the 64bit flag in the right place on the scatter gather list. | David Gwynne | |
2006-05-29 | split mpi_poll out into mpi_complete, and rewrite poll to use start and | David 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-29 | remove some if 0 code | David Gwynne | |
2006-05-29 | bump mpi up to using 64bit for all dva | David Gwynne | |
2006-05-29 | Only claim an interrupt if a real interrupt event occured, prevents false | Dale 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-29 | Fix a comment, remove a stray variable assignment. | Christopher Pascoe | |
2006-05-29 | Eliminate variable shadowing. | Christopher Pascoe | |
From NetBSD r1.104 | |||
2006-05-29 | Missed header file change in previous commit. | Christopher Pascoe | |
2006-05-29 | Correct 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-29 | Only check USBD_FORCE_SHORT_XFER for writes. | Christopher Pascoe | |
From NetBSD rev1.164 | |||
2006-05-29 | Only do the software part of an abort if we are dying. | Christopher Pascoe | |
2006-05-29 | Only do the software part of an abort if we are dying. | Christopher Pascoe | |
2006-05-29 | Check the return value of aml_ederef isnt NULL before use. | Gordon Willem Klok | |
Fixes a few panics. ok canacar@ | |||
2006-05-29 | minor space nit | Peter Valchev | |
2006-05-29 | garbage collect NFE_NO_JUMBO. | Brad Smith | |
2006-05-29 | Add embedded controller support. | Can Erkin Acar | |
ok marco@ deraadt@ testing & ok gwk@ | |||
2006-05-29 | Fix a memory overrun in the aml parser code. | Can Erkin Acar | |
ok deraadt@, gwk@ | |||
2006-05-29 | formatting | Brad Smith | |
2006-05-29 | Make sure all physical addresses are filled in the qTD even when we have | Christopher Pascoe | |
a page offset. From Dan Ellis via NetBSD rev 1.103 | |||
2006-05-28 | Make sure to honor the USBD_FORCE_SHORT_XFER flag and generate an empty | Christopher 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 for | Brad 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@ |