diff options
author | kib <kib@FreeBSD.org> | 2013-05-17 14:05:31 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2013-05-17 14:05:31 +0000 |
commit | b7a54351473fdecc88d8fc855cd8a9d26be4b4d3 (patch) | |
tree | 82ab3717369593186045f950fe93b8a520073df8 | |
parent | 9cf143f4f11e8a928cb2355a6961fbadf28abec9 (diff) | |
download | FreeBSD-src-b7a54351473fdecc88d8fc855cd8a9d26be4b4d3.zip FreeBSD-src-b7a54351473fdecc88d8fc855cd8a9d26be4b4d3.tar.gz |
Decode new HT 3.00 and 3.10 capabilities.
Submitted by: Dmitry Luhtionov <dmitryluhtionov@gmail.com>
MFC after: 1 week
-rw-r--r-- | usr.sbin/pciconf/cap.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr.sbin/pciconf/cap.c b/usr.sbin/pciconf/cap.c index 1c2ab4a..275b984 100644 --- a/usr.sbin/pciconf/cap.c +++ b/usr.sbin/pciconf/cap.c @@ -276,6 +276,18 @@ cap_ht(int fd, struct pci_conf *p, uint8_t ptr) case PCIM_HTCAP_X86_ENCODING: printf("X86 encoding"); break; + case PCIM_HTCAP_GEN3: + printf("Gen3"); + break; + case PCIM_HTCAP_FLE: + printf("function-level extension"); + break; + case PCIM_HTCAP_PM: + printf("power management"); + break; + case PCIM_HTCAP_HIGH_NODE_COUNT: + printf("high node count"); + break; default: printf("unknown %02x", command); break; |