patterns: Fixed wrong extensions for some patterns

This commit is contained in:
Nik
2023-07-24 16:14:37 +02:00
committed by GitHub
parent caa2b6aaa6
commit 7723cf55c6
2 changed files with 0 additions and 0 deletions

99
patterns/fdt.hexpat Normal file
View File

@@ -0,0 +1,99 @@
#pragma endian big
#include <std/sys.pat>
#include <std/io.pat>
#include <std/core.pat>
#include <type/magic.pat>
#include <type/size.pat>
struct FDTHeader {
type::Magic<"\xD0\x0D\xFE\xED"> magic;
u32 totalsize;
u32 off_dt_struct;
u32 off_dt_strings;
u32 off_mem_rsvmap;
u32 version;
u32 last_comp_version;
u32 boot_cpuid_phys;
u32 size_dt_strings;
u32 size_dt_struct;
};
struct String<auto Size> {
char value[Size];
} [[sealed, format("format_string")]];
fn format_string(ref auto string) {
str result;
for (u32 i = 0, i < string.Size, i += 1) {
if (string.value[i] >= 0x20 && string.value[i] <= 0x7F)
result += string.value[i];
else
result += std::format("\\x{:02X}", string.value[i]);
}
return result;
};
struct AlignTo<auto Alignment> {
padding[Alignment- ((($ - 1) % Alignment) + 1)];
} [[hidden]];
struct FDTReserveEntry {
u64 address;
type::Size<u64> size;
if (address == 0x00 && size == 0x00)
break;
};
enum FDTToken : u32 {
FDT_BEGIN_NODE = 0x00000001,
FDT_END_NODE = 0x00000002,
FDT_PROP = 0x00000003,
FDT_NOP = 0x00000004,
FDT_END = 0x00000009
};
struct FDTStructureBlock {
FDTToken token;
if (token == FDTToken::FDT_BEGIN_NODE) {
char nodeName[];
AlignTo<4>;
} else if (token == FDTToken::FDT_END) {
break;
} else if (token == FDTToken::FDT_PROP) {
u32 len;
u32 nameoff;
String<len> value;
AlignTo<4>;
char name[] @ parent.header.off_dt_strings + nameoff;
} else if (token == FDTToken::FDT_NOP || token == FDTToken::FDT_END_NODE) {
// Nothing to do
} else {
std::error(std::format("Invalid token at address 0x{:02X}", addressof(token)));
}
} [[format("format_structure_block")]];
fn format_structure_block(ref auto block) {
match (block.token) {
(FDTToken::FDT_BEGIN_NODE) : { return "NODE BEGIN"; }
(FDTToken::FDT_END_NODE) : { return "NODE END"; }
(FDTToken::FDT_PROP) : { return std::format("{} = \"{}\"", block.name, block.value); }
(FDTToken::FDT_NOP) : { return "NOP"; }
(FDTToken::FDT_END) : { return "END"; }
}
return "";
};
struct FDT {
FDTHeader header;
std::assert(header.version == 17, "Unsupported format version");
FDTStructureBlock structureBlocks[while(true)] @ header.off_dt_struct;
FDTReserveEntry reserveEntries[while(true)] @ header.off_mem_rsvmap;
};
FDT fdt @ 0x00;