netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Please pull bcm43xx-d80211 bugfixes and new features
@ 2006-10-02 16:43 Michael Buesch
  2006-10-03  3:44 ` Larry Finger
  0 siblings, 1 reply; 10+ messages in thread
From: Michael Buesch @ 2006-10-02 16:43 UTC (permalink / raw)
  To: linville-2XuSBdqkA4R54TAoqtyWWQ
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, bcm43xx-dev-0fE9KPoRgkgATYTw5x5z8w,
	Larry Finger

Hi John,

Please pull from my tree
git pull http://bu3sch.de/git/wireless-dev.git for-linville

This will pull various bugfixes and feature improvements.
Most noteably it will pull a bugfix for a crash introduced
by an earlier patch to d80211 which changed RX status information
handling.

The new features include support for the new v4 firmware.
I also did my homework to get better support for OpenWRT
devices in ssb.


The list of pulled changesets is:

Michael Buesch:
      ssb: Abstract bus accesses.
      bcm43xx-d80211: convert to ssb abstract bus access API
      bcm43xx-d80211: Don't crash if we use v4 firmware.
      bcm43xx-d80211: Always make fwpostfix option available.
      bcm43xx-d80211: Firmware revision/patchlevel detection.
      bcm43xx-d80211: Add support for v4 firmware.
      bcm43xx-d80211: add SHM constants
      bcm43xx-d80211: Don't use low level netif and ieee80211_netif_oper functions.
      bcm43xx-d80211: DMA-mask fixes.
      bcm43xx-d80211: Remove some BCM947XX ifdefs,
      Merge branch 'master' of git://kernel.org/.../linville/wireless-dev
      bcm43xx-d80211: Assign all fields in the RX status report.
      bcm43xx-d80211: Set channel cookie to prevent ghost packets.
      bcm43xx-d80211: Prevent crash by setting active wlcore to NULL on wlcore-select failure.


The diffstat is:

 drivers/misc/ssb.c                                 |  431 ++++++-----
 drivers/net/wireless/d80211/bcm43xx/bcm43xx.h      |  143 +++
 .../net/wireless/d80211/bcm43xx/bcm43xx_debugfs.c  |  295 +++-----
 .../net/wireless/d80211/bcm43xx/bcm43xx_debugfs.h  |   35 -
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c  |  149 ++--
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.h  |   18 
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_leds.c |   16 
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c |  820 +++++++++-----------
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_phy.c  |   76 +-
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_pio.c  |  104 +--
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_pio.h  |   12 
 .../net/wireless/d80211/bcm43xx/bcm43xx_power.c    |  125 +---
 .../net/wireless/d80211/bcm43xx/bcm43xx_radio.c    |  143 ++--
 .../net/wireless/d80211/bcm43xx/bcm43xx_radio.h    |    1 
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_xmit.c |  309 +++++++-
 drivers/net/wireless/d80211/bcm43xx/bcm43xx_xmit.h |  247 +++++-
 include/linux/ssb.h                                |   71 +-
 17 files changed, 1681 insertions(+), 1314 deletions(-)

-- 
Greetings Michael.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
  2006-10-02 16:43 Please pull bcm43xx-d80211 bugfixes and new features Michael Buesch
@ 2006-10-03  3:44 ` Larry Finger
  2006-10-03 11:58   ` Michael Buesch
  0 siblings, 1 reply; 10+ messages in thread
From: Larry Finger @ 2006-10-03  3:44 UTC (permalink / raw)
  To: Michael Buesch; +Cc: linville, bcm43xx-dev, netdev

Michael Buesch wrote:
> Hi John,
> 
> Please pull from my tree
> git pull http://bu3sch.de/git/wireless-dev.git for-linville
> 
> This will pull various bugfixes and feature improvements.
> Most noteably it will pull a bugfix for a crash introduced
> by an earlier patch to d80211 which changed RX status information
> handling.
> 
> The new features include support for the new v4 firmware.
> I also did my homework to get better support for OpenWRT
> devices in ssb.
> 
> 
> The list of pulled changesets is:
> 
> Michael Buesch:
>       ssb: Abstract bus accesses.
>       bcm43xx-d80211: convert to ssb abstract bus access API
>       bcm43xx-d80211: Don't crash if we use v4 firmware.
>       bcm43xx-d80211: Always make fwpostfix option available.
>       bcm43xx-d80211: Firmware revision/patchlevel detection.
>       bcm43xx-d80211: Add support for v4 firmware.
>       bcm43xx-d80211: add SHM constants
>       bcm43xx-d80211: Don't use low level netif and ieee80211_netif_oper functions.
>       bcm43xx-d80211: DMA-mask fixes.
>       bcm43xx-d80211: Remove some BCM947XX ifdefs,
>       Merge branch 'master' of git://kernel.org/.../linville/wireless-dev
>       bcm43xx-d80211: Assign all fields in the RX status report.
>       bcm43xx-d80211: Set channel cookie to prevent ghost packets.
>       bcm43xx-d80211: Prevent crash by setting active wlcore to NULL on wlcore-select failure.
> 
> 
> The diffstat is:
> 
>  drivers/misc/ssb.c                                 |  431 ++++++-----
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx.h      |  143 +++
>  .../net/wireless/d80211/bcm43xx/bcm43xx_debugfs.c  |  295 +++-----
>  .../net/wireless/d80211/bcm43xx/bcm43xx_debugfs.h  |   35 -
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c  |  149 ++--
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.h  |   18 
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_leds.c |   16 
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c |  820 +++++++++-----------
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_phy.c  |   76 +-
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_pio.c  |  104 +--
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_pio.h  |   12 
>  .../net/wireless/d80211/bcm43xx/bcm43xx_power.c    |  125 +---
>  .../net/wireless/d80211/bcm43xx/bcm43xx_radio.c    |  143 ++--
>  .../net/wireless/d80211/bcm43xx/bcm43xx_radio.h    |    1 
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_xmit.c |  309 +++++++-
>  drivers/net/wireless/d80211/bcm43xx/bcm43xx_xmit.h |  247 +++++-
>  include/linux/ssb.h                                |   71 +-
>  17 files changed, 1681 insertions(+), 1314 deletions(-)
> 
Michael,

There is something wrong with wireless-dev after I pulled your changes. The logs are:

kernel: ssb: Core 0 found: cc 0800, rev 02, vendor 4243
kernel: ssb: Core 1 found: cc 0812, rev 04, vendor 4243
kernel: ssb: Core 2 found: cc 080D, rev 01, vendor 4243
kernel: ssb: Core 3 found: cc 0807, rev 01, vendor 4243
kernel: ssb: Core 4 found: cc 0804, rev 07, vendor 4243
kernel: ssb: Core 5 found: cc 0812, rev 04, vendor 4243
kernel: bcm43xx_d80211: Ignoring additional 802.11 core.
kernel: bcm43xx_d80211: Broadcom 4306 WLAN found
kernel: ssb: Switching to core 4
kernel: bcm43xx_d80211: PHY connected
kernel: ssb: Switching to core 1
kernel: bcm43xx_d80211: Detected PHY: Version: 1, Type 2, Revision 1
kernel: bcm43xx_d80211: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
kernel: bcm43xx_d80211: Radio turned off
kernel: bcm43xx_d80211: Radio turned off
kernel: wmaster0: Selected rate control algorithm 'simple'
kernel: bcm43xx_d80211: Virtual interface added (type: 0x00000002, ID: 4, MAC: 00
:06:25:40:6f:03)
kernel: bcm43xx_d80211: PHY connected
kernel: bcm43xx_d80211: PHY disconnected
kernel: bcm43xx_d80211: PHY connected
kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
  29:46:18
kernel: ssb: Switching to core 0
kernel: ssb: Switching to core 1
kernel: bcm43xx_d80211: Radio turned on
kernel: bcm43xx_d80211: Chip initialized
kernel: bcm43xx_d80211: 30-bit DMA initialized
kernel: bcm43xx_d80211: TODO: Incomplete code in keymac_write() at 
drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c:871
.....
kernel: bcm43xx_d80211: Keys cleared
kernel: bcm43xx_d80211: Selected 802.11 core (phytype 2)
kernel: wmaster0: Does not support passive scan, disabled
kernel: wlan1: starting scan
kernel: HW CONFIG: channel=1 freq=2412 phymode=3
kernel: HW CONFIG: channel=2 freq=2417 phymode=3
kernel: bcm43xx_d80211: FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR
kernel: bcm43xx_d80211: ASSERTION FAILED (0) at: 
drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1020:parse_cookie()
kernel: bcm43xx_d80211: ASSERTION FAILED (ring && *slot >= 0 && *slot < ring->nr_slots) at: 
drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1023:parse_cookie()
kernel: bcm43xx_d80211: FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR
kernel: bcm43xx_d80211: ASSERTION FAILED (0) at: 
drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1020:parse_cookie()
kernel: bcm43xx_d80211: ASSERTION FAILED (ring && *slot >= 0 && *slot < ring->nr_
slots) at: drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1023:parse_cookie()

If you need any other info, please contact me.

Larry

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
  2006-10-03  3:44 ` Larry Finger
