From b7a54351473fdecc88d8fc855cd8a9d26be4b4d3 Mon Sep 17 00:00:00 2001 From: kib Date: Fri, 17 May 2013 14:05:31 +0000 Subject: 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(+) (limited to 'usr.sbin/pciconf') 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; -- cgit v1.1