diff options
author | Tom Rini <trini@konsulko.com> | 2020-10-12 07:55:17 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2020-10-12 07:55:17 -0400 |
commit | 9885313b9add6c04cf3059958c5ee51a4f0ac930 (patch) | |
tree | 521f4068c38677a996fe4d9b61d842426af6cfb4 /include | |
parent | 47e9c70421d75336336097c1425028b40e4f0b54 (diff) | |
parent | 505dc1c6795ba0b80abf344bb6464cdc20774f44 (diff) | |
download | u-boot-9885313b9add6c04cf3059958c5ee51a4f0ac930.tar.gz |
Merge branch 'for-next' of https://github.com/lftan/u-bootWIP/12Oct2020
Diffstat (limited to 'include')
-rw-r--r-- | include/altera.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/altera.h b/include/altera.h index 22d55cfd73..946413c66e 100644 --- a/include/altera.h +++ b/include/altera.h @@ -56,10 +56,10 @@ enum altera_family { Altera_StratixII, /* StratixV Family */ Altera_StratixV, - /* Stratix10 Family */ - Intel_FPGA_Stratix10, /* SoCFPGA Family */ Altera_SoCFPGA, + /* Intel FPGA Family with SDM (Secure Device Manager) Mailbox */ + Intel_FPGA_SDM_Mailbox, /* Add new models here */ @@ -120,8 +120,9 @@ 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); +#ifdef CONFIG_FPGA_INTEL_SDM_MAILBOX +int intel_sdm_mb_load(Altera_desc *desc, const void *rbf_data, + size_t rbf_size); #endif #endif /* _ALTERA_H_ */ |