@ 2006-10-03 11:58   ` Michael Buesch
       [not found]     ` <200610031358.33760.mb-fseUSCV1ubazQB+pC5nmwQ@public.gmane.org>
  0 siblings, 1 reply; 10+ messages in thread
From: Michael Buesch @ 2006-10-03 11:58 UTC (permalink / raw)
  To: Larry Finger; +Cc: linville, bcm43xx-dev, netdev

On Tuesday 03 October 2006 05:44, Larry Finger wrote:
> Michael Buesch wrote:
> > Hi John,
> > 
> > Please pull from my tree
> > git pull http://bu3sch.de/git/wireless-dev.git for-linville
> > 
> > This will pull various bugfixes and feature improvements.
> > Most noteably it will pull a bugfix for a crash introduced
> > by an earlier patch to d80211 which changed RX status information
> > handling.
> > 
> > The new features include support for the new v4 firmware.
> > I also did my homework to get better support for OpenWRT
> > devices in ssb.
> > 
> > 
> > The list of pulled changesets is:
> > 
> > Michael Buesch:
> >       ssb: Abstract bus accesses.
> >       bcm43xx-d80211: convert to ssb abstract bus access API
> >       bcm43xx-d80211: Don't crash if we use v4 firmware.
> >       bcm43xx-d80211: Always make fwpostfix option available.
> >       bcm43xx-d80211: Firmware revision/patchlevel detection.
> >       bcm43xx-d80211: Add support for v4 firmware.
> >       bcm43xx-d80211: add SHM constants
> >       bcm43xx-d80211: Don't use low level netif and ieee80211_netif_oper functions.
> >       bcm43xx-d80211: DMA-mask fixes.
> >       bcm43xx-d80211: Remove some BCM947XX ifdefs,
> >       Merge branch 'master' of git://kernel.org/.../linville/wireless-dev
> >       bcm43xx-d80211: Assign all fields in the RX status report.
> >       bcm43xx-d80211: Set channel cookie to prevent ghost packets.
> >       bcm43xx-d80211: Prevent crash by setting active wlcore to NULL on wlcore-select failure.
> > 
> > 
> > The diffstat is:
> > 
> >  drivers/misc/ssb.c                                 |  431 ++++++-----
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx.h      |  143 +++
> >  .../net/wireless/d80211/bcm43xx/bcm43xx_debugfs.c  |  295 +++-----
> >  .../net/wireless/d80211/bcm43xx/bcm43xx_debugfs.h  |   35 -
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c  |  149 ++--
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.h  |   18 
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_leds.c |   16 
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c |  820 +++++++++-----------
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_phy.c  |   76 +-
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_pio.c  |  104 +--
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_pio.h  |   12 
> >  .../net/wireless/d80211/bcm43xx/bcm43xx_power.c    |  125 +---
> >  .../net/wireless/d80211/bcm43xx/bcm43xx_radio.c    |  143 ++--
> >  .../net/wireless/d80211/bcm43xx/bcm43xx_radio.h    |    1 
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_xmit.c |  309 +++++++-
> >  drivers/net/wireless/d80211/bcm43xx/bcm43xx_xmit.h |  247 +++++-
> >  include/linux/ssb.h                                |   71 +-
> >  17 files changed, 1681 insertions(+), 1314 deletions(-)
> > 
> Michael,
> 
> There is something wrong with wireless-dev after I pulled your changes. The logs are:
> 
> kernel: ssb: Core 0 found: cc 0800, rev 02, vendor 4243
> kernel: ssb: Core 1 found: cc 0812, rev 04, vendor 4243
> kernel: ssb: Core 2 found: cc 080D, rev 01, vendor 4243
> kernel: ssb: Core 3 found: cc 0807, rev 01, vendor 4243
> kernel: ssb: Core 4 found: cc 0804, rev 07, vendor 4243
> kernel: ssb: Core 5 found: cc 0812, rev 04, vendor 4243
> kernel: bcm43xx_d80211: Ignoring additional 802.11 core.
> kernel: bcm43xx_d80211: Broadcom 4306 WLAN found
> kernel: ssb: Switching to core 4
> kernel: bcm43xx_d80211: PHY connected
> kernel: ssb: Switching to core 1
> kernel: bcm43xx_d80211: Detected PHY: Version: 1, Type 2, Revision 1
> kernel: bcm43xx_d80211: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
> kernel: bcm43xx_d80211: Radio turned off
> kernel: bcm43xx_d80211: Radio turned off
> kernel: wmaster0: Selected rate control algorithm 'simple'
> kernel: bcm43xx_d80211: Virtual interface added (type: 0x00000002, ID: 4, MAC: 00
> :06:25:40:6f:03)
> kernel: bcm43xx_d80211: PHY connected
> kernel: bcm43xx_d80211: PHY disconnected
> kernel: bcm43xx_d80211: PHY connected
> kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
>   29:46:18

