arch/mips/include/asm/mach-tx49xx/mangle-port.h

Source file repositories/reference/linux-study-clean/arch/mips/include/asm/mach-tx49xx/mangle-port.h

File Facts

System
Linux kernel
Corpus path
arch/mips/include/asm/mach-tx49xx/mangle-port.h
Extension
.h
Size
642 bytes
Lines
20
Domain
Architecture Layer
Bucket
arch/mips
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 __ASM_MACH_TX49XX_MANGLE_PORT_H
#define __ASM_MACH_TX49XX_MANGLE_PORT_H

#define __swizzle_addr_b(port)	(port)
#define __swizzle_addr_w(port)	(port)
#define __swizzle_addr_l(port)	(port)
#define __swizzle_addr_q(port)	(port)

#define ioswabb(a, x)		(x)
#define __mem_ioswabb(a, x)	(x)
#define ioswabw(a, x)		le16_to_cpu((__force __le16)(x))
#define __mem_ioswabw(a, x)	(x)
#define ioswabl(a, x)		le32_to_cpu((__force __le32)(x))
#define __mem_ioswabl(a, x)	(x)
#define ioswabq(a, x)		le64_to_cpu((__force __le64)(x))
#define __mem_ioswabq(a, x)	(x)

#endif /* __ASM_MACH_TX49XX_MANGLE_PORT_H */

Annotation

Implementation Notes