arch/xtensa/include/uapi/asm/types.h

Source file repositories/reference/linux-study-clean/arch/xtensa/include/uapi/asm/types.h

File Facts

System
Linux kernel
Corpus path
arch/xtensa/include/uapi/asm/types.h
Extension
.h
Size
714 bytes
Lines
31
Domain
Architecture Layer
Bucket
arch/xtensa
Inferred role
Architecture Layer: implementation source
Status
source implementation candidate

Why This File Exists

CPU and platform-specific kernel glue: boot entry, traps, syscall entry, interrupts, page tables, context switch, and low-level barriers.

Dependency Surface

Detected Declarations

Annotated Snippet

#ifndef _UAPI_XTENSA_TYPES_H
#define _UAPI_XTENSA_TYPES_H

#include <asm-generic/int-ll64.h>

#ifdef __ASSEMBLER__
# define __XTENSA_UL(x)		(x)
# define __XTENSA_UL_CONST(x)	x
#else
# define __XTENSA_UL(x)		((unsigned long)(x))
# define ___XTENSA_UL_CONST(x)	x##UL
# define __XTENSA_UL_CONST(x)	___XTENSA_UL_CONST(x)
#endif

#ifndef __ASSEMBLER__

#endif

#endif /* _UAPI_XTENSA_TYPES_H */

Annotation

Implementation Notes