mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-21 11:13:30 +00:00
sfxge: add missing common code NVRAM types and map from MCDI
Sponsored by: Solarflare Communications, Inc. Approved by: gnn (mentor)
This commit is contained in:
parent
d880a0b3c8
commit
fd7a9912f6
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=279173
@ -1024,6 +1024,10 @@ typedef enum efx_nvram_type_e {
|
||||
EFX_NVRAM_MC_GOLDEN,
|
||||
EFX_NVRAM_PHY,
|
||||
EFX_NVRAM_NULLPHY,
|
||||
EFX_NVRAM_FPGA,
|
||||
EFX_NVRAM_FCFW,
|
||||
EFX_NVRAM_CPLD,
|
||||
EFX_NVRAM_FPGA_BACKUP,
|
||||
EFX_NVRAM_NTYPES,
|
||||
} efx_nvram_type_t;
|
||||
|
||||
|
@ -330,6 +330,14 @@ static siena_parttbl_entry_t siena_parttbl[] = {
|
||||
{MC_CMD_NVRAM_TYPE_EXP_ROM_CFG_PORT1, 2, EFX_NVRAM_BOOTROM_CFG},
|
||||
{MC_CMD_NVRAM_TYPE_PHY_PORT0, 1, EFX_NVRAM_PHY},
|
||||
{MC_CMD_NVRAM_TYPE_PHY_PORT1, 2, EFX_NVRAM_PHY},
|
||||
{MC_CMD_NVRAM_TYPE_FPGA, 1, EFX_NVRAM_FPGA},
|
||||
{MC_CMD_NVRAM_TYPE_FPGA, 2, EFX_NVRAM_FPGA},
|
||||
{MC_CMD_NVRAM_TYPE_FPGA_BACKUP, 1, EFX_NVRAM_FPGA_BACKUP},
|
||||
{MC_CMD_NVRAM_TYPE_FPGA_BACKUP, 2, EFX_NVRAM_FPGA_BACKUP},
|
||||
{MC_CMD_NVRAM_TYPE_FC_FW, 1, EFX_NVRAM_FCFW},
|
||||
{MC_CMD_NVRAM_TYPE_FC_FW, 2, EFX_NVRAM_FCFW},
|
||||
{MC_CMD_NVRAM_TYPE_CPLD, 1, EFX_NVRAM_CPLD},
|
||||
{MC_CMD_NVRAM_TYPE_CPLD, 2, EFX_NVRAM_CPLD},
|
||||
{0, 0, 0},
|
||||
};
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user