├── .gitignore ├── Kconfig ├── Makefile ├── README.md ├── ath3k.c ├── bcm203x.c ├── bfusb.c ├── bluecard_cs.c ├── bpa10x.c ├── bt3c_cs.c ├── btbcm.c ├── btbcm.h ├── btintel.c ├── btintel.h ├── btmrvl_debugfs.c ├── btmrvl_drv.h ├── btmrvl_main.c ├── btmrvl_sdio.c ├── btmrvl_sdio.h ├── btmtksdio.c ├── btmtkuart.c ├── btqca.c ├── btqca.h ├── btqcomsmd.c ├── btrsi.c ├── btrtl.c ├── btrtl.h ├── btsdio.c ├── btusb.c ├── dtl1_cs.c ├── firmware ├── rtl8852bu_config.bin └── rtl8852bu_fw.bin ├── h4_recv.h ├── hci_ag6xx.c ├── hci_ath.c ├── hci_bcm.c ├── hci_bcsp.c ├── hci_h4.c ├── hci_h5.c ├── hci_intel.c ├── hci_ldisc.c ├── hci_ll.c ├── hci_mrvl.c ├── hci_nokia.c ├── hci_qca.c ├── hci_serdev.c ├── hci_uart.h ├── hci_vhci.c └── virtio_bt.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/.gitignore -------------------------------------------------------------------------------- /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/README.md -------------------------------------------------------------------------------- /ath3k.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/ath3k.c -------------------------------------------------------------------------------- /bcm203x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/bcm203x.c -------------------------------------------------------------------------------- /bfusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/bfusb.c -------------------------------------------------------------------------------- /bluecard_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/bluecard_cs.c -------------------------------------------------------------------------------- /bpa10x.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/bpa10x.c -------------------------------------------------------------------------------- /bt3c_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/bt3c_cs.c -------------------------------------------------------------------------------- /btbcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btbcm.c -------------------------------------------------------------------------------- /btbcm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btbcm.h -------------------------------------------------------------------------------- /btintel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btintel.c -------------------------------------------------------------------------------- /btintel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btintel.h -------------------------------------------------------------------------------- /btmrvl_debugfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmrvl_debugfs.c -------------------------------------------------------------------------------- /btmrvl_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmrvl_drv.h -------------------------------------------------------------------------------- /btmrvl_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmrvl_main.c -------------------------------------------------------------------------------- /btmrvl_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmrvl_sdio.c -------------------------------------------------------------------------------- /btmrvl_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmrvl_sdio.h -------------------------------------------------------------------------------- /btmtksdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmtksdio.c -------------------------------------------------------------------------------- /btmtkuart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btmtkuart.c -------------------------------------------------------------------------------- /btqca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btqca.c -------------------------------------------------------------------------------- /btqca.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btqca.h -------------------------------------------------------------------------------- /btqcomsmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btqcomsmd.c -------------------------------------------------------------------------------- /btrsi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btrsi.c -------------------------------------------------------------------------------- /btrtl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btrtl.c -------------------------------------------------------------------------------- /btrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btrtl.h -------------------------------------------------------------------------------- /btsdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btsdio.c -------------------------------------------------------------------------------- /btusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/btusb.c -------------------------------------------------------------------------------- /dtl1_cs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/dtl1_cs.c -------------------------------------------------------------------------------- /firmware/rtl8852bu_config.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/firmware/rtl8852bu_config.bin -------------------------------------------------------------------------------- /firmware/rtl8852bu_fw.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/firmware/rtl8852bu_fw.bin -------------------------------------------------------------------------------- /h4_recv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/h4_recv.h -------------------------------------------------------------------------------- /hci_ag6xx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_ag6xx.c -------------------------------------------------------------------------------- /hci_ath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_ath.c -------------------------------------------------------------------------------- /hci_bcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_bcm.c -------------------------------------------------------------------------------- /hci_bcsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_bcsp.c -------------------------------------------------------------------------------- /hci_h4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_h4.c -------------------------------------------------------------------------------- /hci_h5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_h5.c -------------------------------------------------------------------------------- /hci_intel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_intel.c -------------------------------------------------------------------------------- /hci_ldisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_ldisc.c -------------------------------------------------------------------------------- /hci_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_ll.c -------------------------------------------------------------------------------- /hci_mrvl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_mrvl.c -------------------------------------------------------------------------------- /hci_nokia.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_nokia.c -------------------------------------------------------------------------------- /hci_qca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_qca.c -------------------------------------------------------------------------------- /hci_serdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_serdev.c -------------------------------------------------------------------------------- /hci_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_uart.h -------------------------------------------------------------------------------- /hci_vhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/hci_vhci.c -------------------------------------------------------------------------------- /virtio_bt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HRex39/rtl8852be_bt/HEAD/virtio_bt.c --------------------------------------------------------------------------------