pdp_endian.h
上传用户:szlgq88
上传日期:2009-04-28
资源大小:48287k
文件大小:3k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef _LINUX_BYTEORDER_PDP_ENDIAN_H
  2. #define _LINUX_BYTEORDER_PDP_ENDIAN_H
  3. /*
  4.  * Could have been named NUXI-endian, but we use the same name as in glibc.
  5.  * hopefully only the PDP and its evolutions (old VAXen in compatibility mode)
  6.  * should ever use this braindead byteorder.
  7.  * This file *should* work, but has not been tested.
  8.  *
  9.  * little-endian is 1234; big-endian is 4321; nuxi/pdp-endian is 3412
  10.  *
  11.  * I thought vaxen were NUXI-endian, but was told they were correct-endian
  12.  * (little-endian), though indeed there existed NUXI-endian machines
  13.  * (DEC PDP-11 and old VAXen in compatibility mode).
  14.  * This makes this file a bit useless, but as a proof-of-concept.
  15.  *
  16.  * But what does a __u64 look like: is it 34127856 or 78563412 ???
  17.  * I don't dare imagine! Hence, no 64-bit byteorder support yet.
  18.  * Hopefully, there 64-bit pdp-endian support shouldn't ever be required.
  19.  *
  20.  */
  21. #ifndef __PDP_ENDIAN
  22. #define __PDP_ENDIAN 3412
  23. #endif
  24. #ifndef __PDP_ENDIAN_BITFIELD
  25. #define __PDP_ENDIAN_BITFIELD
  26. #endif
  27. #include <linux/byteorder/swab.h>
  28. #include <linux/byteorder/swabb.h>
  29. #define __constant_htonl(x) ___constant_swahb32((x))
  30. #define __constant_ntohl(x) ___constant_swahb32((x))
  31. #define __constant_htons(x) ___constant_swab16((x))
  32. #define __constant_ntohs(x) ___constant_swab16((x))
  33. #define __constant_cpu_to_le64(x) I DON'T KNOW
  34. #define __constant_le64_to_cpu(x) I DON'T KNOW
  35. #define __constant_cpu_to_le32(x) ___constant_swahw32((x))
  36. #define __constant_le32_to_cpu(x) ___constant_swahw32((x))
  37. #define __constant_cpu_to_le16(x) ((__u16)(x)
  38. #define __constant_le16_to_cpu(x) ((__u16)(x)
  39. #define __constant_cpu_to_be64(x) I DON'T KNOW
  40. #define __constant_be64_to_cpu(x) I DON'T KNOW
  41. #define __constant_cpu_to_be32(x) ___constant_swahb32((x))
  42. #define __constant_be32_to_cpu(x) ___constant_swahb32((x))
  43. #define __constant_cpu_to_be16(x) ___constant_swab16((x))
  44. #define __constant_be16_to_cpu(x) ___constant_swab16((x))
  45. #define __cpu_to_le64(x) I DON'T KNOW
  46. #define __le64_to_cpu(x) I DON'T KNOW
  47. #define __cpu_to_le32(x) ___swahw32((x))
  48. #define __le32_to_cpu(x) ___swahw32((x))
  49. #define __cpu_to_le16(x) ((__u16)(x)
  50. #define __le16_to_cpu(x) ((__u16)(x)
  51. #define __cpu_to_be64(x) I DON'T KNOW
  52. #define __be64_to_cpu(x) I DON'T KNOW
  53. #define __cpu_to_be32(x) __swahb32((x))
  54. #define __be32_to_cpu(x) __swahb32((x))
  55. #define __cpu_to_be16(x) __swab16((x))
  56. #define __be16_to_cpu(x) __swab16((x))
  57. #define __cpu_to_le64p(x) I DON'T KNOW
  58. #define __le64_to_cpup(x) I DON'T KNOW
  59. #define __cpu_to_le32p(x) ___swahw32p((x))
  60. #define __le32_to_cpup(x) ___swahw32p((x))
  61. #define __cpu_to_le16p(x) (*(__u16*)(x))
  62. #define __le16_to_cpup(x) (*(__u16*)(x))
  63. #define __cpu_to_be64p(x) I DON'T KNOW
  64. #define __be64_to_cpup(x) I DON'T KNOW
  65. #define __cpu_to_be32p(x) __swahb32p((x))
  66. #define __be32_to_cpup(x) __swahb32p((x))
  67. #define __cpu_to_be16p(x) __swab16p((x))
  68. #define __be16_to_cpup(x) __swab16p((x))
  69. #define __cpu_to_le64s(x) I DON'T KNOW
  70. #define __le64_to_cpus(x) I DON'T KNOW
  71. #define __cpu_to_le32s(x) ___swahw32s((x))
  72. #define __le32_to_cpus(x) ___swahw32s((x))
  73. #define __cpu_to_le16s(x) do {} while (0)
  74. #define __le16_to_cpus(x) do {} while (0)
  75. #define __cpu_to_be64s(x) I DON'T KNOW
  76. #define __be64_to_cpus(x) I DON'T KNOW
  77. #define __cpu_to_be32s(x) __swahb32s((x))
  78. #define __be32_to_cpus(x) __swahb32s((x))
  79. #define __cpu_to_be16s(x) __swab16s((x))
  80. #define __be16_to_cpus(x) __swab16s((x))
  81. #include <linux/byteorder/generic.h>
  82. #endif /* _LINUX_BYTEORDER_PDP_ENDIAN_H */