Uhm, which firmware are you running?

> kernel: ssb: Switching to core 0
> kernel: ssb: Switching to core 1
> kernel: bcm43xx_d80211: Radio turned on
> kernel: bcm43xx_d80211: Chip initialized
> kernel: bcm43xx_d80211: 30-bit DMA initialized
> kernel: bcm43xx_d80211: TODO: Incomplete code in keymac_write() at 
> drivers/net/wireless/d80211/bcm43xx/bcm43xx_main.c:871
> .....
> kernel: bcm43xx_d80211: Keys cleared
> kernel: bcm43xx_d80211: Selected 802.11 core (phytype 2)
> kernel: wmaster0: Does not support passive scan, disabled
> kernel: wlan1: starting scan
> kernel: HW CONFIG: channel=1 freq=2412 phymode=3
> kernel: HW CONFIG: channel=2 freq=2417 phymode=3
> kernel: bcm43xx_d80211: FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR
> kernel: bcm43xx_d80211: ASSERTION FAILED (0) at: 
> drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1020:parse_cookie()
> kernel: bcm43xx_d80211: ASSERTION FAILED (ring && *slot >= 0 && *slot < ring->nr_slots) at: 
> drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1023:parse_cookie()
> kernel: bcm43xx_d80211: FATAL ERROR: BCM43xx_IRQ_XMIT_ERROR
> kernel: bcm43xx_d80211: ASSERTION FAILED (0) at: 
> drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1020:parse_cookie()
> kernel: bcm43xx_d80211: ASSERTION FAILED (ring && *slot >= 0 && *slot < ring->nr_
> slots) at: drivers/net/wireless/d80211/bcm43xx/bcm43xx_dma.c:1023:parse_cookie()
> 
> If you need any other info, please contact me.
> 
> Larry
> 

