byteorder.h 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  1. #ifndef _PPC64_BYTEORDER_H
  2. #define _PPC64_BYTEORDER_H
  3. /*
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License
  6. * as published by the Free Software Foundation; either version
  7. * 2 of the License, or (at your option) any later version.
  8. */
  9. #include <asm/types.h>
  10. #include <linux/compiler.h>
  11. #ifdef __GNUC__
  12. #ifdef __KERNEL__
  13. static __inline__ __u16 ld_le16(const volatile __u16 *addr)
  14. {
  15. __u16 val;
  16. __asm__ __volatile__ ("lhbrx %0,0,%1" : "=r" (val) : "r" (addr), "m" (*addr));
  17. return val;
  18. }
  19. static __inline__ void st_le16(volatile __u16 *addr, const __u16 val)
  20. {
  21. __asm__ __volatile__ ("sthbrx %1,0,%2" : "=m" (*addr) : "r" (val), "r" (addr));
  22. }
  23. static __inline__ __u32 ld_le32(const volatile __u32 *addr)
  24. {
  25. __u32 val;
  26. __asm__ __volatile__ ("lwbrx %0,0,%1" : "=r" (val) : "r" (addr), "m" (*addr));
  27. return val;
  28. }
  29. static __inline__ void st_le32(volatile __u32 *addr, const __u32 val)
  30. {
  31. __asm__ __volatile__ ("stwbrx %1,0,%2" : "=m" (*addr) : "r" (val), "r" (addr));
  32. }
  33. #if 0
  34. static __inline__ __attribute_const__ __u16 ___arch__swab16(__u16 value)
  35. {
  36. __u16 result;
  37. __asm__("rlwimi %0,%1,8,16,23"
  38. : "=r" (result)
  39. : "r" (value), "0" (value >> 8));
  40. return result;
  41. }
  42. static __inline__ __attribute_const__ __u32 ___arch__swab32(__u32 value)
  43. {
  44. __u32 result;
  45. __asm__("rlwimi %0,%1,24,16,23\n\t"
  46. "rlwimi %0,%1,8,8,15\n\t"
  47. "rlwimi %0,%1,24,0,7"
  48. : "=r" (result)
  49. : "r" (value), "0" (value >> 24));
  50. return result;
  51. }
  52. static __inline__ __attribute_const__ __u64 ___arch__swab64(__u64 value)
  53. {
  54. __u64 result;
  55. #error implement me
  56. }
  57. #define __arch__swab16(x) ___arch__swab16(x)
  58. #define __arch__swab32(x) ___arch__swab32(x)
  59. #define __arch__swab64(x) ___arch__swab64(x)
  60. #endif
  61. /* The same, but returns converted value from the location pointer by addr. */
  62. #define __arch__swab16p(addr) ld_le16(addr)
  63. #define __arch__swab32p(addr) ld_le32(addr)
  64. /* The same, but do the conversion in situ, ie. put the value back to addr. */
  65. #define __arch__swab16s(addr) st_le16(addr,*addr)
  66. #define __arch__swab32s(addr) st_le32(addr,*addr)
  67. #endif /* __KERNEL__ */
  68. #ifndef __STRICT_ANSI__
  69. #define __BYTEORDER_HAS_U64__
  70. #endif
  71. #endif /* __GNUC__ */
  72. #include <linux/byteorder/big_endian.h>
  73. #endif /* _PPC64_BYTEORDER_H */