From f28ccb0ed97f8475f29adccb83409b00685ac395 Mon Sep 17 00:00:00 2001 From: ftrvxmtrx Date: Tue, 12 Mar 2013 00:14:55 +0100 Subject: [PATCH] etheriwl: 6005 - set rom calibration flags and temperature sensor offset --- sys/src/9/pc/etheriwl.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/sys/src/9/pc/etheriwl.c b/sys/src/9/pc/etheriwl.c index 05ae89193..65bbd204f 100644 --- a/sys/src/9/pc/etheriwl.c +++ b/sys/src/9/pc/etheriwl.c @@ -87,6 +87,10 @@ enum { Gio = 0x03c, EnaL0S = 1<<1, + GpDrv = 0x050, + GpDrvCalV6 = 1<<2, + GpDrv1X2 = 1<<3, + Led = 0x094, LedBsmCtrl = 1<<5, LedOn = 0x38, @@ -1161,6 +1165,14 @@ reset(Ctlr *ctlr) } nicunlock(ctlr); + 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); @@ -1347,6 +1359,18 @@ postboot(Ctlr *ctlr) 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; + } + if(ctlr->type == Type6005 || ctlr->type == Type6050){ /* runtime DC calibration */ memset(c, 0, sizeof(c));