Skip to content
Snippets Groups Projects
Commit 9d7dc3ab authored by Xiaogang Cui's avatar Xiaogang Cui
Browse files

linux-ramdump-parser-v2: Add support for msm8908

Add support for detecting 8908 target and parsing the ramdumps.

Change-Id: I9195e3ff47ed17ceffa2d634b3c827ea71d71559
parent 1f6f319b
No related branches found
No related tags found
No related merge requests found
......@@ -218,6 +218,19 @@ class Board8909(Board):
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
class Board8908(Board):
def __init__(self, socid):
super(Board8908, self).__init__()
self.socid = socid
self.board_num = 8908
self.cpu = 'CORTEXA7'
self.ram_start = 0x80000000
self.smem_addr = 0x7d00000
self.phys_offset = 0x80000000
self.imem_start = 0x8600000
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
boards = []
boards.append(Board8916(socid=206, smem_addr=0xe200000))
boards.append(Board8916(socid=206, smem_addr=0x6300000))
......@@ -236,6 +249,8 @@ boards.append(Board8909(socid=245))
boards.append(Board8909(socid=258))
boards.append(Board8909(socid=265))
boards.append(Board8908(socid=259))
boards.append(Board8974(socid=126))
boards.append(Board8974(socid=184))
boards.append(Board8974(socid=185))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment