2024-04-17 21:44:10 +02:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; ;;
|
|
|
|
;; Copyright (C) KolibriOS team 2004-2024. All rights reserved. ;;
|
|
|
|
;; Distributed under terms of the GNU General Public License ;;
|
|
|
|
;; ;;
|
|
|
|
;; GNU GENERAL PUBLIC LICENSE ;;
|
|
|
|
;; Version 2, June 1991 ;;
|
|
|
|
;; ;;
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2024-03-28 23:43:18 +01:00
|
|
|
|
|
|
|
format PE DLL native
|
|
|
|
entry START
|
|
|
|
|
|
|
|
API_VERSION equ 0 ;debug
|
|
|
|
SRV_GETVERSION equ 0
|
2024-03-30 04:42:01 +01:00
|
|
|
__DEBUG__ = 1
|
|
|
|
__DEBUG_LEVEL__ = 1
|
|
|
|
DRIVER_VERSION = 1
|
|
|
|
DBG_INFO = 1
|
|
|
|
|
2024-03-28 23:43:18 +01:00
|
|
|
section ".flat" code readable writable executable
|
|
|
|
include "../proc32.inc"
|
|
|
|
include "../struct.inc"
|
|
|
|
include "../macros.inc"
|
2024-03-30 04:42:01 +01:00
|
|
|
include "../fdo.inc"
|
2024-03-28 23:43:18 +01:00
|
|
|
include "../pci.inc"
|
2024-03-30 04:42:01 +01:00
|
|
|
include "../peimport.inc"
|
2024-03-31 21:43:38 +02:00
|
|
|
include "nvme.inc"
|
2024-04-21 02:29:06 +02:00
|
|
|
include "macros.inc"
|
2024-03-28 23:43:18 +01:00
|
|
|
|
|
|
|
proc START c, reason:dword
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-05-26 19:24:34 +02:00
|
|
|
cmp [reason], DRV_ENTRY
|
|
|
|
jne .err
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-03-28 23:43:18 +01:00
|
|
|
.entry:
|
2024-04-17 21:35:01 +02:00
|
|
|
DEBUGF DBG_INFO, "Detecting NVMe hardware...\n"
|
2024-05-26 19:24:34 +02:00
|
|
|
call detect_nvme
|
2024-04-28 02:11:57 +02:00
|
|
|
test eax, eax
|
2024-05-26 19:24:34 +02:00
|
|
|
jz .err
|
2024-04-20 05:39:34 +02:00
|
|
|
mov eax, dword [p_nvme_devices]
|
|
|
|
test eax, eax
|
2024-04-28 02:11:57 +02:00
|
|
|
jz .err
|
2024-04-28 19:50:40 +02:00
|
|
|
xor ecx, ecx
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-04-28 19:50:40 +02:00
|
|
|
.loop:
|
2024-05-26 00:56:58 +02:00
|
|
|
mov ebx, dword [p_nvme_devices]
|
|
|
|
stdcall device_is_compat, ebx
|
2024-04-28 19:50:40 +02:00
|
|
|
test eax, eax
|
|
|
|
jz @f
|
2024-05-26 00:56:58 +02:00
|
|
|
stdcall nvme_init, ebx
|
2024-03-28 23:43:18 +01:00
|
|
|
|
2024-05-26 22:54:59 +02:00
|
|
|
;@@:
|
|
|
|
;inc ecx
|
|
|
|
;cmp ecx, dword [pcidevs_len]
|
|
|
|
;jne .loop
|
2024-05-26 19:24:34 +02:00
|
|
|
invoke RegService, my_service, service_proc
|
|
|
|
ret
|
2024-04-17 21:35:01 +02:00
|
|
|
|
|
|
|
.err:
|
|
|
|
call nvme_cleanup
|
2024-05-26 19:24:34 +02:00
|
|
|
xor eax, eax
|
|
|
|
ret
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-03-28 23:43:18 +01:00
|
|
|
endp
|
|
|
|
|
|
|
|
proc service_proc stdcall, ioctl:dword
|
|
|
|
|
2024-05-26 19:24:34 +02:00
|
|
|
mov ebx, [ioctl]
|
|
|
|
mov eax, [ebx+IOCTL.io_code]
|
|
|
|
cmp eax, SRV_GETVERSION
|
|
|
|
jne @F
|
|
|
|
|
|
|
|
mov eax, [ebx+IOCTL.output]
|
|
|
|
cmp [ebx+IOCTL.out_size], 4
|
|
|
|
jne @F
|
|
|
|
mov dword [eax], API_VERSION
|
|
|
|
xor eax, eax
|
|
|
|
ret
|
2024-03-28 23:43:18 +01:00
|
|
|
|
|
|
|
@@:
|
|
|
|
or eax, -1
|
|
|
|
ret
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-03-28 23:43:18 +01:00
|
|
|
endp
|
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
proc memset stdcall, p_data:dword, val:byte, sz:dword
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-05-28 21:01:25 +02:00
|
|
|
push ebx ecx
|
|
|
|
mov eax, [p_data]
|
|
|
|
mov ecx, [sz]
|
2024-04-29 03:06:13 +02:00
|
|
|
mov bl, [val]
|
2024-05-26 19:24:34 +02:00
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
@@:
|
2024-05-28 21:01:25 +02:00
|
|
|
mov byte [eax + ecx], bl
|
|
|
|
dec ecx
|
|
|
|
test ecx, ecx
|
|
|
|
jnz @b
|
|
|
|
pop ecx ebx
|
2024-04-17 21:35:01 +02:00
|
|
|
ret
|
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
endp
|
|
|
|
|
2024-06-04 22:06:32 +02:00
|
|
|
proc set_cdw0 stdcall, opcode:byte, cid:word
|
|
|
|
|
|
|
|
movzx eax, [cid]
|
|
|
|
shl eax, 16
|
|
|
|
or eax, [opcode]
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-09 19:07:01 +02:00
|
|
|
; See pages 161-205 of the NVMe 1.4 specification for reference
|
2024-06-06 19:28:31 +02:00
|
|
|
proc nvme_identify stdcall, pci:dword, nsid:dword, dptr:dword, cid:word, cns:byte
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-06-03 18:02:36 +02:00
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
2024-06-06 19:28:31 +02:00
|
|
|
|
|
|
|
; It's important to check if CNS is a valid value here. In revision 1.0
|
|
|
|
; CNS is a 1 bit field and a two bit field in revision 1.1, using invalid
|
|
|
|
; values results in undefined behavior (see page 162 of NVMe 1.4 spec)
|
|
|
|
if __DEBUG__
|
|
|
|
push esi
|
2024-06-06 20:00:10 +02:00
|
|
|
mov esi, dword [esi + pcidev.io_addr]
|
2024-06-06 19:28:31 +02:00
|
|
|
mov eax, dword [esi + NVME_MMIO.VS]
|
|
|
|
cmp eax, VS110
|
|
|
|
jne @f
|
|
|
|
cmp [cns], 11b
|
|
|
|
jle .ok
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) FATAL ERROR: INVALID CNS VALUE ON v1.1.0 CONTROLLERS\n"
|
|
|
|
jmp .err
|
|
|
|
|
|
|
|
@@:
|
|
|
|
cmp eax, VS100
|
|
|
|
jne .ok
|
|
|
|
cmp [cns], 1b
|
|
|
|
jle .ok
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) FATAL ERROR: INVALID CNS VALUE ON v1.0.0 CONTROLLERS\n"
|
|
|
|
jmp .err
|
|
|
|
|
|
|
|
.err:
|
|
|
|
jmp @b
|
|
|
|
|
|
|
|
.ok:
|
2024-06-08 20:32:25 +02:00
|
|
|
pop esi
|
2024-06-06 19:28:31 +02:00
|
|
|
|
|
|
|
end if
|
|
|
|
|
2024-06-03 18:02:36 +02:00
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
2024-06-03 20:14:59 +02:00
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
|
|
|
|
2024-05-28 21:01:25 +02:00
|
|
|
mov eax, [nsid]
|
2024-06-03 18:02:36 +02:00
|
|
|
mov dword [esi + SQ_ENTRY.nsid], eax
|
2024-05-28 21:01:25 +02:00
|
|
|
mov eax, [dptr]
|
2024-06-03 18:02:36 +02:00
|
|
|
mov dword [esi + SQ_ENTRY.dptr], eax
|
2024-05-28 21:02:24 +02:00
|
|
|
movzx eax, [cid]
|
2024-06-03 22:49:42 +02:00
|
|
|
shl eax, 16
|
2024-06-09 20:57:42 +02:00
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], ADM_CMD_IDENTIFY
|
2024-06-03 18:02:36 +02:00
|
|
|
or dword [esi + SQ_ENTRY.cdw0], eax
|
2024-05-28 21:01:25 +02:00
|
|
|
mov al, [cns]
|
2024-06-03 18:02:36 +02:00
|
|
|
mov byte [esi + SQ_ENTRY.cdw10], al
|
2024-06-08 20:32:25 +02:00
|
|
|
stdcall write_admin_cmd, [pci]
|
2024-06-03 20:14:59 +02:00
|
|
|
|
2024-06-03 18:02:36 +02:00
|
|
|
pop esi
|
2024-04-17 21:35:01 +02:00
|
|
|
ret
|
|
|
|
|
2024-03-30 04:42:01 +01:00
|
|
|
endp
|
|
|
|
|
2024-06-06 19:28:31 +02:00
|
|
|
; See pages 348-349 of the NVMe 1.4 specification for information on creating namespaces
|
|
|
|
proc create_namespace stdcall, pci:dword, cid:word
|
|
|
|
|
|
|
|
push esi
|
|
|
|
invoke AllocPage
|
|
|
|
test eax, eax
|
|
|
|
jz .fail
|
|
|
|
invoke GetPhysAddr
|
|
|
|
stdcall nvme_identify, [pci], 0xffffffff, eax, [cid], CNS_IDNS
|
|
|
|
|
|
|
|
.fail:
|
|
|
|
pop esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-04 20:44:06 +02:00
|
|
|
; See page 101 of the NVMe 1.4 specification for reference
|
|
|
|
proc create_io_completion_queue stdcall, pci:dword, prp1:dword, qid:word, ien:byte
|
|
|
|
|
|
|
|
push esi ebx
|
|
|
|
mov esi, [pci]
|
|
|
|
|
|
|
|
xor ebx, ebx
|
|
|
|
movzx eax, [ien]
|
|
|
|
and eax, 10b
|
|
|
|
or ebx, eax
|
|
|
|
movzx eax, byte [esi + pcidev.pc]
|
|
|
|
and eax, 0x1
|
|
|
|
or ebx, eax ; CDW.PC
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
2024-06-04 22:12:19 +02:00
|
|
|
stdcall set_cdw0, ADM_CMD_CRE_IO_COMPLETION_QUEUE, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
2024-06-04 21:02:44 +02:00
|
|
|
; Since we are not using MSI-X or MSI vector (yet), CDW11.IV must be set to 0
|
2024-06-04 20:44:06 +02:00
|
|
|
mov dword [esi + SQ_ENTRY.cdw11], ebx
|
|
|
|
mov bx, [qid] ; CDW10.QID
|
|
|
|
or ebx, (sizeof.CQ_ENTRY shl 16) ; CDW10.QSIZE
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw10], ebx
|
|
|
|
mov ebx, [prp1]
|
|
|
|
mov dword [esi + SQ_ENTRY.dptr], ebx
|
|
|
|
stdcall sqytdbl_write, [pci], [qid], 0 ; setting last param to 0 for now, change later
|
|
|
|
|
|
|
|
pop ebx esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-04 21:02:44 +02:00
|
|
|
; See page 103-104 of the NVMe 1.4 specification for reference
|
|
|
|
proc create_io_submission_queue stdcall, pci:dword, prp1:dword, qid:word, cqid:word
|
|
|
|
|
|
|
|
push esi ebx
|
|
|
|
mov esi, [pci]
|
|
|
|
|
|
|
|
movzx ebx, byte [esi + pcidev.pc]
|
|
|
|
and ebx, 0x1 ; CDW11.PC
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
2024-06-04 22:12:19 +02:00
|
|
|
stdcall set_cdw0, ADM_CMD_CRE_IO_SUBMISSION_QUEUE, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
2024-06-04 21:02:44 +02:00
|
|
|
movzx eax, [cqid]
|
|
|
|
shl eax, 16
|
|
|
|
or ebx, eax ; CDW11.CQID
|
|
|
|
; TODO: Set CDW10.QPRIO
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw11], ebx
|
|
|
|
movzx ebx, sizeof.SQ_ENTRY
|
|
|
|
shl ebx, 16 ; CDW10.QSIZE
|
|
|
|
or ebx, [qid] ; CDW10.QID
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw10], ebx
|
|
|
|
mov ebx, [prp1]
|
|
|
|
mov dword [esi + SQ_ENTRY.dptr], ebx
|
|
|
|
stdcall sqytdbl_write, [pci], [qid], 0 ; setting last param to 0 for now, change later
|
|
|
|
|
|
|
|
pop ebx esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-06 18:43:57 +02:00
|
|
|
; See page 95-96 of the NVMe 1.4 specification for reference
|
|
|
|
proc abort stdcall, pci:dword, cid:word, sqid:word
|
|
|
|
|
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
|
|
|
stdcall set_cdw0, ADM_CMD_ABORT, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
|
|
|
mov eax, [cid]
|
|
|
|
shl eax, 16
|
|
|
|
or eax, [sqid]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw10], eax
|
|
|
|
stdcall sqytdbl_write, [pci], 0, 0
|
|
|
|
pop esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-06 19:28:31 +02:00
|
|
|
|
2024-06-06 18:43:57 +02:00
|
|
|
; See page 205 of the NVMe 1.4 specification for reference
|
|
|
|
proc set_features stdcall, pci:dword, dptr:dword, fid:byte
|
|
|
|
|
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
|
|
|
stdcall set_cdw0, AMD_CMD_SET_FEATURES, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov eax, [dptr]
|
|
|
|
mov dword [esi + SQ_ENTRY.dptr], eax
|
|
|
|
mov al, [fid]
|
|
|
|
mov byte [esi + SQ_ENTRY.cdw10], al
|
|
|
|
; TODO: Set CDW10.SV and CDW14.UUID to valid value
|
|
|
|
stdcall sqytdbl_write, [pci], 0, 0
|
|
|
|
pop esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-04 21:43:12 +02:00
|
|
|
; See page 105 of the NVMe 1.4 specification for reference
|
2024-06-04 21:09:39 +02:00
|
|
|
proc delete_io_completion_queue stdcall, pci:dword, qid:word
|
|
|
|
|
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
2024-06-04 22:12:19 +02:00
|
|
|
stdcall set_cdw0, ADM_CMD_DEL_IO_COMPLETION_QUEUE, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
2024-06-04 21:09:39 +02:00
|
|
|
mov ax, [qid]
|
|
|
|
mov word [esi + SQ_ENTRY.cdw10], ax
|
|
|
|
stdcall sqytdbl_write, [pci], [qid], 0 ; setting last param to 0 for now, change later
|
|
|
|
pop esi
|
|
|
|
ret
|
2024-06-06 18:43:57 +02:00
|
|
|
|
2024-06-04 21:09:39 +02:00
|
|
|
endp
|
|
|
|
|
2024-06-04 21:43:12 +02:00
|
|
|
; See page 114-116 of the NVMe 1.4 specification for reference
|
|
|
|
proc get_features stdcall, pci:dword, dptr:dword, sel:byte, fid:byte
|
|
|
|
|
|
|
|
push esi ebx
|
|
|
|
mov esi, [pci]
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
2024-06-04 22:12:19 +02:00
|
|
|
stdcall set_cdw0, ADM_CMD_GET_FEATURES, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
2024-06-04 21:43:12 +02:00
|
|
|
movzx eax, [fid] ; CDW10.FID
|
|
|
|
movzx ebx, [sel]
|
|
|
|
and ebx, 111b
|
|
|
|
shl ebx, 8
|
|
|
|
or eax, ebx ; CDW10.SEL
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw10], eax
|
|
|
|
mov eax, [dptr]
|
|
|
|
mov dword [esi + SQ_ENTRY.dptr], eax
|
|
|
|
; TODO: Implement CDW14.UUID?
|
|
|
|
stdcall sqytdbl_write, [pci], 0, 0
|
|
|
|
pop ebx esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
; See page 105-106 of the NVMe 1.4 specification for reference
|
2024-06-04 21:09:39 +02:00
|
|
|
proc delete_io_submission_queue stdcall, pci:dword, qid:word
|
|
|
|
|
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
2024-06-04 22:12:19 +02:00
|
|
|
stdcall set_cdw0, ADM_CMD_DEL_IO_SUBMISSION_QUEUE, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
2024-06-04 21:09:39 +02:00
|
|
|
mov ax, [qid]
|
|
|
|
mov word [esi + SQ_ENTRY.cdw10], ax
|
|
|
|
stdcall sqytdbl_write, [pci], [qid], 0 ; setting last param to 0 for now, change later
|
|
|
|
pop esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-08 18:25:29 +02:00
|
|
|
; See page 117-118 of the NVMe 1.4 specification for reference
|
|
|
|
; INCOMPLETE
|
|
|
|
proc get_log_page stdcall, pci:dword, dptr:dword, lid:byte
|
|
|
|
|
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
|
|
|
mov esi, [esi + pcidev.sq_ptr]
|
|
|
|
stdcall memset, esi, 0, sizeof.SQ_ENTRY
|
|
|
|
stdcall set_cdw0, ADM_CMD_GET_LOG_PAGE, 0 ; [TODO: Set CID to valid value]
|
|
|
|
mov dword [esi + SQ_ENTRY.cdw0], eax
|
|
|
|
mov eax, [dptr]
|
|
|
|
mov dword [esi + SQ_ENTRY.dptr], eax
|
|
|
|
pop esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
|
2024-04-17 21:35:01 +02:00
|
|
|
proc detect_nvme
|
|
|
|
|
2024-05-26 19:24:34 +02:00
|
|
|
invoke GetPCIList
|
2024-03-28 23:43:18 +01:00
|
|
|
mov edx, eax
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-03-28 23:43:18 +01:00
|
|
|
.check_dev:
|
2024-04-17 21:35:01 +02:00
|
|
|
mov ebx, dword [eax + PCIDEV.class]
|
|
|
|
and ebx, 0x00ffff00 ; retrieve class/subclass code only
|
|
|
|
cmp ebx, 0x00010800 ; Mass Storage Controller - Non-Volatile Memory Controller
|
|
|
|
je .found_dev
|
|
|
|
|
2024-03-28 23:43:18 +01:00
|
|
|
.next_dev:
|
2024-04-17 21:35:01 +02:00
|
|
|
mov eax, dword [eax + PCIDEV.fd]
|
2024-03-28 23:43:18 +01:00
|
|
|
cmp eax, edx
|
|
|
|
jne .check_dev
|
2024-04-28 02:11:57 +02:00
|
|
|
jmp .exit_success
|
2024-04-17 21:35:01 +02:00
|
|
|
|
|
|
|
.found_dev:
|
2024-04-28 02:11:57 +02:00
|
|
|
push edx eax
|
2024-04-29 03:06:13 +02:00
|
|
|
PDEBUGF DBG_INFO, "PCI(%u.%u.%u): Detected NVMe device...\n", byte [eax + PCIDEV.bus], byte [eax + PCIDEV.devfn]
|
2024-04-28 02:11:57 +02:00
|
|
|
cmp dword [pcidevs_len], TOTAL_PCIDEVS
|
2024-04-20 05:39:34 +02:00
|
|
|
jne @f
|
2024-04-28 02:11:57 +02:00
|
|
|
pop eax edx
|
|
|
|
jmp .exit_success
|
2024-04-20 05:39:34 +02:00
|
|
|
|
|
|
|
@@:
|
2024-04-28 02:11:57 +02:00
|
|
|
inc dword [pcidevs_len]
|
2024-04-20 05:39:34 +02:00
|
|
|
mov ebx, dword [p_nvme_devices]
|
|
|
|
test ebx, ebx
|
|
|
|
jnz @f
|
2024-05-26 00:56:58 +02:00
|
|
|
invoke KernelAlloc, sizeof.pcidev
|
2024-04-20 05:39:34 +02:00
|
|
|
test eax, eax
|
2024-04-28 02:11:57 +02:00
|
|
|
jz .err_no_mem
|
|
|
|
mov dword [p_nvme_devices], eax
|
2024-05-26 00:56:58 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Allocated pcidev struct at 0x%x\n", [p_nvme_devices]
|
2024-04-20 05:39:34 +02:00
|
|
|
|
|
|
|
@@:
|
|
|
|
mov ecx, dword [pcidevs_len]
|
2024-04-28 02:11:57 +02:00
|
|
|
dec ecx
|
2024-04-20 05:39:34 +02:00
|
|
|
pop eax
|
2024-05-26 00:56:58 +02:00
|
|
|
mov ebx, dword [p_nvme_devices]
|
|
|
|
|
2024-04-28 02:11:57 +02:00
|
|
|
movzx edx, byte [eax + PCIDEV.bus]
|
2024-05-26 00:56:58 +02:00
|
|
|
mov byte [ebx + pcidev.bus], dl
|
2024-04-28 02:11:57 +02:00
|
|
|
movzx edx, byte [eax + PCIDEV.devfn]
|
2024-05-26 00:56:58 +02:00
|
|
|
mov byte [ebx + pcidev.devfn], dl
|
|
|
|
|
2024-04-28 02:11:57 +02:00
|
|
|
pop edx
|
|
|
|
jmp .next_dev
|
|
|
|
|
|
|
|
.err_no_mem:
|
|
|
|
pop eax edx
|
|
|
|
xor eax, eax
|
|
|
|
ret
|
2024-04-20 05:39:34 +02:00
|
|
|
|
2024-04-28 02:11:57 +02:00
|
|
|
.exit_success:
|
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
2024-04-17 21:35:01 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-04-29 03:06:13 +02:00
|
|
|
proc device_is_compat stdcall, pci:dword
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-05-30 01:29:01 +02:00
|
|
|
push esi edx ecx
|
2024-05-29 21:43:14 +02:00
|
|
|
mov esi, [pci]
|
2024-05-30 22:06:50 +02:00
|
|
|
invoke PciRead8, dword [esi + pcidev.bus], dword [esi + pcidev.devfn], PCI_header00.interrupt_pin
|
|
|
|
test eax, eax
|
|
|
|
jz .failure
|
|
|
|
mov byte [esi + pcidev.ipin], al
|
2024-06-03 20:14:59 +02:00
|
|
|
;invoke PciRead16, dword [esi + pcidev.bus], dword [esi + pcidev.devfn], PCI_header.command
|
|
|
|
;test eax, eax
|
|
|
|
;jz .failure
|
|
|
|
;DEBUGF DBG_INFO, "(NVMe) CMD: %x\n", eax
|
2024-05-30 22:06:50 +02:00
|
|
|
invoke PciRead8, dword [esi + pcidev.bus], dword [esi + pcidev.devfn], PCI_header00.interrupt_line
|
|
|
|
mov byte [esi + pcidev.iline], al
|
2024-05-29 21:43:14 +02:00
|
|
|
invoke PciRead32, dword [esi + pcidev.bus], dword [esi + pcidev.devfn], PCI_header00.base_addr_0
|
2024-04-17 21:35:01 +02:00
|
|
|
and eax, 0xfffffff0
|
|
|
|
test eax, eax
|
2024-04-29 03:06:13 +02:00
|
|
|
jz .failure
|
2024-05-30 01:29:01 +02:00
|
|
|
mov edx, eax
|
|
|
|
push edx
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
invoke MapIoMem, eax, sizeof.NVME_MMIO, PG_SW+PG_NOCACHE
|
2024-04-17 21:35:01 +02:00
|
|
|
test eax, eax
|
2024-04-29 03:06:13 +02:00
|
|
|
jz .failure
|
2024-05-29 21:43:14 +02:00
|
|
|
;DEBUGF DBG_INFO, "(NVMe) MMIO allocated at: 0x%x\n", eax
|
2024-06-06 20:00:10 +02:00
|
|
|
mov dword [esi + pcidev.io_addr], eax
|
2024-05-29 21:43:14 +02:00
|
|
|
mov eax, dword [eax + NVME_MMIO.CAP + 4]
|
|
|
|
and eax, CAP_DSTRD
|
2024-06-09 19:07:01 +02:00
|
|
|
mov byte [esi + pcidev.dstrd], al
|
2024-05-29 21:43:14 +02:00
|
|
|
|
2024-05-30 01:29:01 +02:00
|
|
|
; 1003h + ((2y + 1) * (4 << CAP.DSTRD))
|
|
|
|
mov eax, 4
|
|
|
|
shl ax, cl
|
|
|
|
mov ecx, NVM_ASQS
|
|
|
|
shl ecx, 1
|
|
|
|
inc ecx
|
|
|
|
imul ecx, eax
|
|
|
|
add ecx, 0x1003
|
|
|
|
|
|
|
|
pop edx
|
|
|
|
invoke MapIoMem, edx, ecx, PG_SW+PG_NOCACHE
|
2024-06-06 20:00:10 +02:00
|
|
|
mov dword [esi + pcidev.io_addr], eax
|
2024-05-30 01:29:01 +02:00
|
|
|
mov eax, dword [eax + NVME_MMIO.VS]
|
2024-05-26 01:26:51 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Controller version: 0x%x\n", eax
|
2024-05-30 01:29:01 +02:00
|
|
|
pop ecx edx esi
|
2024-04-28 02:11:57 +02:00
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
|
|
|
ret
|
2024-04-20 05:39:34 +02:00
|
|
|
|
2024-04-29 03:06:13 +02:00
|
|
|
.failure:
|
2024-05-29 21:43:14 +02:00
|
|
|
PDEBUGF DBG_INFO, "PCI(%u.%u.%u): something went wrong checking NVMe device compatibility\n", byte [esi + pcidev.bus], byte [esi + pcidev.devfn]
|
2024-05-30 01:29:01 +02:00
|
|
|
pop ecx edx esi
|
2024-05-26 00:56:58 +02:00
|
|
|
xor eax, eax
|
2024-04-21 23:10:09 +02:00
|
|
|
ret
|
2024-04-20 05:39:34 +02:00
|
|
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
; nvme_init: Initializes the NVMe controller
|
2024-04-29 03:06:13 +02:00
|
|
|
proc nvme_init stdcall, pci:dword
|
2024-04-20 05:39:34 +02:00
|
|
|
|
2024-05-30 22:06:50 +02:00
|
|
|
push ebx esi edi
|
2024-05-30 20:21:45 +02:00
|
|
|
mov esi, dword [pci]
|
2024-06-06 20:00:10 +02:00
|
|
|
mov edi, dword [esi + pcidev.io_addr]
|
2024-05-26 01:26:51 +02:00
|
|
|
|
2024-05-29 21:43:14 +02:00
|
|
|
if 0
|
2024-05-26 22:54:59 +02:00
|
|
|
mov eax, dword [edi + NVME_MMIO.CAP]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CAP (0-31): 0x%x\n", eax
|
|
|
|
mov eax, dword [edi + NVME_MMIO.CAP + 4]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CAP (32-63): 0x%x\n", eax
|
|
|
|
mov eax, dword [edi + NVME_MMIO.CC]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CC: 0x%x\n", eax
|
|
|
|
mov eax, dword [edi + NVME_MMIO.CSTS]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CSTS: 0x%x\n", eax
|
2024-05-26 01:26:51 +02:00
|
|
|
end if
|
|
|
|
|
2024-05-26 22:54:59 +02:00
|
|
|
mov eax, dword [edi + NVME_MMIO.CAP]
|
|
|
|
test eax, CAP_CQR
|
2024-04-17 21:35:01 +02:00
|
|
|
jz .cqr_not_req
|
2024-03-28 23:43:18 +01:00
|
|
|
|
2024-04-02 01:47:14 +02:00
|
|
|
.cqr_not_req:
|
2024-05-24 01:15:34 +02:00
|
|
|
; For some reason, bit 7 (No I/O command set supported) is also set to 1 despite bit 0 (NVM command set)
|
|
|
|
; being set to 1.. so I am not sure if bit 7 should be checked at all.. investigate later.
|
2024-05-26 22:54:59 +02:00
|
|
|
mov eax, dword [edi + NVME_MMIO.CAP + 4]
|
|
|
|
test eax, CAP_CSS_NVM_CMDSET
|
2024-04-17 21:35:01 +02:00
|
|
|
jz .exit_fail
|
|
|
|
|
2024-05-26 02:37:42 +02:00
|
|
|
; Reset controller before we configure it
|
2024-05-26 23:19:25 +02:00
|
|
|
stdcall nvme_controller_reset, edi
|
2024-05-26 22:54:59 +02:00
|
|
|
mov eax, dword [edi + NVME_MMIO.CAP + 4]
|
|
|
|
and eax, CAP_MPSMIN
|
|
|
|
shr eax, 16
|
|
|
|
cmp eax, NVM_MPS
|
|
|
|
jg .exit_fail
|
|
|
|
mov eax, dword [edi + NVME_MMIO.CAP + 4]
|
|
|
|
and eax, CAP_MPSMAX
|
|
|
|
shr eax, 20
|
|
|
|
cmp eax, NVM_MPS
|
2024-05-26 02:37:42 +02:00
|
|
|
jl .exit_fail
|
|
|
|
|
2024-05-28 21:01:25 +02:00
|
|
|
; Configure AMS, MPS, CSS
|
2024-05-26 22:54:59 +02:00
|
|
|
mov eax, dword [edi + NVME_MMIO.CC]
|
2024-05-28 21:01:25 +02:00
|
|
|
and eax, not (CC_AMS or CC_MPS or CC_CSS)
|
|
|
|
or eax, 111b shl 4 ; Admin Command Set Only (temporary)
|
|
|
|
and dword [edi + NVME_MMIO.CC], eax
|
2024-05-26 02:37:42 +02:00
|
|
|
|
|
|
|
; Configure Admin Queue Attributes
|
2024-05-26 22:54:59 +02:00
|
|
|
mov eax, dword [edi + NVME_MMIO.AQA]
|
|
|
|
and eax, not (AQA_ASQS or AQA_ACQS)
|
2024-05-28 18:26:27 +02:00
|
|
|
or eax, NVM_ASQS or (NVM_ACQS shl 16)
|
2024-05-26 22:54:59 +02:00
|
|
|
mov dword [edi + NVME_MMIO.AQA], eax
|
2024-05-26 02:37:42 +02:00
|
|
|
|
|
|
|
; Configure Admin Submission/Completion Queue Base Address
|
2024-06-06 18:43:57 +02:00
|
|
|
invoke KernelAlloc, 0x1000
|
2024-05-26 22:54:59 +02:00
|
|
|
test eax, eax
|
|
|
|
jz .exit_fail
|
2024-06-06 18:43:57 +02:00
|
|
|
mov dword [esi + pcidev.sq_ptr], eax
|
|
|
|
invoke GetPhysAddr
|
2024-05-26 22:54:59 +02:00
|
|
|
mov dword [edi + NVME_MMIO.ASQ], eax
|
2024-05-26 23:19:25 +02:00
|
|
|
and dword [edi + NVME_MMIO.ASQ + 4], 0
|
2024-06-06 18:43:57 +02:00
|
|
|
invoke KernelAlloc, 0x1000
|
2024-05-26 22:54:59 +02:00
|
|
|
test eax, eax
|
|
|
|
jz .exit_fail
|
2024-06-06 18:43:57 +02:00
|
|
|
mov dword [esi + pcidev.cq_ptr], eax
|
|
|
|
invoke GetPhysAddr
|
2024-05-26 22:54:59 +02:00
|
|
|
mov dword [edi + NVME_MMIO.ACQ], eax
|
2024-05-26 23:19:25 +02:00
|
|
|
and dword [edi + NVME_MMIO.ACQ + 4], 0
|
2024-05-26 23:02:56 +02:00
|
|
|
|
2024-06-10 00:13:01 +02:00
|
|
|
stdcall memset, dword [esi + pcidev.sq_ptr], 0, sizeof.SQ_ENTRY * NVM_ASQS
|
|
|
|
stdcall memset, dword [esi + pcidev.cq_ptr], 0, sizeof.CQ_ENTRY * NVM_ACQS
|
|
|
|
|
|
|
|
; Allocate list of queues
|
2024-06-12 01:57:02 +02:00
|
|
|
invoke KernelAlloc, sizeof.NVM_QUEUE_ENTRY * NVM_ASQS
|
2024-06-10 00:13:01 +02:00
|
|
|
test eax, eax
|
|
|
|
jz .exit_fail
|
2024-06-12 01:57:02 +02:00
|
|
|
mov dword [esi + pcidev.queue_entries], eax
|
|
|
|
stdcall memset, eax, 0, sizeof.NVM_QUEUE_ENTRY * NVM_ASQS
|
2024-06-10 00:13:01 +02:00
|
|
|
|
|
|
|
; we want to disable all interrupts for now, since the controller randomly
|
|
|
|
; generates interrupts while starting up
|
|
|
|
mov dword [edi + NVME_MMIO.INTMS], 0xffffffff
|
|
|
|
|
2024-05-30 22:06:50 +02:00
|
|
|
; Attach interrupt handler
|
|
|
|
movzx eax, byte [esi + pcidev.iline]
|
2024-06-03 20:14:59 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Attaching interrupt handler to IRQ %u\n", eax
|
|
|
|
invoke AttachIntHandler, eax, irq_handler, 0
|
2024-05-30 22:06:50 +02:00
|
|
|
test eax, eax
|
|
|
|
jz .exit_fail
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) Successfully attached interrupt handler\n"
|
|
|
|
|
2024-06-03 20:14:59 +02:00
|
|
|
; Restart the controller
|
|
|
|
stdcall nvme_controller_start, edi
|
2024-06-10 00:13:01 +02:00
|
|
|
mov dword [edi + NVME_MMIO.INTMC], 0xffffffff ; re-enable interrupts
|
2024-06-03 20:14:59 +02:00
|
|
|
|
2024-06-09 19:07:01 +02:00
|
|
|
invoke KernelAlloc, 0x1000
|
2024-05-28 21:01:25 +02:00
|
|
|
test eax, eax
|
|
|
|
jz .exit_fail
|
2024-06-09 19:07:01 +02:00
|
|
|
mov dword [dptr], eax
|
|
|
|
invoke GetPhysAddr
|
2024-06-12 21:47:32 +02:00
|
|
|
mov ebx, eax
|
|
|
|
stdcall get_new_cid, [pci], 0
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) Got Command Identifier: %u\n", eax
|
2024-06-06 19:28:31 +02:00
|
|
|
; pci:dword, nsid:dword, dptr:dword, cid:word, cns:byte
|
2024-06-12 21:47:32 +02:00
|
|
|
stdcall nvme_identify, [pci], 0, ebx, eax, CNS_IDCS
|
|
|
|
mov esi, dword [esi + pcidev.cq_ptr]
|
|
|
|
|
|
|
|
; Wait until phase tag bit is set
|
|
|
|
@@:
|
|
|
|
mov al, byte [esi + CQ_ENTRY.status]
|
|
|
|
test al, CQ_PHASE_TAG
|
|
|
|
jz @b
|
|
|
|
mov esi, dword [dptr]
|
|
|
|
mov ax, word [esi + IDENTC.vid]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) IDENTC.vid = %x\n", ax
|
2024-05-26 22:54:59 +02:00
|
|
|
|
2024-05-26 19:24:34 +02:00
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
2024-05-30 22:06:50 +02:00
|
|
|
pop edi esi ebx
|
2024-05-26 19:24:34 +02:00
|
|
|
ret
|
2024-03-31 21:43:38 +02:00
|
|
|
|
2024-04-02 01:47:14 +02:00
|
|
|
.exit_fail:
|
2024-05-30 22:06:50 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) failed to initialize controller\n"
|
2024-04-20 05:39:34 +02:00
|
|
|
xor eax, eax
|
2024-05-30 22:06:50 +02:00
|
|
|
pop edi esi ebx
|
2024-03-31 21:43:38 +02:00
|
|
|
ret
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
endp
|
|
|
|
|
2024-06-12 21:47:32 +02:00
|
|
|
proc get_new_cid stdcall, pci:dword, y:dword
|
2024-06-12 01:57:02 +02:00
|
|
|
|
|
|
|
push esi ebx
|
|
|
|
mov ecx, [y]
|
2024-06-12 21:47:32 +02:00
|
|
|
imul ecx, sizeof.NVM_QUEUE_ENTRY
|
|
|
|
mov esi, [pci]
|
|
|
|
mov esi, dword [esi + pcidev.queue_entries]
|
|
|
|
lea esi, dword [esi + ecx]
|
|
|
|
mov eax, dword [esi + NVM_QUEUE_ENTRY.cid_slots]
|
2024-06-12 01:57:02 +02:00
|
|
|
xor edx, edx
|
|
|
|
cmp eax, 0xffffffff
|
|
|
|
jne @f
|
2024-06-12 21:47:32 +02:00
|
|
|
mov eax, dword [esi + NVM_QUEUE_ENTRY.cid_slots + 4]
|
2024-06-12 01:57:02 +02:00
|
|
|
add edx, 4
|
|
|
|
cmp eax, 0xffffffff
|
|
|
|
jne @f
|
2024-06-12 21:47:32 +02:00
|
|
|
pop ebx esi
|
2024-06-12 01:57:02 +02:00
|
|
|
mov eax, -1
|
|
|
|
ret
|
|
|
|
|
|
|
|
@@:
|
|
|
|
mov ebx, eax
|
|
|
|
|
|
|
|
; Equivalant to (~(-X) & ~(X)), retrieves first free bit
|
|
|
|
not eax
|
|
|
|
mov ecx, eax
|
|
|
|
neg ecx
|
|
|
|
and eax, ecx
|
|
|
|
or ebx, eax
|
|
|
|
|
|
|
|
mov ecx, [y]
|
2024-06-12 21:47:32 +02:00
|
|
|
mov dword [esi + edx + NVM_QUEUE_ENTRY.cid_slots], ebx
|
|
|
|
bsf eax, eax
|
|
|
|
cmp edx, 4
|
|
|
|
jne @f
|
|
|
|
add eax, 32
|
|
|
|
|
|
|
|
@@:
|
2024-06-12 01:57:02 +02:00
|
|
|
pop ebx esi
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-05-26 23:19:25 +02:00
|
|
|
proc nvme_controller_reset stdcall, mmio:dword
|
2024-05-24 01:15:34 +02:00
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Resetting Controller...\n"
|
2024-05-26 23:19:25 +02:00
|
|
|
push edi
|
|
|
|
mov edi, dword [mmio]
|
|
|
|
and dword [edi + NVME_MMIO.CC], 0xfffffffe ; CC.EN = 0
|
|
|
|
stdcall nvme_wait, [mmio]
|
2024-05-24 01:15:34 +02:00
|
|
|
|
|
|
|
; Wait for controller to be brought to idle state, CSTS.RDY should be cleared to 0 when this happens
|
|
|
|
.wait:
|
2024-05-26 23:19:25 +02:00
|
|
|
test dword [edi + NVME_MMIO.CSTS], CSTS_RDY
|
2024-05-24 01:15:34 +02:00
|
|
|
jnz .wait
|
2024-05-26 00:56:58 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Successfully reset controller...\n"
|
2024-05-26 23:19:25 +02:00
|
|
|
pop edi
|
2024-05-24 01:15:34 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-05-26 23:19:25 +02:00
|
|
|
proc nvme_controller_start stdcall, mmio:dword
|
2024-05-26 23:02:56 +02:00
|
|
|
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) Starting Controller...\n"
|
2024-05-26 23:19:25 +02:00
|
|
|
push edi
|
|
|
|
mov edi, dword [mmio]
|
|
|
|
or dword [edi + NVME_MMIO.CC], 1 ;; CC.EN = 1
|
|
|
|
stdcall nvme_wait, [mmio]
|
2024-05-26 23:02:56 +02:00
|
|
|
|
2024-06-08 20:32:25 +02:00
|
|
|
; Wait for controller to be brought into active state, CSTS.RDY should be set to 1 when this happens
|
2024-05-26 23:02:56 +02:00
|
|
|
.wait:
|
2024-05-26 23:19:25 +02:00
|
|
|
test dword [edi + NVME_MMIO.CSTS], CSTS_RDY
|
2024-05-26 23:02:56 +02:00
|
|
|
jz .wait
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) Successfully started controller...\n"
|
2024-05-26 23:19:25 +02:00
|
|
|
pop edi
|
2024-05-26 23:02:56 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
; Should be called only after the value of CC.EN has changed
|
2024-05-26 23:19:25 +02:00
|
|
|
proc nvme_wait stdcall, mmio:dword
|
|
|
|
|
2024-05-30 22:06:50 +02:00
|
|
|
push esi
|
2024-05-26 23:19:25 +02:00
|
|
|
mov esi, [mmio]
|
|
|
|
mov esi, dword [esi + NVME_MMIO.CAP]
|
|
|
|
and esi, CAP_TO
|
|
|
|
shr esi, 24
|
2024-06-12 01:57:02 +02:00
|
|
|
imul esi, 150 ; TODO: bad time delay, set to appropriate value later
|
2024-05-26 00:56:58 +02:00
|
|
|
invoke Sleep
|
2024-05-30 22:06:50 +02:00
|
|
|
pop esi
|
2024-05-24 01:15:34 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-05-30 23:11:24 +02:00
|
|
|
; Writes to submission queue 'y' tail doorbell
|
2024-06-08 20:32:25 +02:00
|
|
|
proc sqytdbl_write stdcall, pci:dword, y:byte, sqt:word
|
2024-06-03 18:02:36 +02:00
|
|
|
|
2024-06-08 20:32:25 +02:00
|
|
|
push ebx esi
|
2024-06-03 18:02:36 +02:00
|
|
|
mov esi, [pci]
|
2024-05-30 23:11:24 +02:00
|
|
|
|
|
|
|
; 1000h + (2y * (4 << CAP.DSTRD))
|
2024-06-03 18:02:36 +02:00
|
|
|
mov ecx, dword [esi + pcidev.dstrd]
|
2024-05-30 23:11:24 +02:00
|
|
|
mov eax, 4
|
2024-06-03 18:02:36 +02:00
|
|
|
shl eax, cl
|
|
|
|
mov cl, [y]
|
|
|
|
xor ebx, ebx
|
|
|
|
shl ebx, cl
|
|
|
|
imul ebx, eax
|
|
|
|
add ebx, 0x1000
|
2024-06-03 20:14:59 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Writing to submission queue 0x%x doorbell register\n", ebx
|
2024-06-03 18:02:36 +02:00
|
|
|
|
2024-06-06 20:00:10 +02:00
|
|
|
mov esi, [esi + pcidev.io_addr]
|
2024-06-08 20:32:25 +02:00
|
|
|
mov ax, [sqt]
|
|
|
|
mov word [esi + ebx], ax ; Write to register
|
|
|
|
pop esi ebx
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-09 19:07:01 +02:00
|
|
|
; Writes to completion queue 'y' head doorbell
|
2024-06-12 01:57:02 +02:00
|
|
|
proc cqyhdbl_write stdcall, pci:dword, y:byte, cqh:word
|
2024-06-09 19:07:01 +02:00
|
|
|
|
2024-06-10 00:13:01 +02:00
|
|
|
push esi edi
|
2024-06-09 19:07:01 +02:00
|
|
|
mov esi, [pci]
|
|
|
|
|
|
|
|
; 1000h + ((2y + 1) * (4 << CAP.DSTRD))
|
2024-06-10 00:13:01 +02:00
|
|
|
movzx eax, [y]
|
|
|
|
shl al, 1
|
|
|
|
inc al
|
2024-06-12 01:57:02 +02:00
|
|
|
mov edx, 4
|
2024-06-09 19:07:01 +02:00
|
|
|
mov cl, byte [esi + pcidev.dstrd]
|
2024-06-10 00:13:01 +02:00
|
|
|
shl dx, cl
|
|
|
|
imul dx, ax
|
|
|
|
add dx, 0x1000
|
|
|
|
movzx ecx, [y]
|
2024-06-12 21:47:32 +02:00
|
|
|
imul ecx, sizeof.NVM_QUEUE_ENTRY
|
2024-06-12 01:57:02 +02:00
|
|
|
mov edi, dword [esi + pcidev.queue_entries]
|
2024-06-12 21:47:32 +02:00
|
|
|
lea edi, dword [edi + ecx]
|
2024-06-09 19:07:01 +02:00
|
|
|
mov esi, dword [esi + pcidev.io_addr]
|
2024-06-12 01:57:02 +02:00
|
|
|
mov ax, [cqh]
|
2024-06-10 00:13:01 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Writing to completion queue doorbell register 0x%x: %u\n", dx, ax
|
2024-06-09 19:07:01 +02:00
|
|
|
mov word [esi + edx], ax ; Write to CQyHDBL
|
2024-06-12 21:47:32 +02:00
|
|
|
mov word [edi + NVM_QUEUE_ENTRY.head], ax
|
2024-06-10 00:13:01 +02:00
|
|
|
pop edi esi
|
2024-06-09 19:07:01 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-08 20:32:25 +02:00
|
|
|
proc write_admin_cmd stdcall, pci:dword
|
|
|
|
|
|
|
|
push esi
|
|
|
|
mov esi, [pci]
|
2024-06-12 01:57:02 +02:00
|
|
|
mov esi, dword [esi + pcidev.queue_entries]
|
|
|
|
mov ax, word [esi + NVM_QUEUE_ENTRY.tail]
|
2024-06-08 20:32:25 +02:00
|
|
|
cmp ax, NVM_ASQS
|
|
|
|
xor ax, ax
|
|
|
|
|
|
|
|
@@:
|
2024-06-10 00:13:01 +02:00
|
|
|
mov esi, [pci]
|
2024-06-08 20:32:25 +02:00
|
|
|
mov esi, dword [esi + pcidev.io_addr]
|
|
|
|
inc ax
|
|
|
|
mov word [esi + 0x1000], ax
|
2024-06-12 01:57:02 +02:00
|
|
|
mov word [esi + NVM_QUEUE_ENTRY.tail], ax
|
2024-06-08 20:32:25 +02:00
|
|
|
pop esi
|
2024-05-28 23:55:06 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
|
|
|
; Calculates 2^x
|
2024-05-30 01:29:01 +02:00
|
|
|
proc pow2 stdcall, x:byte
|
2024-05-28 23:55:06 +02:00
|
|
|
|
|
|
|
push ecx
|
2024-05-30 01:29:01 +02:00
|
|
|
mov cl, [x]
|
2024-05-29 21:43:14 +02:00
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
2024-05-30 01:29:01 +02:00
|
|
|
test cl, cl
|
2024-05-29 21:43:14 +02:00
|
|
|
jnz @f
|
2024-05-30 01:29:01 +02:00
|
|
|
pop ecx
|
2024-05-29 21:43:14 +02:00
|
|
|
ret
|
2024-05-29 21:57:45 +02:00
|
|
|
|
|
|
|
@@:
|
2024-05-30 01:29:01 +02:00
|
|
|
shl eax, cl
|
2024-05-28 23:55:06 +02:00
|
|
|
pop ecx
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-06-03 20:14:59 +02:00
|
|
|
proc irq_handler
|
2024-06-03 18:02:36 +02:00
|
|
|
|
2024-06-09 19:07:01 +02:00
|
|
|
push esi edi
|
2024-06-03 20:28:35 +02:00
|
|
|
mov esi, dword [p_nvme_devices]
|
2024-06-09 19:07:01 +02:00
|
|
|
mov edi, esi
|
|
|
|
mov esi, dword [esi + pcidev.io_addr]
|
|
|
|
mov edi, dword [edi + pcidev.cq_ptr]
|
|
|
|
mov dword [esi + NVME_MMIO.INTMS], 0x1
|
2024-06-09 20:57:42 +02:00
|
|
|
mov ax, word [edi + CQ_ENTRY.status]
|
|
|
|
and ax, not CQ_PHASE_TAG ; ignore phase tag bit
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) Status: %x\n", ax
|
|
|
|
test al, al ; check status code (0 on success)
|
2024-06-09 19:07:01 +02:00
|
|
|
jz @f
|
|
|
|
|
|
|
|
; error occurred
|
2024-06-03 20:14:59 +02:00
|
|
|
|
2024-06-09 19:07:01 +02:00
|
|
|
; we have to initiate a controller reset if a admin command encounters
|
|
|
|
; a fatal error or if a completion is not received for a deletion
|
|
|
|
; of a submission or completion queue (section 10.1 - page 400 of NVMe 1.4 spec)
|
|
|
|
stdcall nvme_controller_reset, esi
|
|
|
|
stdcall nvme_controller_start, esi
|
|
|
|
jmp .exit
|
|
|
|
|
|
|
|
@@:
|
2024-06-12 01:57:02 +02:00
|
|
|
stdcall cqyhdbl_write, [p_nvme_devices], 0x0, 0x1
|
2024-06-12 21:47:32 +02:00
|
|
|
mov dword [esi + NVME_MMIO.INTMC], 0x1
|
2024-06-09 19:07:01 +02:00
|
|
|
|
|
|
|
.exit:
|
|
|
|
; Interrupt handled by driver, return 1
|
2024-06-03 20:14:59 +02:00
|
|
|
xor eax, eax
|
2024-06-09 19:07:01 +02:00
|
|
|
inc eax
|
|
|
|
pop edi esi
|
2024-06-03 20:14:59 +02:00
|
|
|
ret
|
2024-06-03 18:02:36 +02:00
|
|
|
|
2024-05-30 22:06:50 +02:00
|
|
|
endp
|
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
proc nvme_cleanup
|
2024-04-17 21:35:01 +02:00
|
|
|
|
2024-04-21 23:10:09 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe): Cleaning up...\n"
|
2024-05-26 22:54:59 +02:00
|
|
|
mov ecx, dword [pcidevs_len]
|
2024-04-29 03:06:13 +02:00
|
|
|
mov eax, dword [p_nvme_devices]
|
|
|
|
test eax, eax
|
|
|
|
jnz .loop
|
2024-04-17 21:35:01 +02:00
|
|
|
ret
|
|
|
|
|
2024-04-29 03:06:13 +02:00
|
|
|
.loop:
|
|
|
|
;invoke KernelFree, dword [p_nvme_devices + ecx * sizeof.pcidev + pcidev.ident_ptr]
|
2024-05-26 00:56:58 +02:00
|
|
|
dec ecx
|
|
|
|
test ecx, ecx
|
|
|
|
jnz .loop
|
2024-04-29 03:06:13 +02:00
|
|
|
invoke KernelFree, dword [p_nvme_devices]
|
2024-05-26 22:54:59 +02:00
|
|
|
|
|
|
|
@@:
|
2024-04-29 03:06:13 +02:00
|
|
|
ret
|
2024-03-28 23:43:18 +01:00
|
|
|
|
2024-04-29 03:06:13 +02:00
|
|
|
endp
|
2024-03-28 23:43:18 +01:00
|
|
|
|
|
|
|
;all initialized data place here
|
|
|
|
align 4
|
2024-04-20 05:39:34 +02:00
|
|
|
p_nvme_devices dd 0
|
|
|
|
pcidevs_len dd 0
|
2024-06-09 19:07:01 +02:00
|
|
|
dptr dd ?
|
2024-04-17 22:04:49 +02:00
|
|
|
my_service db "NVMe",0 ;max 16 chars include zero
|
2024-05-04 00:07:31 +02:00
|
|
|
if __DEBUG__
|
2024-04-17 21:35:01 +02:00
|
|
|
include_debug_strings
|
2024-05-04 00:07:31 +02:00
|
|
|
end if
|
2024-03-28 23:43:18 +01:00
|
|
|
|
|
|
|
align 4
|
|
|
|
data fixups
|
|
|
|
end data
|