├── Kconfig ├── Makefile ├── README.md ├── tty-sdio ├── Kconfig ├── Makefile ├── Makefile.old ├── alignment │ ├── sitm.c │ └── sitm.h ├── dump.c ├── dump.h ├── lpm.c ├── lpm.h ├── rfkill.c ├── rfkill.h ├── tty.c ├── tty.h ├── wakelock.h ├── woble.c └── woble.h ├── unisocwcn ├── Kconfig ├── Makefile ├── boot │ ├── Kconfig │ ├── Makefile │ ├── gnss_firmware_bin.h │ ├── marlin_firmware_bin.h │ ├── wcn_integrate.c │ ├── wcn_integrate.h │ ├── wcn_integrate_boot.c │ ├── wcn_integrate_boot.h │ ├── wcn_integrate_dev.c │ └── wcn_integrate_dev.h ├── fw │ ├── bin2hex │ ├── bin2hex.c │ ├── firmware_hex.h │ ├── usb_fdl.bin.hex │ ├── version.txt │ └── wcnmodem.bin.hex ├── gnss │ ├── Kconfig │ └── Makefile ├── include │ ├── bus_common.h │ ├── marlin_platform.h │ ├── mchn.h │ ├── uwe5621_glb.h │ ├── uwe5622_glb.h │ ├── uwe5623_glb.h │ ├── uwe562x_glb.h │ ├── vendor │ │ └── hisilicon │ │ │ ├── hi_drv_gpio.h │ │ │ └── hi_type.h │ ├── wcn_bus.h │ ├── wcn_glb.h │ ├── wcn_glb_reg.h │ └── wcn_types.h ├── log │ ├── Kconfig │ └── Makefile ├── pcie │ ├── Kconfig │ ├── Makefile │ ├── edma_engine.c │ ├── edma_engine.h │ ├── edma_test.c │ ├── ioctl.c │ ├── ioctl.h │ ├── mchn.c │ ├── mchn.h │ ├── pcie.c │ ├── pcie.h │ ├── pcie_attach_bus.c │ ├── pcie_dbg.c │ └── pcie_dbg.h ├── platform │ ├── Kconfig │ ├── Makefile │ ├── bufring.c │ ├── bufring.h │ ├── gnss │ │ ├── gnss_common.h │ │ ├── gnss_common_ctl.c │ │ ├── gnss_dbg.c │ │ ├── gnss_dump.c │ │ ├── gnss_dump.h │ │ └── gnss_pmnotify_ctl.c │ ├── loopcheck.c │ ├── loopcheck.h │ ├── mdbg_type.h │ ├── mem_pd_mgr.c │ ├── mem_pd_mgr.h │ ├── pcie_boot.c │ ├── pcie_boot.h │ ├── rdc_debug.c │ ├── rdc_debug.h │ ├── rf │ │ ├── rf.c │ │ └── rf.h │ ├── usb_boot.c │ ├── usb_boot.h │ ├── wcn_bind_helper.c │ ├── wcn_boot.c │ ├── wcn_debugfs.c │ ├── wcn_dump.c │ ├── wcn_dump.h │ ├── wcn_dump_integrate.c │ ├── wcn_dump_integrate.h │ ├── wcn_gnss.h │ ├── wcn_log.c │ ├── wcn_log.h │ ├── wcn_misc.c │ ├── wcn_misc.h │ ├── wcn_op.c │ ├── wcn_op.h │ ├── wcn_parn_parser.c │ ├── wcn_parn_parser.h │ ├── wcn_procfs.c │ ├── wcn_procfs.h │ ├── wcn_swd_dp.c │ ├── wcn_swd_dp.h │ ├── wcn_txrx.c │ └── wcn_txrx.h ├── sdio │ ├── Kconfig │ ├── Makefile │ ├── sdio_v3.c │ ├── sdiohal.h │ ├── sdiohal_common.c │ ├── sdiohal_ctl.c │ ├── sdiohal_main.c │ ├── sdiohal_rx.c │ └── sdiohal_tx.c ├── sipc │ ├── Kconfig │ ├── Makefile │ ├── wcn_sipc.c │ └── wcn_sipc.h ├── sleep │ ├── Kconfig │ ├── Makefile │ ├── sdio_int.c │ ├── sdio_int.h │ ├── slp_mgr.c │ ├── slp_mgr.h │ ├── slp_pcie.c │ ├── slp_pcie.h │ ├── slp_sdio.c │ ├── slp_sdio.h │ └── slp_test.c ├── tool │ ├── Kconfig │ ├── Makefile │ └── cp2log_config │ │ ├── readme.txt │ │ └── unisoc_cp2log_config.txt ├── usb │ ├── Kconfig │ ├── Makefile │ ├── wcn_usb.c │ ├── wcn_usb.h │ ├── wcn_usb_download.c │ ├── wcn_usb_io.c │ ├── wcn_usb_rx_tx.c │ ├── wcn_usb_store.c │ └── wcn_usb_test.c ├── vm │ ├── Kconfig │ └── Makefile └── wcn_bus.c ├── unisocwifi ├── 11h.c ├── 11h.h ├── Android.mk ├── Kconfig ├── Makefile ├── api_version.c ├── cfg80211.c ├── cfg80211.h ├── cmdevt.c ├── cmdevt.h ├── dbg_ini_util.c ├── dbg_ini_util.h ├── debug.c ├── debug.h ├── defrag.c ├── defrag.h ├── edma_test.c ├── edma_test.h ├── ibss.c ├── ibss.h ├── intf.h ├── intf_ops.h ├── main.c ├── mm.c ├── mm.h ├── msg.c ├── msg.h ├── nan.c ├── nan.h ├── npi.c ├── npi.h ├── qos.c ├── qos.h ├── reg_domain.c ├── reg_domain.h ├── reorder.c ├── reorder.h ├── rf_marlin3.c ├── rf_marlin3.h ├── rnd_mac_addr.c ├── rnd_mac_addr.h ├── rtt.c ├── rtt.h ├── rx_msg.c ├── rx_msg.h ├── softap_hook.c ├── softap_hook.h ├── sprdwl.h ├── tcp_ack.c ├── tcp_ack.h ├── tracer.c ├── tracer.h ├── tx_msg.c ├── tx_msg.h ├── txrx.c ├── txrx.h ├── vendor.c ├── vendor.h ├── version.h ├── wl_core.c ├── wl_core.h ├── wl_intf.c ├── wl_intf.h ├── work.c └── work.h ├── wifi_56630001_3ant.ini └── wifimac.txt /Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/Kconfig -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/README.md -------------------------------------------------------------------------------- /tty-sdio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/Kconfig -------------------------------------------------------------------------------- /tty-sdio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/Makefile -------------------------------------------------------------------------------- /tty-sdio/Makefile.old: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/Makefile.old -------------------------------------------------------------------------------- /tty-sdio/alignment/sitm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/alignment/sitm.c -------------------------------------------------------------------------------- /tty-sdio/alignment/sitm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/alignment/sitm.h -------------------------------------------------------------------------------- /tty-sdio/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/dump.c -------------------------------------------------------------------------------- /tty-sdio/dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/dump.h -------------------------------------------------------------------------------- /tty-sdio/lpm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/lpm.c -------------------------------------------------------------------------------- /tty-sdio/lpm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/lpm.h -------------------------------------------------------------------------------- /tty-sdio/rfkill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/rfkill.c -------------------------------------------------------------------------------- /tty-sdio/rfkill.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/rfkill.h -------------------------------------------------------------------------------- /tty-sdio/tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/tty.c -------------------------------------------------------------------------------- /tty-sdio/tty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/tty.h -------------------------------------------------------------------------------- /tty-sdio/wakelock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/wakelock.h -------------------------------------------------------------------------------- /tty-sdio/woble.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/woble.c -------------------------------------------------------------------------------- /tty-sdio/woble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/tty-sdio/woble.h -------------------------------------------------------------------------------- /unisocwcn/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/Kconfig -------------------------------------------------------------------------------- /unisocwcn/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/Makefile -------------------------------------------------------------------------------- /unisocwcn/boot/Kconfig: -------------------------------------------------------------------------------- 1 | # 2 | # Spreadtrum 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/boot/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/Makefile -------------------------------------------------------------------------------- /unisocwcn/boot/gnss_firmware_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/gnss_firmware_bin.h -------------------------------------------------------------------------------- /unisocwcn/boot/marlin_firmware_bin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/marlin_firmware_bin.h -------------------------------------------------------------------------------- /unisocwcn/boot/wcn_integrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/wcn_integrate.c -------------------------------------------------------------------------------- /unisocwcn/boot/wcn_integrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/wcn_integrate.h -------------------------------------------------------------------------------- /unisocwcn/boot/wcn_integrate_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/wcn_integrate_boot.c -------------------------------------------------------------------------------- /unisocwcn/boot/wcn_integrate_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/wcn_integrate_boot.h -------------------------------------------------------------------------------- /unisocwcn/boot/wcn_integrate_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/wcn_integrate_dev.c -------------------------------------------------------------------------------- /unisocwcn/boot/wcn_integrate_dev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/boot/wcn_integrate_dev.h -------------------------------------------------------------------------------- /unisocwcn/fw/bin2hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/fw/bin2hex -------------------------------------------------------------------------------- /unisocwcn/fw/bin2hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/fw/bin2hex.c -------------------------------------------------------------------------------- /unisocwcn/fw/firmware_hex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/fw/firmware_hex.h -------------------------------------------------------------------------------- /unisocwcn/fw/usb_fdl.bin.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/fw/usb_fdl.bin.hex -------------------------------------------------------------------------------- /unisocwcn/fw/version.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/fw/version.txt -------------------------------------------------------------------------------- /unisocwcn/fw/wcnmodem.bin.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/fw/wcnmodem.bin.hex -------------------------------------------------------------------------------- /unisocwcn/gnss/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/gnss/Kconfig -------------------------------------------------------------------------------- /unisocwcn/gnss/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/gnss/Makefile -------------------------------------------------------------------------------- /unisocwcn/include/bus_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/bus_common.h -------------------------------------------------------------------------------- /unisocwcn/include/marlin_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/marlin_platform.h -------------------------------------------------------------------------------- /unisocwcn/include/mchn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/mchn.h -------------------------------------------------------------------------------- /unisocwcn/include/uwe5621_glb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/uwe5621_glb.h -------------------------------------------------------------------------------- /unisocwcn/include/uwe5622_glb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/uwe5622_glb.h -------------------------------------------------------------------------------- /unisocwcn/include/uwe5623_glb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/uwe5623_glb.h -------------------------------------------------------------------------------- /unisocwcn/include/uwe562x_glb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/uwe562x_glb.h -------------------------------------------------------------------------------- /unisocwcn/include/vendor/hisilicon/hi_drv_gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/vendor/hisilicon/hi_drv_gpio.h -------------------------------------------------------------------------------- /unisocwcn/include/vendor/hisilicon/hi_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/vendor/hisilicon/hi_type.h -------------------------------------------------------------------------------- /unisocwcn/include/wcn_bus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/wcn_bus.h -------------------------------------------------------------------------------- /unisocwcn/include/wcn_glb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/wcn_glb.h -------------------------------------------------------------------------------- /unisocwcn/include/wcn_glb_reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/wcn_glb_reg.h -------------------------------------------------------------------------------- /unisocwcn/include/wcn_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/include/wcn_types.h -------------------------------------------------------------------------------- /unisocwcn/log/Kconfig: -------------------------------------------------------------------------------- 1 | # 2 | # Spreadtrum 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/log/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for SPREADTRUM 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/pcie/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/Kconfig -------------------------------------------------------------------------------- /unisocwcn/pcie/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/Makefile -------------------------------------------------------------------------------- /unisocwcn/pcie/edma_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/edma_engine.c -------------------------------------------------------------------------------- /unisocwcn/pcie/edma_engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/edma_engine.h -------------------------------------------------------------------------------- /unisocwcn/pcie/edma_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/edma_test.c -------------------------------------------------------------------------------- /unisocwcn/pcie/ioctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/ioctl.c -------------------------------------------------------------------------------- /unisocwcn/pcie/ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/ioctl.h -------------------------------------------------------------------------------- /unisocwcn/pcie/mchn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/mchn.c -------------------------------------------------------------------------------- /unisocwcn/pcie/mchn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/mchn.h -------------------------------------------------------------------------------- /unisocwcn/pcie/pcie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/pcie.c -------------------------------------------------------------------------------- /unisocwcn/pcie/pcie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/pcie.h -------------------------------------------------------------------------------- /unisocwcn/pcie/pcie_attach_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/pcie_attach_bus.c -------------------------------------------------------------------------------- /unisocwcn/pcie/pcie_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/pcie_dbg.c -------------------------------------------------------------------------------- /unisocwcn/pcie/pcie_dbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/pcie/pcie_dbg.h -------------------------------------------------------------------------------- /unisocwcn/platform/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/Kconfig -------------------------------------------------------------------------------- /unisocwcn/platform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/Makefile -------------------------------------------------------------------------------- /unisocwcn/platform/bufring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/bufring.c -------------------------------------------------------------------------------- /unisocwcn/platform/bufring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/bufring.h -------------------------------------------------------------------------------- /unisocwcn/platform/gnss/gnss_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/gnss/gnss_common.h -------------------------------------------------------------------------------- /unisocwcn/platform/gnss/gnss_common_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/gnss/gnss_common_ctl.c -------------------------------------------------------------------------------- /unisocwcn/platform/gnss/gnss_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/gnss/gnss_dbg.c -------------------------------------------------------------------------------- /unisocwcn/platform/gnss/gnss_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/gnss/gnss_dump.c -------------------------------------------------------------------------------- /unisocwcn/platform/gnss/gnss_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/gnss/gnss_dump.h -------------------------------------------------------------------------------- /unisocwcn/platform/gnss/gnss_pmnotify_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/gnss/gnss_pmnotify_ctl.c -------------------------------------------------------------------------------- /unisocwcn/platform/loopcheck.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/loopcheck.c -------------------------------------------------------------------------------- /unisocwcn/platform/loopcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/loopcheck.h -------------------------------------------------------------------------------- /unisocwcn/platform/mdbg_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/mdbg_type.h -------------------------------------------------------------------------------- /unisocwcn/platform/mem_pd_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/mem_pd_mgr.c -------------------------------------------------------------------------------- /unisocwcn/platform/mem_pd_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/mem_pd_mgr.h -------------------------------------------------------------------------------- /unisocwcn/platform/pcie_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/pcie_boot.c -------------------------------------------------------------------------------- /unisocwcn/platform/pcie_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/pcie_boot.h -------------------------------------------------------------------------------- /unisocwcn/platform/rdc_debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/rdc_debug.c -------------------------------------------------------------------------------- /unisocwcn/platform/rdc_debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/rdc_debug.h -------------------------------------------------------------------------------- /unisocwcn/platform/rf/rf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/rf/rf.c -------------------------------------------------------------------------------- /unisocwcn/platform/rf/rf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/rf/rf.h -------------------------------------------------------------------------------- /unisocwcn/platform/usb_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/usb_boot.c -------------------------------------------------------------------------------- /unisocwcn/platform/usb_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/usb_boot.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_bind_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_bind_helper.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_boot.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_debugfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_debugfs.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_dump.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_dump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_dump.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_dump_integrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_dump_integrate.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_dump_integrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_dump_integrate.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_gnss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_gnss.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_log.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_log.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_misc.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_misc.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_op.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_op.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_parn_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_parn_parser.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_parn_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_parn_parser.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_procfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_procfs.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_procfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_procfs.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_swd_dp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_swd_dp.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_swd_dp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_swd_dp.h -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_txrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_txrx.c -------------------------------------------------------------------------------- /unisocwcn/platform/wcn_txrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/platform/wcn_txrx.h -------------------------------------------------------------------------------- /unisocwcn/sdio/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/Kconfig -------------------------------------------------------------------------------- /unisocwcn/sdio/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/Makefile -------------------------------------------------------------------------------- /unisocwcn/sdio/sdio_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdio_v3.c -------------------------------------------------------------------------------- /unisocwcn/sdio/sdiohal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdiohal.h -------------------------------------------------------------------------------- /unisocwcn/sdio/sdiohal_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdiohal_common.c -------------------------------------------------------------------------------- /unisocwcn/sdio/sdiohal_ctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdiohal_ctl.c -------------------------------------------------------------------------------- /unisocwcn/sdio/sdiohal_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdiohal_main.c -------------------------------------------------------------------------------- /unisocwcn/sdio/sdiohal_rx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdiohal_rx.c -------------------------------------------------------------------------------- /unisocwcn/sdio/sdiohal_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sdio/sdiohal_tx.c -------------------------------------------------------------------------------- /unisocwcn/sipc/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sipc/Kconfig -------------------------------------------------------------------------------- /unisocwcn/sipc/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_WCN_SIPC) += wcn_sipc.o 2 | -------------------------------------------------------------------------------- /unisocwcn/sipc/wcn_sipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sipc/wcn_sipc.c -------------------------------------------------------------------------------- /unisocwcn/sipc/wcn_sipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sipc/wcn_sipc.h -------------------------------------------------------------------------------- /unisocwcn/sleep/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/Kconfig -------------------------------------------------------------------------------- /unisocwcn/sleep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/Makefile -------------------------------------------------------------------------------- /unisocwcn/sleep/sdio_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/sdio_int.c -------------------------------------------------------------------------------- /unisocwcn/sleep/sdio_int.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/sdio_int.h -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_mgr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/slp_mgr.c -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_mgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/slp_mgr.h -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_pcie.c: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_pcie.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_sdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/slp_sdio.c -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_sdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/slp_sdio.h -------------------------------------------------------------------------------- /unisocwcn/sleep/slp_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/sleep/slp_test.c -------------------------------------------------------------------------------- /unisocwcn/tool/Kconfig: -------------------------------------------------------------------------------- 1 | # 2 | # Spreadtrum 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/tool/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for SPREADTRUM 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/tool/cp2log_config/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/tool/cp2log_config/readme.txt -------------------------------------------------------------------------------- /unisocwcn/tool/cp2log_config/unisoc_cp2log_config.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/tool/cp2log_config/unisoc_cp2log_config.txt -------------------------------------------------------------------------------- /unisocwcn/usb/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/Kconfig -------------------------------------------------------------------------------- /unisocwcn/usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/Makefile -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb.c -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb.h -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb_download.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb_download.c -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb_io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb_io.c -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb_rx_tx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb_rx_tx.c -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb_store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb_store.c -------------------------------------------------------------------------------- /unisocwcn/usb/wcn_usb_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/usb/wcn_usb_test.c -------------------------------------------------------------------------------- /unisocwcn/vm/Kconfig: -------------------------------------------------------------------------------- 1 | # 2 | # Spreadtrum 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/vm/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # makefile for SPREADTRUM 3 | # 4 | -------------------------------------------------------------------------------- /unisocwcn/wcn_bus.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwcn/wcn_bus.c -------------------------------------------------------------------------------- /unisocwifi/11h.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/11h.c -------------------------------------------------------------------------------- /unisocwifi/11h.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/11h.h -------------------------------------------------------------------------------- /unisocwifi/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/Android.mk -------------------------------------------------------------------------------- /unisocwifi/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/Kconfig -------------------------------------------------------------------------------- /unisocwifi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/Makefile -------------------------------------------------------------------------------- /unisocwifi/api_version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/api_version.c -------------------------------------------------------------------------------- /unisocwifi/cfg80211.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/cfg80211.c -------------------------------------------------------------------------------- /unisocwifi/cfg80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/cfg80211.h -------------------------------------------------------------------------------- /unisocwifi/cmdevt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/cmdevt.c -------------------------------------------------------------------------------- /unisocwifi/cmdevt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/cmdevt.h -------------------------------------------------------------------------------- /unisocwifi/dbg_ini_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/dbg_ini_util.c -------------------------------------------------------------------------------- /unisocwifi/dbg_ini_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/dbg_ini_util.h -------------------------------------------------------------------------------- /unisocwifi/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/debug.c -------------------------------------------------------------------------------- /unisocwifi/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/debug.h -------------------------------------------------------------------------------- /unisocwifi/defrag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/defrag.c -------------------------------------------------------------------------------- /unisocwifi/defrag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/defrag.h -------------------------------------------------------------------------------- /unisocwifi/edma_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/edma_test.c -------------------------------------------------------------------------------- /unisocwifi/edma_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/edma_test.h -------------------------------------------------------------------------------- /unisocwifi/ibss.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/ibss.c -------------------------------------------------------------------------------- /unisocwifi/ibss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/ibss.h -------------------------------------------------------------------------------- /unisocwifi/intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/intf.h -------------------------------------------------------------------------------- /unisocwifi/intf_ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/intf_ops.h -------------------------------------------------------------------------------- /unisocwifi/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/main.c -------------------------------------------------------------------------------- /unisocwifi/mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/mm.c -------------------------------------------------------------------------------- /unisocwifi/mm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/mm.h -------------------------------------------------------------------------------- /unisocwifi/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/msg.c -------------------------------------------------------------------------------- /unisocwifi/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/msg.h -------------------------------------------------------------------------------- /unisocwifi/nan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/nan.c -------------------------------------------------------------------------------- /unisocwifi/nan.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/nan.h -------------------------------------------------------------------------------- /unisocwifi/npi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/npi.c -------------------------------------------------------------------------------- /unisocwifi/npi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/npi.h -------------------------------------------------------------------------------- /unisocwifi/qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/qos.c -------------------------------------------------------------------------------- /unisocwifi/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/qos.h -------------------------------------------------------------------------------- /unisocwifi/reg_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/reg_domain.c -------------------------------------------------------------------------------- /unisocwifi/reg_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/reg_domain.h -------------------------------------------------------------------------------- /unisocwifi/reorder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/reorder.c -------------------------------------------------------------------------------- /unisocwifi/reorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/reorder.h -------------------------------------------------------------------------------- /unisocwifi/rf_marlin3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rf_marlin3.c -------------------------------------------------------------------------------- /unisocwifi/rf_marlin3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rf_marlin3.h -------------------------------------------------------------------------------- /unisocwifi/rnd_mac_addr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rnd_mac_addr.c -------------------------------------------------------------------------------- /unisocwifi/rnd_mac_addr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rnd_mac_addr.h -------------------------------------------------------------------------------- /unisocwifi/rtt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rtt.c -------------------------------------------------------------------------------- /unisocwifi/rtt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rtt.h -------------------------------------------------------------------------------- /unisocwifi/rx_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rx_msg.c -------------------------------------------------------------------------------- /unisocwifi/rx_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/rx_msg.h -------------------------------------------------------------------------------- /unisocwifi/softap_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/softap_hook.c -------------------------------------------------------------------------------- /unisocwifi/softap_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/softap_hook.h -------------------------------------------------------------------------------- /unisocwifi/sprdwl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/sprdwl.h -------------------------------------------------------------------------------- /unisocwifi/tcp_ack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/tcp_ack.c -------------------------------------------------------------------------------- /unisocwifi/tcp_ack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/tcp_ack.h -------------------------------------------------------------------------------- /unisocwifi/tracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/tracer.c -------------------------------------------------------------------------------- /unisocwifi/tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/tracer.h -------------------------------------------------------------------------------- /unisocwifi/tx_msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/tx_msg.c -------------------------------------------------------------------------------- /unisocwifi/tx_msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/tx_msg.h -------------------------------------------------------------------------------- /unisocwifi/txrx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/txrx.c -------------------------------------------------------------------------------- /unisocwifi/txrx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/txrx.h -------------------------------------------------------------------------------- /unisocwifi/vendor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/vendor.c -------------------------------------------------------------------------------- /unisocwifi/vendor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/vendor.h -------------------------------------------------------------------------------- /unisocwifi/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/version.h -------------------------------------------------------------------------------- /unisocwifi/wl_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/wl_core.c -------------------------------------------------------------------------------- /unisocwifi/wl_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/wl_core.h -------------------------------------------------------------------------------- /unisocwifi/wl_intf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/wl_intf.c -------------------------------------------------------------------------------- /unisocwifi/wl_intf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/wl_intf.h -------------------------------------------------------------------------------- /unisocwifi/work.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/work.c -------------------------------------------------------------------------------- /unisocwifi/work.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/unisocwifi/work.h -------------------------------------------------------------------------------- /wifi_56630001_3ant.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KryptonLee/uwe5621ds-aml/HEAD/wifi_56630001_3ant.ini -------------------------------------------------------------------------------- /wifimac.txt: -------------------------------------------------------------------------------- 1 | b8:59:ce:d8:03:0f 2 | --------------------------------------------------------------------------------