shithub: riscv

Download patch

ref: f28ccb0ed97f8475f29adccb83409b00685ac395
parent: 25f04a68a168a948783618910e115316eb0ed3fc
author: ftrvxmtrx <[email protected]>
date: Mon Mar 11 20:14:55 EDT 2013

etheriwl: 6005 - set rom calibration flags and temperature sensor offset

--- a/sys/src/9/pc/etheriwl.c
+++ b/sys/src/9/pc/etheriwl.c
@@ -87,6 +87,10 @@
 	Gio		= 0x03c,
 		EnaL0S		= 1<<1,
 
+	GpDrv	= 0x050,
+		GpDrvCalV6	= 1<<2,
+		GpDrv1X2	= 1<<3,
+
 	Led		= 0x094,
 		LedBsmCtrl	= 1<<5,
 		LedOn		= 0x38,
@@ -1163,6 +1167,14 @@
 
 	if((err = niclock(ctlr)) != nil)
 		return err;
+	if((ctlr->type == Type6005 || ctlr->type == Type6050) && ctlr->eeprom.version == 6)
+		csr32w(ctlr, GpDrv, csr32r(ctlr, GpDrv) | GpDrvCalV6);
+	if(ctlr->type == Type6005)
+		csr32w(ctlr, GpDrv, csr32r(ctlr, GpDrv) | GpDrv1X2);
+	nicunlock(ctlr);
+
+	if((err = niclock(ctlr)) != nil)
+		return err;
 	csr32w(ctlr, FhRxConfig, 0);
 	csr32w(ctlr, FhRxWptr, 0);
 	csr32w(ctlr, FhRxBase, PCIWADDR(ctlr->rx.p) >> 8);
@@ -1344,6 +1356,18 @@
 					return err;
 				}
 				if((err = flushq(ctlr, 4)) != nil)
+					return err;
+			}
+
+			if(ctlr->type == Type6005){
+				/* temperature sensor offset */
+				memset(c, 0, sizeof(c));
+				c[0] = 18;
+				c[1] = 0;
+				c[2] = 1;
+				c[3] = 1;
+				put16(c + 4, 2700);
+				if((err = cmd(ctlr, 176, c, 4+2+2)) != nil)
 					return err;
 			}