diff options
author | 2005-11-18 05:39:10 +0000 | |
---|---|---|
committer | 2005-11-18 05:39:10 +0000 | |
commit | 2b51a1178ceb80a1c89a4684eb4af2d744eabccb (patch) | |
tree | 3cef4f1a439f7169d175f225772e43af0ef19a5d /sys/dev/ic/aac_tables.h | |
parent | Use bus_addr_t for address in em_fill_descriptors(). (diff) | |
download | wireguard-openbsd-2b51a1178ceb80a1c89a4684eb4af2d744eabccb.tar.xz wireguard-openbsd-2b51a1178ceb80a1c89a4684eb4af2d744eabccb.zip |
Major improvements to the aac(4) device driver.
- decouple the command structures from scsi structures, allowing non block
oriented commands (e.g. management commands) to be built.
- redesign the various command queues to remove race conditions and to allow
commands from multiple sources to coexist in the system
- move major processing of commands and messages to a dedicated kernel
thread to avoid spending too long in the interrupt handler
- add device data structures for various management commands to the header
file
Much code from FreeBSD
Diffstat (limited to 'sys/dev/ic/aac_tables.h')
-rw-r--r-- | sys/dev/ic/aac_tables.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/aac_tables.h b/sys/dev/ic/aac_tables.h index c0fedc3ca60..3ba773425fd 100644 --- a/sys/dev/ic/aac_tables.h +++ b/sys/dev/ic/aac_tables.h @@ -1,4 +1,4 @@ -/* $OpenBSD: aac_tables.h,v 1.2 2004/05/21 20:34:52 marco Exp $ */ +/* $OpenBSD: aac_tables.h,v 1.3 2005/11/18 05:39:10 nate Exp $ */ /*- * Copyright (c) 2000 Michael Smith @@ -83,7 +83,7 @@ static struct aac_code_lookup aac_cpu_variant[] = { { "i960HX", CPUI960_HX }, { "i960RX", CPUI960_RX }, { "StrongARM SA110", CPUARM_SA110 }, - { "PowerPC 603e", CPUPPC_603e }, + { "MPC824x", CPUMPC_824x }, { "Unknown StrongARM", CPUARM_xxx }, { "Unknown PowerPC", CPUPPC_xxx }, { "Intel GC80302 IOP", CPUI960_302}, |