-- 
Greetings Michael.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
       [not found]     ` <200610031358.33760.mb-fseUSCV1ubazQB+pC5nmwQ@public.gmane.org>
@ 2006-10-03 12:36       ` Martin Langer
  2006-10-03 13:05         ` Michael Buesch
  2006-10-03 14:36       ` Larry Finger
  1 sibling, 1 reply; 10+ messages in thread
From: Martin Langer @ 2006-10-03 12:36 UTC (permalink / raw)
  To: Michael Buesch
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, linville-2XuSBdqkA4R54TAoqtyWWQ,
	bcm43xx-dev-0fE9KPoRgkgATYTw5x5z8w, Larry Finger

On Tue, Oct 03, 2006 at 01:58:33PM +0200, Michael Buesch wrote:
> On Tuesday 03 October 2006 05:44, Larry Finger wrote:
> > 
> > kernel: ssb: Core 0 found: cc 0800, rev 02, vendor 4243
> > kernel: ssb: Core 1 found: cc 0812, rev 04, vendor 4243
> > kernel: ssb: Core 2 found: cc 080D, rev 01, vendor 4243
> > kernel: ssb: Core 3 found: cc 0807, rev 01, vendor 4243
> > kernel: ssb: Core 4 found: cc 0804, rev 07, vendor 4243
> > kernel: ssb: Core 5 found: cc 0812, rev 04, vendor 4243
> > kernel: bcm43xx_d80211: Ignoring additional 802.11 core.
> > kernel: bcm43xx_d80211: Broadcom 4306 WLAN found
> > kernel: ssb: Switching to core 4
> > kernel: bcm43xx_d80211: PHY connected
> > kernel: ssb: Switching to core 1
> > kernel: bcm43xx_d80211: Detected PHY: Version: 1, Type 2, Revision 1
> > kernel: bcm43xx_d80211: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
> > kernel: bcm43xx_d80211: Radio turned off
> > kernel: bcm43xx_d80211: Radio turned off
> > kernel: wmaster0: Selected rate control algorithm 'simple'
> > kernel: bcm43xx_d80211: Virtual interface added (type: 0x00000002, ID: 4, MAC: 00
> > :06:25:40:6f:03)
> > kernel: bcm43xx_d80211: PHY connected
> > kernel: bcm43xx_d80211: PHY disconnected
> > kernel: bcm43xx_d80211: PHY connected
> > kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
> >   29:46:18
> 
> Uhm, which firmware are you running?

