2020-04-10 18:26:29 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2020 Amarula Solutions(India)
|
|
|
|
*
|
|
|
|
* SF distro configurations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __DISTRO_SF_CONFIG_H
|
|
|
|
#define __DISTRO_SF_CONFIG_H
|
|
|
|
|
2023-02-05 22:36:41 +00:00
|
|
|
#if IS_ENABLED(CONFIG_CMD_SF)
|
2020-04-10 18:26:29 +00:00
|
|
|
#define BOOTENV_SHARED_SF(devtypel) \
|
2021-09-27 15:42:39 +00:00
|
|
|
#devtypel "_boot=" \
|
2020-04-10 18:26:29 +00:00
|
|
|
"if " #devtypel " probe ${busnum}; then " \
|
2021-09-27 15:42:39 +00:00
|
|
|
"devtype=" #devtypel "; " \
|
|
|
|
"run scan_sf_for_scripts; " \
|
2020-04-10 18:26:29 +00:00
|
|
|
"fi\0"
|
2021-09-27 15:42:39 +00:00
|
|
|
#define BOOTENV_DEV_SF(devtypeu, devtypel, instance) \
|
|
|
|
"bootcmd_" #devtypel #instance "=" \
|
|
|
|
"busnum=" #instance "; " \
|
2020-04-10 18:26:29 +00:00
|
|
|
"run " #devtypel "_boot\0"
|
2021-09-27 15:42:39 +00:00
|
|
|
#define BOOTENV_DEV_NAME_SF(devtypeu, devtypel, instance) \
|
2020-04-10 18:26:29 +00:00
|
|
|
#devtypel #instance " "
|
|
|
|
#else
|
|
|
|
#define BOOTENV_SHARED_SF(devtypel)
|
|
|
|
#define BOOTENV_DEV_SF \
|
|
|
|
BOOT_TARGET_DEVICES_references_SF_without_CONFIG_CMD_SF
|
|
|
|
#define BOOTENV_DEV_NAME_SF \
|
|
|
|
BOOT_TARGET_DEVICES_references_SF_without_CONFIG_CMD_SF
|
|
|
|
|
|
|
|
#endif /* CONFIG_CMD_SF */
|
|
|
|
|
|
|
|
#define BOOTENV_SF \
|
|
|
|
BOOTENV_SHARED_SF(sf) \
|
|
|
|
"scan_sf_for_scripts=" \
|
|
|
|
"${devtype} read ${scriptaddr} " \
|
|
|
|
"${script_offset_f} ${script_size_f}; " \
|
|
|
|
"source ${scriptaddr}; " \
|
|
|
|
"echo SCRIPT FAILED: continuing...\0"
|
|
|
|
|
|
|
|
#endif /* __DISTRO_SF_CONFIG_H */
|