diff options
author | Michal Simek <monstr@monstr.eu> | 2010-09-28 02:04:14 -0400 |
---|---|---|
committer | Michal Simek <monstr@monstr.eu> | 2010-10-21 01:51:59 -0400 |
commit | 02b08045a0306c38131c6d7155c4034a775d40b1 (patch) | |
tree | e146f1811ec3c93ff4877a895e42b71a91932d2b /arch/microblaze/include/asm/cpuinfo.h | |
parent | e4f29092272ee91a34d3660c31f15ed103057aa0 (diff) |
microblaze: Add support for little-endian Microblaze
Microblaze little-endian toolchain exports __MICROBLAZEEL__
which is used in the kernel to identify little/big endian.
The most of the changes are in loading values from DTB which
is always big endian.
Little endian platforms are based on new AXI bus which has
impact to early uartlite initialization.
Signed-off-by: Michal Simek <monstr@monstr.eu>
Diffstat (limited to 'arch/microblaze/include/asm/cpuinfo.h')
-rw-r--r-- | arch/microblaze/include/asm/cpuinfo.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/microblaze/include/asm/cpuinfo.h b/arch/microblaze/include/asm/cpuinfo.h index 0d4f0ce3ff7c..7fab800496ae 100644 --- a/arch/microblaze/include/asm/cpuinfo.h +++ b/arch/microblaze/include/asm/cpuinfo.h | |||
@@ -98,7 +98,8 @@ void set_cpuinfo_pvr_full(struct cpuinfo *ci, struct device_node *cpu); | |||
98 | static inline unsigned int fcpu(struct device_node *cpu, char *n) | 98 | static inline unsigned int fcpu(struct device_node *cpu, char *n) |
99 | { | 99 | { |
100 | int *val; | 100 | int *val; |
101 | return (val = (int *) of_get_property(cpu, n, NULL)) ? *val : 0; | 101 | return (val = (int *) of_get_property(cpu, n, NULL)) ? |
102 | be32_to_cpup(val) : 0; | ||
102 | } | 103 | } |
103 | 104 | ||
104 | #endif /* _ASM_MICROBLAZE_CPUINFO_H */ | 105 | #endif /* _ASM_MICROBLAZE_CPUINFO_H */ |