mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
6d87b1572f
There are missing Kconfig dependencies in the code which is using
firmware interface.
The commit 71efd45a5f
("arm64: zynqmp: Change firmware dependency")
add option to also disable ZYNQMP_FIRMWARE. But not all Kconfig
dependencies were properly described and also sdhci and gem drivers
didn't protect the code properly.
So, add the missing ZYNQMP_FIRMWARE dependencies.
Signed-off-by: Algapally Santosh Sagar <santoshsagar.algapally@amd.com>
Signed-off-by: Ashok Reddy Soma <ashok.reddy.soma@amd.com>
Link: https://lore.kernel.org/r/20230201095553.11219-1-ashok.reddy.soma@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
19 lines
517 B
Text
19 lines
517 B
Text
# Copyright (c) 2018, Xilinx, Inc.
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
if ARCH_ZYNQMP
|
|
|
|
config CMD_ZYNQMP
|
|
bool "Enable ZynqMP specific commands"
|
|
depends on ZYNQMP_FIRMWARE
|
|
default y
|
|
help
|
|
Enable ZynqMP specific commands like "zynqmp secure"
|
|
which is used for zynqmp secure image verification.
|
|
The secure image is a xilinx specific BOOT.BIN with
|
|
either authentication or encryption or both encryption
|
|
and authentication feature enabled while generating
|
|
BOOT.BIN using Xilinx bootgen tool.
|
|
|
|
endif
|