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 | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 34 | /* |
| 35 | * This list of callback bindings is static, but may be overridden by defining |
| 36 | * a new association in the ".callbacks" environment variable. |
| 37 | */ |
| 38 | #define ENV_CALLBACK_LIST_STATIC ENV_CALLBACK_VAR ":callbacks," \ |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 39 | ENV_FLAGS_VAR ":flags," \ |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 40 | "baudrate:baudrate," \ |
Joe Hershberger | a9f51c9 | 2012-12-11 22:16:26 -0600 | [diff] [blame] | 41 | "bootfile:bootfile," \ |
Joe Hershberger | 1cf0a8b | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 42 | "loadaddr:loadaddr," \ |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 43 | SILENT_CALLBACK \ |
Nikita Kiryanov | c088048 | 2013-02-24 21:28:43 +0000 | [diff] [blame] | 44 | SPLASHIMAGE_CALLBACK \ |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 45 | "stdin:console,stdout:console,stderr:console," \ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 46 | CONFIG_ENV_CALLBACK_LIST_STATIC |
| 47 | |
| 48 | struct env_clbk_tbl { |
| 49 | const char *name; /* Callback name */ |
| 50 | int (*callback)(const char *name, const char *value, enum env_op op, |
| 51 | int flags); |
| 52 | }; |
| 53 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 54 | void env_callback_init(ENTRY *var_entry); |
| 55 | |
| 56 | /* |
| 57 | * Define a callback that can be associated with variables. |
| 58 | * when associated through the ".callbacks" environment variable, the callback |
| 59 | * will be executed any time the variable is inserted, overwritten, or deleted. |
| 60 | */ |
Scott Wood | f8cfcf1 | 2012-12-20 11:51:05 +0000 | [diff] [blame] | 61 | #ifdef CONFIG_SPL_BUILD |
| 62 | #define U_BOOT_ENV_CALLBACK(name, callback) \ |
Jeroen Hofstee | 3ea664c | 2014-07-10 20:38:35 +0200 | [diff] [blame] | 63 | static inline __maybe_unused void _u_boot_env_noop_##name(void) \ |
Scott Wood | f8cfcf1 | 2012-12-20 11:51:05 +0000 | [diff] [blame] | 64 | { \ |
| 65 | (void)callback; \ |
| 66 | } |
| 67 | #else |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 68 | #define U_BOOT_ENV_CALLBACK(name, callback) \ |
Albert ARIBAUD | ef123c5 | 2013-02-25 00:59:00 +0000 | [diff] [blame] | 69 | ll_entry_declare(struct env_clbk_tbl, name, env_clbk) = \ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 70 | {#name, callback} |
Scott Wood | f8cfcf1 | 2012-12-20 11:51:05 +0000 | [diff] [blame] | 71 | #endif |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 72 | |
| 73 | #endif /* __ENV_CALLBACK_H__ */ |