blob: 25a8cd5bf5da848e7ce258ebcb2738ff865ee03f [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Anton Vorontsova73904e2009-06-10 00:25:27 +04002/*
3 * An inteface for configuring a hardware via u-boot environment.
4 *
5 * Copyright (c) 2009 MontaVista Software, Inc.
Kumar Gala72301602011-01-09 11:37:00 -06006 * Copyright 2011 Freescale Semiconductor, Inc.
Anton Vorontsova73904e2009-06-10 00:25:27 +04007 *
8 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsova73904e2009-06-10 00:25:27 +04009 */
10
Anton Vorontsov7b963732010-06-18 15:08:27 +040011#ifndef HWCONFIG_TEST
Anton Vorontsova73904e2009-06-10 00:25:27 +040012#include <config.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060013#include <env.h>
Anton Vorontsova73904e2009-06-10 00:25:27 +040014#include <exports.h>
15#include <hwconfig.h>
Simon Glass0f2af882020-05-10 11:40:05 -060016#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060017#include <asm/global_data.h>
Anton Vorontsova73904e2009-06-10 00:25:27 +040018#include <linux/types.h>
19#include <linux/string.h>
Anton Vorontsov7b963732010-06-18 15:08:27 +040020#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 */
Anton Vorontsova73904e2009-06-10 00:25:27 +040027
Kumar Galae9168262010-10-22 03:18:13 -050028DECLARE_GLOBAL_DATA_PTR;
29
Anton Vorontsova73904e2009-06-10 00:25:27 +040030static const char *hwconfig_parse(const char *opts, size_t maxlen,
Anton Vorontsovfe98ce92010-06-18 15:08:12 +040031 const char *opt, char *stopchs, char eqch,
Anton Vorontsova73904e2009-06-10 00:25:27 +040032 size_t *arglen)
33{
34 size_t optlen = strlen(opt);
35 char *str;
36 const char *start = opts;
37 const char *end;
38
39next:
40 str = strstr(opts, opt);
41 end = str + optlen;
42 if (end - start > maxlen)
43 return NULL;
44
Anton Vorontsovfe98ce92010-06-18 15:08:12 +040045 if (str && (str == opts || strpbrk(str - 1, stopchs) == str - 1) &&
46 (strpbrk(end, stopchs) == end || *end == eqch ||
47 *end == '\0')) {
Anton Vorontsova73904e2009-06-10 00:25:27 +040048 const char *arg_end;
49
50 if (!arglen)
51 return str;
52
53 if (*end != eqch)
54 return NULL;
55
Anton Vorontsovfe98ce92010-06-18 15:08:12 +040056 arg_end = strpbrk(str, stopchs);
Anton Vorontsova73904e2009-06-10 00:25:27 +040057 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
Kumar Gala6c971692010-11-30 15:01:28 -060070const char cpu_hwconfig[] __attribute__((weak)) = "";
71const char board_hwconfig[] __attribute__((weak)) = "";
Anton Vorontsova73904e2009-06-10 00:25:27 +040072
Kumar Gala72301602011-01-09 11:37:00 -060073static const char *__hwconfig(const char *opt, size_t *arglen,
74 const char *env_hwconfig)
Anton Vorontsova73904e2009-06-10 00:25:27 +040075{
Kumar Gala72301602011-01-09 11:37:00 -060076 const char *ret;
Kumar Galae9168262010-10-22 03:18:13 -050077
Kumar Gala72301602011-01-09 11:37:00 -060078 /* if we are passed a buffer use it, otherwise try the environment */
79 if (!env_hwconfig) {
Simon Glassee8e6a62024-08-21 10:19:25 -060080#if CONFIG_IS_ENABLED(ENV_SUPPORT)
81 if (!(gd->flags & GD_FLG_ENV_READY) &&
82 gd->env_valid != ENV_VALID)
83#else
84 if (true)
85#endif
86 {
Kumar Gala72301602011-01-09 11:37:00 -060087 printf("WARNING: Calling __hwconfig without a buffer "
Wolfgang Denka4de8352011-02-02 22:36:10 +010088 "and before environment is ready\n");
89 return NULL;
Kumar Gala72301602011-01-09 11:37:00 -060090 }
Pali Rohár06c9e982022-04-03 00:24:25 +020091#if CONFIG_IS_ENABLED(ENV_SUPPORT)
Simon Glass64b723f2017-08-03 12:22:12 -060092 env_hwconfig = env_get("hwconfig");
Pali Rohár06c9e982022-04-03 00:24:25 +020093#endif
Kumar Galae9168262010-10-22 03:18:13 -050094 }
Anton Vorontsova73904e2009-06-10 00:25:27 +040095
Kumar Galaadf5c242010-11-30 15:58:27 -060096 if (env_hwconfig) {
97 ret = hwconfig_parse(env_hwconfig, strlen(env_hwconfig),
Anton Vorontsovfe98ce92010-06-18 15:08:12 +040098 opt, ";", ':', arglen);
Kumar Galaadf5c242010-11-30 15:58:27 -060099 if (ret)
100 return ret;
101 }
Anton Vorontsova73904e2009-06-10 00:25:27 +0400102
Kumar Galaadf5c242010-11-30 15:58:27 -0600103 ret = hwconfig_parse(board_hwconfig, strlen(board_hwconfig),
Kumar Gala6c971692010-11-30 15:01:28 -0600104 opt, ";", ':', arglen);
Kumar Galaadf5c242010-11-30 15:58:27 -0600105 if (ret)
106 return ret;
Anton Vorontsova73904e2009-06-10 00:25:27 +0400107
Kumar Gala6c971692010-11-30 15:01:28 -0600108 return hwconfig_parse(cpu_hwconfig, strlen(cpu_hwconfig),
109 opt, ";", ':', arglen);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400110}
111
112/*
Kumar Gala72301602011-01-09 11:37:00 -0600113 * hwconfig_f - query if a particular hwconfig option is specified
Anton Vorontsova73904e2009-06-10 00:25:27 +0400114 * @opt: a string representing an option
Kumar Gala72301602011-01-09 11:37:00 -0600115 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsova73904e2009-06-10 00:25:27 +0400116 *
117 * This call can be used to find out whether U-Boot should configure
118 * a particular hardware option.
119 *
120 * Returns non-zero value if the hardware option can be used and thus
121 * should be configured, 0 otherwise.
122 *
123 * This function also returns non-zero value if CONFIG_HWCONFIG is
124 * undefined.
125 *
126 * Returning non-zero value without CONFIG_HWCONFIG has its crucial
127 * purpose: the hwconfig() call should be a "transparent" interface,
128 * e.g. if a board doesn't need hwconfig facility, then we assume
129 * that the board file only calls things that are actually used, so
130 * hwconfig() will always return true result.
131 */
Kumar Gala72301602011-01-09 11:37:00 -0600132int hwconfig_f(const char *opt, char *buf)
Anton Vorontsova73904e2009-06-10 00:25:27 +0400133{
Kumar Gala72301602011-01-09 11:37:00 -0600134 return !!__hwconfig(opt, NULL, buf);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400135}
136
137/*
Kumar Gala72301602011-01-09 11:37:00 -0600138 * hwconfig_arg_f - get hwconfig option's argument
Anton Vorontsova73904e2009-06-10 00:25:27 +0400139 * @opt: a string representing an option
140 * @arglen: a pointer to an allocated size_t variable
Kumar Gala72301602011-01-09 11:37:00 -0600141 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsova73904e2009-06-10 00:25:27 +0400142 *
Kumar Gala72301602011-01-09 11:37:00 -0600143 * Unlike hwconfig_f() function, this function returns a pointer to the
Anton Vorontsova73904e2009-06-10 00:25:27 +0400144 * start of the hwconfig arguments, if option is not found or it has
145 * no specified arguments, the function returns NULL pointer.
146 *
147 * If CONFIG_HWCONFIG is undefined, the function returns "", and
148 * arglen is set to 0.
149 */
Kumar Gala72301602011-01-09 11:37:00 -0600150const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf)
Anton Vorontsova73904e2009-06-10 00:25:27 +0400151{
Kumar Gala72301602011-01-09 11:37:00 -0600152 return __hwconfig(opt, arglen, buf);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400153}
154
155/*
Kumar Gala72301602011-01-09 11:37:00 -0600156 * hwconfig_arg_cmp_f - compare hwconfig option's argument
Anton Vorontsova73904e2009-06-10 00:25:27 +0400157 * @opt: a string representing an option
158 * @arg: a string for comparing an option's argument
Kumar Gala72301602011-01-09 11:37:00 -0600159 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsova73904e2009-06-10 00:25:27 +0400160 *
Kumar Gala72301602011-01-09 11:37:00 -0600161 * This call is similar to hwconfig_arg_f, but instead of returning
Anton Vorontsova73904e2009-06-10 00:25:27 +0400162 * hwconfig argument and its length, it is comparing it to @arg.
163 *
164 * Returns non-zero value if @arg matches, 0 otherwise.
165 *
166 * If CONFIG_HWCONFIG is undefined, the function returns a non-zero
167 * value, i.e. the argument matches.
168 */
Kumar Gala72301602011-01-09 11:37:00 -0600169int hwconfig_arg_cmp_f(const char *opt, const char *arg, char *buf)
Anton Vorontsova73904e2009-06-10 00:25:27 +0400170{
171 const char *argstr;
172 size_t arglen;
173
Kumar Gala72301602011-01-09 11:37:00 -0600174 argstr = hwconfig_arg_f(opt, &arglen, buf);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400175 if (!argstr || arglen != strlen(arg))
176 return 0;
177
178 return !strncmp(argstr, arg, arglen);
179}
180
181/*
Kumar Gala72301602011-01-09 11:37:00 -0600182 * hwconfig_sub_f - query if a particular hwconfig sub-option is specified
Anton Vorontsova73904e2009-06-10 00:25:27 +0400183 * @opt: a string representing an option
184 * @subopt: a string representing a sub-option
Kumar Gala72301602011-01-09 11:37:00 -0600185 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsova73904e2009-06-10 00:25:27 +0400186 *
Kumar Gala72301602011-01-09 11:37:00 -0600187 * This call is similar to hwconfig_f(), except that it takes additional
Anton Vorontsova73904e2009-06-10 00:25:27 +0400188 * argument @subopt. In this example:
Wolfgang Denk62fb2b42021-09-27 17:42:39 +0200189 * "dr_usb:mode=peripheral"
Anton Vorontsova73904e2009-06-10 00:25:27 +0400190 * "dr_usb" is an option, "mode" is a sub-option, and "peripheral" is its
191 * argument.
192 */
Kumar Gala72301602011-01-09 11:37:00 -0600193int hwconfig_sub_f(const char *opt, const char *subopt, char *buf)
Anton Vorontsova73904e2009-06-10 00:25:27 +0400194{
195 size_t arglen;
196 const char *arg;
197
Kumar Gala72301602011-01-09 11:37:00 -0600198 arg = __hwconfig(opt, &arglen, buf);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400199 if (!arg)
200 return 0;
Anton Vorontsovfe98ce92010-06-18 15:08:12 +0400201 return !!hwconfig_parse(arg, arglen, subopt, ",;", '=', NULL);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400202}
203
204/*
Kumar Gala72301602011-01-09 11:37:00 -0600205 * hwconfig_subarg_f - get hwconfig sub-option's argument
Anton Vorontsova73904e2009-06-10 00:25:27 +0400206 * @opt: a string representing an option
207 * @subopt: a string representing a sub-option
208 * @subarglen: a pointer to an allocated size_t variable
Kumar Gala72301602011-01-09 11:37:00 -0600209 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsova73904e2009-06-10 00:25:27 +0400210 *
Kumar Gala72301602011-01-09 11:37:00 -0600211 * This call is similar to hwconfig_arg_f(), except that it takes an
212 * additional argument @subopt, and so works with sub-options.
Anton Vorontsova73904e2009-06-10 00:25:27 +0400213 */
Kumar Gala72301602011-01-09 11:37:00 -0600214const char *hwconfig_subarg_f(const char *opt, const char *subopt,
215 size_t *subarglen, char *buf)
Anton Vorontsova73904e2009-06-10 00:25:27 +0400216{
217 size_t arglen;
218 const char *arg;
219
Kumar Gala72301602011-01-09 11:37:00 -0600220 arg = __hwconfig(opt, &arglen, buf);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400221 if (!arg)
222 return NULL;
Anton Vorontsovfe98ce92010-06-18 15:08:12 +0400223 return hwconfig_parse(arg, arglen, subopt, ",;", '=', subarglen);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400224}
225
226/*
Kumar Gala72301602011-01-09 11:37:00 -0600227 * hwconfig_arg_cmp_f - compare hwconfig sub-option's argument
Anton Vorontsova73904e2009-06-10 00:25:27 +0400228 * @opt: a string representing an option
229 * @subopt: a string representing a sub-option
230 * @subarg: a string for comparing an sub-option's argument
Kumar Gala72301602011-01-09 11:37:00 -0600231 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsova73904e2009-06-10 00:25:27 +0400232 *
Kumar Gala72301602011-01-09 11:37:00 -0600233 * This call is similar to hwconfig_arg_cmp_f, except that it takes an
234 * additional argument @subopt, and so works with sub-options.
Anton Vorontsova73904e2009-06-10 00:25:27 +0400235 */
Kumar Gala72301602011-01-09 11:37:00 -0600236int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
237 const char *subarg, char *buf)
Anton Vorontsova73904e2009-06-10 00:25:27 +0400238{
239 const char *argstr;
240 size_t arglen;
241
Kumar Gala72301602011-01-09 11:37:00 -0600242 argstr = hwconfig_subarg_f(opt, subopt, &arglen, buf);
Anton Vorontsova73904e2009-06-10 00:25:27 +0400243 if (!argstr || arglen != strlen(subarg))
244 return 0;
245
246 return !strncmp(argstr, subarg, arglen);
247}
Anton Vorontsov7b963732010-06-18 15:08:27 +0400248
249#ifdef HWCONFIG_TEST
250int main()
251{
252 const char *ret;
253 size_t len;
254
Simon Glass6a38e412017-08-03 12:22:09 -0600255 env_set("hwconfig", "key1:subkey1=value1,subkey2=value2;key2:value3;;;;"
Anton Vorontsov7b963732010-06-18 15:08:27 +0400256 "key3;:,:=;key4", 1);
257
258 ret = hwconfig_arg("key1", &len);
259 printf("%zd %.*s\n", len, (int)len, ret);
260 assert(len == 29);
261 assert(hwconfig_arg_cmp("key1", "subkey1=value1,subkey2=value2"));
262 assert(!strncmp(ret, "subkey1=value1,subkey2=value2", len));
263
264 ret = hwconfig_subarg("key1", "subkey1", &len);
265 printf("%zd %.*s\n", len, (int)len, ret);
266 assert(len == 6);
267 assert(hwconfig_subarg_cmp("key1", "subkey1", "value1"));
268 assert(!strncmp(ret, "value1", len));
269
270 ret = hwconfig_subarg("key1", "subkey2", &len);
271 printf("%zd %.*s\n", len, (int)len, ret);
272 assert(len == 6);
273 assert(hwconfig_subarg_cmp("key1", "subkey2", "value2"));
274 assert(!strncmp(ret, "value2", len));
275
276 ret = hwconfig_arg("key2", &len);
277 printf("%zd %.*s\n", len, (int)len, ret);
278 assert(len == 6);
279 assert(hwconfig_arg_cmp("key2", "value3"));
280 assert(!strncmp(ret, "value3", len));
281
282 assert(hwconfig("key3"));
283 assert(hwconfig_arg("key4", &len) == NULL);
284 assert(hwconfig_arg("bogus", &len) == NULL);
285
Simon Glass6a38e412017-08-03 12:22:09 -0600286 unenv_set("hwconfig");
Anton Vorontsov7b963732010-06-18 15:08:27 +0400287
288 assert(hwconfig(NULL) == 0);
289 assert(hwconfig("") == 0);
290 assert(hwconfig("key3") == 0);
291
292 return 0;
293}
294#endif /* HWCONFIG_TEST */