Files
Linux_Drivers/u-boot-2021.10/include/image-android-dt.h
sam.xiang f8fc109960 [uboot] create uboot from github:
repo: https://github.com/u-boot/u-boot
	commit: d80bb749fab53da72c4a0e09b8c2d2aaa3103c91

Change-Id: Ie6434426e1ec15bc08bb1832798e371f3fd5fb29
2023-03-10 20:30:57 +08:00

21 lines
465 B
C

/* SPDX-License-Identifier: GPL-2.0+ */
/*
* (C) Copyright 2018 Linaro Ltd.
* Sam Protsenko <semen.protsenko@linaro.org>
*/
#ifndef IMAGE_ANDROID_DT_H
#define IMAGE_ANDROID_DT_H
#include <linux/types.h>
bool android_dt_check_header(ulong hdr_addr);
bool android_dt_get_fdt_by_index(ulong hdr_addr, u32 index, ulong *addr,
u32 *size);
#if !defined(CONFIG_SPL_BUILD)
void android_dt_print_contents(ulong hdr_addr);
#endif
#endif /* IMAGE_ANDROID_DT_H */