diff options
author | Tom Rini <trini@konsulko.com> | 2018-12-21 13:37:34 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2018-12-21 13:37:34 -0500 |
commit | 5c676780e116dc79c1819d6c49a2aa53e1053e04 (patch) | |
tree | f3520ab8006d50442d48da215993c1ec4711f10a /include | |
parent | b7702158fb0ab3a1d2f81efefb47133e245c2a44 (diff) | |
parent | bd5581716d0407272cfde624b484e530665b0a2f (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-socfpga
- stratix10 updates
Diffstat (limited to 'include')
-rw-r--r-- | include/altera.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/altera.h b/include/altera.h index ead5d3d810..22d55cfd73 100644 --- a/include/altera.h +++ b/include/altera.h @@ -39,6 +39,8 @@ enum altera_iface { fast_passive_parallel, /* fast passive parallel with security (FPPS) */ fast_passive_parallel_security, + /* secure device manager (SDM) mailbox */ + secure_device_manager_mailbox, /* insert all new types before this */ max_altera_iface_type, }; @@ -54,6 +56,8 @@ enum altera_family { Altera_StratixII, /* StratixV Family */ Altera_StratixV, + /* Stratix10 Family */ + Intel_FPGA_Stratix10, /* SoCFPGA Family */ Altera_SoCFPGA, @@ -116,4 +120,8 @@ int socfpga_load(Altera_desc *desc, const void *rbf_data, size_t rbf_size); int stratixv_load(Altera_desc *desc, const void *rbf_data, size_t rbf_size); #endif +#ifdef CONFIG_FPGA_STRATIX10 +int stratix10_load(Altera_desc *desc, const void *rbf_data, size_t rbf_size); +#endif + #endif /* _ALTERA_H_ */ |