Skip to content
Snippets Groups Projects
Commit a6614c7b authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "linux-ramdump-parser-v2: Add support for 8996 target"

parents cfd40319 6387c21f
No related branches found
No related tags found
No related merge requests found
...@@ -269,6 +269,18 @@ class Board8929(Board): ...@@ -269,6 +269,18 @@ class Board8929(Board):
self.phys_offset = 0x80000000 self.phys_offset = 0x80000000
self.imem_start = 0x8600000 self.imem_start = 0x8600000
self.wdog_addr = 0x8600658 self.wdog_addr = 0x8600658
class Board8996(Board):
def __init__(self, socid):
super(Board8996, self).__init__()
self.socid = socid
self.board_num = 8996
self.cpu = 'HYDRA'
self.ram_start = 0x80000000
self.smem_addr = 0x6000000
self.phys_offset = 0x80000000
self.imem_start = 0x6680000
self.wdog_addr = 0x66BF658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
boards = [] boards = []
...@@ -434,6 +446,8 @@ boards.append(Board8994(socid=207)) ...@@ -434,6 +446,8 @@ boards.append(Board8994(socid=207))
boards.append(Board8992(socid=251)) boards.append(Board8992(socid=251))
boards.append(Board8992(socid=252)) boards.append(Board8992(socid=252))
boards.append(Board8996(socid=246))
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