summaryrefslogtreecommitdiff
path: root/sys/dev
AgeCommit message (Collapse)Author
2007-04-04do a global reset properly.David Gwynne
2007-04-03On sparc64, prefer the local-mac-address provided by the PROM. Makes sure theMark Kettenis
MAC address on the builtin ports of the Sun Fire V215 match what is used by the PROM. ok deraadt@
2007-04-03Really drop data packets if the station is not associated. It does notClaudio Jeker
make sense to keep these packets around and send them out somewhen later when they are no longer valid. OK mglocker@
2007-04-03modernise scsi_inquiry. the length field has grown and now theres pages toDavid Gwynne
query. ok krw@
2007-04-03Data direction was not properly encoded in (unused)Jonathan Gray
AX88178 write nodeid command. From Hans Petter Selasky <hselasky@c2i.net>
2007-04-02Similar to other drivers call if_start() at the end of the rx interrupt becauseClaudio Jeker
ieee80211_input() may enqueue packets. OK jsg@
2007-04-02Read log page 10h to determine the NCQ error, instead of aborting allChristopher Pascoe
active commands when an error is encountered. ok dlg@
2007-04-01Correct URL to UHCI spec.Jonathan Gray
From dunceor@gmail.com
2007-04-01Write MAC and BSSID into devices template RAM at init time.Marcus Glocker
2007-04-01s/multpile/multiple/Ray Lai
From Dunceor.
2007-04-01Some sorting. More comments.Marcus Glocker
2007-04-01Cleanup sc_softc.Marcus Glocker
2007-04-01There is no need to keep the intrstr in the drivers softc struct.Marcus Glocker
2007-04-01Correct some sili port offsets.Jonathan Gray
ok dlg@
2007-04-01Remove dead code. Comments.Marcus Glocker
2007-03-31Since I spent some work on this beast, too, I allow myself to add meMarcus Glocker
to the drivers copyright note.
2007-03-31Match on the 3132 as well.Jonathan Gray
ok dlg@
2007-03-31Move extraction / verification of PHY and radio values into own functions.Marcus Glocker
Move initialization of the microcode flags bitfield into own function. Simplify and improve chip access validation function. Restructure initalization flow according to the reverse engeneering pages. We are able to ifconfig up again after a ifconfig down now.
2007-03-31Print correct function name in diagnostic output.Alexander Bluhm
ok pedro
2007-03-31syncReyk Floeter
2007-03-31Move offline state up in priority over degraded.Marco Peereboom
Various cleanups in state functions.
2007-03-31Fix bio disk lookup and make it more paranoia with provided parameters.Marco Peereboom
Clean up a little while there.
2007-03-31Spacing and a stale comment.Marco Peereboom
2007-03-31syncReyk Floeter
2007-03-31add Matrox G200e (ServerEngines) found in HP DL145 G3 serversReyk Floeter
2007-03-31re-blacklist the via vt8251, there's still something fishy..Jasper Lievisse Adriaanse
ok dlg@
2007-03-31Enable interrupts.Marcus Glocker
2007-03-31more bits and the %b thing for port set/statusDavid Gwynne
2007-03-31Port Control Set register defsDavid Gwynne
2007-03-31reenable the via 8251 sata chipset. jasper proved it can work if we dontDavid Gwynne
do ncq, so this diff quirks it. tested by jasper@
2007-03-31initial atascsi glue.David Gwynne
2007-03-31the attach glue now specifies how many ports the chip has.David Gwynne
2007-03-30Make volume state transitions workMarco Peereboom
2007-03-30Calculate proper offset in partition table.Marco Peereboom
2007-03-30accept interleave of 0; pr 5431, my patch matches the author'sTheo de Raadt
2007-03-30the VT8251 SATA says it is ahci, but we aren't ready for it. we need toDavid Gwynne
quirk a few things before it will work. this blacklists that controller in ahci so pciide will be able to match it instead. found by jasper@
2007-03-30start filling out stuff for managing each port. this allocates it, set aDavid Gwynne
register window up, and provides access to the port registers.
2007-03-30define the size and offsets for each ports set of registersDavid Gwynne
2007-03-29Remove FW_TXDESC_GETFIELD_4() it is never used and busted.Claudio Jeker
2007-03-29The message size calculated by BSS_JOIN_PARAM_SIZE() is off by one. TheClaudio Jeker
first byte of the essid is counted double once in the sizeof() and once via essidlen. Luckily the FW command ignored the additional byte. OK mglocker@
2007-03-29Fix yet another endianess bug. bus_space(9) does all the necessary byte orderClaudio Jeker
conversions so there is no need to use htoleXX() before writing the data to the HW dma registers. With this and the previous acx.c commit acx(4) finaly works on big endian machines like macppc. OK mglocker@
2007-03-29Fix a scary bug when setting up the HW dma structure. Use a 2byte bus_spaceClaudio Jeker
access to write the mbuf lenght instead of a 4byte one. On big endian machines the length was written to the wrong field and so no TX transactions were done. OK mglocker@
2007-03-29Avoid leaking a ccb in error paths.Christopher Pascoe
2007-03-29Correct some minor whitespace issues.Christopher Pascoe
2007-03-28regenJonathan Gray
2007-03-28Fix a Marvell Entry, "SATA" -> "88SE6101 IDE"Jonathan Gray
2007-03-28While we are determining which NCQ command failed, we will need to ensureChristopher Pascoe
that we don't accidentally complete any other outstanding commands. This introduces wrappers around get_ccb and put_ccb that can temporarily stash our outstanding command state while we are issuing recovery commands. This is just the first step in NCQ recovery - for now we will reset the port on error which will permit further commands to be issued after a NCQ error. ok dlg@
2007-03-28Due to a logic inversion, we would error out any commands that had completedChristopher Pascoe
successfully and not the ones that had actually failed to complete when unable to recover from an NCQ error. ok dlg@
2007-03-28Improve output of some debugging messages.Christopher Pascoe
2007-03-28Some more safety checks on ccb state.Christopher Pascoe