blob: 38a5bb82d954fa3060c41c50c08c54aec49fb3f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright 2023 Toradex - https://www.toradex.com/
*/
#ifndef _K3_COMMON_FDT_H
#define _K3_COMMON_FDT_H
int fdt_fixup_msmc_ram_k3(void *blob);
int fdt_del_node_path(void *blob, const char *path);
int fdt_fixup_reserved(void *blob, const char *name,
unsigned int new_address, unsigned int new_size);
void fdt_fixup_thermal_critical_trips_k3(void *blob, int maxc);
#endif /* _K3_COMMON_FDT_H */
|