1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141
|
/*
* $Id: cfi_endian.h,v 1.9 2001/04/23 21:19:11 nico Exp $
*
* It seems that some helpful people decided to make life easier
* for software engineers who aren't capable of dealing with the
* concept of byteswapping, and advise engineers to swap the bytes
* by wiring the data lines up to flash chips from BE hosts backwards.
*
* So we have ugly stuff here to disable the byteswapping where necessary.
* I'm not going to try to do this dynamically.
*
* At first I thought these guys were on crack, but then I discovered the
* LART.
*
*/
#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
#ifdef CONFIG_MTD_CFI_LART_BIT_SWAP
#define CFI_LART_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)
#elif defined (CFI_LART_ENDIAN)
/*
Fuck me backwards. The data line mapping on LART is as follows:
U2 CPU | U3 CPU
0 20 | 0 12
1 22 | 1 14
2 19 | 2 11
3 17 | 3 9
4 24 | 4 0
5 26 | 5 2
6 31 | 6 7
7 29 | 7 5
8 21 | 8 13
9 23 | 9 15
10 18 | 10 10
11 16 | 11 8
12 25 | 12 1
13 27 | 13 3
14 30 | 14 6
15 28 | 15 4
For historical reference: the reason why the LART has this strange
mapping is that the designer of the board wanted address lines to
be as short as possible. Why? Because in that way you don't need
drivers in the address lines so the memory access time can be held
short. -- Erik Mouw <J.A.K.Mouw@its.tudelft.nl>
*/
/* cpu_to_cfi16() and cfi16_to_cpu() are not needed because the LART
* only has 32 bit wide Flash memory. -- Erik
*/
#define cpu_to_cfi16(x) (x)
#define cfi16_to_cpu(x) (x)
static inline __u32 cfi32_to_cpu(__u32 x)
{
__u32 ret;
ret = (x & 0x08009000) >> 11;
ret |= (x & 0x00002000) >> 10;
ret |= (x & 0x04004000) >> 8;
ret |= (x & 0x00000010) >> 4;
ret |= (x & 0x91000820) >> 3;
ret |= (x & 0x22080080) >> 2;
ret |= (x & 0x40000400);
ret |= (x & 0x00040040) << 1;
ret |= (x & 0x00110000) << 4;
ret |= (x & 0x00220100) << 5;
ret |= (x & 0x00800208) << 6;
ret |= (x & 0x00400004) << 9;
ret |= (x & 0x00000001) << 12;
ret |= (x & 0x00000002) << 13;
return ret;
}
static inline __u32 cpu_to_cfi32(__u32 x)
{
__u32 ret;
ret = (x & 0x00010012) << 11;
ret |= (x & 0x00000008) << 10;
ret |= (x & 0x00040040) << 8;
ret |= (x & 0x00000001) << 4;
ret |= (x & 0x12200104) << 3;
ret |= (x & 0x08820020) << 2;
ret |= (x & 0x40000400);
ret |= (x & 0x00080080) >> 1;
ret |= (x & 0x01100000) >> 4;
ret |= (x & 0x04402000) >> 5;
ret |= (x & 0x20008200) >> 6;
ret |= (x & 0x80000800) >> 9;
ret |= (x & 0x00001000) >> 12;
ret |= (x & 0x00004000) >> 13;
return ret;
}
#else
#error No CFI endianness defined
#endif
|