-
Notifications
You must be signed in to change notification settings - Fork 104
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for NXP T1024 and booting Integrity OS #382
Conversation
40b9436
to
4725c42
Compare
e47e510
to
aace337
Compare
8d6ab46
to
a3d289b
Compare
d99cfcb
to
67187b6
Compare
* Fixed PPC spin table based on ePAPR 1.1. * Added flattened device tree (FDT) support. Setting required FDT fields per ePAPR 1.1. * Added Frame Manager microcode upload. * Fixed CPLD and setting QE clock. * Added support for setting logical device numbers and updated device tree. * Fixed QUICC Engine base address (was incorrect, should be 0x140000). * Fixed "cpu-release-addr" to use 64-bit value. * Added secondary cached boot page. * Added L2 cache support to multi-core. * Added flattened device tree parser tool for testing (`make fdt-parser` and `tools/fdt-parser/fdt-parser`). * Added checks for FDT header. * Added automated test case for NXP T1024 FDT.
…issues with alignment and inlining of functions that should not be (like string.c memcpy).
67187b6
to
d7fe7ab
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Consider adding a short doc page for the new parsing utilities. Double check debug flag in comment.
tools/elf-parser/Makefile
Outdated
@@ -4,7 +4,7 @@ | |||
|
|||
CC=gcc | |||
CFLAGS=-Wall -g -ggdb | |||
CFLAGS+=-I../../include -DWOLFBOOT_ELF -DELF_PARSER -DPRINTF_ENABLED | |||
CFLAGS+=-I../../include -DWOLFBOOT_ELF -DELF_PARSER -DDEBUG_ELF -DPRINTF_ENABLED |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
DEBUG_ELF
left on by default may be a leftover, consider removing
Fixes for NXP T1024 and booting Integrity OS:
make fdt-parser
andtools/fdt-parser/fdt-parser
).