diff options
author | Don Slutz <Don.Slutz@Gmail.com> | 2016-03-25 17:04:31 +0100 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2016-03-29 09:16:48 -0400 |
commit | f2645a8cd66b6ed1f3a010f7acbddf130f584e01 (patch) | |
tree | 77b3df87fc92b7a4dcaa939fcbc82ac9f5d2e83a /src/hw/mpt-scsi.h | |
parent | fc0878926bfe644f07fba27228432cada68ec3ba (diff) | |
download | seabios-f2645a8cd66b6ed1f3a010f7acbddf130f584e01.tar.gz |
Support for booting from LSI Logic LSI53C1030, SAS1068, SAS1068e
Also known as Fusion MPT disk; this controller model is supported
by VirtualBox and VMware, and QEMU support patches have been
posted.
Signed-off-by: Don Slutz <Don.Slutz@Gmail.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/hw/mpt-scsi.h')
-rw-r--r-- | src/hw/mpt-scsi.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/hw/mpt-scsi.h b/src/hw/mpt-scsi.h new file mode 100644 index 00000000..6535dd8d --- /dev/null +++ b/src/hw/mpt-scsi.h @@ -0,0 +1,8 @@ +#ifndef __MPT_SCSI_H +#define __MPT_SCSI_H + +struct disk_op_s; +int mpt_scsi_process_op(struct disk_op_s *op); +void mpt_scsi_setup(void); + +#endif /* __MPT_SCSI_H */ |