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-04-28 19:50:40 +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-04-29 03:06:13 +02:00
|
|
|
push ebx ecx edx
|
2024-04-28 02:11:57 +02:00
|
|
|
mov edx, [sz]
|
2024-04-29 03:06:13 +02:00
|
|
|
mov bl, [val]
|
2024-04-17 21:35:01 +02:00
|
|
|
xor ecx, ecx
|
2024-05-26 19:24:34 +02:00
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
@@:
|
2024-04-29 03:06:13 +02:00
|
|
|
mov byte [p_data + ecx], bl
|
2024-04-17 21:35:01 +02:00
|
|
|
inc ecx
|
2024-04-28 02:11:57 +02:00
|
|
|
cmp ecx, edx
|
2024-04-17 21:35:01 +02:00
|
|
|
jne @b
|
2024-04-29 03:06:13 +02:00
|
|
|
pop edx ecx ebx
|
2024-04-17 21:35:01 +02:00
|
|
|
ret
|
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
endp
|
|
|
|
|
|
|
|
; Submit a Command in the Admin Submission Queue
|
|
|
|
proc submit_asq stdcall, p_sq:dword
|
2024-04-17 21:35:01 +02:00
|
|
|
|
|
|
|
xor eax, eax
|
|
|
|
ret
|
|
|
|
|
2024-03-31 21:43:38 +02:00
|
|
|
endp
|
|
|
|
|
|
|
|
proc nvme_identify stdcall, nsid:dword, dptr:dword, cns:byte
|
2024-04-17 21:35:01 +02:00
|
|
|
|
|
|
|
sub esp, sizeof.SQ_ENTRY
|
|
|
|
stdcall memset, esp, 0, sizeof.SQ_ENTRY
|
|
|
|
|
|
|
|
mov eax, dword [nsid]
|
|
|
|
mov dword [esp + SQ_ENTRY.nsid], eax
|
|
|
|
mov eax, dword [dptr]
|
|
|
|
mov dword [esp + SQ_ENTRY.dptr], eax
|
|
|
|
mov dword [esp + SQ_ENTRY.cdw0], ADM_CMD_IDENTIFY ; TODO: setting CID to 0 for now but later on keep a unique list of identifiers
|
2024-04-29 03:06:13 +02:00
|
|
|
mov al, byte [cns]
|
|
|
|
mov byte [esp + SQ_ENTRY.cdw10], al
|
2024-04-17 21:35:01 +02:00
|
|
|
stdcall submit_asq, esp
|
|
|
|
|
|
|
|
add esp, sizeof.SQ_ENTRY
|
|
|
|
xor eax, eax
|
|
|
|
ret
|
|
|
|
|
2024-03-30 04:42:01 +01:00
|
|
|
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-26 00:56:58 +02:00
|
|
|
push ebx
|
|
|
|
mov ebx, [pci]
|
|
|
|
invoke PciRead32, dword [ebx + pcidev.bus], dword [ebx + 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-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-26 00:56:58 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) MMIO allocated at: 0x%x\n", eax
|
|
|
|
mov ebx, [pci]
|
|
|
|
mov dword [ebx + pcidev.mmio_ptr], eax
|
|
|
|
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-26 00:56:58 +02:00
|
|
|
pop ebx
|
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-26 00:56:58 +02:00
|
|
|
PDEBUGF DBG_INFO, "PCI(%u.%u.%u): something went wrong checking NVMe device compatibility\n", byte [ebx + pcidev.bus], byte [ebx + pcidev.devfn]
|
2024-04-29 03:06:13 +02:00
|
|
|
pop ebx
|
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-26 00:56:58 +02:00
|
|
|
push ebx
|
|
|
|
mov eax, dword [pci]
|
|
|
|
mov eax, dword [eax + pcidev.mmio_ptr]
|
2024-05-26 01:26:51 +02:00
|
|
|
|
|
|
|
if __DEBUG__
|
|
|
|
mov ebx, dword [eax + NVME_MMIO.CAP]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CAP (0-31): 0x%x\n", ebx
|
|
|
|
mov ebx, dword [eax + NVME_MMIO.CAP + 4]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CAP (32-63): 0x%x\n", ebx
|
2024-05-26 02:37:42 +02:00
|
|
|
mov ebx, dword [eax + NVME_MMIO.CC]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CC: 0x%x\n", ebx
|
|
|
|
mov ebx, dword [eax + NVME_MMIO.CSTS]
|
|
|
|
DEBUGF DBG_INFO, "(NVMe) CSTS: 0x%x\n", ebx
|
2024-05-26 01:26:51 +02:00
|
|
|
end if
|
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
mov ebx, dword [eax + NVME_MMIO.CAP]
|
2024-04-17 21:35:01 +02:00
|
|
|
test ebx, CAP_CQR
|
|
|
|
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 00:56:58 +02:00
|
|
|
mov ebx, dword [eax + NVME_MMIO.CAP + 4]
|
2024-05-24 01:15:34 +02:00
|
|
|
test ebx, 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 00:56:58 +02:00
|
|
|
stdcall nvme_controller_reset, [pci]
|
2024-05-26 02:37:42 +02:00
|
|
|
mov eax, [pci]
|
|
|
|
mov eax, [eax + pcidev.mmio_ptr]
|
|
|
|
mov ebx, dword [eax + NVME_MMIO.CC]
|
|
|
|
and ebx, CAP_MPSMAX
|
|
|
|
shr ebx, 20
|
|
|
|
cmp ebx, NVM_MPS
|
|
|
|
jl .exit_fail
|
|
|
|
|
|
|
|
; Configure IOSQES, IOCQES, MPS, CSS
|
|
|
|
mov ebx, dword [eax + NVME_MMIO.CC]
|
|
|
|
or ebx, (4 shl 16) or (6 shl 20)
|
|
|
|
and ebx, not (CC_MPS or CC_CSS)
|
|
|
|
mov dword [eax + NVME_MMIO.CC], ebx
|
|
|
|
|
|
|
|
; Configure Admin Queue Attributes
|
|
|
|
|
|
|
|
; Configure Admin Submission/Completion Queue Base Address
|
2024-05-24 01:15:34 +02:00
|
|
|
|
2024-05-26 19:24:34 +02:00
|
|
|
xor eax, eax
|
|
|
|
inc eax
|
2024-05-26 00:56:58 +02:00
|
|
|
pop 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-04-29 03:06:13 +02:00
|
|
|
PDEBUGF DBG_INFO, "PCI(%u.%u.%u): failed to initialize NVMe controller\n", byte [pci + pcidev.bus], byte [pci + pcidev.devfn]
|
2024-04-20 05:39:34 +02:00
|
|
|
xor eax, eax
|
2024-05-26 00:56:58 +02:00
|
|
|
pop 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-05-24 01:15:34 +02:00
|
|
|
proc nvme_controller_reset stdcall, pci:dword
|
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
DEBUGF DBG_INFO, "(NVMe) Resetting Controller...\n"
|
2024-05-24 01:15:34 +02:00
|
|
|
push ebx
|
2024-05-26 00:56:58 +02:00
|
|
|
mov ebx, dword [pci]
|
|
|
|
mov ebx, dword [ebx + pcidev.mmio_ptr]
|
2024-05-26 02:37:42 +02:00
|
|
|
and dword [ebx + NVME_MMIO.CC], 0xfffffffe
|
2024-05-26 00:56:58 +02:00
|
|
|
stdcall nvme_wait, [pci]
|
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 02:37:42 +02:00
|
|
|
test dword [ebx + 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-24 01:15:34 +02:00
|
|
|
pop ebx
|
|
|
|
ret
|
|
|
|
|
|
|
|
endp
|
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
; Should be called only after the value of CC.EN has changed
|
2024-05-24 01:15:34 +02:00
|
|
|
proc nvme_wait stdcall, pci:dword
|
|
|
|
|
2024-05-26 00:56:58 +02:00
|
|
|
mov eax, [pci]
|
|
|
|
mov eax, [eax + pcidev.mmio_ptr]
|
|
|
|
mov eax, dword [eax + NVME_MMIO.CAP]
|
2024-05-24 01:15:34 +02:00
|
|
|
and eax, CAP_TO
|
|
|
|
shr eax, 24
|
|
|
|
mov esi, eax
|
2024-05-26 00:56:58 +02:00
|
|
|
imul esi, 50
|
|
|
|
invoke Sleep
|
2024-05-24 01:15:34 +02:00
|
|
|
ret
|
|
|
|
|
|
|
|
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-04-29 03:06:13 +02:00
|
|
|
push ecx
|
|
|
|
mov eax, dword [p_nvme_devices]
|
2024-05-26 00:56:58 +02:00
|
|
|
mov ecx, eax
|
2024-04-29 03:06:13 +02:00
|
|
|
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]
|
|
|
|
pop ecx
|
|
|
|
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-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
|