Macbook Air wireless broadcom BCM4360 not functioning

Issues related to hardware problems
Post Reply
able_flosser
Posts: 6
Joined: 2017/08/06 19:18:54

Macbook Air wireless broadcom BCM4360 not functioning

Post by able_flosser » 2017/08/07 16:55:28

Hi,

It seems that my wireless does not work, there are several conflicting solutions online some of which i used. but with no success my output is as such:
lspci -nn | grep -i net
03:00.0 Network controller [0280]: Broadcom Limited BCM4360 802.11ac Wireless Network Adapter [14e4:43a0] (rev 03)
0a:00.0 Ethernet controller [0200]: Broadcom Limited NetXtreme BCM57762 Gigabit Ethernet PCIe [14e4:1682]
$

could some help explain what the best method is for solving this?

thanks!

User avatar
TrevorH
Site Admin
Posts: 33219
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by TrevorH » 2017/08/07 17:31:52

Code: Select all

$ grep -i 14e4 /lib/modules/3.10.0-514.26.2.el7.x86_64/modules.* | grep -i 43a0
/lib/modules/3.10.0-514.26.2.el7.x86_64/modules.alias:alias pci:v000014E4d000043A0sv*sd*bc*sc*i* bcma
Says it's supported by the bcma module. What happens if you modprobe that and then look at the output from dmesg to see what it says? Also, is NetworkManager-wifi installed?
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

able_flosser
Posts: 6
Joined: 2017/08/06 19:18:54

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by able_flosser » 2017/08/08 17:35:09

HI TrevorH,

to start with your last question first yes,Networkmanager-wifi is already installed. i assume it doesn't need to be mounted, but just guessing.

As for your the ' modprobe' i am new to linux, learning a lot but i don't know how to do this:
'What happens if you modprobe that and then look at the output from dmesg to see what it says'

could you break it down for me? sorry i am a noob...

best,

User avatar
TrevorH
Site Admin
Posts: 33219
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by TrevorH » 2017/08/08 17:42:36

So the grep I ran says that your wireless card pci vendor/device id is supported by the bcma module. As root if you run lsmod | grep bcma it should show as loaded if it is. If not then as root again run modprobe bcma to load it and then run dmesg | less and page to the end to see if it said anything useful when it loaded.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

able_flosser
Posts: 6
Joined: 2017/08/06 19:18:54

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by able_flosser » 2017/08/08 19:08:05

Hi TrevorH,

here the response

$ lsmod | grep bcma
bcma 52492 0


$ modprobe bcma
$


$dmesg | less
[ 8040.122935] pcieport 0000:06:06.0: BAR 14: failed to assign [mem size 0x00200000]
[ 8040.122939] pcieport 0000:06:06.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 8040.122941] pcieport 0000:06:06.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 8040.122943] pcieport 0000:06:06.0: BAR 13: no space for [io size 0x1000]
[ 8040.122945] pcieport 0000:06:06.0: BAR 13: failed to assign [io size 0x1000]
[ 8040.122947] pcieport 0000:06:05.0: BAR 14: no space for [mem size 0x00200000]
[ 8040.122950] pcieport 0000:06:05.0: BAR 14: failed to assign [mem size 0x00200000]
[ 8040.122953] pcieport 0000:06:05.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 8040.122955] pcieport 0000:06:05.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 8040.122958] pcieport 0000:06:05.0: BAR 13: no space for [io size 0x1000]
[ 8040.122959] pcieport 0000:06:05.0: BAR 13: failed to assign [io size 0x1000]
[ 8040.122963] pcieport 0000:06:00.0: BAR 15: no space for [mem size 0x00200000 64bit pref]
[ 8040.122965] pcieport 0000:06:00.0: BAR 15: failed to assign [mem size 0x00200000 64bit pref]
[ 8040.122968] pcieport 0000:06:00.0: BAR 13: no space for [io size 0x1000]
[ 8040.122970] pcieport 0000:06:00.0: BAR 13: failed to assign [io size 0x1000]
[ 8040.123339] IPv6: ADDRCONF(NETDEV_UP): ens9: link is not ready
[ 8040.123665] tg3 0000:0a:00.0: irq 68 for MSI/MSI-X
[ 8040.123673] tg3 0000:0a:00.0: irq 69 for MSI/MSI-X
[ 8040.123680] tg3 0000:0a:00.0: irq 70 for MSI/MSI-X
[ 8040.123686] tg3 0000:0a:00.0: irq 71 for MSI/MSI-X
[ 8040.123693] tg3 0000:0a:00.0: irq 72 for MSI/MSI-X
[ 8040.290011] IPv6: ADDRCONF(NETDEV_UP): ens9: link is not ready
[ 8043.134669] tg3 0000:0a:00.0 ens9: Link is up at 1000 Mbps, full duplex

what am i looking for?

User avatar
TrevorH
Site Admin
Posts: 33219
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by TrevorH » 2017/08/08 19:34:50

Since it was already loaded, I'd suspect you already have an interface for it. What does ifconfig -a say?
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

able_flosser
Posts: 6
Joined: 2017/08/06 19:18:54

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by able_flosser » 2017/08/09 17:47:26

it does seem strange, the middle one is lacking a IP adress, not sure if that is the cause of my non-wireless predicament..

$ifconfig -a

ens9: flags=4163<UP,BROADCAST,RUNNING,MULTICAST> mtu 1500
inet 192.168.1.79 netmask 255.255.255.0 broadcast 192.168.1.255
inet6 fe80::66af:b77a:dbcc:8bb6 prefixlen 64 scopeid 0x20<link>
ether a8:60:b6:27:80:ca txqueuelen 1000 (Ethernet)
RX packets 5609 bytes 6130013 (5.8 MiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 4038 bytes 459795 (449.0 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0
device interrupt 19

lo: flags=73<UP,LOOPBACK,RUNNING> mtu 65536
inet 127.0.0.1 netmask 255.0.0.0
inet6 ::1 prefixlen 128 scopeid 0x10<host>
loop txqueuelen 1 (Local Loopback)
RX packets 68 bytes 5940 (5.8 KiB)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 68 bytes 5940 (5.8 KiB)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

virbr0: flags=4099<UP,BROADCAST,MULTICAST> mtu 1500
inet 192.168.122.1 netmask 255.255.255.0 broadcast 192.168.122.255
ether d6:eb:55:6a:26:00 txqueuelen 1000 (Ethernet)
RX packets 0 bytes 0 (0.0 B)
RX errors 0 dropped 0 overruns 0 frame 0
TX packets 0 bytes 0 (0.0 B)
TX errors 0 dropped 0 overruns 0 carrier 0 collisions 0

User avatar
TrevorH
Site Admin
Posts: 33219
Joined: 2009/09/24 10:40:56
Location: Brighton, UK

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by TrevorH » 2017/08/09 18:18:02

None of those are your wireless network card. I know that broadcom cards often need special action but I've always avoided them so don't know what.
The future appears to be RHEL or Debian. I think I'm going Debian.
Info for USB installs on http://wiki.centos.org/HowTos/InstallFromUSBkey
CentOS 5 and 6 are deadest, do not use them.
Use the FAQ Luke

able_flosser
Posts: 6
Joined: 2017/08/06 19:18:54

Re: Macbook Air wireless broadcom BCM4360 not functioning

Post by able_flosser » 2017/08/09 18:41:49

hmmm, that puts me in a pickle...do you have any suggestion on where i should look?

Post Reply