diff options
author | Michal Simek <michal.simek@amd.com> | 2022-09-19 14:21:10 +0200 |
---|---|---|
committer | Michal Simek <michal.simek@amd.com> | 2022-09-26 14:23:30 +0200 |
commit | f2641f066b53a2bbb933bccffd696a875fd9adf5 (patch) | |
tree | 48371cc0b5563b67014893a49342a8af1ec06fc5 /include | |
parent | ce40cbdf1f839a746996193d42abd6f3e36f07e6 (diff) |
arm64: versal-net: Add support for mini configuration
Versal NET mini configuration is designed for running memory test. Current
output is on DCC but changing serial0 alias to pl011 will move console to
serial port.
Signed-off-by: Michal Simek <michal.simek@amd.com>
Link: https://lore.kernel.org/r/aec3f41a4cc48c45b8f07dd6e423d5838dbcc9d7.1663589964.git.michal.simek@amd.com
Diffstat (limited to 'include')
-rw-r--r-- | include/configs/xilinx_versal_net_mini.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/include/configs/xilinx_versal_net_mini.h b/include/configs/xilinx_versal_net_mini.h new file mode 100644 index 0000000000..1939832a84 --- /dev/null +++ b/include/configs/xilinx_versal_net_mini.h @@ -0,0 +1,21 @@ +/* SPDX-License-Identifier: GPL-2.0 */ +/* + * Configuration for Xilinx Versal NET MINI configuration + * + * Copyright (C) 2018 - 2022, Xilinx, Inc. + * Copyright (C) 2022, Advanced Micro Devices, Inc. + * + * Michal Simek <michal.simek@amd.com> + */ + +#ifndef __CONFIG_VERSAL_NET_MINI_H +#define __CONFIG_VERSAL_NET_MINI_H + +#define CONFIG_EXTRA_ENV_SETTINGS + +#include <configs/xilinx_versal_net.h> + +/* Undef unneeded configs */ +#undef CONFIG_EXTRA_ENV_SETTINGS + +#endif /* __CONFIG_VERSAL_NET_MINI_H */ |