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

lrdpv2: Add support for mdm9607

Add support for detecting mdm9607 target and parsing the ramdumps.

Change-Id: Iecdb8c5329bac4eda8ff5e8bb3c8906cd3158e93
parent a025f637
No related branches found
No related tags found
No related merge requests found
...@@ -309,6 +309,19 @@ class Board8976(Board): ...@@ -309,6 +309,19 @@ class Board8976(Board):
self.wdog_addr = 0x8600658 self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class Board9607(Board):
def __init__(self, socid):
super(Board9607, self).__init__()
self.socid = socid
self.board_num = 9607
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 = []
boards.append(Board9640(socid=234)) boards.append(Board9640(socid=234))
...@@ -483,6 +496,12 @@ boards.append(Board8976(socid=274)) ...@@ -483,6 +496,12 @@ boards.append(Board8976(socid=274))
boards.append(Board8976(socid=277)) boards.append(Board8976(socid=277))
boards.append(Board8976(socid=278)) boards.append(Board8976(socid=278))
boards.append(Board9607(socid=290))
boards.append(Board9607(socid=296))
boards.append(Board9607(socid=297))
boards.append(Board9607(socid=298))
boards.append(Board9607(socid=299))
def get_supported_boards(): def get_supported_boards():
""" Called by other part of the code to get a list of boards """ """ Called by other part of the code to get a list of boards """
return boards return boards
......
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