fdt_wrappers.h 1.46 KB
Newer Older
1
/*
2
 * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved.
3
4
5
6
7
8
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

/* Helper functions to offer easier navigation of Device Tree Blob */

9
10
#ifndef FDT_WRAPPERS_H
#define FDT_WRAPPERS_H
11
12

/* Number of cells, given total length in bytes. Each cell is 4 bytes long */
13
#define NCELLS(len) ((len) / 4U)
14

15
16
int fdt_read_uint32(const void *dtb, int node, const char *prop_name,
		    uint32_t *value);
17
18
uint32_t fdt_read_uint32_default(const void *dtb, int node,
				 const char *prop_name, uint32_t dflt_value);
19
20
int fdt_read_uint64(const void *dtb, int node, const char *prop_name,
		    uint64_t *value);
21
22
int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name,
			  unsigned int cells, uint32_t *value);
23
24
int fdtw_read_string(const void *dtb, int node, const char *prop,
		char *str, size_t size);
25
26
int fdtw_write_inplace_cells(void *dtb, int node, const char *prop,
		unsigned int cells, void *value);
27
28
29
30
int fdtw_read_bytes(const void *dtb, int node, const char *prop,
		unsigned int length, void *value);
int fdtw_write_inplace_bytes(void *dtb, int node, const char *prop,
		unsigned int length, const void *data);
31
32
int fdt_get_reg_props_by_index(const void *dtb, int node, int index,
			       uintptr_t *base, size_t *size);
33
34
int fdt_get_reg_props_by_name(const void *dtb, int node, const char *name,
			      uintptr_t *base, size_t *size);
35
int fdt_get_stdout_node_offset(const void *dtb);
36

37
#endif /* FDT_WRAPPERS_H */