Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SoC dumping fixes #564

Merged
merged 2 commits into from
Jun 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions edl.bat
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@echo off
title EDLClient
python "%~dp0edl" %*
29 changes: 16 additions & 13 deletions edlclient/Config/qualcomm_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,8 +59,6 @@
0x9780E1: "IPQ4018",
0x9790E1: "IPQ4019",
0x0160E1: "QCA4020",
0x9680E1: "APQ8009", # Snapdragon 212
0x7060E1: "APQ8016",
0x8100E1: "APQ806x",
0x9D00E1: "APQ8076",
0x08A0E1: "APQ807x",
Expand All @@ -70,11 +68,13 @@
0x9410E1: "APQ8094", # Snapdragon 810
0x0940E1: "MSM8905",
0x9600E1: "MSM8909", # SnapDragon 210
0x0510E1: "MSM8909W",
0x0520E1: "APQ8009W", # wear3100
0x9680E1: "APQ8009",
0x0510E1: "MSM8909w",
0x0520E1: "APQ8009w",
0x0960E1: "SDX24", # 0x60020100 soc_hw_version, 0x8fff7000 dbgpolicy 32Bit, 0x8FCFD000 sec.elf 64Bit
0x0970E1: "SDX24M", # 0x60020100 soc_hw_version, 0x8fff7000 dbgpolicy 32Bit, 0x8FCFD000 sec.elf 64Bit
0x7050E1: "MSM8916", # SnapDragon 410
0x7060E1: "APQ8016",
0x0560E1: "MSM8917", # Snapdragon 425
0x0860E1: "MSM8920",
0x91B0E1: "MSM8929", # SnapDragon 415
Expand Down Expand Up @@ -418,14 +418,15 @@

"IPQ4018": secgen[4],
"IPQ4019": secgen[4],
"APQ8009": secgen[4],
"APQ8016": secgen[4],
"APQ8036": secgen[4],
"APQ8039": secgen[4],
"MSM8905": secgen[4],
"MSM8909": secgen[4],
"MSM8909W": secgen[4],
"APQ8009": secgen[4],
"MSM8909w": secgen[4],
"APQ8009w": secgen[4],
"MSM8916": secgen[4],
"APQ8016": secgen[4],
"MSM8929": secgen[4],
"MSM8939": secgen[4],
"MSM8952": secgen[4],
Expand Down Expand Up @@ -592,14 +593,15 @@ class memory_type:

"IPQ4018": emmc,
"IPQ4019": emmc,
"APQ8009": emmc,
"APQ8016": emmc,
"APQ8036": emmc,
"APQ8039": emmc,
"MSM8905": emmc,
"MSM8909": emmc,
"MSM8909W": emmc,
"APQ8009": emmc,
"MSM8909w": emmc,
"APQ8009w": emmc,
"MSM8916": emmc,
"APQ8016": emmc,
"MSM8929": emmc,
"MSM8939": emmc,
"MSM8952": emmc,
Expand Down Expand Up @@ -726,8 +728,6 @@ class memory_type:
"QCA6390": 0x01e20010,
"IPQ4018": 0x00058098,
"IPQ4019": 0x00058098,
"APQ8009": 0x00058098,
"APQ8016": 0x00058098,
"APQ8036": 0x00058098,
"APQ8039": 0x00058098,
"APQ8037": 0x000a01d0,
Expand All @@ -743,8 +743,11 @@ class memory_type:
"MSM8610": 0xFC4B83E8,
"MSM8905": 0x00058098,
"MSM8909": 0x00058098,
"MSM8909W": 0x00058098,
"APQ8009": 0x00058098,
"MSM8909w": 0x00058098,
"APQ8009w": 0x00058098,
"MSM8916": 0x00058098,
"APQ8016": 0x00058098,
"MSM8917": 0x000A01D0,
"MSM8920": 0x000A01D0,
"MSM8929": 0x00058098,
Expand Down
Loading