Skip to content
Snippets Groups Projects
Commit e0b54f7e authored by Prasad Sodagudi's avatar Prasad Sodagudi
Browse files

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

Add support for detecting msm8917 target
and parsing the ramdumps.

Change-Id: I8014abc0f52a459bdcb7d94b09f4826ded74542c
parent 10b3e7aa
No related branches found
No related tags found
No related merge requests found
...@@ -347,6 +347,20 @@ class Board8953(Board): ...@@ -347,6 +347,20 @@ class Board8953(Board):
self.wdog_addr = 0x8600658 self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class Board8917(Board):
def __init__(self, socid):
super(Board8917, self).__init__()
self.socid = socid
self.board_num = 8917
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x6300000
self.phys_offset = 0x40000000
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))
...@@ -533,6 +547,11 @@ boards.append(Board8937(socid=295)) ...@@ -533,6 +547,11 @@ boards.append(Board8937(socid=295))
boards.append(Board8953(socid=293)) boards.append(Board8953(socid=293))
boards.append(Board8953(socid=304)) boards.append(Board8953(socid=304))
boards.append(Board8917(socid=303))
boards.append(Board8917(socid=307))
boards.append(Board8917(socid=308))
boards.append(Board8917(socid=309))
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