diff options
Diffstat (limited to 'arch/powerpc/boot/libfdt-wrapper.c')
-rw-r--r-- | arch/powerpc/boot/libfdt-wrapper.c | 184 |
1 files changed, 184 insertions, 0 deletions
diff --git a/arch/powerpc/boot/libfdt-wrapper.c b/arch/powerpc/boot/libfdt-wrapper.c new file mode 100644 index 000000000000..97af36c224bd --- /dev/null +++ b/arch/powerpc/boot/libfdt-wrapper.c | |||
@@ -0,0 +1,184 @@ | |||
1 | /* | ||
2 | * This file does the necessary interface mapping between the bootwrapper | ||
3 | * device tree operations and the interface provided by shared source | ||
4 | * files flatdevicetree.[ch]. | ||
5 | * | ||
6 | * Copyright 2007 David Gibson, IBM Corporation. | ||
7 | * | ||
8 | * This library is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License as | ||
10 | * published by the Free Software Foundation; either version 2 of the | ||
11 | * License, or (at your option) any later version. | ||
12 | * | ||
13 | * This library is distributed in the hope that it will be useful, but | ||
14 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
16 | * General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this library; if not, write to the Free Software | ||
20 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
21 | * 02110-1301 USA | ||
22 | */ | ||
23 | |||
24 | #include <stddef.h> | ||
25 | #include <stdio.h> | ||
26 | #include <page.h> | ||
27 | #include <libfdt.h> | ||
28 | #include "ops.h" | ||
29 | |||
30 | #define DEBUG 0 | ||
31 | #define BAD_ERROR(err) (((err) < 0) \ | ||
32 | && ((err) != -FDT_ERR_NOTFOUND) \ | ||
33 | && ((err) != -FDT_ERR_EXISTS)) | ||
34 | |||
35 | #define check_err(err) \ | ||
36 | ({ \ | ||
37 | if (BAD_ERROR(err) || ((err < 0) && DEBUG)) \ | ||
38 | printf("%s():%d %s\n\r", __FUNCTION__, __LINE__, \ | ||
39 | fdt_strerror(err)); \ | ||
40 | if (BAD_ERROR(err)) \ | ||
41 | exit(); \ | ||
42 | (err < 0) ? -1 : 0; \ | ||
43 | }) | ||
44 | |||
45 | #define offset_devp(off) \ | ||
46 | ({ \ | ||
47 | int _offset = (off); \ | ||
48 | check_err(_offset) ? NULL : (void *)(_offset+1); \ | ||
49 | }) | ||
50 | |||
51 | #define devp_offset_find(devp) (((int)(devp))-1) | ||
52 | #define devp_offset(devp) (devp ? ((int)(devp))-1 : 0) | ||
53 | |||
54 | static void *fdt; | ||
55 | static void *buf; /* = NULL */ | ||
56 | |||
57 | #define EXPAND_GRANULARITY 1024 | ||
58 | |||
59 | static void expand_buf(int minexpand) | ||
60 | { | ||
61 | int size = fdt_totalsize(fdt); | ||
62 | int rc; | ||
63 | |||
64 | size = _ALIGN(size + minexpand, EXPAND_GRANULARITY); | ||
65 | buf = platform_ops.realloc(buf, size); | ||
66 | if (!buf) | ||
67 | fatal("Couldn't find %d bytes to expand device tree\n\r", size); | ||
68 | rc = fdt_open_into(fdt, buf, size); | ||
69 | if (rc != 0) | ||
70 | fatal("Couldn't expand fdt into new buffer: %s\n\r", | ||
71 | fdt_strerror(rc)); | ||
72 | |||
73 | fdt = buf; | ||
74 | } | ||
75 | |||
76 | static void *fdt_wrapper_finddevice(const char *path) | ||
77 | { | ||
78 | return offset_devp(fdt_path_offset(fdt, path)); | ||
79 | } | ||
80 | |||
81 | static int fdt_wrapper_getprop(const void *devp, const char *name, | ||
82 | void *buf, const int buflen) | ||
83 | { | ||
84 | const void *p; | ||
85 | int len; | ||
86 | |||
87 | p = fdt_getprop(fdt, devp_offset(devp), name, &len); | ||
88 | if (!p) | ||
89 | return check_err(len); | ||
90 | memcpy(buf, p, min(len, buflen)); | ||
91 | return len; | ||
92 | } | ||
93 | |||
94 | static int fdt_wrapper_setprop(const void *devp, const char *name, | ||
95 | const void *buf, const int len) | ||
96 | { | ||
97 | int rc; | ||
98 | |||
99 | rc = fdt_setprop(fdt, devp_offset(devp), name, buf, len); | ||
100 | if (rc == -FDT_ERR_NOSPACE) { | ||
101 | expand_buf(len + 16); | ||
102 | rc = fdt_setprop(fdt, devp_offset(devp), name, buf, len); | ||
103 | } | ||
104 | |||
105 | return check_err(rc); | ||
106 | } | ||
107 | |||
108 | static void *fdt_wrapper_get_parent(const void *devp) | ||
109 | { | ||
110 | return offset_devp(fdt_parent_offset(fdt, devp_offset(devp))); | ||
111 | } | ||
112 | |||
113 | static void *fdt_wrapper_create_node(const void *devp, const char *name) | ||
114 | { | ||
115 | int offset; | ||
116 | |||
117 | offset = fdt_add_subnode(fdt, devp_offset(devp), name); | ||
118 | if (offset == -FDT_ERR_NOSPACE) { | ||
119 | expand_buf(strlen(name) + 16); | ||
120 | offset = fdt_add_subnode(fdt, devp_offset(devp), name); | ||
121 | } | ||
122 | |||
123 | return offset_devp(offset); | ||
124 | } | ||
125 | |||
126 | static void *fdt_wrapper_find_node_by_prop_value(const void *prev, | ||
127 | const char *name, | ||
128 | const char *val, | ||
129 | int len) | ||
130 | { | ||
131 | int offset = fdt_node_offset_by_prop_value(fdt, devp_offset_find(prev), | ||
132 | name, val, len); | ||
133 | return offset_devp(offset); | ||
134 | } | ||
135 | |||
136 | static char *fdt_wrapper_get_path(const void *devp, char *buf, int len) | ||
137 | { | ||
138 | int rc; | ||
139 | |||
140 | rc = fdt_get_path(fdt, devp_offset(devp), buf, len); | ||
141 | if (check_err(rc)) | ||
142 | return NULL; | ||
143 | return buf; | ||
144 | } | ||
145 | |||
146 | static unsigned long fdt_wrapper_finalize(void) | ||
147 | { | ||
148 | int rc; | ||
149 | |||
150 | rc = fdt_pack(fdt); | ||
151 | if (rc != 0) | ||
152 | fatal("Couldn't pack flat tree: %s\n\r", | ||
153 | fdt_strerror(rc)); | ||
154 | return (unsigned long)fdt; | ||
155 | } | ||
156 | |||
157 | void fdt_init(void *blob) | ||
158 | { | ||
159 | int err; | ||
160 | |||
161 | dt_ops.finddevice = fdt_wrapper_finddevice; | ||
162 | dt_ops.getprop = fdt_wrapper_getprop; | ||
163 | dt_ops.setprop = fdt_wrapper_setprop; | ||
164 | dt_ops.get_parent = fdt_wrapper_get_parent; | ||
165 | dt_ops.create_node = fdt_wrapper_create_node; | ||
166 | dt_ops.find_node_by_prop_value = fdt_wrapper_find_node_by_prop_value; | ||
167 | dt_ops.get_path = fdt_wrapper_get_path; | ||
168 | dt_ops.finalize = fdt_wrapper_finalize; | ||
169 | |||
170 | /* Make sure the dt blob is the right version and so forth */ | ||
171 | fdt = blob; | ||
172 | err = fdt_open_into(fdt, fdt, fdt_totalsize(blob)); | ||
173 | if (err == -FDT_ERR_NOSPACE) { | ||
174 | int bufsize = fdt_totalsize(fdt) + 4; | ||
175 | buf = malloc(bufsize); | ||
176 | err = fdt_open_into(fdt, buf, bufsize); | ||
177 | } | ||
178 | |||
179 | if (err != 0) | ||
180 | fatal("fdt_init(): %s\n\r", fdt_strerror(err)); | ||
181 | |||
182 | if (buf) | ||
183 | fdt = buf; | ||
184 | } | ||