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

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

#include <assert.h>
10
#include <string.h>
11

12
13
14
15
16
#include <libfdt.h>

#include <common/debug.h>
#include <common/fdt_wrappers.h>

17
18
19
20
21
22
23
24
25
26
27
28
/*
 * Read cells from a given property of the given node. At most 2 cells of the
 * property are read, and pointer is updated. Returns 0 on success, and -1 upon
 * error
 */
int fdtw_read_cells(const void *dtb, int node, const char *prop,
		unsigned int cells, void *value)
{
	const uint32_t *value_ptr;
	uint32_t hi = 0, lo;
	int value_len;

Soby Mathew's avatar
Soby Mathew committed
29
30
31
	assert(dtb != NULL);
	assert(prop != NULL);
	assert(value != NULL);
32
33
34
	assert(node >= 0);

	/* We expect either 1 or 2 cell property */
Soby Mathew's avatar
Soby Mathew committed
35
	assert(cells <= 2U);
36
37

	/* Access property and obtain its length (in bytes) */
Soby Mathew's avatar
Soby Mathew committed
38
	value_ptr = fdt_getprop_namelen(dtb, node, prop, (int)strlen(prop),
39
40
41
42
43
44
45
			&value_len);
	if (value_ptr == NULL) {
		WARN("Couldn't find property %s in dtb\n", prop);
		return -1;
	}

	/* Verify that property length accords with cell length */
Soby Mathew's avatar
Soby Mathew committed
46
	if (NCELLS((unsigned int)value_len) != cells) {
47
48
49
50
		WARN("Property length mismatch\n");
		return -1;
	}

Soby Mathew's avatar
Soby Mathew committed
51
	if (cells == 2U) {
52
53
54
55
56
57
		hi = fdt32_to_cpu(*value_ptr);
		value_ptr++;
	}

	lo = fdt32_to_cpu(*value_ptr);

Soby Mathew's avatar
Soby Mathew committed
58
	if (cells == 2U)
59
60
61
62
63
64
65
		*((uint64_t *) value) = ((uint64_t) hi << 32) | lo;
	else
		*((uint32_t *) value) = lo;

	return 0;
}

66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * Read cells from a given property of the given node. Any number of 32-bit
 * cells of the property can be read. The fdt pointer is updated. Returns 0 on
 * success, and -1 on error.
 */
int fdtw_read_array(const void *dtb, int node, const char *prop,
		unsigned int cells, void *value)
{
	const uint32_t *value_ptr;
	int value_len;

	assert(dtb != NULL);
	assert(prop != NULL);
	assert(value != NULL);
	assert(node >= 0);

	/* Access property and obtain its length (in bytes) */
	value_ptr = fdt_getprop_namelen(dtb, node, prop, (int)strlen(prop),
			&value_len);
	if (value_ptr == NULL) {
		WARN("Couldn't find property %s in dtb\n", prop);
		return -1;
	}

	/* Verify that property length accords with cell length */
	if (NCELLS((unsigned int)value_len) != cells) {
		WARN("Property length mismatch\n");
		return -1;
	}

	uint32_t *dst = value;

	for (unsigned int i = 0U; i < cells; i++) {
		dst[i] = fdt32_to_cpu(value_ptr[i]);
	}

	return 0;
}

105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
 * Read string from a given property of the given node. Up to 'size - 1'
 * characters are read, and a NUL terminator is added. Returns 0 on success,
 * and -1 upon error.
 */
int fdtw_read_string(const void *dtb, int node, const char *prop,
		char *str, size_t size)
{
	const char *ptr;
	size_t len;

	assert(dtb != NULL);
	assert(node >= 0);
	assert(prop != NULL);
	assert(str != NULL);
	assert(size > 0U);

	ptr = fdt_getprop_namelen(dtb, node, prop, (int)strlen(prop), NULL);
	if (ptr == NULL) {
		WARN("Couldn't find property %s in dtb\n", prop);
		return -1;
	}

	len = strlcpy(str, ptr, size);
	if (len >= size) {
		WARN("String of property %s in dtb has been truncated\n", prop);
		return -1;
	}

	return 0;
}

137
138
139
140
141
142
143
144
145
/*
 * Write cells in place to a given property of the given node. At most 2 cells
 * of the property are written. Returns 0 on success, and -1 upon error.
 */
int fdtw_write_inplace_cells(void *dtb, int node, const char *prop,
		unsigned int cells, void *value)
{
	int err, len;

Soby Mathew's avatar
Soby Mathew committed
146
147
148
	assert(dtb != NULL);
	assert(prop != NULL);
	assert(value != NULL);
149
150
151
	assert(node >= 0);

	/* We expect either 1 or 2 cell property */
Soby Mathew's avatar
Soby Mathew committed
152
	assert(cells <= 2U);
153

Soby Mathew's avatar
Soby Mathew committed
154
	if (cells == 2U)
155
156
157
158
		*(uint64_t *)value = cpu_to_fdt64(*(uint64_t *)value);
	else
		*(uint32_t *)value = cpu_to_fdt32(*(uint32_t *)value);

Soby Mathew's avatar
Soby Mathew committed
159
	len = (int)cells * 4;
160
161
162
163
164
165
166
167
168
169

	/* Set property value in place */
	err = fdt_setprop_inplace(dtb, node, prop, value, len);
	if (err != 0) {
		WARN("Modify property %s failed with error %d\n", prop, err);
		return -1;
	}

	return 0;
}