git://scm.lunaixsky.com
/
lunaix-os.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
feat: asynchronized SATA IO
[lunaix-os.git]
/
lunaix-os
/
includes
/
hal
/
ahci
/
scsi.h
diff --git
a/lunaix-os/includes/hal/ahci/scsi.h
b/lunaix-os/includes/hal/ahci/scsi.h
index cce9af467725486a33985d09068071db1b7e68e8..e1bbb713e2b99c3ae73050f29679275e73d30187 100644
(file)
--- a/
lunaix-os/includes/hal/ahci/scsi.h
+++ b/
lunaix-os/includes/hal/ahci/scsi.h
@@
-14,6
+14,9
@@
#define SCSI_WRITE_BLOCKS_16 0x8a
#define SCSI_WRITE_BLOCKS_12 0xaa
#define SCSI_WRITE_BLOCKS_16 0x8a
#define SCSI_WRITE_BLOCKS_12 0xaa
+#define SCSI_CDB16 16
+#define SCSI_CDB12 12
+
struct scsi_cdb12
{
uint8_t opcode;
struct scsi_cdb12
{
uint8_t opcode;
@@
-48,15
+51,9
@@
scsi_create_packet16(struct scsi_cdb16* cdb,
uint32_t alloc_size);
void
uint32_t alloc_size);
void
-scsi_read_buffer(struct hba_port* port,
- uint64_t lba,
- void* buffer,
- uint32_t size);
+scsi_submit(struct hba_device* dev, struct blkio_req* io_req);
void
void
-scsi_write_buffer(struct hba_port* port,
- uint64_t lba,
- void* buffer,
- uint32_t size);
+scsi_parse_capacity(struct hba_device* device, uint32_t* parameter);
#endif /* __LUNAIX_ATAPI_H */
#endif /* __LUNAIX_ATAPI_H */