From 310af38f1324c57ef5a072b27c91110cd4ec4a3a Mon Sep 17 00:00:00 2001 From: Ian Moffett Date: Fri, 9 May 2025 22:13:41 -0400 Subject: kernel: ahci: Detect staggered spin up Signed-off-by: Ian Moffett --- sys/include/dev/ic/ahcivar.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'sys/include/dev/ic/ahcivar.h') diff --git a/sys/include/dev/ic/ahcivar.h b/sys/include/dev/ic/ahcivar.h index 4b6cf12..dc4e492 100644 --- a/sys/include/dev/ic/ahcivar.h +++ b/sys/include/dev/ic/ahcivar.h @@ -45,6 +45,7 @@ struct ahci_cmd_hdr; * @nslots: Number of command slots * @ems: Enclosure management support * @sal: Supports activity LED + * @sss: Supports staggered spin up */ struct ahci_hba { struct hba_memspace *io; @@ -53,6 +54,7 @@ struct ahci_hba { uint32_t nslots; uint8_t ems : 1; uint8_t sal : 1; + uint8_t sss : 1; }; /* -- cgit v1.2.3