1 // SPDX-License-Identifier: GPL-2.0+
3 * An inteface for configuring a hardware via u-boot environment.
5 * Copyright (c) 2009 MontaVista Software, Inc.
6 * Copyright 2011 Freescale Semiconductor, Inc.
8 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
18 #include <asm/global_data.h>
19 #include <linux/types.h>
20 #include <linux/string.h>
26 #define min(a, b) (((a) < (b)) ? (a) : (b))
27 #endif /* HWCONFIG_TEST */
29 DECLARE_GLOBAL_DATA_PTR;
31 static const char *hwconfig_parse(const char *opts, size_t maxlen,
32 const char *opt, char *stopchs, char eqch,
35 size_t optlen = strlen(opt);
37 const char *start = opts;
41 str = strstr(opts, opt);
43 if (end - start > maxlen)
46 if (str && (str == opts || strpbrk(str - 1, stopchs) == str - 1) &&
47 (strpbrk(end, stopchs) == end || *end == eqch ||
57 arg_end = strpbrk(str, stopchs);
59 *arglen = min(maxlen, strlen(str)) - optlen - 1;
61 *arglen = arg_end - end - 1;
71 const char cpu_hwconfig[] __attribute__((weak)) = "";
72 const char board_hwconfig[] __attribute__((weak)) = "";
74 static const char *__hwconfig(const char *opt, size_t *arglen,
75 const char *env_hwconfig)
79 /* if we are passed a buffer use it, otherwise try the environment */
81 if (!(gd->flags & GD_FLG_ENV_READY)) {
82 printf("WARNING: Calling __hwconfig without a buffer "
83 "and before environment is ready\n");
86 env_hwconfig = env_get("hwconfig");
90 ret = hwconfig_parse(env_hwconfig, strlen(env_hwconfig),
91 opt, ";", ':', arglen);
96 ret = hwconfig_parse(board_hwconfig, strlen(board_hwconfig),
97 opt, ";", ':', arglen);
101 return hwconfig_parse(cpu_hwconfig, strlen(cpu_hwconfig),
102 opt, ";", ':', arglen);
106 * hwconfig_f - query if a particular hwconfig option is specified
107 * @opt: a string representing an option
108 * @buf: if non-NULL use this buffer to parse, otherwise try env
110 * This call can be used to find out whether U-Boot should configure
111 * a particular hardware option.
113 * Returns non-zero value if the hardware option can be used and thus
114 * should be configured, 0 otherwise.
116 * This function also returns non-zero value if CONFIG_HWCONFIG is
119 * Returning non-zero value without CONFIG_HWCONFIG has its crucial
120 * purpose: the hwconfig() call should be a "transparent" interface,
121 * e.g. if a board doesn't need hwconfig facility, then we assume
122 * that the board file only calls things that are actually used, so
123 * hwconfig() will always return true result.
125 int hwconfig_f(const char *opt, char *buf)
127 return !!__hwconfig(opt, NULL, buf);
131 * hwconfig_arg_f - get hwconfig option's argument
132 * @opt: a string representing an option
133 * @arglen: a pointer to an allocated size_t variable
134 * @buf: if non-NULL use this buffer to parse, otherwise try env
136 * Unlike hwconfig_f() function, this function returns a pointer to the
137 * start of the hwconfig arguments, if option is not found or it has
138 * no specified arguments, the function returns NULL pointer.
140 * If CONFIG_HWCONFIG is undefined, the function returns "", and
141 * arglen is set to 0.
143 const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf)
145 return __hwconfig(opt, arglen, buf);
149 * hwconfig_arg_cmp_f - compare hwconfig option's argument
150 * @opt: a string representing an option
151 * @arg: a string for comparing an option's argument
152 * @buf: if non-NULL use this buffer to parse, otherwise try env
154 * This call is similar to hwconfig_arg_f, but instead of returning
155 * hwconfig argument and its length, it is comparing it to @arg.
157 * Returns non-zero value if @arg matches, 0 otherwise.
159 * If CONFIG_HWCONFIG is undefined, the function returns a non-zero
160 * value, i.e. the argument matches.
162 int hwconfig_arg_cmp_f(const char *opt, const char *arg, char *buf)
167 argstr = hwconfig_arg_f(opt, &arglen, buf);
168 if (!argstr || arglen != strlen(arg))
171 return !strncmp(argstr, arg, arglen);
175 * hwconfig_sub_f - query if a particular hwconfig sub-option is specified
176 * @opt: a string representing an option
177 * @subopt: a string representing a sub-option
178 * @buf: if non-NULL use this buffer to parse, otherwise try env
180 * This call is similar to hwconfig_f(), except that it takes additional
181 * argument @subopt. In this example:
182 * "dr_usb:mode=peripheral"
183 * "dr_usb" is an option, "mode" is a sub-option, and "peripheral" is its
186 int hwconfig_sub_f(const char *opt, const char *subopt, char *buf)
191 arg = __hwconfig(opt, &arglen, buf);
194 return !!hwconfig_parse(arg, arglen, subopt, ",;", '=', NULL);
198 * hwconfig_subarg_f - get hwconfig sub-option's argument
199 * @opt: a string representing an option
200 * @subopt: a string representing a sub-option
201 * @subarglen: a pointer to an allocated size_t variable
202 * @buf: if non-NULL use this buffer to parse, otherwise try env
204 * This call is similar to hwconfig_arg_f(), except that it takes an
205 * additional argument @subopt, and so works with sub-options.
207 const char *hwconfig_subarg_f(const char *opt, const char *subopt,
208 size_t *subarglen, char *buf)
213 arg = __hwconfig(opt, &arglen, buf);
216 return hwconfig_parse(arg, arglen, subopt, ",;", '=', subarglen);
220 * hwconfig_arg_cmp_f - compare hwconfig sub-option's argument
221 * @opt: a string representing an option
222 * @subopt: a string representing a sub-option
223 * @subarg: a string for comparing an sub-option's argument
224 * @buf: if non-NULL use this buffer to parse, otherwise try env
226 * This call is similar to hwconfig_arg_cmp_f, except that it takes an
227 * additional argument @subopt, and so works with sub-options.
229 int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
230 const char *subarg, char *buf)
235 argstr = hwconfig_subarg_f(opt, subopt, &arglen, buf);
236 if (!argstr || arglen != strlen(subarg))
239 return !strncmp(argstr, subarg, arglen);
248 env_set("hwconfig", "key1:subkey1=value1,subkey2=value2;key2:value3;;;;"
249 "key3;:,:=;key4", 1);
251 ret = hwconfig_arg("key1", &len);
252 printf("%zd %.*s\n", len, (int)len, ret);
254 assert(hwconfig_arg_cmp("key1", "subkey1=value1,subkey2=value2"));
255 assert(!strncmp(ret, "subkey1=value1,subkey2=value2", len));
257 ret = hwconfig_subarg("key1", "subkey1", &len);
258 printf("%zd %.*s\n", len, (int)len, ret);
260 assert(hwconfig_subarg_cmp("key1", "subkey1", "value1"));
261 assert(!strncmp(ret, "value1", len));
263 ret = hwconfig_subarg("key1", "subkey2", &len);
264 printf("%zd %.*s\n", len, (int)len, ret);
266 assert(hwconfig_subarg_cmp("key1", "subkey2", "value2"));
267 assert(!strncmp(ret, "value2", len));
269 ret = hwconfig_arg("key2", &len);
270 printf("%zd %.*s\n", len, (int)len, ret);
272 assert(hwconfig_arg_cmp("key2", "value3"));
273 assert(!strncmp(ret, "value3", len));
275 assert(hwconfig("key3"));
276 assert(hwconfig_arg("key4", &len) == NULL);
277 assert(hwconfig_arg("bogus", &len) == NULL);
279 unenv_set("hwconfig");
281 assert(hwconfig(NULL) == 0);
282 assert(hwconfig("") == 0);
283 assert(hwconfig("key3") == 0);
287 #endif /* HWCONFIG_TEST */