]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | // SPDX-License-Identifier: GPL-2.0+ |
93f9dcf9 AV |
2 | /* |
3 | * An inteface for configuring a hardware via u-boot environment. | |
4 | * | |
5 | * Copyright (c) 2009 MontaVista Software, Inc. | |
dd50af25 | 6 | * Copyright 2011 Freescale Semiconductor, Inc. |
93f9dcf9 AV |
7 | * |
8 | * Author: Anton Vorontsov <[email protected]> | |
93f9dcf9 AV |
9 | */ |
10 | ||
3bf74a41 | 11 | #ifndef HWCONFIG_TEST |
93f9dcf9 AV |
12 | #include <config.h> |
13 | #include <common.h> | |
9fb625ce | 14 | #include <env.h> |
93f9dcf9 AV |
15 | #include <exports.h> |
16 | #include <hwconfig.h> | |
f7ae49fc | 17 | #include <log.h> |
93f9dcf9 AV |
18 | #include <linux/types.h> |
19 | #include <linux/string.h> | |
3bf74a41 AV |
20 | #else |
21 | #include <stdio.h> | |
22 | #include <stdlib.h> | |
23 | #include <string.h> | |
24 | #include <assert.h> | |
25 | #define min(a, b) (((a) < (b)) ? (a) : (b)) | |
26 | #endif /* HWCONFIG_TEST */ | |
93f9dcf9 | 27 | |
c4b115f5 KG |
28 | DECLARE_GLOBAL_DATA_PTR; |
29 | ||
93f9dcf9 | 30 | static const char *hwconfig_parse(const char *opts, size_t maxlen, |
81f8d3b0 | 31 | const char *opt, char *stopchs, char eqch, |
93f9dcf9 AV |
32 | size_t *arglen) |
33 | { | |
34 | size_t optlen = strlen(opt); | |
35 | char *str; | |
36 | const char *start = opts; | |
37 | const char *end; | |
38 | ||
39 | next: | |
40 | str = strstr(opts, opt); | |
41 | end = str + optlen; | |
42 | if (end - start > maxlen) | |
43 | return NULL; | |
44 | ||
81f8d3b0 AV |
45 | if (str && (str == opts || strpbrk(str - 1, stopchs) == str - 1) && |
46 | (strpbrk(end, stopchs) == end || *end == eqch || | |
47 | *end == '\0')) { | |
93f9dcf9 AV |
48 | const char *arg_end; |
49 | ||
50 | if (!arglen) | |
51 | return str; | |
52 | ||
53 | if (*end != eqch) | |
54 | return NULL; | |
55 | ||
81f8d3b0 | 56 | arg_end = strpbrk(str, stopchs); |
93f9dcf9 AV |
57 | if (!arg_end) |
58 | *arglen = min(maxlen, strlen(str)) - optlen - 1; | |
59 | else | |
60 | *arglen = arg_end - end - 1; | |
61 | ||
62 | return end + 1; | |
63 | } else if (str) { | |
64 | opts = end; | |
65 | goto next; | |
66 | } | |
67 | return NULL; | |
68 | } | |
69 | ||
b194577b KG |
70 | const char cpu_hwconfig[] __attribute__((weak)) = ""; |
71 | const char board_hwconfig[] __attribute__((weak)) = ""; | |
93f9dcf9 | 72 | |
dd50af25 KG |
73 | static const char *__hwconfig(const char *opt, size_t *arglen, |
74 | const char *env_hwconfig) | |
93f9dcf9 | 75 | { |
dd50af25 | 76 | const char *ret; |
c4b115f5 | 77 | |
dd50af25 KG |
78 | /* if we are passed a buffer use it, otherwise try the environment */ |
79 | if (!env_hwconfig) { | |
80 | if (!(gd->flags & GD_FLG_ENV_READY)) { | |
81 | printf("WARNING: Calling __hwconfig without a buffer " | |
d1a24f06 WD |
82 | "and before environment is ready\n"); |
83 | return NULL; | |
dd50af25 | 84 | } |
00caae6d | 85 | env_hwconfig = env_get("hwconfig"); |
c4b115f5 | 86 | } |
93f9dcf9 | 87 | |
bb141079 KG |
88 | if (env_hwconfig) { |
89 | ret = hwconfig_parse(env_hwconfig, strlen(env_hwconfig), | |
81f8d3b0 | 90 | opt, ";", ':', arglen); |
bb141079 KG |
91 | if (ret) |
92 | return ret; | |
93 | } | |
93f9dcf9 | 94 | |
bb141079 | 95 | ret = hwconfig_parse(board_hwconfig, strlen(board_hwconfig), |
b194577b | 96 | opt, ";", ':', arglen); |
bb141079 KG |
97 | if (ret) |
98 | return ret; | |
93f9dcf9 | 99 | |
b194577b KG |
100 | return hwconfig_parse(cpu_hwconfig, strlen(cpu_hwconfig), |
101 | opt, ";", ':', arglen); | |
93f9dcf9 AV |
102 | } |
103 | ||
104 | /* | |
dd50af25 | 105 | * hwconfig_f - query if a particular hwconfig option is specified |
93f9dcf9 | 106 | * @opt: a string representing an option |
dd50af25 | 107 | * @buf: if non-NULL use this buffer to parse, otherwise try env |
93f9dcf9 AV |
108 | * |
109 | * This call can be used to find out whether U-Boot should configure | |
110 | * a particular hardware option. | |
111 | * | |
112 | * Returns non-zero value if the hardware option can be used and thus | |
113 | * should be configured, 0 otherwise. | |
114 | * | |
115 | * This function also returns non-zero value if CONFIG_HWCONFIG is | |
116 | * undefined. | |
117 | * | |
118 | * Returning non-zero value without CONFIG_HWCONFIG has its crucial | |
119 | * purpose: the hwconfig() call should be a "transparent" interface, | |
120 | * e.g. if a board doesn't need hwconfig facility, then we assume | |
121 | * that the board file only calls things that are actually used, so | |
122 | * hwconfig() will always return true result. | |
123 | */ | |
dd50af25 | 124 | int hwconfig_f(const char *opt, char *buf) |
93f9dcf9 | 125 | { |
dd50af25 | 126 | return !!__hwconfig(opt, NULL, buf); |
93f9dcf9 AV |
127 | } |
128 | ||
129 | /* | |
dd50af25 | 130 | * hwconfig_arg_f - get hwconfig option's argument |
93f9dcf9 AV |
131 | * @opt: a string representing an option |
132 | * @arglen: a pointer to an allocated size_t variable | |
dd50af25 | 133 | * @buf: if non-NULL use this buffer to parse, otherwise try env |
93f9dcf9 | 134 | * |
dd50af25 | 135 | * Unlike hwconfig_f() function, this function returns a pointer to the |
93f9dcf9 AV |
136 | * start of the hwconfig arguments, if option is not found or it has |
137 | * no specified arguments, the function returns NULL pointer. | |
138 | * | |
139 | * If CONFIG_HWCONFIG is undefined, the function returns "", and | |
140 | * arglen is set to 0. | |
141 | */ | |
dd50af25 | 142 | const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf) |
93f9dcf9 | 143 | { |
dd50af25 | 144 | return __hwconfig(opt, arglen, buf); |
93f9dcf9 AV |
145 | } |
146 | ||
147 | /* | |
dd50af25 | 148 | * hwconfig_arg_cmp_f - compare hwconfig option's argument |
93f9dcf9 AV |
149 | * @opt: a string representing an option |
150 | * @arg: a string for comparing an option's argument | |
dd50af25 | 151 | * @buf: if non-NULL use this buffer to parse, otherwise try env |
93f9dcf9 | 152 | * |
dd50af25 | 153 | * This call is similar to hwconfig_arg_f, but instead of returning |
93f9dcf9 AV |
154 | * hwconfig argument and its length, it is comparing it to @arg. |
155 | * | |
156 | * Returns non-zero value if @arg matches, 0 otherwise. | |
157 | * | |
158 | * If CONFIG_HWCONFIG is undefined, the function returns a non-zero | |
159 | * value, i.e. the argument matches. | |
160 | */ | |
dd50af25 | 161 | int hwconfig_arg_cmp_f(const char *opt, const char *arg, char *buf) |
93f9dcf9 AV |
162 | { |
163 | const char *argstr; | |
164 | size_t arglen; | |
165 | ||
dd50af25 | 166 | argstr = hwconfig_arg_f(opt, &arglen, buf); |
93f9dcf9 AV |
167 | if (!argstr || arglen != strlen(arg)) |
168 | return 0; | |
169 | ||
170 | return !strncmp(argstr, arg, arglen); | |
171 | } | |
172 | ||
173 | /* | |
dd50af25 | 174 | * hwconfig_sub_f - query if a particular hwconfig sub-option is specified |
93f9dcf9 AV |
175 | * @opt: a string representing an option |
176 | * @subopt: a string representing a sub-option | |
dd50af25 | 177 | * @buf: if non-NULL use this buffer to parse, otherwise try env |
93f9dcf9 | 178 | * |
dd50af25 | 179 | * This call is similar to hwconfig_f(), except that it takes additional |
93f9dcf9 AV |
180 | * argument @subopt. In this example: |
181 | * "dr_usb:mode=peripheral" | |
182 | * "dr_usb" is an option, "mode" is a sub-option, and "peripheral" is its | |
183 | * argument. | |
184 | */ | |
dd50af25 | 185 | int hwconfig_sub_f(const char *opt, const char *subopt, char *buf) |
93f9dcf9 AV |
186 | { |
187 | size_t arglen; | |
188 | const char *arg; | |
189 | ||
dd50af25 | 190 | arg = __hwconfig(opt, &arglen, buf); |
93f9dcf9 AV |
191 | if (!arg) |
192 | return 0; | |
81f8d3b0 | 193 | return !!hwconfig_parse(arg, arglen, subopt, ",;", '=', NULL); |
93f9dcf9 AV |
194 | } |
195 | ||
196 | /* | |
dd50af25 | 197 | * hwconfig_subarg_f - get hwconfig sub-option's argument |
93f9dcf9 AV |
198 | * @opt: a string representing an option |
199 | * @subopt: a string representing a sub-option | |
200 | * @subarglen: a pointer to an allocated size_t variable | |
dd50af25 | 201 | * @buf: if non-NULL use this buffer to parse, otherwise try env |
93f9dcf9 | 202 | * |
dd50af25 KG |
203 | * This call is similar to hwconfig_arg_f(), except that it takes an |
204 | * additional argument @subopt, and so works with sub-options. | |
93f9dcf9 | 205 | */ |
dd50af25 KG |
206 | const char *hwconfig_subarg_f(const char *opt, const char *subopt, |
207 | size_t *subarglen, char *buf) | |
93f9dcf9 AV |
208 | { |
209 | size_t arglen; | |
210 | const char *arg; | |
211 | ||
dd50af25 | 212 | arg = __hwconfig(opt, &arglen, buf); |
93f9dcf9 AV |
213 | if (!arg) |
214 | return NULL; | |
81f8d3b0 | 215 | return hwconfig_parse(arg, arglen, subopt, ",;", '=', subarglen); |
93f9dcf9 AV |
216 | } |
217 | ||
218 | /* | |
dd50af25 | 219 | * hwconfig_arg_cmp_f - compare hwconfig sub-option's argument |
93f9dcf9 AV |
220 | * @opt: a string representing an option |
221 | * @subopt: a string representing a sub-option | |
222 | * @subarg: a string for comparing an sub-option's argument | |
dd50af25 | 223 | * @buf: if non-NULL use this buffer to parse, otherwise try env |
93f9dcf9 | 224 | * |
dd50af25 KG |
225 | * This call is similar to hwconfig_arg_cmp_f, except that it takes an |
226 | * additional argument @subopt, and so works with sub-options. | |
93f9dcf9 | 227 | */ |
dd50af25 KG |
228 | int hwconfig_subarg_cmp_f(const char *opt, const char *subopt, |
229 | const char *subarg, char *buf) | |
93f9dcf9 AV |
230 | { |
231 | const char *argstr; | |
232 | size_t arglen; | |
233 | ||
dd50af25 | 234 | argstr = hwconfig_subarg_f(opt, subopt, &arglen, buf); |
93f9dcf9 AV |
235 | if (!argstr || arglen != strlen(subarg)) |
236 | return 0; | |
237 | ||
238 | return !strncmp(argstr, subarg, arglen); | |
239 | } | |
3bf74a41 AV |
240 | |
241 | #ifdef HWCONFIG_TEST | |
242 | int main() | |
243 | { | |
244 | const char *ret; | |
245 | size_t len; | |
246 | ||
382bee57 | 247 | env_set("hwconfig", "key1:subkey1=value1,subkey2=value2;key2:value3;;;;" |
3bf74a41 AV |
248 | "key3;:,:=;key4", 1); |
249 | ||
250 | ret = hwconfig_arg("key1", &len); | |
251 | printf("%zd %.*s\n", len, (int)len, ret); | |
252 | assert(len == 29); | |
253 | assert(hwconfig_arg_cmp("key1", "subkey1=value1,subkey2=value2")); | |
254 | assert(!strncmp(ret, "subkey1=value1,subkey2=value2", len)); | |
255 | ||
256 | ret = hwconfig_subarg("key1", "subkey1", &len); | |
257 | printf("%zd %.*s\n", len, (int)len, ret); | |
258 | assert(len == 6); | |
259 | assert(hwconfig_subarg_cmp("key1", "subkey1", "value1")); | |
260 | assert(!strncmp(ret, "value1", len)); | |
261 | ||
262 | ret = hwconfig_subarg("key1", "subkey2", &len); | |
263 | printf("%zd %.*s\n", len, (int)len, ret); | |
264 | assert(len == 6); | |
265 | assert(hwconfig_subarg_cmp("key1", "subkey2", "value2")); | |
266 | assert(!strncmp(ret, "value2", len)); | |
267 | ||
268 | ret = hwconfig_arg("key2", &len); | |
269 | printf("%zd %.*s\n", len, (int)len, ret); | |
270 | assert(len == 6); | |
271 | assert(hwconfig_arg_cmp("key2", "value3")); | |
272 | assert(!strncmp(ret, "value3", len)); | |
273 | ||
274 | assert(hwconfig("key3")); | |
275 | assert(hwconfig_arg("key4", &len) == NULL); | |
276 | assert(hwconfig_arg("bogus", &len) == NULL); | |
277 | ||
382bee57 | 278 | unenv_set("hwconfig"); |
3bf74a41 AV |
279 | |
280 | assert(hwconfig(NULL) == 0); | |
281 | assert(hwconfig("") == 0); | |
282 | assert(hwconfig("key3") == 0); | |
283 | ||
284 | return 0; | |
285 | } | |
286 | #endif /* HWCONFIG_TEST */ |