Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5cc86f28 authored by Bartlomiej Zolnierkiewicz's avatar Bartlomiej Zolnierkiewicz Committed by Greg Kroah-Hartman
Browse files

Staging: rt2870: add eFuse support



rt3070:
* remove unused bEEPROMFile field from RTMP_ADAPTER

rt2870:
* propagate eFuse support from rt3070

Signed-off-by: default avatarBartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 30d36c28
Loading
Loading
Loading
Loading
+2 −5
Original line number Diff line number Diff line
@@ -291,8 +291,7 @@ VOID RTMP_EEPROM_WRITE16(
#endif
}

//2008/09/11:KH add to support efuse<--
#ifdef RT30xx
#ifdef RT2870
/*
	========================================================================

@@ -1485,6 +1484,4 @@ NTSTATUS eFuseWriteRegistersFromBin(

	return TRUE;
}

#endif // RT30xx //
//2008/09/11:KH add to support efuse-->
#endif
+3 −7
Original line number Diff line number Diff line
@@ -2186,10 +2186,8 @@ NDIS_STATUS NICInitializeAsic(
	UINT32			MacCsr0 = 0;
	NTSTATUS		Status;
	UCHAR			Value = 0xff;
#endif // RT2870 //
#ifdef RT30xx
	UINT32			eFuseCtrl;
#endif // RT30xx //
#endif
	USHORT			KeyIdx;
	INT				i,apidx;

@@ -2501,8 +2499,7 @@ NDIS_STATUS NICInitializeAsic(
	Counter&=0xffffff00;
	Counter|=0x000001e;
	RTMP_IO_WRITE32(pAd, USB_CYC_CFG, Counter);
#endif // RT2870 //
#ifdef RT30xx

	pAd->bUseEfuse=FALSE;
	RTMP_IO_READ32(pAd, EFUSE_CTRL, &eFuseCtrl);
	pAd->bUseEfuse = ( (eFuseCtrl & 0x80000000) == 0x80000000) ? 1 : 0;
@@ -2513,9 +2510,8 @@ NDIS_STATUS NICInitializeAsic(
	else
	{
			DBGPRINT(RT_DEBUG_TRACE, ("NVM is EEPROM\n"));

	}
#endif // RT30xx //
#endif

	{
		// for rt2860E and after, init TXOP_CTRL_CFG with 0x583f. This is for extension channel overlapping IOT.
+2 −5
Original line number Diff line number Diff line
@@ -2938,12 +2938,9 @@ typedef struct _RTMP_ADAPTER

	UINT8					PM_FlgSuspend;

#ifdef RT30xx
//======efuse
#ifdef RT2870
	BOOLEAN		bUseEfuse;
	BOOLEAN		bEEPROMFile;
#endif // RT30xx //

#endif
} RTMP_ADAPTER, *PRTMP_ADAPTER;

//
+2 −4
Original line number Diff line number Diff line
@@ -229,13 +229,11 @@ static struct {
    {"ForceGF",		        		Set_ForceGF_Proc},
	{"LongRetry",	        		Set_LongRetryLimit_Proc},
	{"ShortRetry",	        		Set_ShortRetryLimit_Proc},
//2008/09/11:KH add to support efuse<--
#ifdef RT30xx
#ifdef RT2870
	{"efuseFreeNumber",				set_eFuseGetFreeBlockCount_Proc},
	{"efuseDump",					set_eFusedump_Proc},
	{"efuseLoadFromBin",				set_eFuseLoadFromBin_Proc},
#endif // RT30xx //
//2008/09/11:KH add to support efuse-->
#endif
	{NULL,}
};

+0 −8
Original line number Diff line number Diff line
@@ -803,13 +803,9 @@ NTSTATUS RTUSBReadEEPROM(
{
	NTSTATUS	Status = STATUS_SUCCESS;

#ifdef RT30xx
	if(pAd->bUseEfuse)
	{
		Status =eFuseRead(pAd, Offset, pData, length);
	}
	else
#endif // RT30xx //
	{
	Status = RTUSB_VendorRequest(
		pAd,
@@ -848,13 +844,9 @@ NTSTATUS RTUSBWriteEEPROM(
{
	NTSTATUS	Status = STATUS_SUCCESS;

#ifdef RT30xx
	if(pAd->bUseEfuse)
	{
		Status = eFuseWrite(pAd, Offset, pData, length);
	}
	else
#endif // RT30xx //
	{
	Status = RTUSB_VendorRequest(
		pAd,
Loading