From 5d6787cfb2bd0e579c0655f9ed4ba9d58d9fecfe Mon Sep 17 00:00:00 2001 From: Konstantin Belousov Date: Fri, 17 May 2013 14:05:31 +0000 Subject: [PATCH] Decode new HT 3.00 and 3.10 capabilities. Submitted by: Dmitry Luhtionov MFC after: 1 week --- usr.sbin/pciconf/cap.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/usr.sbin/pciconf/cap.c b/usr.sbin/pciconf/cap.c index 1c2ab4a88777..275b9842bd60 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;