Soby Mathew | b9fccca | 2017-11-06 13:56:40 +0000 | [diff] [blame] | 1 | /* |
Alexei Fedorov | 2de82fc | 2020-01-29 16:21:28 +0000 | [diff] [blame] | 2 | * Copyright (c) 2018-2020, ARM Limited and Contributors. All rights reserved. |
Soby Mathew | b9fccca | 2017-11-06 13:56:40 +0000 | [diff] [blame] | 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | |
| 7 | /* Helper functions to offer easier navigation of Device Tree Blob */ |
| 8 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 9 | #ifndef FDT_WRAPPERS_H |
| 10 | #define FDT_WRAPPERS_H |
Soby Mathew | b9fccca | 2017-11-06 13:56:40 +0000 | [diff] [blame] | 11 | |
Andre Przywara | 97c6e90 | 2020-07-09 12:33:17 +0100 | [diff] [blame] | 12 | #include <libfdt_env.h> |
| 13 | |
Soby Mathew | b9fccca | 2017-11-06 13:56:40 +0000 | [diff] [blame] | 14 | /* Number of cells, given total length in bytes. Each cell is 4 bytes long */ |
Antonio Nino Diaz | f0b14cf | 2018-10-04 09:55:23 +0100 | [diff] [blame] | 15 | #define NCELLS(len) ((len) / 4U) |
Soby Mathew | b9fccca | 2017-11-06 13:56:40 +0000 | [diff] [blame] | 16 | |
Andre Przywara | fe5bdf5 | 2020-03-26 11:22:37 +0000 | [diff] [blame] | 17 | int fdt_read_uint32(const void *dtb, int node, const char *prop_name, |
| 18 | uint32_t *value); |
Andre Przywara | 2d5690c | 2020-03-26 11:50:33 +0000 | [diff] [blame] | 19 | uint32_t fdt_read_uint32_default(const void *dtb, int node, |
| 20 | const char *prop_name, uint32_t dflt_value); |
Andre Przywara | fe5bdf5 | 2020-03-26 11:22:37 +0000 | [diff] [blame] | 21 | int fdt_read_uint64(const void *dtb, int node, const char *prop_name, |
| 22 | uint64_t *value); |
Andre Przywara | 6cf6a1b | 2020-03-30 23:21:13 +0100 | [diff] [blame] | 23 | int fdt_read_uint32_array(const void *dtb, int node, const char *prop_name, |
| 24 | unsigned int cells, uint32_t *value); |
Antonio Nino Diaz | d85c878 | 2018-06-26 10:34:07 +0100 | [diff] [blame] | 25 | int fdtw_read_string(const void *dtb, int node, const char *prop, |
| 26 | char *str, size_t size); |
Soby Mathew | b9fccca | 2017-11-06 13:56:40 +0000 | [diff] [blame] | 27 | int fdtw_write_inplace_cells(void *dtb, int node, const char *prop, |
| 28 | unsigned int cells, void *value); |
Alexei Fedorov | 2de82fc | 2020-01-29 16:21:28 +0000 | [diff] [blame] | 29 | int fdtw_read_bytes(const void *dtb, int node, const char *prop, |
| 30 | unsigned int length, void *value); |
| 31 | int fdtw_write_inplace_bytes(void *dtb, int node, const char *prop, |
| 32 | unsigned int length, const void *data); |
Andre Przywara | e183e15 | 2020-03-26 11:57:43 +0000 | [diff] [blame] | 33 | int fdt_get_reg_props_by_index(const void *dtb, int node, int index, |
| 34 | uintptr_t *base, size_t *size); |
Andre Przywara | 4a1c874 | 2020-03-26 12:11:34 +0000 | [diff] [blame] | 35 | int fdt_get_reg_props_by_name(const void *dtb, int node, const char *name, |
| 36 | uintptr_t *base, size_t *size); |
Andre Przywara | a0eaca5 | 2020-03-26 12:52:06 +0000 | [diff] [blame] | 37 | int fdt_get_stdout_node_offset(const void *dtb); |
Antonio Nino Diaz | d85c878 | 2018-06-26 10:34:07 +0100 | [diff] [blame] | 38 | |
Madhukar Pappireddy | 361c1b3 | 2020-03-24 10:03:34 -0500 | [diff] [blame] | 39 | uint64_t fdtw_translate_address(const void *dtb, int bus_node, |
| 40 | uint64_t base_address); |
| 41 | |
Andre Przywara | 97c6e90 | 2020-07-09 12:33:17 +0100 | [diff] [blame] | 42 | static inline uint32_t fdt_blob_size(const void *dtb) |
| 43 | { |
| 44 | const uint32_t *dtb_header = dtb; |
| 45 | |
| 46 | return fdt32_to_cpu(dtb_header[1]); |
| 47 | } |
| 48 | |
Antonio Nino Diaz | 5eb8837 | 2018-11-08 10:20:19 +0000 | [diff] [blame] | 49 | #endif /* FDT_WRAPPERS_H */ |