#ifndef __ASM_SH_AUXVEC_H1#define __ASM_SH_AUXVEC_H23/*4* Architecture-neutral AT_ values in 0-17, leave some room5* for more of them.6*/78/*9* This entry gives some information about the FPU initialization10* performed by the kernel.11*/12#define AT_FPUCW 18 /* Used FPU control word. */1314#if defined(CONFIG_VSYSCALL) || !defined(__KERNEL__)15/*16* Only define this in the vsyscall case, the entry point to17* the vsyscall page gets placed here. The kernel will attempt18* to build a gate VMA we don't care about otherwise..19*/20#define AT_SYSINFO_EHDR 3321#endif2223/*24* More complete cache descriptions than AT_[DIU]CACHEBSIZE. If the25* value is -1, then the cache doesn't exist. Otherwise:26*27* bit 0-3: Cache set-associativity; 0 means fully associative.28* bit 4-7: Log2 of cacheline size.29* bit 8-31: Size of the entire cache >> 8.30*/31#define AT_L1I_CACHESHAPE 3432#define AT_L1D_CACHESHAPE 3533#define AT_L2_CACHESHAPE 363435#endif /* __ASM_SH_AUXVEC_H */363738