Skip to content
Snippets Groups Projects
Commit bbb50ad0 authored by Laura Abbott's avatar Laura Abbott
Browse files

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

The 8916 board is now generating ramdumps. Add support to parse
these dumps.

Change-Id: I9920544031443ce97f95824c8927b50e0927d5c1
parent 3d6a90bd
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,23 @@ class Board9635(Board):
self.wdog_addr = 0xfe805658
self.imem_file_name = 'OCIMEM.BIN'
class Board8916(Board):
def __init__(self, socid):
super(Board8916, self).__init__()
self.socid = socid
self.board_num = 8916
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
#self.ram_start = 0x0
self.smem_addr = 0xe200000
self.phys_offset = 0x80000000
self.imem_start = 0x8600000
self.wdog_addr = 0x8605658
self.imem_file_name = 'OCIMEM.BIN'
boards = []
boards.append(Board8916(socid=206))
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