]> Git Repo - J-u-boot.git/blobdiff - drivers/fpga/altera.c
Merge branch 'next'
[J-u-boot.git] / drivers / fpga / altera.c
index 9605554c6aa571a11bc65f1f9f42fd712024cfe6..10c0475d25959ed141b27a4cf169475d91a3564f 100644 (file)
@@ -13,6 +13,7 @@
 #include <common.h>
 #include <errno.h>
 #include <ACEX1K.h>
+#include <log.h>
 #include <stratixII.h>
 
 /* Define FPGA_DEBUG to 1 to get debug printf's */
@@ -42,6 +43,10 @@ static const struct altera_fpga {
 #if defined(CONFIG_FPGA_SOCFPGA)
        { Altera_SoCFPGA, "SoC FPGA", socfpga_load, NULL, NULL },
 #endif
+#if defined(CONFIG_FPGA_INTEL_SDM_MAILBOX)
+       { Intel_FPGA_SDM_Mailbox, "Intel SDM Mailbox", intel_sdm_mb_load, NULL,
+         NULL },
+#endif
 };
 
 static int altera_validate(Altera_desc *desc, const char *fn)
@@ -154,6 +159,9 @@ int altera_info(Altera_desc *desc)
        case fast_passive_parallel_security:
                printf("Fast Passive Parallel with Security (FPPS)\n");
                break;
+       case secure_device_manager_mailbox:
+               puts("Secure Device Manager (SDM) Mailbox\n");
+               break;
                /* Add new interface types here */
        default:
                printf("Unsupported interface type, %d\n", desc->iface);
This page took 0.0275570000000001 seconds and 4 git commands to generate.