fpga: xilinx exclusive commands
authorIbai Erkiaga <ibai.erkiaga-elorza@amd.com>
Tue, 21 Jan 2025 13:01:33 +0000 (13:01 +0000)
committerMichal Simek <michal.simek@amd.com>
Wed, 5 Feb 2025 15:22:55 +0000 (16:22 +0100)
Ensure all Xilinx exclusive fpga commands have a KConfig symbol and
dependency to FPGA_XILINX listed. Remove (Xilinx only) text from the
help command.

Signed-off-by: Ibai Erkiaga <ibai.erkiaga-elorza@amd.com>
Link: https://lore.kernel.org/r/20250121130138.1999916-5-ibai.erkiaga-elorza@amd.com
Signed-off-by: Michal Simek <michal.simek@amd.com>
cmd/Kconfig
cmd/fpga.c

index 81d2b9b..d59a000 100644 (file)
@@ -1186,15 +1186,15 @@ config CMD_FPGA_LOADP
          a partial bitstream.
 
 config CMD_FPGA_LOADBP
-       bool "fpga loadbp - load partial bitstream (Xilinx only)"
-       depends on CMD_FPGA
+       bool "fpga loadbp - load partial bitstream"
+       depends on CMD_FPGA && FPGA_XILINX
        help
          Supports loading an FPGA device from a bitstream buffer containing
          a partial bitstream.
 
 config CMD_FPGA_LOADFS
-       bool "fpga loadfs - load bitstream from FAT filesystem (Xilinx only)"
-       depends on CMD_FPGA
+       bool "fpga loadfs - load bitstream from FAT filesystem"
+       depends on CMD_FPGA && FPGA_XILINX
        help
          Supports loading an FPGA device from a FAT filesystem.
 
@@ -1206,7 +1206,7 @@ config CMD_FPGA_LOADMK
 
 config CMD_FPGA_LOAD_SECURE
        bool "fpga loads - loads secure bitstreams"
-       depends on CMD_FPGA
+       depends on CMD_FPGA && FPGA_XILINX
        select FPGA_LOAD_SECURE
        help
          Enables the fpga loads command which is used to load secure
index 13aabc9..75d2f82 100644 (file)
@@ -420,11 +420,11 @@ U_BOOT_CMD(fpga, 6, 1, do_fpga_wrapper,
 #endif
 #if defined(CONFIG_CMD_FPGA_LOADBP)
         "fpga loadbp <dev> <address> <size> Load device from bitstream buffer\n"
-        "             with partial bitstream (Xilinx only)\n"
+        "             with partial bitstream\n"
 #endif
 #if defined(CONFIG_CMD_FPGA_LOADFS)
         "fpga loadfs <dev> <address> <size> <blocksize> <interface> [<dev[:part]>] <filename>\n"
-        "            Load device from filesystem (FAT by default) (Xilinx only)\n"
+        "            Load device from filesystem (FAT by default)\n"
 #endif
 #if defined(CONFIG_CMD_FPGA_LOADMK)
         "fpga loadmk <dev> <address>        Load device generated with mkimage\n"
@@ -436,7 +436,7 @@ U_BOOT_CMD(fpga, 6, 1, do_fpga_wrapper,
 #if defined(CONFIG_CMD_FPGA_LOAD_SECURE)
         "fpga loads  <dev> <address> <size> <authflag> <encflag> [Userkey address]\n"
         "            Load device from memory buffer with secure bistream\n"
-        "            (authenticated/encrypted/both)(Xilinx only)\n"
+        "            (authenticated/encrypted/both)\n"
         "            -authflag: 0 for OCM, 1 for DDR, 2 for no authentication\n"
         "            (specifies where to perform authentication)\n"
         "            -encflag: 0 for device key, 1 for user key, 2 for no encryption\n"