Skip to content
Snippets Groups Projects
Commit 24b9ed44 authored by Viveka Nand's avatar Viveka Nand
Browse files

Linux-ramdump-parser-v2: Add support for msm8929

Add support for detecting 8929 target and parsing the ramdumps.

Change-Id: I044a93570b82857850957c8b8ebd23df7a9e0389
parent 539a3595
No related branches found
No related tags found
No related merge requests found
...@@ -258,6 +258,19 @@ class Board8992(Board): ...@@ -258,6 +258,19 @@ class Board8992(Board):
self.wdog_addr = 0xfe87f658 self.wdog_addr = 0xfe87f658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class Board8929(Board):
def __init__(self, socid, smem_addr):
super(Board8929, self).__init__()
self.socid = socid
self.board_num = 8929
self.cpu = 'CORTEXA7'
self.ram_start = 0x80000000
self.smem_addr = smem_addr
self.phys_offset = 0x80000000
self.imem_start = 0x8600000
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
boards = [] boards = []
boards.append(Board9640(socid=234)) boards.append(Board9640(socid=234))
...@@ -285,6 +298,11 @@ boards.append(Board8909(socid=265)) ...@@ -285,6 +298,11 @@ boards.append(Board8909(socid=265))
boards.append(Board8908(socid=259)) boards.append(Board8908(socid=259))
boards.append(Board8929(socid=268, smem_addr=0xe200000))
boards.append(Board8929(socid=269, smem_addr=0xe200000))
boards.append(Board8929(socid=270, smem_addr=0xe200000))
boards.append(Board8929(socid=271, smem_addr=0x6300000))
boards.append(Board8974(socid=126)) boards.append(Board8974(socid=126))
boards.append(Board8974(socid=184)) boards.append(Board8974(socid=184))
boards.append(Board8974(socid=185)) 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