From b3b8ad2257b5fc62191dffe321671e1654c41f07 Mon Sep 17 00:00:00 2001 From: Huaqi Fang <578567190@qq.com> Date: Thu, 16 Jan 2025 14:35:33 +0800 Subject: [PATCH] src/jtag: workaround for build xlnx-pcie-xvc.c using centos 6 see https://github.com/riscv-collab/riscv-openocd/issues/1185 Change-Id: Iedf8f494d693c40353e5e6c3f06cdbdb2f14a109 Signed-off-by: Huaqi Fang <578567190@qq.com> --- src/jtag/drivers/xlnx-pcie-xvc.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/jtag/drivers/xlnx-pcie-xvc.c b/src/jtag/drivers/xlnx-pcie-xvc.c index d90a022cd..db04aedf8 100644 --- a/src/jtag/drivers/xlnx-pcie-xvc.c +++ b/src/jtag/drivers/xlnx-pcie-xvc.c @@ -38,8 +38,16 @@ #define XLNX_XVC_VSEC_ID 0x8 #define XLNX_XVC_MAX_BITS 0x20 +#ifndef PCI_EXT_CAP_ID_VNDR +#define PCI_EXT_CAP_ID_VNDR 0x0B /* Vendor-Specific */ +/* Vendor-Specific (VSEC, PCI_EXT_CAP_ID_VNDR) */ +#define PCI_VNDR_HEADER 4 /* Vendor-Specific Header */ +#define PCI_VNDR_HEADER_ID(x) ((x) & 0xffff) +#define PCI_VNDR_HEADER_REV(x) (((x) >> 16) & 0xf) +#define PCI_VNDR_HEADER_LEN(x) (((x) >> 20) & 0xfff) #define MASK_ACK(x) (((x) >> 9) & 0x7) #define MASK_PAR(x) ((int)((x) & 0x1)) +#endif struct xlnx_pcie_xvc { int fd;