Commit a3915dd8 authored by Mithlesh Thukral's avatar Mithlesh Thukral Committed by Greg Kroah-Hartman

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: default avatarChristopher Harrer <charrer@alacritech.com>
Signed-off-by: default avatarLinSysSoft Sahara Team <saharaproj@linsyssoft.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 54aed113
This source diff could not be displayed because it is too large. You can view the blob instead.
This source diff could not be displayed because it is too large. You can view the blob instead.
#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];
This source diff could not be displayed because it is too large. You can view the blob instead.
#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 @@ ...@@ -76,7 +76,14 @@
#include "sxgdbg.h" #include "sxgdbg.h"
#include "sxgphycode.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, static int sxg_allocate_buffer_memory(struct adapter_t *adapter, u32 Size,
enum sxg_buffer_type BufferType); enum sxg_buffer_type BufferType);
......
...@@ -54,7 +54,14 @@ ...@@ -54,7 +54,14 @@
#include "sxghif.h" #include "sxghif.h"
#include "sxg.h" #include "sxg.h"
//#include "sxg.c" //#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 { struct sxg_nic_stats {
char stat_string[ETH_GSTRING_LEN]; char stat_string[ETH_GSTRING_LEN];
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment