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:
parent
54aed11326
commit
a3915dd88d
5124
drivers/staging/sxg/saharadbgdownload.c
Normal file
5124
drivers/staging/sxg/saharadbgdownload.c
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
14
drivers/staging/sxg/saharadbgdownloadB.c
Normal file
14
drivers/staging/sxg/saharadbgdownloadB.c
Normal 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];
|
4446
drivers/staging/sxg/saharadownload.c
Normal file
4446
drivers/staging/sxg/saharadownload.c
Normal file
File diff suppressed because it is too large
Load Diff
14
drivers/staging/sxg/saharadownloadB.c
Normal file
14
drivers/staging/sxg/saharadownloadB.c
Normal 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];
|
@ -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);
|
||||
|
@ -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];
|
||||
|
Loading…
Reference in New Issue
Block a user