/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */1#ifndef __ASM_ALPHA_AUXVEC_H2#define __ASM_ALPHA_AUXVEC_H34/* Reserve these numbers for any future use of a VDSO. */5#if 06#define AT_SYSINFO 327#define AT_SYSINFO_EHDR 338#endif910/* More complete cache descriptions than AT_[DIU]CACHEBSIZE. If the11value is -1, then the cache doesn't exist. Otherwise:1213bit 0-3: Cache set-associativity; 0 means fully associative.14bit 4-7: Log2 of cacheline size.15bit 8-31: Size of the entire cache >> 8.16bit 32-63: Reserved.17*/1819#define AT_L1I_CACHESHAPE 3420#define AT_L1D_CACHESHAPE 3521#define AT_L2_CACHESHAPE 3622#define AT_L3_CACHESHAPE 372324#define AT_VECTOR_SIZE_ARCH 4 /* entries in ARCH_DLINFO */2526#endif /* __ASM_ALPHA_AUXVEC_H */272829