Wifi Privacy Switch without rebooting
#1
Lightbulb 
update 2020.06.16: some recent kernel update has changed the naming of the wifi device - now fe310000.mmc. For those who like a compact one-liner:

Code:
sudo tee /sys/bus/platform/drivers/dwmmc_rockchip/{un,}bind <<< "$(basename /sys/devices/platform/fe310*)"



TL;DR: use the two commands here to restart the Wifi driver after powering the Wifi again with the Privacy Switch for Wifi (Pine + F11) :
Code:
$ echo 'fe310000.dwmmc' | sudo tee /sys/bus/platform/drivers/dwmmc_rockchip/unbind
$ echo 'fe310000.dwmmc' | sudo tee /sys/bus/platform/drivers/dwmmc_rockchip/bind



The full story :

(Moving to a more general thread, because currently my reply is burried in the middle of the Manjaro discussion)

Currently, the privacy switch for Wifi cannot put back Wifi on because soldered-on-motherboard SDIO modules aren't Plug'n'Play.

Here's what you normally see if you try the usual rmmod  + modprobe route:

Code:
$ sudo rmmod brcmfmac brcmutil cfg80211
$ modprobe brcmfmac
$ dmesg
[ 1299.511038] usbcore: deregistering interface driver brcmfmac
[ 1313.114017] platform regulatory.0: Direct firmware load for regulatory.db failed with error -2
[ 1313.114781] cfg80211: failed to load regulatory.db
[ 1313.132537] brcmfmac: probe of mmc0:0001:1 failed with error -110
[ 1313.133192] brcmfmac: probe of mmc0:0001:2 failed with error -110
[ 1313.133865] usbcore: registered new interface driver brcmfmac



There is a way though:

You can find the actual soldered device that answers on the mmcn mentioned above and unbind and re-bind it.

Code:
$ ls -d /sys/devices/platform/*.dwmmc/mmc_host/mmc0
/sys/devices/platform/fe310000.dwmmc/mmc_host/mmc0
$ ls -d /sys/devices/platform/*.dwmmc/mmc_host/mmc*/mmc*/mmc*/ieee80211
/sys/devices/platform/fe310000.dwmmc/mmc_host/mmc0/mmc0:0001/mmc0:0001:2/ieee80211
$ echo 'fe310000.dwmmc' | sudo tee /sys/bus/platform/drivers/dwmmc_rockchip/unbind
$ echo 'fe310000.dwmmc' | sudo tee /sys/bus/platform/drivers/dwmmc_rockchip/bind
$ dmesg
[ 1845.593897] mmc0: card 0001 removed
[ 1849.712047] dwmmc_rockchip fe310000.dwmmc: IDMAC supports 32-bit address mode.
[ 1849.712707] dwmmc_rockchip fe310000.dwmmc: Using internal DMA controller.
[ 1849.713307] dwmmc_rockchip fe310000.dwmmc: Version ID is 270a
[ 1849.713840] dwmmc_rockchip fe310000.dwmmc: DW MMC controller at irq 27,32 bit host data width,256 deep fifo
[ 1849.714799] dwmmc_rockchip fe310000.dwmmc: allocated mmc-pwrseq
[ 1849.715321] mmc_host mmc0: card is non-removable.
[ 1849.728861] mmc_host mmc0: Bus speed (slot 0) = 400000Hz (slot req 400000Hz, actual 400000HZ div = 0)
[ 1849.777673] mmc_host mmc0: Bus speed (slot 0) = 148500000Hz (slot req 150000000Hz, actual 148500000HZ div = 0)
[ 1850.622467] dwmmc_rockchip fe310000.dwmmc: Successfully tuned phase to 47
[ 1850.627007] mmc0: new ultra high speed SDR104 SDIO card at address 0001
[ 1850.636215] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43456-sdio for chip BCM4345/9
[ 1852.731997] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43456-sdio for chip BCM4345/9
[ 1852.732808] brcmfmac: brcmf_c_process_clm_blob: no clm_blob available (err=-2), device may have limited channels available
[ 1852.734049] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/9 wl0: Sep  7 2018 14:33:37 version 7.45.96.27 (42b546f@shgit) (r) FWID 01-c958c084 es7.c5.n4.a3
[ 1860.053215] IPv6: ADDRCONF(NETDEV_CHANGE): wlan0: link becomes ready

Note -if I'm not mistaken :
  • the 'mmc0' numbering might change depending on how your OS enumerate its devices (see how /dev/mmcblk changes - on Manjaro the Wifi is on mmc0 and the internal eMMC is on mmc2, but on the factory shipped Debian - Wifi is on mmc2 and mmc0 has the external µSD)
  • but fe310000.dwmmc is how this soldered MMC interface is mapped to the Rockchip and is fixed accross OSes (it is set in the .dtb)

the bind + unbind trick can also be used if the Broadcom Wifi chip has gone crazy and needs restarting.

(source: other people with similar problems of soldered MMC modules)
#2
Thanks for posting this, I was already wondering if it could work this way Smile
Come have a chat in the Pine IRC channel >>
#3
Great post. Don't want to move it to tutorials? also, link it to Wiki please in relevant section.
You can find me on IRC, Discord and Twitter


