Age | Commit message (Collapse) | Author | |
---|---|---|---|
2007-04-10 | ``it's'' -> ``its'' when the grammar gods require this change. | Miod Vallat | |
2007-04-10 | privledges -> privileges | Miod Vallat | |
2007-04-10 | remove process from thread list sooner in exit (notably, before waiting | Ted Unangst | |
for the list to become empty) | |||
2007-04-10 | Do not compile unused dump_tlb() unless option DEBUG. | Miod Vallat | |
2007-04-10 | slighly -> slightly | Miod Vallat | |
2007-04-10 | Name and cast all struct sd_softc *sd the same way. No binary change. | Alexander Bluhm | |
ok krw | |||
2007-04-10 | When doing a rename and finding out the destination name already | Pedro Martelletto | |
exists, keep the containing directory's long name capabilities. From NetBSD via Enache Adrian, okay millert@. | |||
2007-04-10 | Prevent infinite loop mapping interrupts when "reg" property is missing. | Mark Kettenis | |
ok mbalmer@, dlg@ | |||
2007-04-10 | Fix yet another vnode leak. If relookup() succeeds, we no longer need | Pedro Martelletto | |
the compensation acquired before ufs_checkpath(). OK tom@ mickey@ beck@ | |||
2007-04-10 | Always use idiom 'struct cd_softc *cd = (struct cd_softc *)self'. Spotted | Kenneth R Westerback | |
by bluhm@ for sd. No change to cd.o. | |||
2007-04-10 | wrap reading of the error fis up into a func of its own, and use | David Gwynne | |
bus_space_read_raw_region_4 to do it. more archs are happy with it. | |||
2007-04-10 | Sort ATA commands by value. | Jonathan Gray | |
ok dlg@ | |||
2007-04-10 | pascoe@ finished sili(4). enable it so people can try it. | David Gwynne | |
2007-04-10 | pascoe finished sili(4). let's enable it so people can try it. | David Gwynne | |
2007-04-09 | Re-enable art(4); mglocker@'s e250 is perfectly happy with larger kernels now. | Mark Kettenis | |
2007-04-09 | Unbreak the tree. | Mark Kettenis | |
2007-04-09 | Seperate rtc(4) code out into its own file. Add support for catching the | Mark Kettenis | |
power button interrupts on ds1287 models. The hardware will stil power off automatically about 20 seconds after the power button is pressed, but we get a decent chance at doing a clean shutdown before that. "a good start" deraadt@ | |||
2007-04-09 | Remove unused prototype. | Mark Kettenis | |
2007-04-09 | Fix (unused) extintr_disable_by_num behaviour, and make vmstat -i output | Miod Vallat | |
provide the correct irq numbers. | |||
2007-04-09 | Assert my copyright for the AX88178/AX88772 bits over the last few years. | Jonathan Gray | |
2007-04-09 | Remove any possibility of of an underflow happening when | Jonathan Gray | |
pulling packets out of the usb buffer in rxeof. Potential issue pointed out by Hans Petter Selasky <hselasky@c2i.net> | |||
2007-04-09 | Add missing letoh16() for eeprom value. | Jonathan Gray | |
Pointed out by Hans Petter Selasky <hselasky@c2i.net> | |||
2007-04-08 | ansify and deregister, no binary change, okay mickey@ bluhm@ | Pedro Martelletto | |
2007-04-08 | Use CMD_OK instead of 0, no binary change, from mickey | Pedro Martelletto | |
2007-04-08 | Whitespace/long line fixups. No code change. | Christopher Pascoe | |
2007-04-08 | Add compile-time support for coalescing command interrupts to reduce the | Christopher Pascoe | |
overall interrupt rate. #define AHCI_COALESCE to enable. | |||
2007-04-08 | Change the API to sili_port_intr so it can timeout a command and reuse the | Christopher Pascoe | |
existing reset/requeue infrastructure, and implement command timeouts. sili_port_intr now always processes all pending CCBs, so switch to use the auto-clearing interrupt status reads. | |||
2007-04-08 | ral(4) reported to work on sparc64 by Maxim Belooussov <belooussov@gmail.com> | Jonathan Gray | |
so enable it. | |||
2007-04-08 | Add support for NCQ error recovery and enable NCQ command submission. | Christopher Pascoe | |
2007-04-08 | x4100 machines need a hold off in between reads and write to the bmc | Marco Peereboom | |
2007-04-08 | Track the order that CCBs are submitted in, so that after an error we are | Christopher Pascoe | |
sure to reissue commands in the correct order. Defer completion of commands when we an error has occurred so that new commands don't go active before queeud ones. | |||
2007-04-08 | sili uses one queue for NCQ and legacy commands. No need for the AHCI-style | Christopher Pascoe | |
indirection when determining which commands are complete. | |||
2007-04-07 | ANSI-fy. No functional change. | Kenneth R Westerback | |
From Brad. | |||
2007-04-07 | Nuke NetBSD defines APRINTF_NORMAL/_ERROR and just use the printf they were | Kenneth R Westerback | |
defined to. No functional change. From Brad. | |||
2007-04-07 | Remove unused variable. | Mark Kettenis | |
2007-04-07 | USECPERSEC is no longer used. | Mark Kettenis | |
2007-04-07 | Always assume write commands had zero residual; the chip only counts | Christopher Pascoe | |
received bytes. | |||
2007-04-07 | Whitespace cleanup. No code change. | Christopher Pascoe | |
2007-04-07 | Add transfer failure detection and recovery from non-fatal errors. | Christopher Pascoe | |
2007-04-07 | Rework command issue/completion flow to be more like AHCI's and switch to | Christopher Pascoe | |
using interrupts to detect command completion. Report on command timeouts (but no recovery yet). | |||
2007-04-07 | Replace code that tries to find the boot device by pretending to walk the | Mark Kettenis | |
device tree and matching locators in the bootpath string components with code that tries to match the PROM node of the devices to bootpath components. This way we don't need a list of possible boot devices that needs to be tweaked whenever we try to support new Sun hardware (or when dlg plugs a new fancy storage controller in a sparc64 machine). Tested by many. | |||
2007-04-07 | Split command completion out into a separate function, working towards | Christopher Pascoe | |
IRQ based completion. | |||
2007-04-07 | Replace code that tries to find the boot device by pretending to walk the | Mark Kettenis | |
device tree and matching locators in the bootpath string components with code that tries to match the PROM node of the devices to bootpath components. This way we don't need a list of possible boot devices that needs to be tweaked whenever we try to support new Sun hardware (or when dlg plugs a new fancy storage controller in a sparc64 machine). Tested by many. | |||
2007-04-07 | Use pci_matchbyid() rather than handrolled equivalent. From Brad. | Kenneth R Westerback | |
tested & ok todd@ | |||
2007-04-07 | Permit PACKET command issue. | Christopher Pascoe | |
2007-04-07 | Fill out control information for ATAPI commands. | Christopher Pascoe | |
2007-04-07 | Helper macros to provide the port name in debug messages. | Christopher Pascoe | |
2007-04-07 | Use the rx_count saved in the LRAM command slot entry to determine the | Christopher Pascoe | |
xfer residual. | |||
2007-04-07 | Add some more device status related register definitions. | Christopher Pascoe | |
2007-04-07 | Sync the command corresponding to our ccb, not slot 0. | Christopher Pascoe | |