Skip to content
Snippets Groups Projects
Commit 8da8574c authored by Aparna Das's avatar Aparna Das
Browse files

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

Add support for detecting 8994 target and parsing the ramdumps

Change-Id: I8a5c039b4fd3a7552c44766f1a459024146cd0e4
parent 43d98035
No related branches found
No related tags found
No related merge requests found
......@@ -166,6 +166,18 @@ class Board8916(Board):
self.wdog_addr = 0x8605658
self.imem_file_name = 'OCIMEM.BIN'
class Board8994(Board):
def __init__(self, socid):
super(Board8994, self).__init__()
self.socid = socid
self.board_num = 8994
self.cpu = 'CORTEXA7'
self.ram_start = 0x0
self.smem_addr = 0x6a00000
self.phys_offset = 0x0
self.imem_start = 0xfe800000
self.wdog_addr = 0xfe87f658
self.imem_file_name = 'OCIMEM.BIN'
boards = []
boards.append(Board8916(socid=206))
......@@ -295,6 +307,7 @@ boards.append(Board8625(socid=132, board_num=8625))
boards.append(Board8625(socid=133, board_num=8625))
boards.append(Board8625(socid=135, board_num=8625))
boards.append(Board8994(socid=207))
def get_supported_boards():
""" Called by other part of the code to get a list of 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