upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
465 B
20 lines
465 B
/* 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 */
|
|
|