mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-04 09:09:56 +00:00
Add information about supported NCQ functionality to camcontrol identify.
MFC after: 2 weeks
This commit is contained in:
parent
8609cb7bfd
commit
9acc9dc691
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=264863
@ -1214,6 +1214,18 @@ atahpa_print(struct ata_params *parm, u_int64_t hpasize, int header)
|
||||
}
|
||||
}
|
||||
|
||||
static int
|
||||
atasata(struct ata_params *parm)
|
||||
{
|
||||
|
||||
|
||||
if (parm->satacapabilities != 0xffff &&
|
||||
parm->satacapabilities != 0x0000)
|
||||
return 1;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void
|
||||
atacapprint(struct ata_params *parm)
|
||||
{
|
||||
@ -1370,6 +1382,17 @@ atacapprint(struct ata_params *parm)
|
||||
ATA_QUEUE_LEN(parm->queue) + 1);
|
||||
} else
|
||||
printf("no\n");
|
||||
|
||||
printf("NCQ Queue Management %s\n", atasata(parm) &&
|
||||
parm->satacapabilities2 & ATA_SUPPORT_NCQ_QMANAGEMENT ?
|
||||
"yes" : "no");
|
||||
printf("NCQ Streaming %s\n", atasata(parm) &&
|
||||
parm->satacapabilities2 & ATA_SUPPORT_NCQ_STREAM ?
|
||||
"yes" : "no");
|
||||
printf("Receive & Send FPDMA Queued %s\n", atasata(parm) &&
|
||||
parm->satacapabilities2 & ATA_SUPPORT_RCVSND_FPDMA_QUEUED ?
|
||||
"yes" : "no");
|
||||
|
||||
printf("SMART %s %s\n",
|
||||
parm->support.command1 & ATA_SUPPORT_SMART ? "yes" : "no",
|
||||
parm->enabled.command1 & ATA_SUPPORT_SMART ? "yes" : "no");
|
||||
@ -1418,6 +1441,9 @@ atacapprint(struct ata_params *parm)
|
||||
printf("unload %s %s\n",
|
||||
parm->support.extension & ATA_SUPPORT_UNLOAD ? "yes" : "no",
|
||||
parm->enabled.extension & ATA_SUPPORT_UNLOAD ? "yes" : "no");
|
||||
printf("general purpose logging %s %s\n",
|
||||
parm->support.extension & ATA_SUPPORT_GENLOG ? "yes" : "no",
|
||||
parm->enabled.extension & ATA_SUPPORT_GENLOG ? "yes" : "no");
|
||||
printf("free-fall %s %s\n",
|
||||
parm->support2 & ATA_SUPPORT_FREEFALL ? "yes" : "no",
|
||||
parm->enabled2 & ATA_SUPPORT_FREEFALL ? "yes" : "no");
|
||||
|
Loading…
Reference in New Issue
Block a user