Krystian Hebel has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/55037 )
Change subject: ppc64/byteorder.h: define use of big endian ......................................................................
ppc64/byteorder.h: define use of big endian
All of the build configuration is set to produce big endian image on PPC64. In addition, the toolchain produced by coreboot-sdk does not include little endian libraries so it is not possible to build LE image even when that configuration is changed.
This patch changes byte order definition which is required for proper work of functions that deal with endianness, like read_{le,be}*() or {le,be}*toh().
It also revealed bugs related to the endianness on BE targets that are addressed in the following patches.
Signed-off-by: Krystian Hebel krystian.hebel@3mdeb.com Change-Id: Id31328a832d11db20822733304b0ae477e858d25 --- M src/arch/ppc64/include/arch/byteorder.h 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/37/55037/1
diff --git a/src/arch/ppc64/include/arch/byteorder.h b/src/arch/ppc64/include/arch/byteorder.h index 2485358..79f15b1 100644 --- a/src/arch/ppc64/include/arch/byteorder.h +++ b/src/arch/ppc64/include/arch/byteorder.h @@ -3,6 +3,6 @@ #ifndef _BYTEORDER_H #define _BYTEORDER_H
-#define __LITTLE_ENDIAN 1234 +#define __BIG_ENDIAN 4321
#endif /* _BYTEORDER_H */