blob: 75412747b71642df88226477db1204db3a497dd0 [file] [log] [blame]
aurel32f652e6a2008-12-16 10:43:48 +00001/*
2 * Functions to help device tree manipulation using libfdt.
3 * It also provides functions to read entries from device tree proc
4 * interface.
5 *
6 * Copyright 2008 IBM Corporation.
7 * Authors: Jerone Young <jyoung5@us.ibm.com>
8 * Hollis Blanchard <hollisb@us.ibm.com>
9 *
10 * This work is licensed under the GNU GPL license version 2 or later.
11 *
12 */
13
14#include <stdio.h>
15#include <sys/types.h>
16#include <sys/stat.h>
17#include <fcntl.h>
18#include <unistd.h>
19#include <stdlib.h>
20
21#include "config.h"
22#include "qemu-common.h"
aurel32f652e6a2008-12-16 10:43:48 +000023#include "device_tree.h"
Blue Swirl39b7f202009-09-22 17:51:36 +000024#include "hw/loader.h"
aurel32f652e6a2008-12-16 10:43:48 +000025
26#include <libfdt.h>
27
Alexander Grafce362522012-05-17 15:33:54 +020028#define FDT_MAX_SIZE 0x10000
29
30void *create_device_tree(int *sizep)
31{
32 void *fdt;
33 int ret;
34
35 *sizep = FDT_MAX_SIZE;
36 fdt = g_malloc0(FDT_MAX_SIZE);
37 ret = fdt_create(fdt, FDT_MAX_SIZE);
38 if (ret < 0) {
39 goto fail;
40 }
41 ret = fdt_begin_node(fdt, "");
42 if (ret < 0) {
43 goto fail;
44 }
45 ret = fdt_end_node(fdt);
46 if (ret < 0) {
47 goto fail;
48 }
49 ret = fdt_finish(fdt);
50 if (ret < 0) {
51 goto fail;
52 }
53 ret = fdt_open_into(fdt, fdt, *sizep);
54 if (ret) {
55 fprintf(stderr, "Unable to copy device tree in memory\n");
56 exit(1);
57 }
58
59 return fdt;
60fail:
61 fprintf(stderr, "%s Couldn't create dt: %s\n", __func__, fdt_strerror(ret));
62 exit(1);
63}
64
pbrook7ec632b2009-04-10 16:23:59 +000065void *load_device_tree(const char *filename_path, int *sizep)
aurel32f652e6a2008-12-16 10:43:48 +000066{
pbrook7ec632b2009-04-10 16:23:59 +000067 int dt_size;
aurel32f652e6a2008-12-16 10:43:48 +000068 int dt_file_load_size;
aurel32f652e6a2008-12-16 10:43:48 +000069 int ret;
pbrook7ec632b2009-04-10 16:23:59 +000070 void *fdt = NULL;
aurel32f652e6a2008-12-16 10:43:48 +000071
pbrook7ec632b2009-04-10 16:23:59 +000072 *sizep = 0;
73 dt_size = get_image_size(filename_path);
74 if (dt_size < 0) {
aurel32f652e6a2008-12-16 10:43:48 +000075 printf("Unable to get size of device tree file '%s'\n",
76 filename_path);
77 goto fail;
78 }
79
pbrook7ec632b2009-04-10 16:23:59 +000080 /* Expand to 2x size to give enough room for manipulation. */
Alexander Grafded57c52011-07-23 10:54:11 +020081 dt_size += 10000;
pbrook7ec632b2009-04-10 16:23:59 +000082 dt_size *= 2;
aurel32f652e6a2008-12-16 10:43:48 +000083 /* First allocate space in qemu for device tree */
Anthony Liguori7267c092011-08-20 22:09:37 -050084 fdt = g_malloc0(dt_size);
aurel32f652e6a2008-12-16 10:43:48 +000085
pbrook7ec632b2009-04-10 16:23:59 +000086 dt_file_load_size = load_image(filename_path, fdt);
87 if (dt_file_load_size < 0) {
88 printf("Unable to open device tree file '%s'\n",
89 filename_path);
90 goto fail;
91 }
aurel32f652e6a2008-12-16 10:43:48 +000092
pbrook7ec632b2009-04-10 16:23:59 +000093 ret = fdt_open_into(fdt, fdt, dt_size);
aurel32f652e6a2008-12-16 10:43:48 +000094 if (ret) {
95 printf("Unable to copy device tree in memory\n");
96 goto fail;
97 }
98
99 /* Check sanity of device tree */
100 if (fdt_check_header(fdt)) {
101 printf ("Device tree file loaded into memory is invalid: %s\n",
102 filename_path);
103 goto fail;
104 }
pbrook7ec632b2009-04-10 16:23:59 +0000105 *sizep = dt_size;
aurel32f652e6a2008-12-16 10:43:48 +0000106 return fdt;
107
108fail:
Anthony Liguori7267c092011-08-20 22:09:37 -0500109 g_free(fdt);
aurel32f652e6a2008-12-16 10:43:48 +0000110 return NULL;
111}
112
Alexander Grafccbcfed2011-07-23 10:52:00 +0200113static int findnode_nofail(void *fdt, const char *node_path)
aurel32f652e6a2008-12-16 10:43:48 +0000114{
115 int offset;
116
117 offset = fdt_path_offset(fdt, node_path);
Alexander Grafccbcfed2011-07-23 10:52:00 +0200118 if (offset < 0) {
119 fprintf(stderr, "%s Couldn't find node %s: %s\n", __func__, node_path,
120 fdt_strerror(offset));
121 exit(1);
122 }
aurel32f652e6a2008-12-16 10:43:48 +0000123
Alexander Grafccbcfed2011-07-23 10:52:00 +0200124 return offset;
125}
126
127int qemu_devtree_setprop(void *fdt, const char *node_path,
128 const char *property, void *val_array, int size)
129{
130 int r;
131
132 r = fdt_setprop(fdt, findnode_nofail(fdt, node_path), property, val_array, size);
133 if (r < 0) {
134 fprintf(stderr, "%s: Couldn't set %s/%s: %s\n", __func__, node_path,
135 property, fdt_strerror(r));
136 exit(1);
137 }
138
139 return r;
aurel32f652e6a2008-12-16 10:43:48 +0000140}
141
142int qemu_devtree_setprop_cell(void *fdt, const char *node_path,
143 const char *property, uint32_t val)
144{
Alexander Grafccbcfed2011-07-23 10:52:00 +0200145 int r;
aurel32f652e6a2008-12-16 10:43:48 +0000146
Alexander Grafccbcfed2011-07-23 10:52:00 +0200147 r = fdt_setprop_cell(fdt, findnode_nofail(fdt, node_path), property, val);
148 if (r < 0) {
149 fprintf(stderr, "%s: Couldn't set %s/%s = %#08x: %s\n", __func__,
150 node_path, property, val, fdt_strerror(r));
151 exit(1);
152 }
aurel32f652e6a2008-12-16 10:43:48 +0000153
Alexander Grafccbcfed2011-07-23 10:52:00 +0200154 return r;
aurel32f652e6a2008-12-16 10:43:48 +0000155}
156
157int qemu_devtree_setprop_string(void *fdt, const char *node_path,
158 const char *property, const char *string)
159{
Alexander Grafccbcfed2011-07-23 10:52:00 +0200160 int r;
aurel32f652e6a2008-12-16 10:43:48 +0000161
Alexander Grafccbcfed2011-07-23 10:52:00 +0200162 r = fdt_setprop_string(fdt, findnode_nofail(fdt, node_path), property, string);
163 if (r < 0) {
164 fprintf(stderr, "%s: Couldn't set %s/%s = %s: %s\n", __func__,
165 node_path, property, string, fdt_strerror(r));
166 exit(1);
167 }
aurel32f652e6a2008-12-16 10:43:48 +0000168
Alexander Grafccbcfed2011-07-23 10:52:00 +0200169 return r;
aurel32f652e6a2008-12-16 10:43:48 +0000170}
Alexander Grafd69a8e62011-07-21 01:52:57 +0200171
Alexander Graf7d5fd102012-05-17 15:23:39 +0200172uint32_t qemu_devtree_get_phandle(void *fdt, const char *path)
173{
174 uint32_t r;
175
176 r = fdt_get_phandle(fdt, findnode_nofail(fdt, path));
177 if (r <= 0) {
178 fprintf(stderr, "%s: Couldn't get phandle for %s: %s\n", __func__,
179 path, fdt_strerror(r));
180 exit(1);
181 }
182
183 return r;
184}
185
Alexander Graf8535ab12012-05-17 14:11:52 +0200186int qemu_devtree_setprop_phandle(void *fdt, const char *node_path,
187 const char *property,
188 const char *target_node_path)
189{
Alexander Graf7d5fd102012-05-17 15:23:39 +0200190 uint32_t phandle = qemu_devtree_get_phandle(fdt, target_node_path);
Alexander Graf8535ab12012-05-17 14:11:52 +0200191 return qemu_devtree_setprop_cell(fdt, node_path, property, phandle);
192}
193
Alexander Graf3601b572012-05-17 16:58:55 +0200194uint32_t qemu_devtree_alloc_phandle(void *fdt)
195{
196 static int phandle = 0x8000;
197
198 return phandle++;
199}
200
Alexander Grafd69a8e62011-07-21 01:52:57 +0200201int qemu_devtree_nop_node(void *fdt, const char *node_path)
202{
Alexander Grafccbcfed2011-07-23 10:52:00 +0200203 int r;
Alexander Grafd69a8e62011-07-21 01:52:57 +0200204
Alexander Grafccbcfed2011-07-23 10:52:00 +0200205 r = fdt_nop_node(fdt, findnode_nofail(fdt, node_path));
206 if (r < 0) {
207 fprintf(stderr, "%s: Couldn't nop node %s: %s\n", __func__, node_path,
208 fdt_strerror(r));
209 exit(1);
210 }
Alexander Grafd69a8e62011-07-21 01:52:57 +0200211
Alexander Grafccbcfed2011-07-23 10:52:00 +0200212 return r;
Alexander Grafd69a8e62011-07-21 01:52:57 +0200213}
Alexander Graf80ad7812011-07-22 13:55:37 +0200214
215int qemu_devtree_add_subnode(void *fdt, const char *name)
216{
Alexander Graf80ad7812011-07-22 13:55:37 +0200217 char *dupname = g_strdup(name);
218 char *basename = strrchr(dupname, '/');
219 int retval;
Alexander Grafc640d082012-05-17 11:40:42 +0200220 int parent = 0;
Alexander Graf80ad7812011-07-22 13:55:37 +0200221
222 if (!basename) {
Stefan Weilbff39b62011-10-17 22:12:09 +0200223 g_free(dupname);
Alexander Graf80ad7812011-07-22 13:55:37 +0200224 return -1;
225 }
226
227 basename[0] = '\0';
228 basename++;
229
Alexander Grafc640d082012-05-17 11:40:42 +0200230 if (dupname[0]) {
231 parent = findnode_nofail(fdt, dupname);
232 }
233
234 retval = fdt_add_subnode(fdt, parent, basename);
Alexander Grafef5d8332012-05-17 14:12:57 +0200235#if 0
Alexander Grafccbcfed2011-07-23 10:52:00 +0200236 if (retval < 0) {
237 fprintf(stderr, "FDT: Failed to create subnode %s: %s\n", name,
238 fdt_strerror(retval));
239 exit(1);
Alexander Graf80ad7812011-07-22 13:55:37 +0200240 }
Alexander Grafef5d8332012-05-17 14:12:57 +0200241#endif
Alexander Graf80ad7812011-07-22 13:55:37 +0200242
Alexander Graf80ad7812011-07-22 13:55:37 +0200243 g_free(dupname);
244 return retval;
245}