/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */1/*2* Copyright (C) 2012 ARM Ltd.3* Copyright (C) 2015 Regents of the University of California4*/56#ifndef _UAPI_ASM_RISCV_AUXVEC_H7#define _UAPI_ASM_RISCV_AUXVEC_H89/* vDSO location */10#define AT_SYSINFO_EHDR 331112/*13* The set of entries below represent more extensive information14* about the caches, in the form of two entry per cache type,15* one entry containing the cache size in bytes, and the other16* containing the cache line size in bytes in the bottom 16 bits17* and the cache associativity in the next 16 bits.18*19* The associativity is such that if N is the 16-bit value, the20* cache is N way set associative. A value if 0xffff means fully21* associative, a value of 1 means directly mapped.22*23* For all these fields, a value of 0 means that the information24* is not known.25*/26#define AT_L1I_CACHESIZE 4027#define AT_L1I_CACHEGEOMETRY 4128#define AT_L1D_CACHESIZE 4229#define AT_L1D_CACHEGEOMETRY 4330#define AT_L2_CACHESIZE 4431#define AT_L2_CACHEGEOMETRY 4532#define AT_L3_CACHESIZE 4633#define AT_L3_CACHEGEOMETRY 473435/* entries in ARCH_DLINFO */36#define AT_VECTOR_SIZE_ARCH 1037#define AT_MINSIGSTKSZ 513839#endif /* _UAPI_ASM_RISCV_AUXVEC_H */404142