├── .gitignore ├── LICENCE.TXT ├── Makefile ├── NOTICE.TXT ├── README ├── docs ├── AR9271.pdf ├── AR9280.pdf ├── atheros_ar7010.png ├── atheros_ar7010.svg ├── atheros_ar9271.png ├── atheros_ar9271.svg ├── firmware_commands.md ├── memory_management.md ├── packet_injection.md ├── receive_path.md ├── transmit_path.md └── uart ├── local └── patches │ ├── binutils-elf32-xtensa-sec_cache.patch │ ├── binutils.patch │ └── gcc.patch ├── sboot ├── include │ ├── xtensa-elf │ │ └── xtensa │ │ │ ├── config │ │ │ └── core.h │ │ │ ├── corebits.h │ │ │ ├── hal.h │ │ │ └── xtruntime.h │ └── xtensa │ │ └── config │ │ ├── core-isa.h │ │ ├── core-matmap.h │ │ ├── specreg.h │ │ └── tie.h ├── k2_1_0 │ ├── image │ │ └── k2_ram │ │ │ ├── Makefile │ │ │ ├── builds_fusion_vista.ram │ │ │ ├── rom.addrs.ld │ │ │ ├── target.ram.ld │ │ │ └── target.ram_debug.ld │ ├── lib │ │ └── ram │ │ │ └── dummy.txt │ └── ram │ │ ├── adf │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── buf_pool │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── carrier_apd │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── cmnos │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── hif │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── htc │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── init │ │ ├── Makefile │ │ └── Makefile.ss │ │ ├── wlan │ │ ├── Makefile │ │ └── Makefile.ss │ │ └── wmi │ │ ├── Makefile │ │ └── Makefile.ss ├── magpie_1_1 │ ├── image │ │ ├── magpie_ram │ │ │ ├── Makefile │ │ │ ├── merlin_fusion.ram │ │ │ ├── target.ram.ld │ │ │ └── target_gmac.ram.ld │ │ └── output │ │ │ ├── asic │ │ │ ├── rom.asic.addrs.ld │ │ │ ├── rom.asic.bin │ │ │ ├── rom.asic.hex │ │ │ ├── rom.asic.map │ │ │ ├── rom.asic.objdump │ │ │ └── rom.asic.out │ │ │ └── fpga │ │ │ ├── rom.fpga.addrs.ld │ │ │ ├── rom.fpga.bin │ │ │ ├── rom.fpga.hex │ │ │ ├── rom.fpga.map │ │ │ ├── rom.fpga.objdump │ │ │ └── rom.fpga.out │ ├── inc │ │ ├── Magpie_api.h │ │ ├── adf_nbuf_pvt.h │ │ ├── allocram_api.h │ │ ├── athos_api.h │ │ ├── buf_pool_api.h │ │ ├── clock_api.h │ │ ├── cmnos_api.h │ │ ├── dma_engine_api.h │ │ ├── dma_lib.h │ │ ├── eeprom_api.h │ │ ├── hif_api.h │ │ ├── hif_gmac.h │ │ ├── hif_pci.h │ │ ├── hif_usb.h │ │ ├── htc_api.h │ │ ├── intr_api.h │ │ ├── magpie │ │ │ ├── reg_defs.h │ │ │ └── rom_cfg.h │ │ ├── magpie_mem.h │ │ ├── magpie_regdump.h │ │ ├── mem_api.h │ │ ├── misc_api.h │ │ ├── opt_ah.h │ │ ├── printf_api.h │ │ ├── regdump.h │ │ ├── romp_api.h │ │ ├── string_api.h │ │ ├── sys_cfg.h │ │ ├── tasklet_api.h │ │ ├── timer_api.h │ │ ├── uart_api.h │ │ ├── usb_api.h │ │ ├── usb_extr.h │ │ ├── usb_pre.h │ │ ├── usb_std.h │ │ ├── usb_table.h │ │ ├── usb_type.h │ │ ├── usbfifo_api.h │ │ ├── vbuf_api.h │ │ ├── vdesc_api.h │ │ └── wdt_api.h │ ├── lib │ │ ├── ram │ │ │ └── dummy.txt │ │ ├── rom │ │ │ └── dummy.txt │ │ └── sboot │ │ │ └── dummy.txt │ ├── ram │ │ ├── adf │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ │ ├── carrier_apd │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ │ ├── cmnos │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ │ ├── init │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ │ ├── rompatch │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ │ ├── wlan │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ │ └── wmi │ │ │ ├── Makefile │ │ │ └── Makefile.ss │ └── sboot │ │ ├── adf │ │ ├── Makefile │ │ └── nbuf │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ └── inc │ │ │ └── adf_nbuf_pvt.h │ │ ├── athos │ │ ├── Makefile │ │ ├── Makefile.ss │ │ └── src │ │ │ ├── _vectors.o │ │ │ ├── athos_main.c │ │ │ ├── crt1-tiny.o │ │ │ ├── libhandlers-board.a │ │ │ └── xtos │ │ │ ├── Makefile │ │ │ ├── Makefile.src │ │ │ ├── _sharedvectors-for-reset.S │ │ │ ├── _sharedvectors.S │ │ │ ├── _vectors.S │ │ │ ├── checkvecsize │ │ │ ├── crt0-app.S │ │ │ ├── crt1-boards.S │ │ │ ├── crt1-sim.S │ │ │ ├── crt1-tiny.S │ │ │ ├── debug-vector.S │ │ │ ├── deprecated.S │ │ │ ├── double-vector.S │ │ │ ├── exc-alloca-handler.S │ │ │ ├── exc-c-wrapper-handler.S │ │ │ ├── exc-return.S │ │ │ ├── exc-sethandler.c │ │ │ ├── exc-syscall-c-handler.c │ │ │ ├── exc-syscall-handler.S │ │ │ ├── exc-table.S │ │ │ ├── exc-unhandled.S │ │ │ ├── exit.S │ │ │ ├── init.c │ │ │ ├── int-handler.S │ │ │ ├── int-highpri-dispatcher.S │ │ │ ├── int-highpri-template.S │ │ │ ├── int-initlevel.S │ │ │ ├── int-lowpri-dispatcher.S │ │ │ ├── int-medpri-dispatcher.S │ │ │ ├── int-sethandler.c │ │ │ ├── int-vector.S │ │ │ ├── interrupt-pri.h │ │ │ ├── interrupt-table.S │ │ │ ├── intlevel-restore.S │ │ │ ├── intlevel-set.S │ │ │ ├── intlevel-setmin.S │ │ │ ├── ints-off.S │ │ │ ├── ints-on.S │ │ │ ├── kernel-vector.S │ │ │ ├── memep-enable.S │ │ │ ├── memep-initrams.S │ │ │ ├── memerror-vector.S │ │ │ ├── nmi-vector.S │ │ │ ├── null-alloca.S │ │ │ ├── null-syscall.S │ │ │ ├── null-vectors.S │ │ │ ├── reloc-vectors.S │ │ │ ├── reset-unneeded.S │ │ │ ├── reset-vector.S │ │ │ ├── shared-reset-vector.S │ │ │ ├── switch_context.S │ │ │ ├── textaddr │ │ │ ├── tiny-refs-min.S │ │ │ ├── tiny-refs.S │ │ │ ├── user-vector-min.S │ │ │ ├── user-vector.S │ │ │ ├── window-vectors.S │ │ │ ├── xtos-internal.h │ │ │ └── xtos-params.h │ │ ├── buf_pool │ │ ├── Makefile │ │ ├── Makefile.ss │ │ ├── inc │ │ │ └── buf_pool_api.h │ │ └── src │ │ │ ├── buf_pool_static.c │ │ │ └── buf_pool_static.h │ │ ├── cmnos │ │ ├── Makefile │ │ ├── allocram │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── allocram_api.h │ │ │ └── src │ │ │ │ └── cmnos_allocram.c │ │ ├── clock │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── clock_api.h │ │ │ └── src │ │ │ │ └── cmnos_clock.c │ │ ├── eeprom │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── eeprom_api.h │ │ │ └── src │ │ │ │ └── cmnos_eeprom.c │ │ ├── inc │ │ │ └── cmnos_api.h │ │ ├── intr │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── intr_api.h │ │ │ └── src │ │ │ │ └── cmnos_intr.c │ │ ├── mem │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── mem_api.h │ │ │ └── src │ │ │ │ └── cmnos_mem.c │ │ ├── misc │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── misc_api.h │ │ │ └── src │ │ │ │ └── cmnos_misc.c │ │ ├── printf │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── printf_api.h │ │ │ └── src │ │ │ │ └── cmnos_printf.c │ │ ├── rompatch │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── romp_api.h │ │ │ └── src │ │ │ │ └── cmnos_rompatch.c │ │ ├── sflash │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── sflash_api.h │ │ │ └── src │ │ │ │ └── cmnos_sflash.c │ │ ├── string │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── string_api.h │ │ │ └── src │ │ │ │ └── cmnos_string.c │ │ ├── tasklet │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── tasklet_api.h │ │ │ └── src │ │ │ │ └── cmnos_tasklet.c │ │ ├── timer │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── timer_api.h │ │ │ └── src │ │ │ │ └── cmnos_timer.c │ │ ├── uart │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ │ └── uart_api.h │ │ │ └── src │ │ │ │ └── uart_api.c │ │ └── wdt │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ ├── inc │ │ │ └── wdt_api.h │ │ │ └── src │ │ │ └── cmnos_wdt.c │ │ ├── dma_engine │ │ ├── Makefile │ │ ├── Makefile.ss │ │ ├── inc │ │ │ └── dma_engine_api.h │ │ └── src │ │ │ ├── desc.c │ │ │ ├── desc.h │ │ │ └── dma_engine.c │ │ ├── fwd │ │ ├── Makefile │ │ ├── Makefile.ss │ │ ├── fwd.c │ │ └── fwd.h │ │ ├── hif │ │ ├── Makefile │ │ ├── dma_lib │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ └── dma_lib.c │ │ ├── gmac │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ └── hif_gmac.c │ │ ├── inc │ │ │ ├── dma_lib.h │ │ │ ├── hif_api.h │ │ │ ├── hif_gmac.h │ │ │ ├── hif_pci.h │ │ │ ├── hif_usb.h │ │ │ ├── usb_api.h │ │ │ └── usbfifo_api.h │ │ ├── pci │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ └── hif_pci.c │ │ └── usb │ │ │ ├── Makefile │ │ │ ├── Makefile.ss │ │ │ └── src │ │ │ ├── HIF_usb.c │ │ │ ├── usb_api.c │ │ │ ├── usb_defs.h │ │ │ ├── usb_extr.h │ │ │ ├── usb_fifo.c │ │ │ ├── usb_pre.h │ │ │ ├── usb_std.h │ │ │ ├── usb_table.c │ │ │ ├── usb_table.h │ │ │ └── usb_type.h │ │ ├── htc │ │ ├── Makefile │ │ ├── Makefile.ss │ │ ├── inc │ │ │ └── htc_api.h │ │ └── src │ │ │ ├── htc.c │ │ │ └── htc_internal.h │ │ ├── inc │ │ ├── Magpie_api.h │ │ ├── athos_api.h │ │ ├── magpie │ │ │ ├── reg_defs.h │ │ │ └── rom_cfg.h │ │ ├── magpie_mem.h │ │ ├── magpie_regdump.h │ │ ├── opt_ah.h │ │ ├── regdump.h │ │ └── sys_cfg.h │ │ ├── vbuf │ │ ├── Makefile │ │ ├── Makefile.ss │ │ ├── inc │ │ │ └── vbuf_api.h │ │ └── src │ │ │ ├── vbuf.c │ │ │ └── vbuf.h │ │ └── vdesc │ │ ├── Makefile │ │ ├── Makefile.ss │ │ ├── inc │ │ └── vdesc_api.h │ │ └── src │ │ ├── vdesc.c │ │ └── vdesc.h ├── make_opt │ ├── Makefile.h │ ├── Rules.make │ ├── RulesCPP.make │ └── lib │ │ ├── _vectors.o │ │ ├── crt1-tiny.o │ │ └── libhandlers-board.a └── utility │ ├── Makefile │ ├── adjust_dep │ ├── Makefile │ └── adj_dep.c │ ├── adjust_time │ ├── Makefile │ └── adj_time.c │ ├── athfw2lnx │ ├── Makefile │ └── athfw2lnx.c │ ├── bin2hex.pl │ ├── bin2hex │ ├── Makefile │ ├── bin2hex.c │ └── bin2hex_swp.c │ ├── imghdr │ ├── Makefile │ └── imghdr.c │ ├── patch_gen │ ├── Makefile │ ├── dt_defs.h │ ├── main.c │ ├── patch.c │ └── patch.h │ └── sh │ ├── make_fw.sh │ └── make_ld.sh ├── scripts ├── checkpatch.pl └── pre-commit.sh └── target_firmware ├── .gitignore ├── CMakeLists.txt ├── Makefile ├── configure ├── firmware-crc.pl ├── install.sh ├── magpie_fw_dev └── target │ ├── adf │ ├── adf_nbuf.c │ ├── adf_nbuf_pvt.h │ ├── adf_net.c │ ├── adf_net_pvt.h │ ├── adf_os_atomic_pvt.h │ ├── adf_os_defer_pvt.c │ ├── adf_os_defer_pvt.h │ ├── adf_os_dma.c │ ├── adf_os_dma_pvt.h │ ├── adf_os_io_pvt.h │ ├── adf_os_irq_pvt.c │ ├── adf_os_irq_pvt.h │ ├── adf_os_lock_pvt.h │ ├── adf_os_mem_pvt.h │ ├── adf_os_module_pvt.h │ ├── adf_os_pci_pvt.h │ ├── adf_os_time_pvt.h │ ├── adf_os_timer.c │ ├── adf_os_timer_pvt.h │ ├── adf_os_types_pvt.h │ └── adf_os_util_pvt.h │ ├── buf_pool │ ├── buf_pool_api.h │ ├── buf_pool_dynamic.c │ ├── buf_pool_static.c │ └── buf_pool_static.h │ ├── cmnos │ ├── clock_api.h │ ├── cmnos_api.h │ ├── cmnos_clock.c │ ├── cmnos_printf.c │ ├── cmnos_sflash.c │ ├── dbg_api.c │ ├── dbg_api.h │ ├── k2_cmnos_clock_patch.c │ ├── k2_fw_cmnos_printf.c │ ├── printf_api.h │ └── sflash_api.h │ ├── hif │ ├── k2_HIF_usb_patch.c │ ├── usb_api_k2_patch.c │ ├── usb_api_magpie_patch.c │ └── usb_api_main_patch.c │ ├── htc │ ├── htc.c │ ├── htc_api.h │ ├── htc_internal.h │ └── htc_tgt.c │ ├── inc │ ├── OTUS │ │ ├── OTUS_htc.h │ │ ├── OTUS_misc.h │ │ └── OTUS_soc.h │ ├── adf_nbuf.h │ ├── adf_net.h │ ├── adf_net_sw.h │ ├── adf_net_types.h │ ├── adf_net_wcmd.h │ ├── adf_os_atomic.h │ ├── adf_os_bitops.h │ ├── adf_os_crypto.h │ ├── adf_os_defer.h │ ├── adf_os_dma.h │ ├── adf_os_io.h │ ├── adf_os_irq.h │ ├── adf_os_lock.h │ ├── adf_os_mem.h │ ├── adf_os_module.h │ ├── adf_os_pci.h │ ├── adf_os_pseudo.h │ ├── adf_os_stdtypes.h │ ├── adf_os_time.h │ ├── adf_os_timer.h │ ├── adf_os_types.h │ ├── adf_os_util.h │ ├── asf_bitmap.h │ ├── asf_queue.h │ ├── asf_sm.h │ ├── dt_defs.h │ ├── k2 │ │ ├── Magpie_api.h │ │ ├── allocram_api.h │ │ ├── athos_api.h │ │ ├── clock_api.h │ │ ├── cmnos_api.h │ │ ├── dma_engine_api.h │ │ ├── dma_lib.h │ │ ├── eeprom_api.h │ │ ├── hif_api.h │ │ ├── hif_gmac.h │ │ ├── hif_pci.h │ │ ├── hif_usb.h │ │ ├── intr_api.h │ │ ├── k2 │ │ │ ├── reg_defs.h │ │ │ └── rom_cfg.h │ │ ├── k2_mem.h │ │ ├── magpie_mem.h │ │ ├── magpie_regdump.h │ │ ├── mem_api.h │ │ ├── misc_api.h │ │ ├── opt_ah.h │ │ ├── printf_api.h │ │ ├── regdump.h │ │ ├── romp_api.h │ │ ├── string_api.h │ │ ├── sys_cfg.h │ │ ├── tasklet_api.h │ │ ├── timer_api.h │ │ ├── uart_api.h │ │ ├── usb_table.h │ │ ├── vbuf_api.h │ │ ├── vdesc_api.h │ │ └── wdt_api.h │ ├── linux │ │ └── compiler.h │ ├── magpie │ │ ├── Magpie_api.h │ │ ├── adf_nbuf_pvt.h │ │ ├── allocram_api.h │ │ ├── athos_api.h │ │ ├── buf_pool_api.h │ │ ├── clock_api.h │ │ ├── cmnos_api.h │ │ ├── dma_engine_api.h │ │ ├── dma_lib.h │ │ ├── eeprom_api.h │ │ ├── hif_api.h │ │ ├── hif_gmac.h │ │ ├── hif_pci.h │ │ ├── hif_usb.h │ │ ├── htc_api.h │ │ ├── intr_api.h │ │ ├── magpie │ │ │ ├── reg_defs.h │ │ │ └── rom_cfg.h │ │ ├── magpie_mem.h │ │ ├── magpie_regdump.h │ │ ├── mem_api.h │ │ ├── misc_api.h │ │ ├── opt_ah.h │ │ ├── printf_api.h │ │ ├── regdump.h │ │ ├── romp_api.h │ │ ├── string_api.h │ │ ├── sys_cfg.h │ │ ├── tasklet_api.h │ │ ├── timer_api.h │ │ ├── uart_api.h │ │ ├── usb_table.h │ │ ├── vbuf_api.h │ │ ├── vdesc_api.h │ │ └── wdt_api.h │ ├── osapi.h │ ├── usb_api.h │ ├── usb_defs.h │ ├── usb_extr.h │ ├── usb_pre.h │ ├── usb_std.h │ ├── usb_type.h │ ├── usbfifo_api.h │ ├── xtensa-elf │ │ └── xtensa │ │ │ ├── config │ │ │ └── core.h │ │ │ ├── corebits.h │ │ │ ├── hal.h │ │ │ └── xtruntime.h │ └── xtensa │ │ └── config │ │ ├── core-isa.h │ │ ├── core-matmap.h │ │ ├── specreg.h │ │ └── tie.h │ ├── init │ ├── app_start.c │ ├── init.c │ ├── init.h │ └── magpie.c │ ├── rompatch │ ├── HIF_usb_patch.c │ └── cmnos_clock_patch.c │ ├── wlan │ ├── wlan_pci.c │ └── wlan_pci.h │ └── wmi │ ├── wmi_internal.h │ ├── wmi_svc.c │ └── wmi_svc_api.h ├── ram-k2.ld ├── ram-magpie.ld ├── rom-addrs-k2.ld ├── rom-addrs-magpie.ld └── wlan ├── _ieee80211.h ├── ah.c ├── ah.h ├── ah_desc.h ├── ah_internal.h ├── ah_osdep.c ├── ah_osdep.h ├── ar5416.h ├── ar5416Phy.c ├── ar5416_hw.c ├── ar5416_phy.c ├── ar5416desc.h ├── ar5416reg.h ├── attacks.c ├── attacks.h ├── debug.c ├── debug.h ├── ieee80211.h ├── ieee80211_linux.h ├── ieee80211_node.h ├── ieee80211_output.c ├── ieee80211_proto.h ├── ieee80211_var.h ├── if_ath.c ├── if_ath_pci.c ├── if_ath_pci.h ├── if_athrate.h ├── if_athvar.h ├── if_llc.h ├── if_owl.c ├── include ├── athdefs.h ├── htc.h ├── htc_services.h ├── k2 │ └── wlan_cfg.h ├── magpie │ └── wlan_cfg.h ├── wlan_hdr.h └── wmi.h ├── modwifi.h ├── ratectrl.h ├── ratectrl11n.h └── ratectrl_11n_ln.c /.gitignore: -------------------------------------------------------------------------------- 1 | /toolchain 2 | -------------------------------------------------------------------------------- /LICENCE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/LICENCE.TXT -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.TXT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/NOTICE.TXT -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/README -------------------------------------------------------------------------------- /docs/AR9271.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/AR9271.pdf -------------------------------------------------------------------------------- /docs/AR9280.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/AR9280.pdf -------------------------------------------------------------------------------- /docs/atheros_ar7010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/atheros_ar7010.png -------------------------------------------------------------------------------- /docs/atheros_ar7010.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/atheros_ar7010.svg -------------------------------------------------------------------------------- /docs/atheros_ar9271.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/atheros_ar9271.png -------------------------------------------------------------------------------- /docs/atheros_ar9271.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/atheros_ar9271.svg -------------------------------------------------------------------------------- /docs/firmware_commands.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/firmware_commands.md -------------------------------------------------------------------------------- /docs/memory_management.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/memory_management.md -------------------------------------------------------------------------------- /docs/packet_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/packet_injection.md -------------------------------------------------------------------------------- /docs/receive_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/receive_path.md -------------------------------------------------------------------------------- /docs/transmit_path.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/transmit_path.md -------------------------------------------------------------------------------- /docs/uart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/docs/uart -------------------------------------------------------------------------------- /local/patches/binutils-elf32-xtensa-sec_cache.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/local/patches/binutils-elf32-xtensa-sec_cache.patch -------------------------------------------------------------------------------- /local/patches/binutils.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/local/patches/binutils.patch -------------------------------------------------------------------------------- /local/patches/gcc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/local/patches/gcc.patch -------------------------------------------------------------------------------- /sboot/include/xtensa-elf/xtensa/config/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa-elf/xtensa/config/core.h -------------------------------------------------------------------------------- /sboot/include/xtensa-elf/xtensa/corebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa-elf/xtensa/corebits.h -------------------------------------------------------------------------------- /sboot/include/xtensa-elf/xtensa/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa-elf/xtensa/hal.h -------------------------------------------------------------------------------- /sboot/include/xtensa-elf/xtensa/xtruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa-elf/xtensa/xtruntime.h -------------------------------------------------------------------------------- /sboot/include/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /sboot/include/xtensa/config/core-matmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa/config/core-matmap.h -------------------------------------------------------------------------------- /sboot/include/xtensa/config/specreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa/config/specreg.h -------------------------------------------------------------------------------- /sboot/include/xtensa/config/tie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/include/xtensa/config/tie.h -------------------------------------------------------------------------------- /sboot/k2_1_0/image/k2_ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/image/k2_ram/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/image/k2_ram/builds_fusion_vista.ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/image/k2_ram/builds_fusion_vista.ram -------------------------------------------------------------------------------- /sboot/k2_1_0/image/k2_ram/rom.addrs.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/image/k2_ram/rom.addrs.ld -------------------------------------------------------------------------------- /sboot/k2_1_0/image/k2_ram/target.ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/image/k2_ram/target.ram.ld -------------------------------------------------------------------------------- /sboot/k2_1_0/image/k2_ram/target.ram_debug.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/image/k2_ram/target.ram_debug.ld -------------------------------------------------------------------------------- /sboot/k2_1_0/lib/ram/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/adf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/adf/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/adf/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/adf/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/buf_pool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/buf_pool/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/buf_pool/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/buf_pool/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/carrier_apd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/carrier_apd/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/carrier_apd/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/carrier_apd/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/cmnos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/cmnos/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/cmnos/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/cmnos/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/hif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/hif/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/hif/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/hif/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/htc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/htc/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/htc/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/htc/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/init/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/init/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/init/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/wlan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/wlan/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/wlan/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/wlan/Makefile.ss -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/wmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/wmi/Makefile -------------------------------------------------------------------------------- /sboot/k2_1_0/ram/wmi/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/k2_1_0/ram/wmi/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/magpie_ram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/magpie_ram/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/magpie_ram/merlin_fusion.ram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/magpie_ram/merlin_fusion.ram -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/magpie_ram/target.ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/magpie_ram/target.ram.ld -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/magpie_ram/target_gmac.ram.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/magpie_ram/target_gmac.ram.ld -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/asic/rom.asic.addrs.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/asic/rom.asic.addrs.ld -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/asic/rom.asic.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/asic/rom.asic.bin -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/asic/rom.asic.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/asic/rom.asic.hex -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/asic/rom.asic.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/asic/rom.asic.map -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/asic/rom.asic.objdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/asic/rom.asic.objdump -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/asic/rom.asic.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/asic/rom.asic.out -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/fpga/rom.fpga.addrs.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/fpga/rom.fpga.addrs.ld -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/fpga/rom.fpga.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/fpga/rom.fpga.bin -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/fpga/rom.fpga.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/fpga/rom.fpga.hex -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/fpga/rom.fpga.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/fpga/rom.fpga.map -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/fpga/rom.fpga.objdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/fpga/rom.fpga.objdump -------------------------------------------------------------------------------- /sboot/magpie_1_1/image/output/fpga/rom.fpga.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/image/output/fpga/rom.fpga.out -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/Magpie_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/Magpie_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/adf_nbuf_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/adf_nbuf_pvt.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/allocram_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/allocram_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/athos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/athos_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/buf_pool_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/buf_pool_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/clock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/clock_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/cmnos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/cmnos_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/dma_engine_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/dma_engine_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/dma_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/dma_lib.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/eeprom_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/eeprom_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/hif_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/hif_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/hif_gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/hif_gmac.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/hif_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/hif_pci.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/hif_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/hif_usb.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/htc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/htc_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/intr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/intr_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/magpie/reg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/magpie/reg_defs.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/magpie/rom_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/magpie/rom_cfg.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/magpie_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/magpie_mem.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/magpie_regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/magpie_regdump.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/mem_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/mem_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/misc_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/opt_ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/opt_ah.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/printf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/printf_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/regdump.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/romp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/romp_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/string_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/string_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/sys_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/sys_cfg.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/tasklet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/tasklet_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/timer_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/timer_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/uart_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/uart_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usb_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usb_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usb_extr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usb_extr.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usb_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usb_pre.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usb_std.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usb_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usb_table.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usb_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usb_type.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/usbfifo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/usbfifo_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/vbuf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/vbuf_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/vdesc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/vdesc_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/inc/wdt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/inc/wdt_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/lib/ram/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sboot/magpie_1_1/lib/rom/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sboot/magpie_1_1/lib/sboot/dummy.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/adf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/adf/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/adf/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/adf/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/carrier_apd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/carrier_apd/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/carrier_apd/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/carrier_apd/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/cmnos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/cmnos/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/cmnos/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/cmnos/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/init/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/init/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/init/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/init/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/rompatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/rompatch/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/rompatch/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/rompatch/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/wlan/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/wlan/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/wlan/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/wlan/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/wmi/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/wmi/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/ram/wmi/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/ram/wmi/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/adf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/adf/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/adf/nbuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/adf/nbuf/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/adf/nbuf/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/adf/nbuf/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/adf/nbuf/inc/adf_nbuf_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/adf/nbuf/inc/adf_nbuf_pvt.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/_vectors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/_vectors.o -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/athos_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/athos_main.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/crt1-tiny.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/crt1-tiny.o -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/libhandlers-board.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/libhandlers-board.a -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/Makefile.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/Makefile.src -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/_sharedvectors-for-reset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/_sharedvectors-for-reset.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/_sharedvectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/_sharedvectors.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/_vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/_vectors.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/checkvecsize: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/checkvecsize -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/crt0-app.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/crt0-app.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/crt1-boards.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/crt1-boards.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/crt1-sim.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/crt1-sim.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/crt1-tiny.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/crt1-tiny.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/debug-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/debug-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/deprecated.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/deprecated.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/double-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/double-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-alloca-handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-alloca-handler.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-c-wrapper-handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-c-wrapper-handler.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-return.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-return.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-sethandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-sethandler.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-syscall-c-handler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-syscall-c-handler.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-syscall-handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-syscall-handler.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-table.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exc-unhandled.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exc-unhandled.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/exit.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/exit.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/init.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-handler.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-handler.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-highpri-dispatcher.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-highpri-dispatcher.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-highpri-template.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-highpri-template.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-initlevel.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-initlevel.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-lowpri-dispatcher.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-lowpri-dispatcher.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-medpri-dispatcher.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-medpri-dispatcher.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-sethandler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-sethandler.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/int-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/int-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/interrupt-pri.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/interrupt-pri.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/interrupt-table.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/interrupt-table.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/intlevel-restore.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/intlevel-restore.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/intlevel-set.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/intlevel-set.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/intlevel-setmin.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/intlevel-setmin.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/ints-off.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/ints-off.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/ints-on.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/ints-on.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/kernel-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/kernel-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/memep-enable.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/memep-enable.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/memep-initrams.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/memep-initrams.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/memerror-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/memerror-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/nmi-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/nmi-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/null-alloca.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/null-alloca.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/null-syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/null-syscall.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/null-vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/null-vectors.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/reloc-vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/reloc-vectors.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/reset-unneeded.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/reset-unneeded.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/reset-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/reset-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/shared-reset-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/shared-reset-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/switch_context.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/switch_context.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/textaddr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/textaddr -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/tiny-refs-min.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/tiny-refs-min.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/tiny-refs.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/tiny-refs.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/user-vector-min.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/user-vector-min.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/user-vector.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/user-vector.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/window-vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/window-vectors.S -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/xtos-internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/xtos-internal.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/athos/src/xtos/xtos-params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/athos/src/xtos/xtos-params.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/buf_pool/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/buf_pool/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/buf_pool/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/buf_pool/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/buf_pool/inc/buf_pool_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/buf_pool/inc/buf_pool_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/buf_pool/src/buf_pool_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/buf_pool/src/buf_pool_static.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/buf_pool/src/buf_pool_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/buf_pool/src/buf_pool_static.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/allocram/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/allocram/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/allocram/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/allocram/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/allocram/inc/allocram_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/allocram/inc/allocram_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/allocram/src/cmnos_allocram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/allocram/src/cmnos_allocram.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/clock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/clock/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/clock/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/clock/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/clock/inc/clock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/clock/inc/clock_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/clock/src/cmnos_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/clock/src/cmnos_clock.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/eeprom/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/eeprom/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/eeprom/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/eeprom/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/eeprom/inc/eeprom_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/eeprom/inc/eeprom_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/eeprom/src/cmnos_eeprom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/eeprom/src/cmnos_eeprom.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/inc/cmnos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/inc/cmnos_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/intr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/intr/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/intr/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/intr/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/intr/inc/intr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/intr/inc/intr_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/intr/src/cmnos_intr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/intr/src/cmnos_intr.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/mem/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/mem/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/mem/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/mem/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/mem/inc/mem_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/mem/inc/mem_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/mem/src/cmnos_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/mem/src/cmnos_mem.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/misc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/misc/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/misc/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/misc/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/misc/inc/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/misc/inc/misc_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/misc/src/cmnos_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/misc/src/cmnos_misc.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/printf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/printf/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/printf/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/printf/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/printf/inc/printf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/printf/inc/printf_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/printf/src/cmnos_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/printf/src/cmnos_printf.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/rompatch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/rompatch/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/rompatch/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/rompatch/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/rompatch/inc/romp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/rompatch/inc/romp_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/rompatch/src/cmnos_rompatch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/rompatch/src/cmnos_rompatch.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/sflash/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/sflash/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/sflash/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/sflash/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/sflash/inc/sflash_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/sflash/inc/sflash_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/sflash/src/cmnos_sflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/sflash/src/cmnos_sflash.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/string/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/string/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/string/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/string/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/string/inc/string_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/string/inc/string_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/string/src/cmnos_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/string/src/cmnos_string.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/tasklet/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/tasklet/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/tasklet/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/tasklet/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/tasklet/inc/tasklet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/tasklet/inc/tasklet_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/tasklet/src/cmnos_tasklet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/tasklet/src/cmnos_tasklet.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/timer/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/timer/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/timer/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/timer/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/timer/inc/timer_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/timer/inc/timer_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/timer/src/cmnos_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/timer/src/cmnos_timer.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/uart/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/uart/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/uart/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/uart/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/uart/inc/uart_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/uart/inc/uart_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/uart/src/uart_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/uart/src/uart_api.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/wdt/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/wdt/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/wdt/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/wdt/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/wdt/inc/wdt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/wdt/inc/wdt_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/cmnos/wdt/src/cmnos_wdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/cmnos/wdt/src/cmnos_wdt.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/dma_engine/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/dma_engine/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/dma_engine/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/dma_engine/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/dma_engine/inc/dma_engine_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/dma_engine/inc/dma_engine_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/dma_engine/src/desc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/dma_engine/src/desc.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/dma_engine/src/desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/dma_engine/src/desc.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/dma_engine/src/dma_engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/dma_engine/src/dma_engine.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/fwd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/fwd/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/fwd/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/fwd/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/fwd/fwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/fwd/fwd.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/fwd/fwd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/fwd/fwd.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/dma_lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/dma_lib/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/dma_lib/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/dma_lib/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/dma_lib/dma_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/dma_lib/dma_lib.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/gmac/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/gmac/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/gmac/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/gmac/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/gmac/hif_gmac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/gmac/hif_gmac.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/dma_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/dma_lib.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/hif_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/hif_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/hif_gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/hif_gmac.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/hif_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/hif_pci.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/hif_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/hif_usb.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/usb_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/usb_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/inc/usbfifo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/inc/usbfifo_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/pci/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/pci/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/pci/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/pci/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/pci/hif_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/pci/hif_pci.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/HIF_usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/HIF_usb.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_api.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_defs.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_extr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_extr.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_fifo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_fifo.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_pre.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_std.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_table.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_table.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_table.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/hif/usb/src/usb_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/hif/usb/src/usb_type.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/htc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/htc/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/htc/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/htc/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/htc/inc/htc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/htc/inc/htc_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/htc/src/htc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/htc/src/htc.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/htc/src/htc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/htc/src/htc_internal.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/Magpie_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/Magpie_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/athos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/athos_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/magpie/reg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/magpie/reg_defs.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/magpie/rom_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/magpie/rom_cfg.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/magpie_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/magpie_mem.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/magpie_regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/magpie_regdump.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/opt_ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/opt_ah.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/regdump.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/inc/sys_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/inc/sys_cfg.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vbuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vbuf/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vbuf/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vbuf/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vbuf/inc/vbuf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vbuf/inc/vbuf_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vbuf/src/vbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vbuf/src/vbuf.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vbuf/src/vbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vbuf/src/vbuf.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vdesc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vdesc/Makefile -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vdesc/Makefile.ss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vdesc/Makefile.ss -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vdesc/inc/vdesc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vdesc/inc/vdesc_api.h -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vdesc/src/vdesc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vdesc/src/vdesc.c -------------------------------------------------------------------------------- /sboot/magpie_1_1/sboot/vdesc/src/vdesc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/magpie_1_1/sboot/vdesc/src/vdesc.h -------------------------------------------------------------------------------- /sboot/make_opt/Makefile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/make_opt/Makefile.h -------------------------------------------------------------------------------- /sboot/make_opt/Rules.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/make_opt/Rules.make -------------------------------------------------------------------------------- /sboot/make_opt/RulesCPP.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/make_opt/RulesCPP.make -------------------------------------------------------------------------------- /sboot/make_opt/lib/_vectors.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/make_opt/lib/_vectors.o -------------------------------------------------------------------------------- /sboot/make_opt/lib/crt1-tiny.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/make_opt/lib/crt1-tiny.o -------------------------------------------------------------------------------- /sboot/make_opt/lib/libhandlers-board.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/make_opt/lib/libhandlers-board.a -------------------------------------------------------------------------------- /sboot/utility/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/Makefile -------------------------------------------------------------------------------- /sboot/utility/adjust_dep/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/adjust_dep/Makefile -------------------------------------------------------------------------------- /sboot/utility/adjust_dep/adj_dep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/adjust_dep/adj_dep.c -------------------------------------------------------------------------------- /sboot/utility/adjust_time/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/adjust_time/Makefile -------------------------------------------------------------------------------- /sboot/utility/adjust_time/adj_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/adjust_time/adj_time.c -------------------------------------------------------------------------------- /sboot/utility/athfw2lnx/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/athfw2lnx/Makefile -------------------------------------------------------------------------------- /sboot/utility/athfw2lnx/athfw2lnx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/athfw2lnx/athfw2lnx.c -------------------------------------------------------------------------------- /sboot/utility/bin2hex.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/bin2hex.pl -------------------------------------------------------------------------------- /sboot/utility/bin2hex/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/bin2hex/Makefile -------------------------------------------------------------------------------- /sboot/utility/bin2hex/bin2hex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/bin2hex/bin2hex.c -------------------------------------------------------------------------------- /sboot/utility/bin2hex/bin2hex_swp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/bin2hex/bin2hex_swp.c -------------------------------------------------------------------------------- /sboot/utility/imghdr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/imghdr/Makefile -------------------------------------------------------------------------------- /sboot/utility/imghdr/imghdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/imghdr/imghdr.c -------------------------------------------------------------------------------- /sboot/utility/patch_gen/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/patch_gen/Makefile -------------------------------------------------------------------------------- /sboot/utility/patch_gen/dt_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/patch_gen/dt_defs.h -------------------------------------------------------------------------------- /sboot/utility/patch_gen/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/patch_gen/main.c -------------------------------------------------------------------------------- /sboot/utility/patch_gen/patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/patch_gen/patch.c -------------------------------------------------------------------------------- /sboot/utility/patch_gen/patch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/patch_gen/patch.h -------------------------------------------------------------------------------- /sboot/utility/sh/make_fw.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/sh/make_fw.sh -------------------------------------------------------------------------------- /sboot/utility/sh/make_ld.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/sboot/utility/sh/make_ld.sh -------------------------------------------------------------------------------- /scripts/checkpatch.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/scripts/checkpatch.pl -------------------------------------------------------------------------------- /scripts/pre-commit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/scripts/pre-commit.sh -------------------------------------------------------------------------------- /target_firmware/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | /toolchain 3 | /*.fw 4 | -------------------------------------------------------------------------------- /target_firmware/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/CMakeLists.txt -------------------------------------------------------------------------------- /target_firmware/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/Makefile -------------------------------------------------------------------------------- /target_firmware/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/configure -------------------------------------------------------------------------------- /target_firmware/firmware-crc.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/firmware-crc.pl -------------------------------------------------------------------------------- /target_firmware/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/install.sh -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_nbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_nbuf.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_nbuf_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_nbuf_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_net.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_net_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_net_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_atomic_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_atomic_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_defer_pvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_defer_pvt.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_defer_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_defer_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_dma.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_dma_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_dma_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_io_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_io_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_irq_pvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_irq_pvt.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_irq_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_irq_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_lock_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_lock_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_mem_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_mem_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_module_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_module_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_pci_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_pci_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_time_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_time_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_timer.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_timer_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_timer_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_types_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_types_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/adf/adf_os_util_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/adf/adf_os_util_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_dynamic.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_static.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_static.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_static.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/buf_pool/buf_pool_static.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/clock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/clock_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/cmnos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/cmnos_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/cmnos_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/cmnos_clock.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/cmnos_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/cmnos_printf.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/cmnos_sflash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/cmnos_sflash.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/dbg_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/dbg_api.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/dbg_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/dbg_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/k2_cmnos_clock_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/k2_cmnos_clock_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/k2_fw_cmnos_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/k2_fw_cmnos_printf.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/printf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/printf_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/cmnos/sflash_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/cmnos/sflash_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/hif/k2_HIF_usb_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/hif/k2_HIF_usb_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/hif/usb_api_k2_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/hif/usb_api_k2_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/hif/usb_api_magpie_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/hif/usb_api_magpie_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/hif/usb_api_main_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/hif/usb_api_main_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/htc/htc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/htc/htc.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/htc/htc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/htc/htc_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/htc/htc_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/htc/htc_internal.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/htc/htc_tgt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/htc/htc_tgt.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/OTUS/OTUS_htc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/OTUS/OTUS_htc.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/OTUS/OTUS_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/OTUS/OTUS_misc.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/OTUS/OTUS_soc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/OTUS/OTUS_soc.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_nbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_nbuf.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_net.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_net.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_net_sw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_net_sw.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_net_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_net_types.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_net_wcmd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_net_wcmd.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_atomic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_atomic.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_bitops.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_crypto.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_defer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_defer.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_dma.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_io.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_io.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_irq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_irq.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_lock.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_mem.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_module.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_pci.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_pseudo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_pseudo.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_stdtypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_stdtypes.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_time.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_timer.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_types.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/adf_os_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/adf_os_util.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/asf_bitmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/asf_bitmap.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/asf_queue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/asf_queue.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/asf_sm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/asf_sm.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/dt_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/dt_defs.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/Magpie_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/Magpie_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/allocram_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/allocram_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/athos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/athos_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/clock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/clock_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/cmnos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/cmnos_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/dma_engine_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/dma_engine_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/dma_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/dma_lib.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/eeprom_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/eeprom_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/hif_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/hif_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/hif_gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/hif_gmac.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/hif_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/hif_pci.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/hif_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/hif_usb.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/intr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/intr_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/k2/reg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/k2/reg_defs.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/k2/rom_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/k2/rom_cfg.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/k2_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/k2_mem.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/magpie_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/magpie_mem.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/magpie_regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/magpie_regdump.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/mem_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/mem_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/misc_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/opt_ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/opt_ah.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/printf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/printf_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/regdump.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/romp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/romp_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/string_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/string_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/sys_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/sys_cfg.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/tasklet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/tasklet_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/timer_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/timer_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/uart_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/uart_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/usb_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/usb_table.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/vbuf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/vbuf_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/vdesc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/vdesc_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/k2/wdt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/k2/wdt_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/linux/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/linux/compiler.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/Magpie_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/Magpie_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/adf_nbuf_pvt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/adf_nbuf_pvt.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/allocram_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/allocram_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/athos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/athos_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/buf_pool_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/buf_pool_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/clock_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/clock_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/cmnos_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/cmnos_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/dma_engine_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/dma_engine_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/dma_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/dma_lib.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/eeprom_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/eeprom_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/hif_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/hif_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/hif_gmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/hif_gmac.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/hif_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/hif_pci.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/hif_usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/hif_usb.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/htc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/htc_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/intr_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/intr_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/magpie/reg_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/magpie/reg_defs.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/magpie/rom_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/magpie/rom_cfg.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/magpie_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/magpie_mem.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/magpie_regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/magpie_regdump.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/mem_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/mem_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/misc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/misc_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/opt_ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/opt_ah.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/printf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/printf_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/regdump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/regdump.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/romp_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/romp_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/string_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/string_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/sys_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/sys_cfg.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/tasklet_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/tasklet_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/timer_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/timer_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/uart_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/uart_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/usb_table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/usb_table.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/vbuf_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/vbuf_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/vdesc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/vdesc_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/magpie/wdt_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/magpie/wdt_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/osapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/osapi.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usb_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usb_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usb_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usb_defs.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usb_extr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usb_extr.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usb_pre.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usb_pre.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usb_std.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usb_std.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usb_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usb_type.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/usbfifo_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/usbfifo_api.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/config/core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/config/core.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/corebits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/corebits.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/hal.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/xtruntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa-elf/xtensa/xtruntime.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa/config/core-isa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa/config/core-isa.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa/config/core-matmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa/config/core-matmap.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa/config/specreg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa/config/specreg.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/inc/xtensa/config/tie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/inc/xtensa/config/tie.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/init/app_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/init/app_start.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/init/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/init/init.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/init/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/init/init.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/init/magpie.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/init/magpie.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/rompatch/HIF_usb_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/rompatch/HIF_usb_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/rompatch/cmnos_clock_patch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/rompatch/cmnos_clock_patch.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/wlan/wlan_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/wlan/wlan_pci.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/wlan/wlan_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/wlan/wlan_pci.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/wmi/wmi_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/wmi/wmi_internal.h -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/wmi/wmi_svc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/wmi/wmi_svc.c -------------------------------------------------------------------------------- /target_firmware/magpie_fw_dev/target/wmi/wmi_svc_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/magpie_fw_dev/target/wmi/wmi_svc_api.h -------------------------------------------------------------------------------- /target_firmware/ram-k2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/ram-k2.ld -------------------------------------------------------------------------------- /target_firmware/ram-magpie.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/ram-magpie.ld -------------------------------------------------------------------------------- /target_firmware/rom-addrs-k2.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/rom-addrs-k2.ld -------------------------------------------------------------------------------- /target_firmware/rom-addrs-magpie.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/rom-addrs-magpie.ld -------------------------------------------------------------------------------- /target_firmware/wlan/_ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/_ieee80211.h -------------------------------------------------------------------------------- /target_firmware/wlan/ah.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ah.c -------------------------------------------------------------------------------- /target_firmware/wlan/ah.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ah.h -------------------------------------------------------------------------------- /target_firmware/wlan/ah_desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ah_desc.h -------------------------------------------------------------------------------- /target_firmware/wlan/ah_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ah_internal.h -------------------------------------------------------------------------------- /target_firmware/wlan/ah_osdep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ah_osdep.c -------------------------------------------------------------------------------- /target_firmware/wlan/ah_osdep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ah_osdep.h -------------------------------------------------------------------------------- /target_firmware/wlan/ar5416.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ar5416.h -------------------------------------------------------------------------------- /target_firmware/wlan/ar5416Phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ar5416Phy.c -------------------------------------------------------------------------------- /target_firmware/wlan/ar5416_hw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ar5416_hw.c -------------------------------------------------------------------------------- /target_firmware/wlan/ar5416_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ar5416_phy.c -------------------------------------------------------------------------------- /target_firmware/wlan/ar5416desc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ar5416desc.h -------------------------------------------------------------------------------- /target_firmware/wlan/ar5416reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ar5416reg.h -------------------------------------------------------------------------------- /target_firmware/wlan/attacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/attacks.c -------------------------------------------------------------------------------- /target_firmware/wlan/attacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/attacks.h -------------------------------------------------------------------------------- /target_firmware/wlan/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/debug.c -------------------------------------------------------------------------------- /target_firmware/wlan/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/debug.h -------------------------------------------------------------------------------- /target_firmware/wlan/ieee80211.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ieee80211.h -------------------------------------------------------------------------------- /target_firmware/wlan/ieee80211_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ieee80211_linux.h -------------------------------------------------------------------------------- /target_firmware/wlan/ieee80211_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ieee80211_node.h -------------------------------------------------------------------------------- /target_firmware/wlan/ieee80211_output.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ieee80211_output.c -------------------------------------------------------------------------------- /target_firmware/wlan/ieee80211_proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ieee80211_proto.h -------------------------------------------------------------------------------- /target_firmware/wlan/ieee80211_var.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ieee80211_var.h -------------------------------------------------------------------------------- /target_firmware/wlan/if_ath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_ath.c -------------------------------------------------------------------------------- /target_firmware/wlan/if_ath_pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_ath_pci.c -------------------------------------------------------------------------------- /target_firmware/wlan/if_ath_pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_ath_pci.h -------------------------------------------------------------------------------- /target_firmware/wlan/if_athrate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_athrate.h -------------------------------------------------------------------------------- /target_firmware/wlan/if_athvar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_athvar.h -------------------------------------------------------------------------------- /target_firmware/wlan/if_llc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_llc.h -------------------------------------------------------------------------------- /target_firmware/wlan/if_owl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/if_owl.c -------------------------------------------------------------------------------- /target_firmware/wlan/include/athdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/athdefs.h -------------------------------------------------------------------------------- /target_firmware/wlan/include/htc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/htc.h -------------------------------------------------------------------------------- /target_firmware/wlan/include/htc_services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/htc_services.h -------------------------------------------------------------------------------- /target_firmware/wlan/include/k2/wlan_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/k2/wlan_cfg.h -------------------------------------------------------------------------------- /target_firmware/wlan/include/magpie/wlan_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/magpie/wlan_cfg.h -------------------------------------------------------------------------------- /target_firmware/wlan/include/wlan_hdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/wlan_hdr.h -------------------------------------------------------------------------------- /target_firmware/wlan/include/wmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/include/wmi.h -------------------------------------------------------------------------------- /target_firmware/wlan/modwifi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/modwifi.h -------------------------------------------------------------------------------- /target_firmware/wlan/ratectrl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ratectrl.h -------------------------------------------------------------------------------- /target_firmware/wlan/ratectrl11n.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ratectrl11n.h -------------------------------------------------------------------------------- /target_firmware/wlan/ratectrl_11n_ln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vanhoefm/modwifi-ath9k-htc/HEAD/target_firmware/wlan/ratectrl_11n_ln.c --------------------------------------------------------------------------------