Skip to content
Snippets Groups Projects
Commit 9038b06d authored by Satyajit Desai's avatar Satyajit Desai
Browse files

lrdp-v2: Add support for msms8998

Add support for detecting msm8998 target and parsing the ramdumps.

Change-Id: Ica2f3713cf4836dff7942536a6e72009b0478161
parent 89eaa923
No related branches found
No related tags found
No related merge requests found
......@@ -415,6 +415,20 @@ class BoardCobalt(Board):
self.wdog_addr = 0x146BF658
self.imem_file_name = 'OCIMEM.BIN'
class Board8998(Board):
def __init__(self, socid):
super(Board8998, self).__init__()
self.socid = socid
self.board_num = "8998"
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x6000000
self.phys_offset = 0x80000000
self.imem_start = 0x14680000
self.kaslr_addr = 0x146bf6d0
self.wdog_addr = 0x146BF658
self.imem_file_name = 'OCIMEM.BIN'
class BoardFalcon(Board):
def __init__(self, socid):
super(BoardFalcon, self).__init__()
......@@ -641,6 +655,7 @@ boards.append(Board8920(socid=320))
boards.append(BoardCalifornium(socid=279))
boards.append(BoardCobalt(socid=292))
boards.append(Board8998(socid=292))
boards.append(BoardFalcon(socid=317))
......
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