diff options
author | ftrvxmtrx <ftrvxmtrx@gmail.com> | 2013-03-12 00:14:55 +0100 |
---|---|---|
committer | ftrvxmtrx <ftrvxmtrx@gmail.com> | 2013-03-12 00:14:55 +0100 |
commit | f28ccb0ed97f8475f29adccb83409b00685ac395 (patch) | |
tree | 475b89041010c131d18c85f1104558a777211cf2 /sys/src/9/pc/etheriwl.c | |
parent | 25f04a68a168a948783618910e115316eb0ed3fc (diff) |
etheriwl: 6005 - set rom calibration flags and temperature sensor offset
Diffstat (limited to 'sys/src/9/pc/etheriwl.c')
-rw-r--r-- | sys/src/9/pc/etheriwl.c | 24 |
1 files changed, 24 insertions, 0 deletions
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, @@ -1163,6 +1167,14 @@ reset(Ctlr *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); csr32w(ctlr, FhRxWptr, 0); csr32w(ctlr, FhRxBase, PCIWADDR(ctlr->rx.p) >> 8); @@ -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)); |