summaryrefslogtreecommitdiff
path: root/sys/dev/pci/arc.c
AgeCommit message (Collapse)Author
2006-08-05implement reply and post queue handling, but only polled for now. io shouldDavid Gwynne
work with this, but i cant test without disks.
2006-08-03white space fixesDavid Gwynne
2006-07-31take a scsi xfer from the midlayer and turn it into an areca io command.David Gwynne
its inside an if 0 chunk till i write the post and reply queue handling and the response handling.
2006-07-31hook arc up to the scsi midlayerDavid Gwynne
2006-07-31tweak the hardware commandsDavid Gwynne
2006-07-31new pci ids for future controllersDavid Gwynne
2006-07-29not keeping the dma tag around means we panic when we try to use it duringDavid Gwynne
allocation of dmaable memory.
2006-07-29here's the real reason i removed the if_arc network goo: i wanted its name.David Gwynne
this is the start of a driver supporting the areca raid controllers. so far it probes, attaches, establishes the interrupt, allocates all the necessary memory and queries the firmware for operating params. the io path is yet to be done. that is going to be hard to do since i dont have any sata disks to plug into it. thanks go to Billion Wu and Erich Chen from Areca for their assistance. ok deraadt@