v4 testers should use the SVN version of fwcutter. There was a v4 
windriver bug in fwcutter .... some time ago.

Martin

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
  2006-10-03 12:36       ` Martin Langer
@ 2006-10-03 13:05         ` Michael Buesch
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Buesch @ 2006-10-03 13:05 UTC (permalink / raw)
  To: bcm43xx-dev; +Cc: Martin Langer, Larry Finger, linville, netdev

On Tuesday 03 October 2006 14:36, Martin Langer wrote:
> On Tue, Oct 03, 2006 at 01:58:33PM +0200, Michael Buesch wrote:
> > On Tuesday 03 October 2006 05:44, Larry Finger wrote:
> > > 
> > > kernel: ssb: Core 0 found: cc 0800, rev 02, vendor 4243
> > > kernel: ssb: Core 1 found: cc 0812, rev 04, vendor 4243
> > > kernel: ssb: Core 2 found: cc 080D, rev 01, vendor 4243
> > > kernel: ssb: Core 3 found: cc 0807, rev 01, vendor 4243
> > > kernel: ssb: Core 4 found: cc 0804, rev 07, vendor 4243
> > > kernel: ssb: Core 5 found: cc 0812, rev 04, vendor 4243
> > > kernel: bcm43xx_d80211: Ignoring additional 802.11 core.
> > > kernel: bcm43xx_d80211: Broadcom 4306 WLAN found
> > > kernel: ssb: Switching to core 4
> > > kernel: bcm43xx_d80211: PHY connected
> > > kernel: ssb: Switching to core 1
> > > kernel: bcm43xx_d80211: Detected PHY: Version: 1, Type 2, Revision 1
> > > kernel: bcm43xx_d80211: Detected Radio: ID: 2205017f (Manuf: 17f Ver: 2050 Rev: 2)
> > > kernel: bcm43xx_d80211: Radio turned off
> > > kernel: bcm43xx_d80211: Radio turned off
> > > kernel: wmaster0: Selected rate control algorithm 'simple'
> > > kernel: bcm43xx_d80211: Virtual interface added (type: 0x00000002, ID: 4, MAC: 00
> > > :06:25:40:6f:03)
> > > kernel: bcm43xx_d80211: PHY connected
> > > kernel: bcm43xx_d80211: PHY disconnected
> > > kernel: bcm43xx_d80211: PHY connected
> > > kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
> > >   29:46:18
> > 
> > Uhm, which firmware are you running?
> 
> v4 testers should use the SVN version of fwcutter. There was a v4 
> windriver bug in fwcutter .... some time ago.

For convenience I modified current fwcutter to not reject v4 firmware files
(but print a big fat warning) and tagged the 005 release here:
http://prdownload.berlios.de/bcm43xx/bcm43xx-fwcutter-005.tar.bz2

-- 
Greetings Michael.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
       [not found]     ` <200610031358.33760.mb-fseUSCV1ubazQB+pC5nmwQ@public.gmane.org>
  2006-10-03 12:36       ` Martin Langer
