cfi_endian.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * $Id: cfi_endian.h,v 1.10 2001/06/18 11:00:46 abz Exp $
  3.  *
  4.  */
  5. #include <asm/byteorder.h>
  6. #ifndef CONFIG_MTD_CFI_ADV_OPTIONS
  7. #define CFI_HOST_ENDIAN
  8. #else
  9. #ifdef CONFIG_MTD_CFI_NOSWAP
  10. #define CFI_HOST_ENDIAN
  11. #endif
  12. #ifdef CONFIG_MTD_CFI_LE_BYTE_SWAP
  13. #define CFI_LITTLE_ENDIAN
  14. #endif
  15. #ifdef CONFIG_MTD_CFI_BE_BYTE_SWAP
  16. #define CFI_BIG_ENDIAN
  17. #endif
  18. #endif
  19. #if defined(CFI_LITTLE_ENDIAN)
  20. #define cpu_to_cfi8(x) (x)
  21. #define cfi8_to_cpu(x) (x)
  22. #define cpu_to_cfi16(x) cpu_to_le16(x)
  23. #define cpu_to_cfi32(x) cpu_to_le32(x)
  24. #define cfi16_to_cpu(x) le16_to_cpu(x)
  25. #define cfi32_to_cpu(x) le32_to_cpu(x)
  26. #elif defined (CFI_BIG_ENDIAN)
  27. #define cpu_to_cfi8(x) (x)
  28. #define cfi8_to_cpu(x) (x)
  29. #define cpu_to_cfi16(x) cpu_to_be16(x)
  30. #define cpu_to_cfi32(x) cpu_to_be32(x)
  31. #define cfi16_to_cpu(x) be16_to_cpu(x)
  32. #define cfi32_to_cpu(x) be32_to_cpu(x)
  33. #elif defined (CFI_HOST_ENDIAN)
  34. #define cpu_to_cfi8(x) (x)
  35. #define cfi8_to_cpu(x) (x)
  36. #define cpu_to_cfi16(x) (x)
  37. #define cpu_to_cfi32(x) (x)
  38. #define cfi16_to_cpu(x) (x)
  39. #define cfi32_to_cpu(x) (x)
  40. #else
  41. #error No CFI endianness defined
  42. #endif