boot/efi: introduce arch_dtb

Change-Id: Iff9e4198aca706097889faf51e9559fe551126ad
Reviewed-on: https://review.haiku-os.org/c/haiku/+/4782
Tested-by: Commit checker robot <[email protected]>
Reviewed-by: Alex von Gluck IV <[email protected]>
This commit is contained in:
David Karoly
2022-01-05 16:22:35 +00:00
committed by Alex von Gluck IV
parent f4df72a061
commit 023a36024d
7 changed files with 259 additions and 151 deletions
@@ -0,0 +1,16 @@
/*
* Copyright 2021 Haiku, Inc. All rights reserved.
* Distributed under the terms of the MIT License.
*/
#ifndef KERNEL_BOOT_PLATFORM_EFI_ARCH_DTB_H
#define KERNEL_BOOT_PLATFORM_EFI_ARCH_DTB_H
#include <SupportDefs.h>
void arch_handle_fdt(const void* fdt, int node, uint32 addressCells, uint32 sizeCells);
void arch_dtb_set_kernel_args(void);
#endif /* KERNEL_BOOT_PLATFORM_EFI_ARCH_DTB_H */