blob: 52c0795748389be46d6ba23aaab7065a930ba248 [file] [log] [blame]
Emanuele Ghidoli73bc1882023-07-14 17:23:08 +02001/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*
3 * Copyright 2023 Toradex - https://www.toradex.com/
4 */
5
6#ifndef _COMMON_FDT_H
7#define _COMMON_FDT_H
8
9int fdt_fixup_msmc_ram_k3(void *blob);
Emanuele Ghidoli373790c2023-07-26 16:36:50 +020010int fdt_del_node_path(void *blob, const char *path);
Andrew Davis3a7442d2024-02-14 10:30:07 -060011int fdt_fixup_reserved(void *blob, const char *name,
12 unsigned int new_address, unsigned int new_size);
Emanuele Ghidoli73bc1882023-07-14 17:23:08 +020013
14#endif /* _COMMON_FDT_H */