diff --git a/linux-ramdump-parser-v2/boards.py b/linux-ramdump-parser-v2/boards.py index d7bc9e310394f92e47c624e52bc93e653ac8e530..a1cb0c64faec37f39036d820602044bd75a6dc01 100755 --- a/linux-ramdump-parser-v2/boards.py +++ b/linux-ramdump-parser-v2/boards.py @@ -283,6 +283,19 @@ class Board8996(Board): self.wdog_addr = 0x66BF658 self.imem_file_name = 'OCIMEM.BIN' +class Board8952(Board): + def __init__(self, socid): + super(Board8952, self).__init__() + self.socid = socid + self.board_num = 8952 + self.cpu = 'CORTEXA53' + self.ram_start = 0x80000000 + self.smem_addr = 0x6300000 + self.phys_offset = 0x80000000 + self.imem_start = 0x8600000 + self.wdog_addr = 0x8600658 + self.imem_file_name = 'OCIMEM.BIN' + boards = [] boards.append(Board9640(socid=234)) @@ -448,6 +461,8 @@ boards.append(Board8992(socid=252)) boards.append(Board8996(socid=246)) +boards.append(Board8952(socid=264)) + def get_supported_boards(): """ Called by other part of the code to get a list of boards """ return boards