svn commit: r279173 - head/sys/dev/sfxge/common

Andrew Rybchenko arybchik at FreeBSD.org
Sun Feb 22 18:46:12 UTC 2015


Author: arybchik
Date: Sun Feb 22 18:46:11 2015
New Revision: 279173
URL: https://svnweb.freebsd.org/changeset/base/279173

Log:
  sfxge: add missing common code NVRAM types and map from MCDI
  
  Sponsored by:   Solarflare Communications, Inc.
  Approved by:    gnn (mentor)

Modified:
  head/sys/dev/sfxge/common/efx.h
  head/sys/dev/sfxge/common/siena_nvram.c

Modified: head/sys/dev/sfxge/common/efx.h
==============================================================================
--- head/sys/dev/sfxge/common/efx.h	Sun Feb 22 18:44:37 2015	(r279172)
+++ head/sys/dev/sfxge/common/efx.h	Sun Feb 22 18:46:11 2015	(r279173)
@@ -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;
 

Modified: head/sys/dev/sfxge/common/siena_nvram.c
==============================================================================
--- head/sys/dev/sfxge/common/siena_nvram.c	Sun Feb 22 18:44:37 2015	(r279172)
+++ head/sys/dev/sfxge/common/siena_nvram.c	Sun Feb 22 18:46:11 2015	(r279173)
@@ -330,6 +330,14 @@ static siena_parttbl_entry_t siena_partt
 	{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},
 };
 


More information about the svn-src-head mailing list