Skip to content
Snippets Groups Projects
Commit 611a5adc authored by Amey Telawane's avatar Amey Telawane
Browse files

lrdp-v2: Add ramdump support for falcon and triton

Add meta data for msmfalcon and msmtriton. This meta data
will be used for parsing msmfalcon and msmtriton ramdumps.

CRs-fixed: 1094184
Change-Id: I29ecd6f439f8f191bb91091f68a0536a272a4744
parent 7da88b5a
No related branches found
No related tags found
No related merge requests found
......@@ -414,6 +414,32 @@ class BoardCobalt(Board):
self.wdog_addr = 0x146BF658
self.imem_file_name = 'OCIMEM.BIN'
class BoardFalcon(Board):
def __init__(self, socid):
super(BoardFalcon, self).__init__()
self.socid = socid
self.board_num = "falcon"
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x6000000
self.phys_offset = 0x80000000
self.imem_start = 0x14680000
self.wdog_addr = 0x146BF658
self.imem_file_name = 'OCIMEM.BIN'
class BoardTriton(Board):
def __init__(self, socid):
super(BoardTriton, self).__init__()
self.socid = socid
self.board_num = "triton"
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x6000000
self.phys_offset = 0x80000000
self.imem_start = 0x14680000
self.wdog_addr = 0x146BF658
self.imem_file_name = 'OCIMEM.BIN'
boards = []
......@@ -615,6 +641,9 @@ boards.append(BoardCalifornium(socid=279))
boards.append(BoardCobalt(socid=292))
boards.append(BoardFalcon(socid=317))
boards.append(BoardTriton(socid=318))
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