swab.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /*
  3. * include/asm-xtensa/swab.h
  4. *
  5. * This file is subject to the terms and conditions of the GNU General Public
  6. * License. See the file "COPYING" in the main directory of this archive
  7. * for more details.
  8. *
  9. * Copyright (C) 2001 - 2005 Tensilica Inc.
  10. */
  11. #ifndef _XTENSA_SWAB_H
  12. #define _XTENSA_SWAB_H
  13. #include <linux/types.h>
  14. #include <linux/compiler.h>
  15. #define __SWAB_64_THRU_32__
  16. static inline __attribute_const__ __u32 __arch_swab32(__u32 x)
  17. {
  18. __u32 res;
  19. /* instruction sequence from Xtensa ISA release 2/2000 */
  20. __asm__("ssai 8 \n\t"
  21. "srli %0, %1, 16 \n\t"
  22. "src %0, %0, %1 \n\t"
  23. "src %0, %0, %0 \n\t"
  24. "src %0, %1, %0 \n"
  25. : "=&a" (res)
  26. : "a" (x)
  27. );
  28. return res;
  29. }
  30. #define __arch_swab32 __arch_swab32
  31. static inline __attribute_const__ __u16 __arch_swab16(__u16 x)
  32. {
  33. /* Given that 'short' values are signed (i.e., can be negative),
  34. * we cannot assume that the upper 16-bits of the register are
  35. * zero. We are careful to mask values after shifting.
  36. */
  37. /* There exists an anomaly between xt-gcc and xt-xcc. xt-gcc
  38. * inserts an extui instruction after putting this function inline
  39. * to ensure that it uses only the least-significant 16 bits of
  40. * the result. xt-xcc doesn't use an extui, but assumes the
  41. * __asm__ macro follows convention that the upper 16 bits of an
  42. * 'unsigned short' result are still zero. This macro doesn't
  43. * follow convention; indeed, it leaves garbage in the upport 16
  44. * bits of the register.
  45. * Declaring the temporary variables 'res' and 'tmp' to be 32-bit
  46. * types while the return type of the function is a 16-bit type
  47. * forces both compilers to insert exactly one extui instruction
  48. * (or equivalent) to mask off the upper 16 bits. */
  49. __u32 res;
  50. __u32 tmp;
  51. __asm__("extui %1, %2, 8, 8\n\t"
  52. "slli %0, %2, 8 \n\t"
  53. "or %0, %0, %1 \n"
  54. : "=&a" (res), "=&a" (tmp)
  55. : "a" (x)
  56. );
  57. return res;
  58. }
  59. #define __arch_swab16 __arch_swab16
  60. #endif /* _XTENSA_SWAB_H */