MIPS MMIO macros for byteswapping from/to hardware endianness are a bit tricky because they use cpu_to_le{16,32,64}() in both directions. This generates a lot of questions from sparse as __le{16,32,64} types are 'restricted' and direct cast is forbidden in order to prevent messing up the byteorder. As MMIO ops are used in almost every single driver, this leads to console flooding and complicates bug hunting. We could fix it in a more proper way, i.e. separate from device / to device byteswap macros and expand __BUILD_MEMORY_*(), but this seems redundant and will produce code duplication. Instead, just expand the existing *ioswab*() macros with forced typecasting to stop floods. Signed-off-by: Alexander Lobakin <alobakin@pm.me> Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
28 lines
879 B
C
28 lines
879 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#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)
|
|
#if defined(CONFIG_TOSHIBA_RBTX4939) && \
|
|
IS_ENABLED(CONFIG_SMC91X) && \
|
|
defined(__BIG_ENDIAN)
|
|
#define NEEDS_TXX9_IOSWABW
|
|
extern u16 (*ioswabw)(volatile u16 *a, u16 x);
|
|
extern u16 (*__mem_ioswabw)(volatile u16 *a, u16 x);
|
|
#else
|
|
#define ioswabw(a, x) le16_to_cpu((__force __le16)(x))
|
|
#define __mem_ioswabw(a, x) (x)
|
|
#endif
|
|
#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 */
|