aboutsummaryrefslogtreecommitdiff
path: root/drivers/fpga/altera.c
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2018-12-21 13:37:34 -0500
committerTom Rini <trini@konsulko.com>2018-12-21 13:37:34 -0500
commit5c676780e116dc79c1819d6c49a2aa53e1053e04 (patch)
treef3520ab8006d50442d48da215993c1ec4711f10a /drivers/fpga/altera.c
parentb7702158fb0ab3a1d2f81efefb47133e245c2a44 (diff)
parentbd5581716d0407272cfde624b484e530665b0a2f (diff)
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
- stratix10 updates
Diffstat (limited to 'drivers/fpga/altera.c')
-rw-r--r--drivers/fpga/altera.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/fpga/altera.c b/drivers/fpga/altera.c
index 9605554c6a..7c8f518509 100644
--- a/drivers/fpga/altera.c
+++ b/drivers/fpga/altera.c
@@ -39,6 +39,9 @@ static const struct altera_fpga {
#if defined(CONFIG_FPGA_STRATIX_V)
{ Altera_StratixV, "StratixV", stratixv_load, NULL, NULL },
#endif
+#if defined(CONFIG_FPGA_STRATIX10)
+ { Intel_FPGA_Stratix10, "Stratix10", stratix10_load, NULL, NULL },
+#endif
#if defined(CONFIG_FPGA_SOCFPGA)
{ Altera_SoCFPGA, "SoC FPGA", socfpga_load, NULL, NULL },
#endif
@@ -154,6 +157,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);