Staging: sxg: Firmware updates

* Add new firmware and remove all firmware file.
* Add a switch to load either debug or free firmware.

Signed-off-by: Christopher Harrer <charrer@alacritech.com>
Signed-off-by: LinSysSoft Sahara Team <saharaproj@linsyssoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
Mithlesh Thukral 2009-01-19 20:28:13 +05:30 committed by Greg Kroah-Hartman
parent 54aed11326
commit a3915dd88d
7 changed files with 9614 additions and 4856 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
#define SAHARA_B_UCODE_VERS_STRING "$Revision: 1.1 $"
#define SAHARA_B_UCODE_VERS_DATE "$Date: 2008/08/19 00:05:59 $"
#define SAHARA_B_UCODE_HOSTIF_ID 3
static u32 SBNumSections = 0x1;
static u32 SBSectionSize[] =
{
0x0000c9a8, 0x0000000c, };
static u32 SBSectionStart[] =
{
0x00000000, 0x00001fff, };
static unsigned char SaharaUCodeB[1][1];

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,14 @@
#define SAHARA_B_UCODE_VERS_STRING "$Revision: 1.1 $"
#define SAHARA_B_UCODE_VERS_DATE "$Date: 2008/08/19 00:05:59 $"
#define SAHARA_B_UCODE_HOSTIF_ID 3
static u32 SBNumSections = 0x1;
static u32 SBSectionSize[] =
{
0x0000c9a8, 0x0000000c, };
static u32 SBSectionStart[] =
{
0x00000000, 0x00001fff, };
static unsigned char SaharaUCodeB[1][1];

View File

@ -76,7 +76,14 @@
#include "sxgdbg.h"
#include "sxgphycode.h"
#include "saharadbgdownload.h"
#define SXG_UCODE_DBG 0 /* Turn on for debugging */
#ifdef SXG_UCODE_DBG
#include "saharadbgdownload.c"
#include "saharadbgdownloadB.c"
#else
#include "saharadownload.c"
#include "saharadownloadB.c"
#endif
static int sxg_allocate_buffer_memory(struct adapter_t *adapter, u32 Size,
enum sxg_buffer_type BufferType);

View File

@ -54,7 +54,14 @@
#include "sxghif.h"
#include "sxg.h"
//#include "sxg.c"
#include "saharadbgdownload.h"
#define SXG_UCODE_DBG 0 /* Turn on for debugging */
#ifdef SXG_UCODE_DBG
#include "saharadbgdownload.c"
#include "saharadbgdownloadB.c"
#else
#include "saharadownload.c"
#include "saharadownloadB.c"
#endif
struct sxg_nic_stats {
char stat_string[ETH_GSTRING_LEN];