@ 2006-10-03 14:36       ` Larry Finger
       [not found]         ` <45227569.6070901-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
  1 sibling, 1 reply; 10+ messages in thread
From: Larry Finger @ 2006-10-03 14:36 UTC (permalink / raw)
  To: Michael Buesch
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, linville-2XuSBdqkA4R54TAoqtyWWQ,
	bcm43xx-dev-0fE9KPoRgkgATYTw5x5z8w

Michael Buesch wrote:
>> kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
>>   29:46:18
> 
> Uhm, which firmware are you running?

The softmac version reports the following (The "loaded" messages are something I'm trying.):

kernel: bcm43xx: Firmware: Microcode "bcm43xx_microcode4.fw" loaded.
kernel: bcm43xx: Firmware: PCM "bcm43xx_pcm4.fw" loaded.
kernel: bcm43xx: Firmware: InitVals0 "bcm43xx_initval01.fw" loaded.
kernel: bcm43xx: Microcode rev 0x123, pl 0x21 (2005-01-22  19:48:06)

Larry

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
       [not found]         ` <45227569.6070901-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
@ 2006-10-03 14:48           ` Michael Buesch
  2006-10-03 15:07             ` Larry Finger
  2006-10-03 15:12             ` Martin Langer
  0 siblings, 2 replies; 10+ messages in thread
From: Michael Buesch @ 2006-10-03 14:48 UTC (permalink / raw)
  To: Larry Finger
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, bcm43xx-dev-0fE9KPoRgkgATYTw5x5z8w,
	linville-2XuSBdqkA4R54TAoqtyWWQ

On Tuesday 03 October 2006 16:36, Larry Finger wrote:
> Michael Buesch wrote:
> >> kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
> >>   29:46:18
> > 
> > Uhm, which firmware are you running?
> 
> The softmac version reports the following (The "loaded" messages are something I'm trying.):
> 
> kernel: bcm43xx: Firmware: Microcode "bcm43xx_microcode4.fw" loaded.
> kernel: bcm43xx: Firmware: PCM "bcm43xx_pcm4.fw" loaded.
> kernel: bcm43xx: Firmware: InitVals0 "bcm43xx_initval01.fw" loaded.
> kernel: bcm43xx: Microcode rev 0x123, pl 0x21 (2005-01-22  19:48:06)

Well, so now you know where the problem is.
I can't debug this for you ;)

-- 
Greetings Michael.

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
  2006-10-03 14:48           ` Michael Buesch
@ 2006-10-03 15:07             ` Larry Finger
  2006-10-03 15:12             ` Martin Langer
  1 sibling, 0 replies; 10+ messages in thread
From: Larry Finger @ 2006-10-03 15:07 UTC (permalink / raw)
  To: Michael Buesch; +Cc: bcm43xx-dev, netdev, linville

Michael Buesch wrote:
> On Tuesday 03 October 2006 16:36, Larry Finger wrote:
>> Michael Buesch wrote:
>>>> kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
>>>>   29:46:18
>>> Uhm, which firmware are you running?
>> The softmac version reports the following (The "loaded" messages are something I'm trying.):
>>
>> kernel: bcm43xx: Firmware: Microcode "bcm43xx_microcode4.fw" loaded.
>> kernel: bcm43xx: Firmware: PCM "bcm43xx_pcm4.fw" loaded.
>> kernel: bcm43xx: Firmware: InitVals0 "bcm43xx_initval01.fw" loaded.
>> kernel: bcm43xx: Microcode rev 0x123, pl 0x21 (2005-01-22  19:48:06)
> 
> Well, so now you know where the problem is.
> I can't debug this for you ;)
> 

I repulled wireless-dev and rebuilt it to find the same problem, which probably is not in your 
recent patches. When I get a chance, I'll see if I can where it goes wrong.

Larry


^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
  2006-10-03 14:48           ` Michael Buesch
  2006-10-03 15:07             ` Larry Finger
@ 2006-10-03 15:12             ` Martin Langer
  2006-10-03 15:14               ` Michael Buesch
  1 sibling, 1 reply; 10+ messages in thread
From: Martin Langer @ 2006-10-03 15:12 UTC (permalink / raw)
  To: Michael Buesch; +Cc: Larry Finger, netdev, bcm43xx-dev, linville

On Tue, Oct 03, 2006 at 04:48:04PM +0200, Michael Buesch wrote:
> On Tuesday 03 October 2006 16:36, Larry Finger wrote:
> > Michael Buesch wrote:
> > >> kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
> > >>   29:46:18
> > > 
> > > Uhm, which firmware are you running?
> > 
> > The softmac version reports the following (The "loaded" messages are something I'm trying.):
> > 
> > kernel: bcm43xx: Firmware: Microcode "bcm43xx_microcode4.fw" loaded.
> > kernel: bcm43xx: Firmware: PCM "bcm43xx_pcm4.fw" loaded.
> > kernel: bcm43xx: Firmware: InitVals0 "bcm43xx_initval01.fw" loaded.
> > kernel: bcm43xx: Microcode rev 0x123, pl 0x21 (2005-01-22  19:48:06)
> 
> Well, so now you know where the problem is.
> I can't debug this for you ;)

You have to wait some time to get correct values. That was the reason 
why I placed version reading originally after bcm43xx_initialize_irq(), 
because I got strange values if I read the version directly after the 
upload.

Martin 

^ permalink raw reply	[flat|nested] 10+ messages in thread

* Re: Please pull bcm43xx-d80211 bugfixes and new features
  2006-10-03 15:12             ` Martin Langer
@ 2006-10-03 15:14               ` Michael Buesch
  0 siblings, 0 replies; 10+ messages in thread
From: Michael Buesch @ 2006-10-03 15:14 UTC (permalink / raw)
  To: Martin Langer
  Cc: netdev-u79uwXL29TY76Z2rM5mHXA, bcm43xx-dev-0fE9KPoRgkgATYTw5x5z8w,
	linville-2XuSBdqkA4R54TAoqtyWWQ, Larry Finger

On Tuesday 03 October 2006 17:12, Martin Langer wrote:
> On Tue, Oct 03, 2006 at 04:48:04PM +0200, Michael Buesch wrote:
> > On Tuesday 03 October 2006 16:36, Larry Finger wrote:
> > > Michael Buesch wrote:
> > > >> kernel: bcm43xx_d80211: firmware revision FE84, patchlevel 90B4, date 2000-14-248
> > > >>   29:46:18
> > > > 
> > > > Uhm, which firmware are you running?
> > > 
> > > The softmac version reports the following (The "loaded" messages are something I'm trying.):
> > > 
> > > kernel: bcm43xx: Firmware: Microcode "bcm43xx_microcode4.fw" loaded.
> > > kernel: bcm43xx: Firmware: PCM "bcm43xx_pcm4.fw" loaded.
> > > kernel: bcm43xx: Firmware: InitVals0 "bcm43xx_initval01.fw" loaded.
> > > kernel: bcm43xx: Microcode rev 0x123, pl 0x21 (2005-01-22  19:48:06)
> > 
> > Well, so now you know where the problem is.
> > I can't debug this for you ;)
> 
> You have to wait some time to get correct values. That was the reason 
> why I placed version reading originally after bcm43xx_initialize_irq(), 
> because I got strange values if I read the version directly after the 
> upload.

Ok, that seems to be the problem.
It's v3 firmware, but the driver is tuned to v4, because of the
uncorrect rev value. I'll fix this.

-- 
Greetings Michael.

^ permalink raw reply	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2006-10-03 15:14 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-02 16:43 Please pull bcm43xx-d80211 bugfixes and new features Michael Buesch
2006-10-03  3:44 ` Larry Finger
2006-10-03 11:58   ` Michael Buesch
     [not found]     ` <200610031358.33760.mb-fseUSCV1ubazQB+pC5nmwQ@public.gmane.org>
2006-10-03 12:36       ` Martin Langer
2006-10-03 13:05         ` Michael Buesch
2006-10-03 14:36       ` Larry Finger
     [not found]         ` <45227569.6070901-tQ5ms3gMjBLk1uMJSBkQmQ@public.gmane.org>
2006-10-03 14:48           ` Michael Buesch
2006-10-03 15:07             ` Larry Finger
2006-10-03 15:12             ` Martin Langer
2006-10-03 15:14               ` Michael Buesch

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).