├── BP ├── Notes.md └── mediatek_dbginfo.ksy ├── COPYING.txt ├── DSP ├── .gitignore ├── MD32 │ ├── Notes.md │ ├── README.md │ ├── find_16bit_instructions.py │ ├── find_instructions.py │ ├── instruction_info.py │ ├── md32-binutils │ │ ├── .gitignore │ │ └── README.md │ ├── md32_dis.py │ └── swap_endian.py ├── Makefile ├── Notes.md ├── README.md ├── disasm.py ├── extract_fw.py ├── hd_be.sh ├── hd_be_decimal.py ├── hd_le.sh ├── hd_le_decimal.sh ├── mediatek_dbginfo_dsp.ksy ├── mediatek_lte_dsp_firmware.ksy └── mediatek_lte_dsp_firmware_v2.ksy ├── Documents.md ├── General-Notes.adoc ├── README.md ├── SoC ├── MT6735 │ ├── Notes.md │ ├── README.md │ ├── boot.sh │ ├── bootimg │ │ ├── .gitignore │ │ ├── README.md │ │ ├── build.sh │ │ ├── dump │ │ │ ├── .gitignore │ │ │ └── README.md │ │ └── ramdisk │ │ │ ├── .gitignore │ │ │ ├── 0001-disable-modem-init.patch │ │ │ ├── build.sh │ │ │ └── rebuild.sh │ ├── dump-to-bin.py │ ├── dump.sh │ ├── dump │ │ ├── .gitignore │ │ ├── Makefile │ │ └── dump.c │ ├── dump_md_debug_registers.sh │ ├── dump_md_smem.sh │ ├── kernel │ │ ├── .gitignore │ │ ├── 0001-fix-build.patch │ │ ├── 0002-enable-ccci-debug.patch │ │ ├── 0003-disable-dsp-memory-region-protection.patch │ │ ├── 0004-enable-wmt-debug.patch │ │ ├── 0005-fix-wmt_dev_dbg_write.patch │ │ ├── 0006-config.patch │ │ ├── README.md │ │ ├── build.sh │ │ └── rebuild.sh │ ├── md_dump.sh │ ├── md_poke.sh │ ├── md_poke │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── common.c │ │ ├── common.h │ │ ├── md_dump.c │ │ └── md_poke.c │ ├── modemfw │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── init.S │ │ ├── make_img.py │ │ ├── modem.ld │ │ ├── test.c │ │ └── vectors.S │ ├── mt6735.cfg │ ├── openocd.cfg │ ├── poke.sh │ ├── poke │ │ ├── .gitignore │ │ ├── Makefile │ │ └── poke.c │ ├── sd-jtag.sh │ ├── start-android-test-settings.sh │ └── start-engineer-mode.sh ├── MT6737M │ ├── README.md │ ├── dump │ ├── dump.sh │ ├── poke │ ├── poke.sh │ └── preloader │ │ ├── 0001-fix-build.patch │ │ ├── 0002-disable-BROM-lockout.patch │ │ ├── 0003-JTAG-over-SD-pins.patch │ │ └── README.md ├── MT6771 │ └── mt8183_pcm_allinone.ksy ├── MT8183 ├── common │ ├── README.md │ ├── bmo.py │ ├── demo │ │ ├── Makefile │ │ ├── hello-aarch64 │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── build_info.inc.c │ │ │ ├── init.S │ │ │ ├── linker.ld │ │ │ └── main.c │ │ ├── mode-switch │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── init.S │ │ │ ├── linker.ld │ │ │ └── main.c │ │ └── write-sequence │ │ │ ├── .gitignore │ │ │ ├── Makefile │ │ │ ├── linker.ld │ │ │ └── write-sequence.S │ ├── doc │ │ ├── BROM-Notes.md │ │ └── README.md │ ├── gcpu.py │ ├── handshake │ │ ├── .gitignore │ │ ├── Makefile │ │ ├── README.md │ │ └── handshake.c │ ├── init.py │ ├── make_image.py │ ├── md32.py │ ├── openocd.py │ ├── parse_brom_log.py │ ├── parse_efuses.py │ ├── pcm.py │ ├── socemu.py │ └── usbdl.py ├── mediatek_download_agent.ksy └── mediatek_preloader.ksy └── Tasks.md /BP/Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/BP/Notes.md -------------------------------------------------------------------------------- /BP/mediatek_dbginfo.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/BP/mediatek_dbginfo.ksy -------------------------------------------------------------------------------- /COPYING.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/COPYING.txt -------------------------------------------------------------------------------- /DSP/.gitignore: -------------------------------------------------------------------------------- 1 | mediatek_lte_dsp_firmware.py 2 | *.bin 3 | -------------------------------------------------------------------------------- /DSP/MD32/Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/Notes.md -------------------------------------------------------------------------------- /DSP/MD32/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/README.md -------------------------------------------------------------------------------- /DSP/MD32/find_16bit_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/find_16bit_instructions.py -------------------------------------------------------------------------------- /DSP/MD32/find_instructions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/find_instructions.py -------------------------------------------------------------------------------- /DSP/MD32/instruction_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/instruction_info.py -------------------------------------------------------------------------------- /DSP/MD32/md32-binutils/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/md32-binutils/.gitignore -------------------------------------------------------------------------------- /DSP/MD32/md32-binutils/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/md32-binutils/README.md -------------------------------------------------------------------------------- /DSP/MD32/md32_dis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/md32_dis.py -------------------------------------------------------------------------------- /DSP/MD32/swap_endian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/MD32/swap_endian.py -------------------------------------------------------------------------------- /DSP/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/Makefile -------------------------------------------------------------------------------- /DSP/Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/Notes.md -------------------------------------------------------------------------------- /DSP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/README.md -------------------------------------------------------------------------------- /DSP/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/disasm.py -------------------------------------------------------------------------------- /DSP/extract_fw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/extract_fw.py -------------------------------------------------------------------------------- /DSP/hd_be.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/hd_be.sh -------------------------------------------------------------------------------- /DSP/hd_be_decimal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/hd_be_decimal.py -------------------------------------------------------------------------------- /DSP/hd_le.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/hd_le.sh -------------------------------------------------------------------------------- /DSP/hd_le_decimal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/hd_le_decimal.sh -------------------------------------------------------------------------------- /DSP/mediatek_dbginfo_dsp.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/mediatek_dbginfo_dsp.ksy -------------------------------------------------------------------------------- /DSP/mediatek_lte_dsp_firmware.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/mediatek_lte_dsp_firmware.ksy -------------------------------------------------------------------------------- /DSP/mediatek_lte_dsp_firmware_v2.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/DSP/mediatek_lte_dsp_firmware_v2.ksy -------------------------------------------------------------------------------- /Documents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/Documents.md -------------------------------------------------------------------------------- /General-Notes.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/General-Notes.adoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/README.md -------------------------------------------------------------------------------- /SoC/MT6735/Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/Notes.md -------------------------------------------------------------------------------- /SoC/MT6735/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/README.md -------------------------------------------------------------------------------- /SoC/MT6735/boot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/boot.sh -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/.gitignore -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/README.md -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/build.sh -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/dump/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/dump/.gitignore -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/dump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/dump/README.md -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/ramdisk/.gitignore: -------------------------------------------------------------------------------- 1 | ramdisk* 2 | -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/ramdisk/0001-disable-modem-init.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/ramdisk/0001-disable-modem-init.patch -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/ramdisk/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/ramdisk/build.sh -------------------------------------------------------------------------------- /SoC/MT6735/bootimg/ramdisk/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/bootimg/ramdisk/rebuild.sh -------------------------------------------------------------------------------- /SoC/MT6735/dump-to-bin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/dump-to-bin.py -------------------------------------------------------------------------------- /SoC/MT6735/dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/dump.sh -------------------------------------------------------------------------------- /SoC/MT6735/dump/.gitignore: -------------------------------------------------------------------------------- 1 | dump 2 | -------------------------------------------------------------------------------- /SoC/MT6735/dump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/dump/Makefile -------------------------------------------------------------------------------- /SoC/MT6735/dump/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/dump/dump.c -------------------------------------------------------------------------------- /SoC/MT6735/dump_md_debug_registers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/dump_md_debug_registers.sh -------------------------------------------------------------------------------- /SoC/MT6735/dump_md_smem.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/dump_md_smem.sh -------------------------------------------------------------------------------- /SoC/MT6735/kernel/.gitignore: -------------------------------------------------------------------------------- 1 | android_kernel_mediatek_mt6735 2 | arm-eabi-4.8 3 | -------------------------------------------------------------------------------- /SoC/MT6735/kernel/0001-fix-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/0001-fix-build.patch -------------------------------------------------------------------------------- /SoC/MT6735/kernel/0002-enable-ccci-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/0002-enable-ccci-debug.patch -------------------------------------------------------------------------------- /SoC/MT6735/kernel/0003-disable-dsp-memory-region-protection.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/0003-disable-dsp-memory-region-protection.patch -------------------------------------------------------------------------------- /SoC/MT6735/kernel/0004-enable-wmt-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/0004-enable-wmt-debug.patch -------------------------------------------------------------------------------- /SoC/MT6735/kernel/0005-fix-wmt_dev_dbg_write.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/0005-fix-wmt_dev_dbg_write.patch -------------------------------------------------------------------------------- /SoC/MT6735/kernel/0006-config.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/0006-config.patch -------------------------------------------------------------------------------- /SoC/MT6735/kernel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/README.md -------------------------------------------------------------------------------- /SoC/MT6735/kernel/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/build.sh -------------------------------------------------------------------------------- /SoC/MT6735/kernel/rebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/kernel/rebuild.sh -------------------------------------------------------------------------------- /SoC/MT6735/md_dump.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_dump.sh -------------------------------------------------------------------------------- /SoC/MT6735/md_poke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke.sh -------------------------------------------------------------------------------- /SoC/MT6735/md_poke/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke/.gitignore -------------------------------------------------------------------------------- /SoC/MT6735/md_poke/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke/Makefile -------------------------------------------------------------------------------- /SoC/MT6735/md_poke/common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke/common.c -------------------------------------------------------------------------------- /SoC/MT6735/md_poke/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke/common.h -------------------------------------------------------------------------------- /SoC/MT6735/md_poke/md_dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke/md_dump.c -------------------------------------------------------------------------------- /SoC/MT6735/md_poke/md_poke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/md_poke/md_poke.c -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/.gitignore -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/Makefile -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/init.S -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/make_img.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/make_img.py -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/modem.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/modem.ld -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/test.c -------------------------------------------------------------------------------- /SoC/MT6735/modemfw/vectors.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/modemfw/vectors.S -------------------------------------------------------------------------------- /SoC/MT6735/mt6735.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/mt6735.cfg -------------------------------------------------------------------------------- /SoC/MT6735/openocd.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/openocd.cfg -------------------------------------------------------------------------------- /SoC/MT6735/poke.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/poke.sh -------------------------------------------------------------------------------- /SoC/MT6735/poke/.gitignore: -------------------------------------------------------------------------------- 1 | poke 2 | -------------------------------------------------------------------------------- /SoC/MT6735/poke/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/poke/Makefile -------------------------------------------------------------------------------- /SoC/MT6735/poke/poke.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/poke/poke.c -------------------------------------------------------------------------------- /SoC/MT6735/sd-jtag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/sd-jtag.sh -------------------------------------------------------------------------------- /SoC/MT6735/start-android-test-settings.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/start-android-test-settings.sh -------------------------------------------------------------------------------- /SoC/MT6735/start-engineer-mode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6735/start-engineer-mode.sh -------------------------------------------------------------------------------- /SoC/MT6737M/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6737M/README.md -------------------------------------------------------------------------------- /SoC/MT6737M/dump: -------------------------------------------------------------------------------- 1 | ../MT6735/dump -------------------------------------------------------------------------------- /SoC/MT6737M/dump.sh: -------------------------------------------------------------------------------- 1 | ../MT6735/dump.sh -------------------------------------------------------------------------------- /SoC/MT6737M/poke: -------------------------------------------------------------------------------- 1 | ../MT6735/poke -------------------------------------------------------------------------------- /SoC/MT6737M/poke.sh: -------------------------------------------------------------------------------- 1 | ../MT6735/poke.sh -------------------------------------------------------------------------------- /SoC/MT6737M/preloader/0001-fix-build.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6737M/preloader/0001-fix-build.patch -------------------------------------------------------------------------------- /SoC/MT6737M/preloader/0002-disable-BROM-lockout.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6737M/preloader/0002-disable-BROM-lockout.patch -------------------------------------------------------------------------------- /SoC/MT6737M/preloader/0003-JTAG-over-SD-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6737M/preloader/0003-JTAG-over-SD-pins.patch -------------------------------------------------------------------------------- /SoC/MT6737M/preloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6737M/preloader/README.md -------------------------------------------------------------------------------- /SoC/MT6771/mt8183_pcm_allinone.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/MT6771/mt8183_pcm_allinone.ksy -------------------------------------------------------------------------------- /SoC/MT8183: -------------------------------------------------------------------------------- 1 | MT6771 -------------------------------------------------------------------------------- /SoC/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/README.md -------------------------------------------------------------------------------- /SoC/common/bmo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/bmo.py -------------------------------------------------------------------------------- /SoC/common/demo/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/Makefile -------------------------------------------------------------------------------- /SoC/common/demo/hello-aarch64/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/hello-aarch64/.gitignore -------------------------------------------------------------------------------- /SoC/common/demo/hello-aarch64/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/hello-aarch64/Makefile -------------------------------------------------------------------------------- /SoC/common/demo/hello-aarch64/build_info.inc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/hello-aarch64/build_info.inc.c -------------------------------------------------------------------------------- /SoC/common/demo/hello-aarch64/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/hello-aarch64/init.S -------------------------------------------------------------------------------- /SoC/common/demo/hello-aarch64/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/hello-aarch64/linker.ld -------------------------------------------------------------------------------- /SoC/common/demo/hello-aarch64/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/hello-aarch64/main.c -------------------------------------------------------------------------------- /SoC/common/demo/mode-switch/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/mode-switch/.gitignore -------------------------------------------------------------------------------- /SoC/common/demo/mode-switch/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/mode-switch/Makefile -------------------------------------------------------------------------------- /SoC/common/demo/mode-switch/init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/mode-switch/init.S -------------------------------------------------------------------------------- /SoC/common/demo/mode-switch/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/mode-switch/linker.ld -------------------------------------------------------------------------------- /SoC/common/demo/mode-switch/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/mode-switch/main.c -------------------------------------------------------------------------------- /SoC/common/demo/write-sequence/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/write-sequence/.gitignore -------------------------------------------------------------------------------- /SoC/common/demo/write-sequence/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/write-sequence/Makefile -------------------------------------------------------------------------------- /SoC/common/demo/write-sequence/linker.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/write-sequence/linker.ld -------------------------------------------------------------------------------- /SoC/common/demo/write-sequence/write-sequence.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/demo/write-sequence/write-sequence.S -------------------------------------------------------------------------------- /SoC/common/doc/BROM-Notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/doc/BROM-Notes.md -------------------------------------------------------------------------------- /SoC/common/doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/doc/README.md -------------------------------------------------------------------------------- /SoC/common/gcpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/gcpu.py -------------------------------------------------------------------------------- /SoC/common/handshake/.gitignore: -------------------------------------------------------------------------------- 1 | handshake 2 | -------------------------------------------------------------------------------- /SoC/common/handshake/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/handshake/Makefile -------------------------------------------------------------------------------- /SoC/common/handshake/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/handshake/README.md -------------------------------------------------------------------------------- /SoC/common/handshake/handshake.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/handshake/handshake.c -------------------------------------------------------------------------------- /SoC/common/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/init.py -------------------------------------------------------------------------------- /SoC/common/make_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/make_image.py -------------------------------------------------------------------------------- /SoC/common/md32.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/md32.py -------------------------------------------------------------------------------- /SoC/common/openocd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/openocd.py -------------------------------------------------------------------------------- /SoC/common/parse_brom_log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/parse_brom_log.py -------------------------------------------------------------------------------- /SoC/common/parse_efuses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/parse_efuses.py -------------------------------------------------------------------------------- /SoC/common/pcm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/pcm.py -------------------------------------------------------------------------------- /SoC/common/socemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/socemu.py -------------------------------------------------------------------------------- /SoC/common/usbdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/common/usbdl.py -------------------------------------------------------------------------------- /SoC/mediatek_download_agent.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/mediatek_download_agent.ksy -------------------------------------------------------------------------------- /SoC/mediatek_preloader.ksy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/SoC/mediatek_preloader.ksy -------------------------------------------------------------------------------- /Tasks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyrozap/mediatek-lte-baseband-re/HEAD/Tasks.md --------------------------------------------------------------------------------