[PATCH 0/4] more N-PHY, cordic stuff

2010-01-25 Thread Rafał Miłecki
This adds more N-PHY code and modifies cordic function that is currently used by LP-PHY code. Larry checked this and it still works fine on his LP-PHY card. Rafał Miłecki (4): b43: N-PHY: fix one bit off in parsing RF Ctrl Override arguments b43: make cordic common (LP-PHY and N-PHY need it)

[PATCH 1/4] b43: N-PHY: fix one bit off in parsing RF Ctrl Override arguments

2010-01-25 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index a45a1f3..061b01b 100644 --- a/drivers/net/wireless/b43/phy_n.c +++

[PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_common.c | 38 +++ drivers/net/wireless/b43/phy_common.h |3 ++ drivers/net/wireless/b43/phy_lp.c | 45 +--- 3 files changed, 43 insertions(+), 43

[PATCH 3/4] b43: update cordic code to match current specs

2010-01-25 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com Tested-by: Larry Finger larry.fin...@lwfinger.net --- drivers/net/wireless/b43/phy_common.c | 19 +-- drivers/net/wireless/b43/phy_common.h |4 drivers/net/wireless/b43/phy_lp.c |7 --- 3 files changed, 21

[PATCH 4/4] b43: N-PHY: use cordic to generate samples

2010-01-25 Thread Rafał Miłecki
Signed-off-by: Rafał Miłecki zaj...@gmail.com --- drivers/net/wireless/b43/phy_n.c | 21 - 1 files changed, 12 insertions(+), 9 deletions(-) diff --git a/drivers/net/wireless/b43/phy_n.c b/drivers/net/wireless/b43/phy_n.c index 061b01b..e15f05c 100644 ---

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Michael Buesch
On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: +/* Complex number using 2 32-bit signed integers */ +typedef struct { s32 i, q; } b43_c32; No typedef. ever. -- Greetings, Michael. ___ Bcm43xx-dev mailing list Bcm43xx-dev@lists.berlios.de

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
2010/1/25 Michael Buesch m...@bu3sch.de: On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: +/* Complex number using 2 32-bit signed integers */ +typedef struct { s32 i, q; } b43_c32; No typedef. ever. Well, I just copied (Gabor's?) code here. But of course I can fix this by the way, no

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki zaj...@gmail.com napisał: 2010/1/25 Michael Buesch m...@bu3sch.de: On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: +/* Complex number using 2 32-bit signed integers */ +typedef struct { s32 i, q; } b43_c32; No typedef. ever.

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Michael Buesch
On Monday 25 January 2010 19:36:27 Rafał Miłecki wrote: W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki zaj...@gmail.com napisał: 2010/1/25 Michael Buesch m...@bu3sch.de: On Monday 25 January 2010 18:59:59 Rafał Miłecki wrote: +/* Complex number using 2 32-bit signed integers */

Re: Is this a known problem?

2010-01-25 Thread ikorot
Larry, list, -Original Message- From: Larry Finger larry.fin...@lwfinger.net Sent: Jan 25, 2010 2:57 PM To: iko...@earthlink.net Cc: bcm43xx-dev@lists.berlios.de Subject: Re: Is this a known problem? On 01/25/2010 01:44 AM, iko...@earthlink.net wrote: Hi, ALL, I have a Dell Laptop

Re: LP-PHY Fatal DMA error 0x00000800 on non-ULV Core 2 Duo?!?!!??!

2010-01-25 Thread Gábor Stefanik
On Mon, Jan 25, 2010 at 9:15 PM, Lucas Thode ljth...@gmail.com wrote: ---start dmesg snippet--- [17189.121003] b43-pci-bridge :06:00.0: PCI INT A disabled [17192.494272] cfg80211: Using static regulatory domain info [17192.494279] cfg80211: Regulatory domain: US [17192.494283] 

Re: LP-PHY Fatal DMA error 0x00000800 on non-ULV Core 2 Duo?!?!!??!

2010-01-25 Thread Larry Finger
On 01/25/2010 02:15 PM, Lucas Thode wrote: As you can tell, this processor is neither an Atom nor a ULV Core 2 Duo. The WLAN card is the Dell Wireless 1395 that came with the laptop (a Vostro 1510). I can build a custom kernel based on the Debian kernel sources if need be; just tell me what

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread John W. Linville
On Mon, Jan 25, 2010 at 07:53:19PM +0100, Michael Buesch wrote: On Monday 25 January 2010 19:36:27 Rafał Miłecki wrote: W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki zaj...@gmail.com napisał: 2010/1/25 Michael Buesch m...@bu3sch.de: On Monday 25 January 2010 18:59:59 Rafał

Re: [PATCH 2/4] b43: make cordic common (LP-PHY and N-PHY need it)

2010-01-25 Thread Rafał Miłecki
2010/1/25 John W. Linville linvi...@tuxdriver.com: On Mon, Jan 25, 2010 at 07:53:19PM +0100, Michael Buesch wrote: On Monday 25 January 2010 19:36:27 Rafał Miłecki wrote: W dniu 25 stycznia 2010 19:35 użytkownik Rafał Miłecki zaj...@gmail.com napisał: 2010/1/25 Michael Buesch

Fwd: LP-PHY Fatal DMA error 0x00000800 on non-ULV Core 2 Duo?!?!!??!

2010-01-25 Thread Lucas Thode
Sorry, hit Reply instead of Reply All *d'oh* -- Forwarded message -- From: Lucas Thode ljth...@gmail.com Date: 2010/1/25 Subject: Re: LP-PHY Fatal DMA error 0x0800 on non-ULV Core 2 Duo?!?!!??! To: Gábor Stefanik netrolller...@gmail.com 2010/1/25 Gábor Stefanik

Re: LP-PHY Fatal DMA error 0x00000800 on non-ULV Core 2 Duo?!?!!??!

2010-01-25 Thread Lucas Thode
2010/1/25 Lucas Thode ljth...@gmail.com 2010/1/25 Gábor Stefanik netrolller...@gmail.com A few things to check: -Is this on PhoenixBios? Indeed, the Vostro 1510 uses a (Dell branded) PhoenixBIOS. -Does loading wl, doing a warm reboot and loading b43 make b43 work? -Try updating the

Re: LP-PHY Fatal DMA error 0x00000800 on non-ULV Core 2 Duo?!?!!??!

2010-01-25 Thread Lucas Thode
2010/1/25 Lucas Thode ljth...@gmail.com 2010/1/25 Lucas Thode ljth...@gmail.com 2010/1/25 Gábor Stefanik netrolller...@gmail.com A few things to check: -Is this on PhoenixBios? Indeed, the Vostro 1510 uses a (Dell branded) PhoenixBIOS. -Does loading wl, doing a warm reboot and