diff options
author | scottl <scottl@FreeBSD.org> | 2005-10-08 15:55:09 +0000 |
---|---|---|
committer | scottl <scottl@FreeBSD.org> | 2005-10-08 15:55:09 +0000 |
commit | 5374999d013200def723741dd18b40500a1c0f37 (patch) | |
tree | 864aa6aa2577b9ca68a5238dfea048a8d474b969 /sys/dev/aac/aac_tables.h | |
parent | 105781c4880e48a6ff6444f77d5e1c631cb97e8e (diff) | |
download | FreeBSD-src-5374999d013200def723741dd18b40500a1c0f37.zip FreeBSD-src-5374999d013200def723741dd18b40500a1c0f37.tar.gz |
Mega Update to the aac driver to support a whole new family of cards and
the modified interface that they use. Changes include:
- Register a different interrupt handler for the new interface. This one is
INTR_MPSAFE, not INTR_FAST, and directly processes completions and AIFs.
- Add an event registration and callback mechanism for the ioctl and CAM
modules can know when a resource shortage clears. This condition was
previously fatal in CAM due to programming oversights.
- Fix locking to play better with newbus.
- Provide access methods for talking to cards with the NEWCOMM interface.
- Fix up the CAM module to be better suited for dealing with newer firmware
on the PERC Si/Di series that requires talking to plain SCSI via aac.
- Add a whole slew of new PCI Id's.
Thanks to Adaptec for providing an initial version of this work and for
answering countless questions about it. There are still some rough edges in
this, but it works well enough to commit and test for now.
Obtained from: Adaptec, Inc.
Diffstat (limited to 'sys/dev/aac/aac_tables.h')
-rw-r--r-- | sys/dev/aac/aac_tables.h | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/sys/dev/aac/aac_tables.h b/sys/dev/aac/aac_tables.h index 4ce82ac..4a0d0e3 100644 --- a/sys/dev/aac/aac_tables.h +++ b/sys/dev/aac/aac_tables.h @@ -40,7 +40,7 @@ static struct aac_code_lookup aac_command_status_table[] = { {"I/O error", 5}, {"device not configured", 6}, {"too big", 7}, - {"permission denoed", 13}, + {"permission denied", 13}, {"file exists", 17}, {"cross-device link", 18}, {"operation not supported by device", 19}, @@ -66,7 +66,7 @@ static struct aac_code_lookup aac_command_status_table[] = { {"bad type", 10007}, {"jukebox", 10008}, {"not mounted", 10009}, - {"in maintenace mode", 10010}, + {"in maintenance mode", 10010}, {"stale ACL", 10011}, {NULL, 0}, {"unknown command status", 0} @@ -79,11 +79,14 @@ static struct aac_code_lookup aac_cpu_variant[] = { {"i960CX", CPUI960_CX}, {"i960HX", CPUI960_HX}, {"i960RX", CPUI960_RX}, + {"i960 80303", CPUI960_80303}, {"StrongARM SA110", CPUARM_SA110}, - {"MPC824x", CPUMPC_824x}, + {"PPC603e", CPUPPC_603e}, + {"XScale 80321", CPU_XSCALE_80321}, + {"MIPS 4KC", CPU_MIPS_4KC}, + {"MIPS 5KC", CPU_MIPS_5KC}, {"Unknown StrongARM", CPUARM_xxx}, {"Unknown PowerPC", CPUPPC_xxx}, - {"IOP302/303", CPUI960_30X}, {NULL, 0}, {"Unknown processor", 0} }; @@ -113,6 +116,11 @@ static struct aac_code_lookup aac_container_types[] = { {"Volume of Mirrors", CT_VOLUME_OF_MIRRORS}, {"Pseudo RAID 3", CT_PSEUDO_RAID3}, {"RAID 0/5", CT_RAID50}, + {"RAID 5D", CT_RAID5D}, + {"RAID 0/5D", CT_RAID5D0}, + {"RAID 1E", CT_RAID1E}, + {"RAID 6", CT_RAID6}, + {"RAID 0/6", CT_RAID60}, {NULL, 0}, {"unknown", 0} }; |