2015-08-18 19:03:09 +00:00
|
|
|
/******************************************************************************
|
|
|
|
*
|
2019-11-09 10:12:08 +00:00
|
|
|
* Copyright(c) 2007 - 2017 Realtek Corporation.
|
|
|
|
*
|
2015-08-18 19:03:09 +00:00
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of version 2 of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
2019-11-09 10:12:08 +00:00
|
|
|
*****************************************************************************/
|
2015-08-18 19:03:09 +00:00
|
|
|
#ifndef _LINUX_BYTEORDER_SWAB_H
|
|
|
|
#define _LINUX_BYTEORDER_SWAB_H
|
|
|
|
|
|
|
|
#if !defined(CONFIG_PLATFORM_MSTAR)
|
|
|
|
#ifndef __u16
|
2019-11-09 10:12:08 +00:00
|
|
|
typedef unsigned short __u16;
|
2015-08-18 19:03:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __u32
|
2019-11-09 10:12:08 +00:00
|
|
|
typedef unsigned int __u32;
|
2015-08-18 19:03:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __u8
|
2019-11-09 10:12:08 +00:00
|
|
|
typedef unsigned char __u8;
|
2015-08-18 19:03:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __u64
|
2019-11-09 10:12:08 +00:00
|
|
|
typedef unsigned long long __u64;
|
2015-08-18 19:03:09 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
__inline static __u16 ___swab16(__u16 x)
|
|
|
|
{
|
2019-11-09 10:12:08 +00:00
|
|
|
__u16 __x = x;
|
|
|
|
return
|
|
|
|
(__u16)(
|
|
|
|
(((__u16)(__x)&(__u16)0x00ffU) << 8) |
|
|
|
|
(((__u16)(__x)&(__u16)0xff00U) >> 8));
|
2015-08-18 19:03:09 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
__inline static __u32 ___swab32(__u32 x)
|
|
|
|
{
|
|
|
|
__u32 __x = (x);
|
2019-11-09 10:12:08 +00:00
|
|
|
return (__u32)(
|
|
|
|
(((__u32)(__x)&(__u32)0x000000ffUL) << 24) |
|
|
|
|
(((__u32)(__x)&(__u32)0x0000ff00UL) << 8) |
|
|
|
|
(((__u32)(__x)&(__u32)0x00ff0000UL) >> 8) |
|
|
|
|
(((__u32)(__x)&(__u32)0xff000000UL) >> 24));
|
2015-08-18 19:03:09 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
__inline static __u64 ___swab64(__u64 x)
|
|
|
|
{
|
|
|
|
__u64 __x = (x);
|
2019-11-09 10:12:08 +00:00
|
|
|
|
|
|
|
return
|
|
|
|
(__u64)(\
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x00000000000000ffULL) << 56) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x000000000000ff00ULL) << 40) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x0000000000ff0000ULL) << 24) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x00000000ff000000ULL) << 8) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x000000ff00000000ULL) >> 8) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x0000ff0000000000ULL) >> 24) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0x00ff000000000000ULL) >> 40) | \
|
|
|
|
(__u64)(((__u64)(__x)&(__u64)0xff00000000000000ULL) >> 56));
|
|
|
|
\
|
2015-08-18 19:03:09 +00:00
|
|
|
}
|
2019-11-09 10:12:08 +00:00
|
|
|
#endif /* CONFIG_PLATFORM_MSTAR */
|
2015-08-18 19:03:09 +00:00
|
|
|
|
|
|
|
#ifndef __arch__swab16
|
|
|
|
__inline static __u16 __arch__swab16(__u16 x)
|
|
|
|
{
|
|
|
|
return ___swab16(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __arch__swab32
|
|
|
|
__inline static __u32 __arch__swab32(__u32 x)
|
|
|
|
{
|
2019-11-09 10:12:08 +00:00
|
|
|
__u32 __tmp = (x) ;
|
2015-08-18 19:03:09 +00:00
|
|
|
return ___swab32(__tmp);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __arch__swab64
|
|
|
|
|
|
|
|
__inline static __u64 __arch__swab64(__u64 x)
|
|
|
|
{
|
2019-11-09 10:12:08 +00:00
|
|
|
__u64 __tmp = (x) ;
|
2015-08-18 19:03:09 +00:00
|
|
|
return ___swab64(__tmp);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef __swab16
|
2019-11-09 10:12:08 +00:00
|
|
|
#define __swab16(x) __fswab16(x)
|
|
|
|
#define __swab32(x) __fswab32(x)
|
|
|
|
#define __swab64(x) __fswab64(x)
|
|
|
|
#endif /* __swab16 */
|
2015-08-18 19:03:09 +00:00
|
|
|
|
|
|
|
#ifdef PLATFORM_FREEBSD
|
2019-11-09 10:12:08 +00:00
|
|
|
__inline static __u16 __fswab16(__u16 x)
|
2015-08-18 19:03:09 +00:00
|
|
|
#else
|
2019-11-09 10:12:08 +00:00
|
|
|
__inline static const __u16 __fswab16(__u16 x)
|
|
|
|
#endif /* PLATFORM_FREEBSD */
|
2015-08-18 19:03:09 +00:00
|
|
|
{
|
|
|
|
return __arch__swab16(x);
|
|
|
|
}
|
|
|
|
#ifdef PLATFORM_FREEBSD
|
2019-11-09 10:12:08 +00:00
|
|
|
__inline static __u32 __fswab32(__u32 x)
|
2015-08-18 19:03:09 +00:00
|
|
|
#else
|
2019-11-09 10:12:08 +00:00
|
|
|
__inline static const __u32 __fswab32(__u32 x)
|
|
|
|
#endif /* PLATFORM_FREEBSD */
|
2015-08-18 19:03:09 +00:00
|
|
|
{
|
|
|
|
return __arch__swab32(x);
|
|
|
|
}
|
|
|
|
|
2021-10-14 17:32:27 +00:00
|
|
|
#define swab16 __swab16
|
|
|
|
#define swab32 __swab32
|
|
|
|
#define swab64 __swab64
|
|
|
|
#define swab16p __swab16p
|
|
|
|
#define swab32p __swab32p
|
|
|
|
#define swab64p __swab64p
|
|
|
|
#define swab16s __swab16s
|
|
|
|
#define swab32s __swab32s
|
|
|
|
#define swab64s __swab64s
|
2015-08-18 19:03:09 +00:00
|
|
|
|
|
|
|
#endif /* _LINUX_BYTEORDER_SWAB_H */
|