18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0-only WITH Linux-syscall-note */
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (C) 2012 ARM Ltd.
48c2ecf20Sopenharmony_ci * Copyright (C) 2015 Regents of the University of California
58c2ecf20Sopenharmony_ci */
68c2ecf20Sopenharmony_ci
78c2ecf20Sopenharmony_ci#ifndef _UAPI_ASM_RISCV_AUXVEC_H
88c2ecf20Sopenharmony_ci#define _UAPI_ASM_RISCV_AUXVEC_H
98c2ecf20Sopenharmony_ci
108c2ecf20Sopenharmony_ci/* vDSO location */
118c2ecf20Sopenharmony_ci#define AT_SYSINFO_EHDR 33
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci/*
148c2ecf20Sopenharmony_ci * The set of entries below represent more extensive information
158c2ecf20Sopenharmony_ci * about the caches, in the form of two entry per cache type,
168c2ecf20Sopenharmony_ci * one entry containing the cache size in bytes, and the other
178c2ecf20Sopenharmony_ci * containing the cache line size in bytes in the bottom 16 bits
188c2ecf20Sopenharmony_ci * and the cache associativity in the next 16 bits.
198c2ecf20Sopenharmony_ci *
208c2ecf20Sopenharmony_ci * The associativity is such that if N is the 16-bit value, the
218c2ecf20Sopenharmony_ci * cache is N way set associative. A value if 0xffff means fully
228c2ecf20Sopenharmony_ci * associative, a value of 1 means directly mapped.
238c2ecf20Sopenharmony_ci *
248c2ecf20Sopenharmony_ci * For all these fields, a value of 0 means that the information
258c2ecf20Sopenharmony_ci * is not known.
268c2ecf20Sopenharmony_ci */
278c2ecf20Sopenharmony_ci#define AT_L1I_CACHESIZE	40
288c2ecf20Sopenharmony_ci#define AT_L1I_CACHEGEOMETRY	41
298c2ecf20Sopenharmony_ci#define AT_L1D_CACHESIZE	42
308c2ecf20Sopenharmony_ci#define AT_L1D_CACHEGEOMETRY	43
318c2ecf20Sopenharmony_ci#define AT_L2_CACHESIZE		44
328c2ecf20Sopenharmony_ci#define AT_L2_CACHEGEOMETRY	45
338c2ecf20Sopenharmony_ci
348c2ecf20Sopenharmony_ci/* entries in ARCH_DLINFO */
358c2ecf20Sopenharmony_ci#define AT_VECTOR_SIZE_ARCH	7
368c2ecf20Sopenharmony_ci
378c2ecf20Sopenharmony_ci#endif /* _UAPI_ASM_RISCV_AUXVEC_H */
38