You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.1 KiB
51 lines
1.1 KiB
/*
|
|
* $Id: cfi_endian.h,v 1.1.1.1 2006/05/08 03:32:49 cpu Exp $
|
|
*
|
|
*/
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
#ifndef CONFIG_MTD_CFI_ADV_OPTIONS
|
|
|
|
#define CFI_HOST_ENDIAN
|
|
|
|
#else
|
|
|
|
#ifdef CONFIG_MTD_CFI_NOSWAP
|
|
#define CFI_HOST_ENDIAN
|
|
#endif
|
|
|
|
#ifdef CONFIG_MTD_CFI_LE_BYTE_SWAP
|
|
#define CFI_LITTLE_ENDIAN
|
|
#endif
|
|
|
|
#ifdef CONFIG_MTD_CFI_BE_BYTE_SWAP
|
|
#define CFI_BIG_ENDIAN
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#if defined(CFI_LITTLE_ENDIAN)
|
|
#define cpu_to_cfi8(x) (x)
|
|
#define cfi8_to_cpu(x) (x)
|
|
#define cpu_to_cfi16(x) cpu_to_le16(x)
|
|
#define cpu_to_cfi32(x) cpu_to_le32(x)
|
|
#define cfi16_to_cpu(x) le16_to_cpu(x)
|
|
#define cfi32_to_cpu(x) le32_to_cpu(x)
|
|
#elif defined (CFI_BIG_ENDIAN)
|
|
#define cpu_to_cfi8(x) (x)
|
|
#define cfi8_to_cpu(x) (x)
|
|
#define cpu_to_cfi16(x) cpu_to_be16(x)
|
|
#define cpu_to_cfi32(x) cpu_to_be32(x)
|
|
#define cfi16_to_cpu(x) be16_to_cpu(x)
|
|
#define cfi32_to_cpu(x) be32_to_cpu(x)
|
|
#elif defined (CFI_HOST_ENDIAN)
|
|
#define cpu_to_cfi8(x) (x)
|
|
#define cfi8_to_cpu(x) (x)
|
|
#define cpu_to_cfi16(x) (x)
|
|
#define cpu_to_cfi32(x) (x)
|
|
#define cfi16_to_cpu(x) (x)
|
|
#define cfi32_to_cpu(x) (x)
|
|
#else
|
|
#error No CFI endianness defined
|
|
#endif
|
|
|