blob: daf3eea5f96852bd198be5b4712146cf0916305e [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Anton Vorontsov93f9dcf2009-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 Galadd50af22011-01-09 11:37:00 -06006 * Copyright 2011 Freescale Semiconductor, Inc.
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +04007 *
8 * Author: Anton Vorontsov <avorontsov@ru.mvista.com>
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +04009 */
10
Anton Vorontsov3bf74a42010-06-18 15:08:27 +040011#ifndef HWCONFIG_TEST
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040012#include <config.h>
13#include <common.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060014#include <env.h>
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040015#include <exports.h>
16#include <hwconfig.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060017#include <log.h>
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040018#include <linux/types.h>
19#include <linux/string.h>
Anton Vorontsov3bf74a42010-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 Vorontsov93f9dcf2009-06-10 00:25:27 +040027
Kumar Galac4b115f2010-10-22 03:18:13 -050028DECLARE_GLOBAL_DATA_PTR;
29
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040030static const char *hwconfig_parse(const char *opts, size_t maxlen,
Anton Vorontsov81f8d3b2010-06-18 15:08:12 +040031 const char *opt, char *stopchs, char eqch,
Anton Vorontsov93f9dcf2009-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 Vorontsov81f8d3b2010-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 Vorontsov93f9dcf2009-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 Vorontsov81f8d3b2010-06-18 15:08:12 +040056 arg_end = strpbrk(str, stopchs);
Anton Vorontsov93f9dcf2009-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 Galab1945772010-11-30 15:01:28 -060070const char cpu_hwconfig[] __attribute__((weak)) = "";
71const char board_hwconfig[] __attribute__((weak)) = "";
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040072
Kumar Galadd50af22011-01-09 11:37:00 -060073static const char *__hwconfig(const char *opt, size_t *arglen,
74 const char *env_hwconfig)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040075{
Kumar Galadd50af22011-01-09 11:37:00 -060076 const char *ret;
Kumar Galac4b115f2010-10-22 03:18:13 -050077
Kumar Galadd50af22011-01-09 11:37:00 -060078 /* 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 "
Wolfgang Denkd1a24f02011-02-02 22:36:10 +010082 "and before environment is ready\n");
83 return NULL;
Kumar Galadd50af22011-01-09 11:37:00 -060084 }
Simon Glass00caae62017-08-03 12:22:12 -060085 env_hwconfig = env_get("hwconfig");
Kumar Galac4b115f2010-10-22 03:18:13 -050086 }
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040087
Kumar Galabb141072010-11-30 15:58:27 -060088 if (env_hwconfig) {
89 ret = hwconfig_parse(env_hwconfig, strlen(env_hwconfig),
Anton Vorontsov81f8d3b2010-06-18 15:08:12 +040090 opt, ";", ':', arglen);
Kumar Galabb141072010-11-30 15:58:27 -060091 if (ret)
92 return ret;
93 }
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040094
Kumar Galabb141072010-11-30 15:58:27 -060095 ret = hwconfig_parse(board_hwconfig, strlen(board_hwconfig),
Kumar Galab1945772010-11-30 15:01:28 -060096 opt, ";", ':', arglen);
Kumar Galabb141072010-11-30 15:58:27 -060097 if (ret)
98 return ret;
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +040099
Kumar Galab1945772010-11-30 15:01:28 -0600100 return hwconfig_parse(cpu_hwconfig, strlen(cpu_hwconfig),
101 opt, ";", ':', arglen);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400102}
103
104/*
Kumar Galadd50af22011-01-09 11:37:00 -0600105 * hwconfig_f - query if a particular hwconfig option is specified
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400106 * @opt: a string representing an option
Kumar Galadd50af22011-01-09 11:37:00 -0600107 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400108 *
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 */
Kumar Galadd50af22011-01-09 11:37:00 -0600124int hwconfig_f(const char *opt, char *buf)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400125{
Kumar Galadd50af22011-01-09 11:37:00 -0600126 return !!__hwconfig(opt, NULL, buf);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400127}
128
129/*
Kumar Galadd50af22011-01-09 11:37:00 -0600130 * hwconfig_arg_f - get hwconfig option's argument
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400131 * @opt: a string representing an option
132 * @arglen: a pointer to an allocated size_t variable
Kumar Galadd50af22011-01-09 11:37:00 -0600133 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400134 *
Kumar Galadd50af22011-01-09 11:37:00 -0600135 * Unlike hwconfig_f() function, this function returns a pointer to the
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400136 * 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 */
Kumar Galadd50af22011-01-09 11:37:00 -0600142const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400143{
Kumar Galadd50af22011-01-09 11:37:00 -0600144 return __hwconfig(opt, arglen, buf);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400145}
146
147/*
Kumar Galadd50af22011-01-09 11:37:00 -0600148 * hwconfig_arg_cmp_f - compare hwconfig option's argument
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400149 * @opt: a string representing an option
150 * @arg: a string for comparing an option's argument
Kumar Galadd50af22011-01-09 11:37:00 -0600151 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400152 *
Kumar Galadd50af22011-01-09 11:37:00 -0600153 * This call is similar to hwconfig_arg_f, but instead of returning
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400154 * 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 */
Kumar Galadd50af22011-01-09 11:37:00 -0600161int hwconfig_arg_cmp_f(const char *opt, const char *arg, char *buf)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400162{
163 const char *argstr;
164 size_t arglen;
165
Kumar Galadd50af22011-01-09 11:37:00 -0600166 argstr = hwconfig_arg_f(opt, &arglen, buf);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400167 if (!argstr || arglen != strlen(arg))
168 return 0;
169
170 return !strncmp(argstr, arg, arglen);
171}
172
173/*
Kumar Galadd50af22011-01-09 11:37:00 -0600174 * hwconfig_sub_f - query if a particular hwconfig sub-option is specified
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400175 * @opt: a string representing an option
176 * @subopt: a string representing a sub-option
Kumar Galadd50af22011-01-09 11:37:00 -0600177 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400178 *
Kumar Galadd50af22011-01-09 11:37:00 -0600179 * This call is similar to hwconfig_f(), except that it takes additional
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400180 * 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 */
Kumar Galadd50af22011-01-09 11:37:00 -0600185int hwconfig_sub_f(const char *opt, const char *subopt, char *buf)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400186{
187 size_t arglen;
188 const char *arg;
189
Kumar Galadd50af22011-01-09 11:37:00 -0600190 arg = __hwconfig(opt, &arglen, buf);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400191 if (!arg)
192 return 0;
Anton Vorontsov81f8d3b2010-06-18 15:08:12 +0400193 return !!hwconfig_parse(arg, arglen, subopt, ",;", '=', NULL);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400194}
195
196/*
Kumar Galadd50af22011-01-09 11:37:00 -0600197 * hwconfig_subarg_f - get hwconfig sub-option's argument
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400198 * @opt: a string representing an option
199 * @subopt: a string representing a sub-option
200 * @subarglen: a pointer to an allocated size_t variable
Kumar Galadd50af22011-01-09 11:37:00 -0600201 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400202 *
Kumar Galadd50af22011-01-09 11:37:00 -0600203 * This call is similar to hwconfig_arg_f(), except that it takes an
204 * additional argument @subopt, and so works with sub-options.
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400205 */
Kumar Galadd50af22011-01-09 11:37:00 -0600206const char *hwconfig_subarg_f(const char *opt, const char *subopt,
207 size_t *subarglen, char *buf)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400208{
209 size_t arglen;
210 const char *arg;
211
Kumar Galadd50af22011-01-09 11:37:00 -0600212 arg = __hwconfig(opt, &arglen, buf);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400213 if (!arg)
214 return NULL;
Anton Vorontsov81f8d3b2010-06-18 15:08:12 +0400215 return hwconfig_parse(arg, arglen, subopt, ",;", '=', subarglen);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400216}
217
218/*
Kumar Galadd50af22011-01-09 11:37:00 -0600219 * hwconfig_arg_cmp_f - compare hwconfig sub-option's argument
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400220 * @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
Kumar Galadd50af22011-01-09 11:37:00 -0600223 * @buf: if non-NULL use this buffer to parse, otherwise try env
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400224 *
Kumar Galadd50af22011-01-09 11:37:00 -0600225 * This call is similar to hwconfig_arg_cmp_f, except that it takes an
226 * additional argument @subopt, and so works with sub-options.
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400227 */
Kumar Galadd50af22011-01-09 11:37:00 -0600228int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
229 const char *subarg, char *buf)
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400230{
231 const char *argstr;
232 size_t arglen;
233
Kumar Galadd50af22011-01-09 11:37:00 -0600234 argstr = hwconfig_subarg_f(opt, subopt, &arglen, buf);
Anton Vorontsov93f9dcf2009-06-10 00:25:27 +0400235 if (!argstr || arglen != strlen(subarg))
236 return 0;
237
238 return !strncmp(argstr, subarg, arglen);
239}
Anton Vorontsov3bf74a42010-06-18 15:08:27 +0400240
241#ifdef HWCONFIG_TEST
242int main()
243{
244 const char *ret;
245 size_t len;
246
Simon Glass382bee52017-08-03 12:22:09 -0600247 env_set("hwconfig", "key1:subkey1=value1,subkey2=value2;key2:value3;;;;"
Anton Vorontsov3bf74a42010-06-18 15:08:27 +0400248 "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
Simon Glass382bee52017-08-03 12:22:09 -0600278 unenv_set("hwconfig");
Anton Vorontsov3bf74a42010-06-18 15:08:27 +0400279
280 assert(hwconfig(NULL) == 0);
281 assert(hwconfig("") == 0);
282 assert(hwconfig("key3") == 0);
283
284 return 0;
285}
286#endif /* HWCONFIG_TEST */