afd4c876a9
Also split "this is part of" line from copyright notices. Change-Id: Ibc2446410bcb3104ead458b40a9ce7819c61a8eb Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/41067 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: David Hendricks <david.hendricks@gmail.com> Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
30 lines
878 B
C
30 lines
878 B
C
/* Taken from depthcharge: src/base/device_tree.h */
|
|
/*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but without any warranty; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
struct fdt_header {
|
|
uint32_t magic;
|
|
uint32_t totalsize;
|
|
uint32_t structure_offset;
|
|
uint32_t strings_offset;
|
|
uint32_t reserve_map_offset;
|
|
|
|
uint32_t version;
|
|
uint32_t last_compatible_version;
|
|
|
|
uint32_t boot_cpuid_phys;
|
|
|
|
uint32_t strings_size;
|
|
uint32_t structure_size;
|
|
};
|
|
|
|
#define FDT_HEADER_MAGIC 0xd00dfeed
|