Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 |
| 3 | * Joe Hershberger, National Instruments, joe.hershberger@ni.com |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __ENV_CALLBACK_H__ |
| 9 | #define __ENV_CALLBACK_H__ |
| 10 | |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 11 | #include <env_flags.h> |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 12 | #include <linker_lists.h> |
| 13 | #include <search.h> |
| 14 | |
| 15 | #define ENV_CALLBACK_VAR ".callbacks" |
| 16 | |
| 17 | /* Board configs can define additional static callback bindings */ |
| 18 | #ifndef CONFIG_ENV_CALLBACK_LIST_STATIC |
| 19 | #define CONFIG_ENV_CALLBACK_LIST_STATIC |
| 20 | #endif |
| 21 | |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 22 | #ifdef CONFIG_SILENT_CONSOLE |
| 23 | #define SILENT_CALLBACK "silent:silent," |
| 24 | #else |
| 25 | #define SILENT_CALLBACK |
| 26 | #endif |
| 27 | |
Nikita Kiryanov | c088048 | 2013-02-24 21:28:43 +0000 | [diff] [blame] | 28 | #ifdef CONFIG_SPLASHIMAGE_GUARD |
| 29 | #define SPLASHIMAGE_CALLBACK "splashimage:splashimage," |
| 30 | #else |
| 31 | #define SPLASHIMAGE_CALLBACK |
| 32 | #endif |
| 33 | |
Joe Hershberger | bdf1fe4 | 2015-05-20 14:27:20 -0500 | [diff] [blame] | 34 | #ifdef CONFIG_REGEX |
| 35 | #define ENV_DOT_ESCAPE "\\" |
| 36 | #else |
| 37 | #define ENV_DOT_ESCAPE |
| 38 | #endif |
| 39 | |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 40 | #ifdef CONFIG_CMD_DNS |
| 41 | #define DNS_CALLBACK "dnsip:dnsip," |
| 42 | #else |
| 43 | #define DNS_CALLBACK |
| 44 | #endif |
| 45 | |
| 46 | #ifdef CONFIG_NET |
| 47 | #define NET_CALLBACKS \ |
| 48 | "bootfile:bootfile," \ |
| 49 | "ipaddr:ipaddr," \ |
| 50 | "gatewayip:gatewayip," \ |
| 51 | "netmask:netmask," \ |
| 52 | "serverip:serverip," \ |
| 53 | "nvlan:nvlan," \ |
| 54 | "vlan:vlan," \ |
Joe Hershberger | 6e0d26c | 2015-05-20 14:27:26 -0500 | [diff] [blame] | 55 | DNS_CALLBACK \ |
| 56 | "eth\\d?addr:ethaddr," |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 57 | #else |
| 58 | #define NET_CALLBACKS |
| 59 | #endif |
| 60 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 61 | /* |
| 62 | * This list of callback bindings is static, but may be overridden by defining |
| 63 | * a new association in the ".callbacks" environment variable. |
| 64 | */ |
Joe Hershberger | bdf1fe4 | 2015-05-20 14:27:20 -0500 | [diff] [blame] | 65 | #define ENV_CALLBACK_LIST_STATIC ENV_DOT_ESCAPE ENV_CALLBACK_VAR ":callbacks," \ |
| 66 | ENV_DOT_ESCAPE ENV_FLAGS_VAR ":flags," \ |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 67 | "baudrate:baudrate," \ |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 68 | NET_CALLBACKS \ |
Joe Hershberger | 1cf0a8b | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 69 | "loadaddr:loadaddr," \ |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 70 | SILENT_CALLBACK \ |
Nikita Kiryanov | c088048 | 2013-02-24 21:28:43 +0000 | [diff] [blame] | 71 | SPLASHIMAGE_CALLBACK \ |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 72 | "stdin:console,stdout:console,stderr:console," \ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 73 | CONFIG_ENV_CALLBACK_LIST_STATIC |
| 74 | |
| 75 | struct env_clbk_tbl { |
| 76 | const char *name; /* Callback name */ |
| 77 | int (*callback)(const char *name, const char *value, enum env_op op, |
| 78 | int flags); |
| 79 | }; |
| 80 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 81 | void env_callback_init(ENTRY *var_entry); |
| 82 | |
| 83 | /* |
| 84 | * Define a callback that can be associated with variables. |
| 85 | * when associated through the ".callbacks" environment variable, the callback |
| 86 | * will be executed any time the variable is inserted, overwritten, or deleted. |
| 87 | */ |
Scott Wood | f8cfcf1 | 2012-12-20 11:51:05 +0000 | [diff] [blame] | 88 | #ifdef CONFIG_SPL_BUILD |
| 89 | #define U_BOOT_ENV_CALLBACK(name, callback) \ |
Jeroen Hofstee | 3ea664c | 2014-07-10 20:38:35 +0200 | [diff] [blame] | 90 | static inline __maybe_unused void _u_boot_env_noop_##name(void) \ |
Scott Wood | f8cfcf1 | 2012-12-20 11:51:05 +0000 | [diff] [blame] | 91 | { \ |
| 92 | (void)callback; \ |
| 93 | } |
| 94 | #else |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 95 | #define U_BOOT_ENV_CALLBACK(name, callback) \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 96 | ll_entry_declare(struct env_clbk_tbl, name, env_clbk) = \ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 97 | {#name, callback} |
Scott Wood | f8cfcf1 | 2012-12-20 11:51:05 +0000 | [diff] [blame] | 98 | #endif |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 99 | |
| 100 | #endif /* __ENV_CALLBACK_H__ */ |