byteorder.h 2.3 KB

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