57#define XIL_COMPONENT_IS_READY 0x11111111U
61#define XIL_COMPONENT_IS_STARTED 0x22222222U
96#define XUINT64_MSW(x) ((x).Upper)
107#define XUINT64_LSW(x) ((x).Lower)
123typedef intptr_t INTPTR;
124typedef uintptr_t UINTPTR;
125typedef ptrdiff_t PTRDIFF;
127#if !defined(LONG) || !defined(ULONG)
129typedef unsigned long ULONG;
132#define ULONG64_HI_MASK 0xFFFFFFFF00000000U
133#define ULONG64_LO_MASK ~ULONG64_HI_MASK
136#include <linux/types.h>
161#if defined (__aarch64__) || defined (__arch64__)
162#define UPPER_32_BITS(n) ((u32)(((n) >> 16) >> 16))
164#define UPPER_32_BITS(n) 0U
171#define LOWER_32_BITS(n) ((u32)(n))
void(* XInterruptHandler)(void *InstancePtr)
Definition: xil_types.h:144
void(* XExceptionHandler)(void *InstancePtr)
Definition: xil_types.h:150
Definition: xil_types.h:81