Jump to content

data

Members
  • Posts

    94
  • Joined

  • Last visited

Everything posted by data

  1. With the boot-issue now resolved, the last nightly enables overlay-support for uart1. This is one more step towards working bluetooth on the lite2 and Orange Pi 3. Anyone interested is invited to do further testing. So far, I can enable the uart1 overlay either in armbianEnv.txt or via armbian-config. This gives us /dev/ttyS1 - at least it's there in dmesg and /dev/ttyS1 exists. Since the bluetooth module is connected via uart1, the next steps are to attach it. From my understanding, this needs the hci_uart module, which can be loaded via $ sudo modprobe hci_uart In addition, the btbcm module is required but this should be already loaded. So 'sudo modprobe btbcm' should not be necessary. You can verify if it is loaded via: $ lsmod | grep btbcm This in place, we should be able to attach the uart-port using hciattach. Now this is the point, where I am stuck. Typically, you do something along $ sudo hciattach /dev/ttyS1 bcm43xx 921600 noflow - However, I tried a couple of different baudrates as well as with and without flow-control without success. According to a couple of related posts, on success, one should see that the firmware is being loaded at this point. Any ideas or suggestions?
  2. Dear Martin, I am pleased to let you know, that the recent nightly from today works fine on the lite2! Thank you and all others here who contributed very much! Further, I can enable now uart1 and it shows up. I just was not able yet to set up bluetooth. Will post my results in the according thread. Keep up the good work!!
  3. Perfect, thank you! So it'll be online in the coming nightly, right?! I'll try tomorrow and let you know!
  4. Just tried the current nightly. Lite2 boots, however Wifi is not working. I can see some of the networks on 2.4GHz, no 5GHz. Connecting is not possible. System keeps spawning messages: [ 8.812739] brcmfmac: brcmf_fw_alloc_request: using brcm/brcmfmac43455-sdio for chip BCM4345/6 [ 9.040493] brcmfmac: brcmf_c_preinit_dcmds: Firmware: BCM4345/6 wl0: Feb 27 2018 03:15:32 version 7.45.154 (r684107 CY) FWID 01-4fbe0b04 [ 24.287924] ieee80211 phy0: brcmf_escan_timeout: timer expired [ 67.039923] ieee80211 phy0: brcmf_escan_timeout: timer expired [ 69.599946] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout [ 69.605853] ieee80211 phy0: brcmf_notify_escan_complete: Scan abort failed [ 102.623956] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout [ 102.629884] ieee80211 phy0: brcmf_run_escan: error (-110) [ 102.635368] ieee80211 phy0: brcmf_cfg80211_scan: scan error (-110) [ 155.615958] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout [ 155.621873] ieee80211 phy0: brcmf_run_escan: error (-110) [ 155.627367] ieee80211 phy0: brcmf_cfg80211_scan: scan error (-110) [ 218.591973] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout [ 218.597923] ieee80211 phy0: brcmf_run_escan: error (-110) [ 218.603405] ieee80211 phy0: brcmf_cfg80211_scan: scan error (-110) [ 281.567970] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout [ 281.573897] ieee80211 phy0: brcmf_run_escan: error (-110) [ 281.579373] ieee80211 phy0: brcmf_cfg80211_scan: scan error (-110) [ 324.831945] brcmfmac: brcmf_sdio_bus_rxctl: resumed on timeout [ 324.837852] ieee80211 phy0: _brcmf_set_multicast_list: Setting mcast_list failed, -110
  5. Great, thank you. I'll post in case I encounter any issues.
  6. FYI: The current nightly Armbian_5.86.190511_Orangepilite2_Debian_stretch_dev_5.1.0.7z does not work yet on the lite2. It freezes on boot.
  7. Is the automatic nightly built for the lite2 still paused?
  8. What if ttyS1 already exists? And is the ttyS1 uart1 overlay available and working with the new nightly now?
  9. Thank you again. Will flash the upcoming nightly tomorrow then and let you know.
  10. I made a fresh install of the 0423 nightly. Then # apt update # apt upgrade # reboot -> fubar. Is this caused by the missing cpu0 reference mentioned above?
  11. Great, thank you! I am just about to update my device. In case it fails I'll let you know...
  12. Since there is a new nightly for OPi lite2 now, is it working again?
  13. Same issue on the lite2. Fortunatelly, I had a backup of Armbian_5.82.190423_Orangepilite2_Debian_stretch_dev_5.0.7.7z Can I do anything to help identify the issue?
  14. Just in case nobody noticed yet: Current nightly as of May 2nd does not work on the lite2. Probably the issue exists since a few days. After my last apt upgrade on wednesday, my board did hang on boot. After a fresh install with the current nightly, it does not boot as well. These are the last lines from verbose boot output:
  15. In an effort to enable Bluetooth on the OrangePi (Lite2 | 3) I am stuck at enabling UART1 via overlay. According to the schematics, the AP6255 is connected via UART1 (PG6-PG9) to the H6 SoC but not defined in the dtb. Since there is a dtbo which looks promising at /boot/dtb/allwinner/overlay/sun50i-h6-uart1.dtbo I tried adding an overlay to /boot/armbianEnv.txt - manually and via armbian-config. Both did not work out. In addition, I also tried adding uart1 to the dtb, without success. What am I missing?
  16. I tried a new approach on bringing bluetooth to life... With the current nightly, I noticed some complaints about a missing firmware: [ 11.484843] brcmfmac mmc1:0001:1: Direct firmware load for brcm/brcmfmac43455-sdio.xunlong,orangepi-lite2.txt failed with error -2 Which was easily fixed by root@orangepilite2:~# cp /lib/firmware/rkwifi/nvram_ap6255.txt /lib/firmware/brcm/brcmfmac43455-sdio.xunlong,orangepi-lite2.txt But UART1, connected to the ap6255 according to the official schematics is not defined in the dtb I found at /boot/dtb-5.0.9-sunxi64/allwinner/sun50i-h6-orangepi-lite2.dtb Now I am stuck with bringing UART1 aka /dev/ttyS1 to life. So far, I tried adding an overlay to /boot/armbianEnv.txt: There is one which looks promising at /boot/dtb/allwinner/overlay/sun50i-h6-uart1.dtbo So adding 'overlays=uart1' was the next step but I still don't get ttyS1 to work. Comparing the other dtbos, I noticed that some contain definitions for the RTS/CTS pins dtc -I dtb -O dts /boot/dtb/allwinner/overlay/sun50i-h6-uart2.dtbo What am I missing? [By the way, I also tried adding uart1 to the dtb, without success...] Schematics are at http://linux-sunxi.org/images/4/4c/OrangePi_Lite2_Schematics_v2.0.pdf
  17. Just made a fresh install and reboot works fine! Great! Thank you for your support!!
  18. Ok, I connected a TTL cable to the serial port but besides the line I get nothing else. Do I need a fresh install of the nightly version? Because I just did 'apt upgrade'... Or is there a way I can keep my existing setup?
  19. Not yet. Will try it and let you know what I see...
  20. Dear Martin, thank you for your reply. I am on ARMBIAN 5.82.190422 nightly Ubuntu 18.04.2 LTS 5.0.7-sunxi64 But reboot does not work. Am I supposed to do anything else besides upgrading to the latest nightly? Thank you in advance!
  21. Will the reboot fix also work for the OPi Lite2?
  22. Thank you for bringing USB3 to life on the lite2 again!
  23. data

    data

×
×
  • Create New...

Important Information

Terms of Use - Privacy Policy - Guidelines