Skip to content

Commit

Permalink
Merge pull request #564 from ChrisEric1/master
Browse files Browse the repository at this point in the history
SoC dumping fixes
  • Loading branch information
bkerler authored Jun 25, 2024
2 parents a6bb478 + f2ad431 commit ffcb926
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
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

0 comments on commit ffcb926

Please sign in to comment.