Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2012 |
| 4 | * Joe Hershberger, National Instruments, joe.hershberger@ni.com |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef __ENV_CALLBACK_H__ |
| 8 | #define __ENV_CALLBACK_H__ |
| 9 | |
Joe Hershberger | 2598090 | 2012-12-11 22:16:31 -0600 | [diff] [blame] | 10 | #include <env_flags.h> |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 11 | #include <linker_lists.h> |
| 12 | #include <search.h> |
| 13 | |
| 14 | #define ENV_CALLBACK_VAR ".callbacks" |
| 15 | |
| 16 | /* Board configs can define additional static callback bindings */ |
| 17 | #ifndef CONFIG_ENV_CALLBACK_LIST_STATIC |
| 18 | #define CONFIG_ENV_CALLBACK_LIST_STATIC |
| 19 | #endif |
| 20 | |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 21 | #ifdef CONFIG_SILENT_CONSOLE |
| 22 | #define SILENT_CALLBACK "silent:silent," |
| 23 | #else |
| 24 | #define SILENT_CALLBACK |
| 25 | #endif |
| 26 | |
Nikita Kiryanov | c088048 | 2013-02-24 21:28:43 +0000 | [diff] [blame] | 27 | #ifdef CONFIG_SPLASHIMAGE_GUARD |
| 28 | #define SPLASHIMAGE_CALLBACK "splashimage:splashimage," |
| 29 | #else |
| 30 | #define SPLASHIMAGE_CALLBACK |
| 31 | #endif |
| 32 | |
Joe Hershberger | bdf1fe4 | 2015-05-20 14:27:20 -0500 | [diff] [blame] | 33 | #ifdef CONFIG_REGEX |
| 34 | #define ENV_DOT_ESCAPE "\\" |
| 35 | #else |
| 36 | #define ENV_DOT_ESCAPE |
| 37 | #endif |
| 38 | |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 39 | #ifdef CONFIG_CMD_DNS |
| 40 | #define DNS_CALLBACK "dnsip:dnsip," |
| 41 | #else |
| 42 | #define DNS_CALLBACK |
| 43 | #endif |
| 44 | |
Heinrich Schuchardt | cccc05e | 2019-09-02 10:10:34 +0200 | [diff] [blame] | 45 | #ifdef CONFIG_NET |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 46 | #define NET_CALLBACKS \ |
| 47 | "bootfile:bootfile," \ |
| 48 | "ipaddr:ipaddr," \ |
| 49 | "gatewayip:gatewayip," \ |
| 50 | "netmask:netmask," \ |
| 51 | "serverip:serverip," \ |
| 52 | "nvlan:nvlan," \ |
| 53 | "vlan:vlan," \ |
Joe Hershberger | 6e0d26c | 2015-05-20 14:27:26 -0500 | [diff] [blame] | 54 | DNS_CALLBACK \ |
Joe Hershberger | f7848d9 | 2015-06-22 17:57:36 -0500 | [diff] [blame] | 55 | "eth" ETHADDR_WILDCARD "addr:ethaddr," |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 56 | #else |
| 57 | #define NET_CALLBACKS |
| 58 | #endif |
| 59 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 60 | /* |
| 61 | * This list of callback bindings is static, but may be overridden by defining |
| 62 | * a new association in the ".callbacks" environment variable. |
| 63 | */ |
Joe Hershberger | bdf1fe4 | 2015-05-20 14:27:20 -0500 | [diff] [blame] | 64 | #define ENV_CALLBACK_LIST_STATIC ENV_DOT_ESCAPE ENV_CALLBACK_VAR ":callbacks," \ |
| 65 | ENV_DOT_ESCAPE ENV_FLAGS_VAR ":flags," \ |
Joe Hershberger | 3205771 | 2012-12-11 22:16:27 -0600 | [diff] [blame] | 66 | "baudrate:baudrate," \ |
Joe Hershberger | fd30563 | 2015-05-20 14:27:23 -0500 | [diff] [blame] | 67 | NET_CALLBACKS \ |
Joe Hershberger | 1cf0a8b | 2012-12-11 22:16:28 -0600 | [diff] [blame] | 68 | "loadaddr:loadaddr," \ |
Joe Hershberger | e080d54 | 2012-12-11 22:16:30 -0600 | [diff] [blame] | 69 | SILENT_CALLBACK \ |
Nikita Kiryanov | c088048 | 2013-02-24 21:28:43 +0000 | [diff] [blame] | 70 | SPLASHIMAGE_CALLBACK \ |
Joe Hershberger | 849d5d9 | 2012-12-11 22:16:29 -0600 | [diff] [blame] | 71 | "stdin:console,stdout:console,stderr:console," \ |
Sam Protsenko | de4e4ed | 2017-09-01 15:42:03 +0300 | [diff] [blame] | 72 | "serial#:serialno," \ |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 73 | CONFIG_ENV_CALLBACK_LIST_STATIC |
| 74 | |
Simon Glass | dd2408c | 2019-08-02 09:44:18 -0600 | [diff] [blame] | 75 | void env_callback_init(struct env_entry *var_entry); |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 76 | |
Joe Hershberger | 170ab11 | 2012-12-11 22:16:24 -0600 | [diff] [blame] | 77 | #endif /* __ENV_CALLBACK_H__ */ |