diff --git a/linux-ramdump-parser-v2/boards.py b/linux-ramdump-parser-v2/boards.py index 42ea2b25e68f1a0a0033b6086bf9beb4be591ae9..1326e2df85b221cb3080628d914046b8b9db7bf3 100644 --- a/linux-ramdump-parser-v2/boards.py +++ b/linux-ramdump-parser-v2/boards.py @@ -540,6 +540,19 @@ class BoardSDM855(Board): self.wdog_addr = 0x146BF658 self.imem_file_name = 'OCIMEM.BIN' +class BoardPoorwills(Board): + def __init__(self, socid): + super(BoardPoorwills, self).__init__() + self.socid = socid + self.board_num = "poorwills" + self.cpu = 'CORTEXA7' + self.ram_start = 0x80000000 + self.smem_addr = 0xFE40000 + self.phys_offset = 0x80000000 + self.imem_start = 0x14680000 + self.wdog_addr = 0x14680658 + self.imem_file_name = 'OCIMEM.BIN' + boards = [] boards.append(Board9640(socid=234)) @@ -760,6 +773,9 @@ boards.append(BoardSDM670(socid=337)) boards.append(BoardQCS605(socid=347)) +boards.append(BoardPoorwills(socid=334)) +boards.append(BoardPoorwills(socid=335)) + def get_supported_boards(): """ Called by other part of the code to get a list of boards """ return boards