-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de> Signed-off-by: Martin Kröning <martin.kroening@eonerc.rwth-aachen.de>
- Loading branch information
1 parent
774aa41
commit 870b59c
Showing
8 changed files
with
251 additions
and
22 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Git LFS file not shown
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
use alloc::format; | ||
use alloc::vec::Vec; | ||
|
||
use vm_fdt::{FdtWriter, FdtWriterNode, FdtWriterResult}; | ||
|
||
pub struct Fdt { | ||
writer: FdtWriter, | ||
root_node: FdtWriterNode, | ||
} | ||
|
||
impl Fdt { | ||
pub fn new() -> FdtWriterResult<Self> { | ||
let mut writer = FdtWriter::new()?; | ||
|
||
let root_node = writer.begin_node("")?; | ||
writer.property_string("compatible", "hermit,uefi")?; | ||
writer.property_u32("#address-cells", 0x2)?; | ||
writer.property_u32("#size-cells", 0x2)?; | ||
|
||
Ok(Self { writer, root_node }) | ||
} | ||
|
||
pub fn finish(mut self) -> FdtWriterResult<Vec<u8>> { | ||
self.writer.end_node(self.root_node)?; | ||
|
||
self.writer.finish() | ||
} | ||
|
||
pub fn rsdp(mut self, rsdp: u64) -> FdtWriterResult<Self> { | ||
let rsdp_node = self.writer.begin_node(&format!("hermit,rsdp@{rsdp:x}"))?; | ||
self.writer.property_array_u64("reg", &[rsdp, 1])?; | ||
self.writer.end_node(rsdp_node)?; | ||
|
||
Ok(self) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters