cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

mangle-port.h (683B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2/*
      3 * Copyright (C) 2003, 2004 Ralf Baechle
      4 */
      5#ifndef __ASM_MACH_IP30_MANGLE_PORT_H
      6#define __ASM_MACH_IP30_MANGLE_PORT_H
      7
      8#define __swizzle_addr_b(port)	((port)^3)
      9#define __swizzle_addr_w(port)	((port)^2)
     10#define __swizzle_addr_l(port)	(port)
     11#define __swizzle_addr_q(port)	(port)
     12
     13#define ioswabb(a, x)		(x)
     14#define __mem_ioswabb(a, x)	(x)
     15#define ioswabw(a, x)		(x)
     16#define __mem_ioswabw(a, x)	((__force u16)cpu_to_le16(x))
     17#define ioswabl(a, x)		(x)
     18#define __mem_ioswabl(a, x)	((__force u32)cpu_to_le32(x))
     19#define ioswabq(a, x)		(x)
     20#define __mem_ioswabq(a, x)	((__force u64)cpu_to_le64(x))
     21
     22#endif /* __ASM_MACH_IP30_MANGLE_PORT_H */