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>
This commit is contained in:
parent
f82c5a7c04
commit
b3b8ad2257
|
@ -38,8 +38,16 @@
|
||||||
#define XLNX_XVC_VSEC_ID 0x8
|
#define XLNX_XVC_VSEC_ID 0x8
|
||||||
#define XLNX_XVC_MAX_BITS 0x20
|
#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_ACK(x) (((x) >> 9) & 0x7)
|
||||||
#define MASK_PAR(x) ((int)((x) & 0x1))
|
#define MASK_PAR(x) ((int)((x) & 0x1))
|
||||||
|
#endif
|
||||||
|
|
||||||
struct xlnx_pcie_xvc {
|
struct xlnx_pcie_xvc {
|
||||||
int fd;
|
int fd;
|
||||||
|
|
Loading…
Reference in New Issue