#4
(11-13-2019, 06:13 PM)Luke Wrote: Great post. Don't want to move it to tutorials?

If you think it has its place there, feel free to move it (or is it something non-admin can do too ?)

Though the best long-term solution, as I've written in the Manjaro thread, would be to get the EC-firmware guys to have the keyboard also emit simulated "Wifi Soft-kill" keypresses, and the Linux side of things to do such SDIO rescan automatically whenever the EC send such key press.

(11-13-2019, 06:13 PM)Luke Wrote: also, link it to Wiki please in relevant section.

The Wiki is pointing to this trick as of now. I can also add a reverse-link.
#5
Think this is fine, thanks.
You can find me on IRC, Discord and Twitter


#6
I like one-liners.
Code:
sudo tee /sys/bus/platform/drivers/dwmmc_rockchip/{un,}bind <<< 'fe310000.dwmmc'
#7
Just a quick note: I just tried this (rebooting is for other OS-es), and found that on my PineBook Pro (received just over a week ago) I have to use fe310000.mmc instead of fe310000.dwmmc (mmc instead of dwmmc).
#8
(06-13-2020, 04:50 AM)robt Wrote: I have to use fe310000.mmc instead of fe310000.dwmmc (mmc instead of dwmmc).

Sorry for the slow reply, my day job is in virology research and you can imagine that the past couple of months have been a tsunami of extra work.

I finally got time to check and: indeed, the name of the device has changed in some recent kernel update (didn't have time to track which):

Code:
$ ls -ld /sys/devices/platform/fe310*      
drwxr-xr-x 4 root root 0 Jun 16 10:03 /sys/devices/platform/fe310000.mmc
$ journalctl | grep 'fe3100'
Jun 15 23:42:56 nereid kernel: dwmmc_rockchip fe310000.mmc: IDMAC supports 32-bit address mode.
Jun 15 23:42:56 nereid kernel: dwmmc_rockchip fe310000.mmc: Using internal DMA controller.
Jun 15 23:42:56 nereid kernel: dwmmc_rockchip fe310000.mmc: Version ID is 270a
Jun 15 23:42:56 nereid kernel: dwmmc_rockchip fe310000.mmc: DW MMC controller at irq 27,32 bit host data width,256 deep fifo
Jun 15 23:42:56 nereid kernel: dwmmc_rockchip fe310000.mmc: allocated mmc-pwrseq
Jun 15 23:42:56 nereid kernel: dwmmc_rockchip fe310000.mmc: Successfully tuned phase to 56
Jun 15 23:43:03 nereid NetworkManager[931]: <info>  [1592257383.1179] rfkill0: found Wi-Fi radio killswitch (at /sys/devices/platform/fe310000.mmc/mmc_host/mmc0/mmc0:0001/mmc0:0001:1/ieee80211/phy0/rfkill0) (driver brcmfmac)

If one is not allergic to overly long one-line, it's automagically always findable with:
Code:
basename $(dirname $(dirname $(dirname $(dirname $(dirname /sys/devices/platform/*mmc/mmc_host/mmc*/mmc*/mmc*/ieee80211)))))
or
Code:
echo /sys/devices/platform/[0-9a-f]*mmc/mmc_host/mmc*/mmc*/mmc*/ieee80211|grep -oP '[0-9a-f]{8,}\.[^/]+'
#9
Thanks for the reply and the one-liners, and keep up the good work on the tsunami front. I'm actually also very busy at work related to Covid19 but on a completely different end, yet geographically nearby - I'm looking onto the Limmat as I write this... ;-)


Possibly Related Threads…
Thread Author Replies Views Last Post
  Manjaro ARM: enabling external monitors & fixing Broadcom WiFi after updating trifleneurotic 2 703 11-14-2023, 10:57 AM
Last Post: trifleneurotic
  Unable to install Debian Bullseye because of missing wifi firmware Pino64 7 3,783 07-15-2023, 02:58 PM
Last Post: u974615
  5GHz wifi not working snorwood 11 5,213 01-16-2023, 03:41 PM
Last Post: ehcorn
  Pinebook Pro wifi not working Queliffrel 1 1,222 11-30-2022, 06:30 AM
Last Post: myself600
  WiFi stopped on Pinebook Pro after update tkudog 3 2,445 11-24-2022, 04:32 PM
Last Post: tkudog
  Archlinux - missing firmware for wifi adapter RudderDuck 9 4,333 11-07-2022, 04:56 PM
Last Post: wgahnagl
  Help with Kali Linux wifi not working but works with Manjaro PineSupporter 2 2,256 08-25-2022, 02:15 PM
Last Post: Niko
  Manjaro and Arch repository with privacy oriented software as400 86 109,796 04-27-2022, 07:44 AM
Last Post: annahellrothsparent
Information Found newer firmware for broadcom wifi (brcmfmac43456-sdio) cobratbq 2 2,841 04-12-2022, 02:36 PM
Last Post: cobratbq
  Pinebook Pro wifi not working seyo-iv 2 3,670 10-26-2021, 02:27 AM
Last Post: wangyukunshan

Forum Jump:


Users browsing this thread: 1 Guest(s)