2

I have a laptop with a Broadcom Wireless Adapter (BCM43455) that I would like to dual-boot with Ubuntu and Windows, however, whilst it have no problems with Windows, regardless of whether I run a liveCD or install it Ubuntu refuses to recognise my Wifi Adapter.

I have tried lspci -vnn, lshw and lsusb (just to be safe), all as root, but none of them show anything even network related.

Ubuntu doesn't show any additional (proprietary) drivers that it could install either, and while there is a question about Broadcom Adapters not working in general here, all of the answers assume that you can see the device listed in lshw and lspci but just can't use it.

What can I do about this?

EDIT: Here is the output of dmesg | grep -i sdio, as requested:

[   25.471246] brcmfmac mmc1:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.txt failed with error -2

[   26.497372] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50

[   27.503492] brcmfmac: brcmf_sdio_htclk: HT Avail timeout (1000000): clkctl 0x50

2 Answers2

5

The issue is that it cannot find your brcm/brcmfmac43455-sdio.txt file. For me, this issue happened on the CSL Narrow Box 4k. I've experimented a lot with many solutions found on the web, but the following finally did the trick:

  1. Download the text file.
  2. Copy it into your device's /lib/firmware/brcm/ folder.
  3. Reboot.

Now the system should be able to find the missing file and WiFi should work as expected.

Note: I've only tested this using a patched Ubuntu image generated by the isorespin.sh script. The steps described above may or may not work on an un-patched image.

Edit: A colleague of mine has tested it on a regular Ubuntu MATE image, it works. So there's no need to use the isorespin.sh at all!

J.P.
  • 66
0

This is an SDIO device not PCIe. The missing NVRAM definition file is board-dependent. You can see that the kernel firmware includes this file for some boards. Also note that BCM43455 is a newer version of BCM4345, sometimes known as AP6255; I happen to have the older version and is supported by brcmfmac driver.

On a Wintel MiniPC (AMI, T3 MRD, Atom x5-Z8350) running Windows 10, the file is found at C:\Windows\System32\drivers\4345r6nvram.txt and can be copied to Linux, then do:

sudo cp 4345r6nvram.txt /lib/firmware/brcm/
cd /lib/firmware/brcm/
ln -s 4345r6nvram.txt brcmfmac43455-sdio.txt
sudo modprobe -r brcmfmac
sudo modprobe brcmfmac
milpita
  • 111