Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 266290
b: refs/heads/master
c: bbb5574
h: refs/heads/master
v: v3
  • Loading branch information
Rafał Miłecki authored and John W. Linville committed Sep 19, 2011
1 parent cfdbbce commit f909ee0
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 1b0a69c1ff445c265b173cc82c3f41a01dd90bec
refs/heads/master: bbb5574224168ef62c8549535c0d0a99e989ecf3
22 changes: 20 additions & 2 deletions trunk/drivers/net/wireless/b43/phy_lcn.c
Original file line number Diff line number Diff line change
Expand Up @@ -307,12 +307,30 @@ static void b43_phy_lcn_bu_tweaks(struct b43_wldev *dev)

b43_phy_write(dev, 0x7d6, 0x0902);

/* TODO: more ops */
b43_phy_maskset(dev, 0x429, ~0xf, 0x9);
b43_phy_maskset(dev, 0x429, ~(0x3f << 4), 0xe << 4);

if (dev->phy.rev == 1) {
/* TODO: more ops */
b43_phy_maskset(dev, 0x423, ~0xff, 0x46);
b43_phy_maskset(dev, 0x411, ~0xff, 1);
b43_phy_set(dev, 0x434, 0xff); /* FIXME: update to wl */

/* TODO: wl operates on PHY 0x416, brcmsmac is outdated here */

b43_phy_maskset(dev, 0x656, ~0xf, 2);
b43_phy_set(dev, 0x44d, 4);

b43_radio_set(dev, 0x0f7, 0x4);
b43_radio_mask(dev, 0x0f1, ~0x3);
b43_radio_maskset(dev, 0x0f2, ~0xf8, 0x90);
b43_radio_maskset(dev, 0x0f3, ~0x3, 0x2);
b43_radio_maskset(dev, 0x0f3, ~0xf0, 0xa0);

b43_radio_set(dev, 0x11f, 0x2);

b43_phy_lcn_clear_tx_power_offsets(dev);

/* TODO: something more? */
}
}

Expand Down

0 comments on commit f909ee0

Please sign in to comment.