Skip to content
Snippets Groups Projects
Commit 3a3539cf authored by Xiaogang Cui's avatar Xiaogang Cui
Browse files

linux-ramdump-parser-v2: Add support for msm8909

Add support for detecting 8909 target and parsing the ramdumps.

Change-Id: I76a8b9366797a83d0a84fbb4894261488a94ed26
parent 4abc9641
No related branches found
No related tags found
No related merge requests found
......@@ -205,17 +205,37 @@ class Board8994(Board):
self.wdog_addr = 0xfe87f658
self.imem_file_name = 'OCIMEM.BIN'
class Board8909(Board):
def __init__(self, socid):
super(Board8909, self).__init__()
self.socid = socid
self.board_num = 8909
self.cpu = 'CORTEXA7'
self.ram_start = 0x80000000
self.smem_addr = 0x7d00000
self.phys_offset = 0x80000000
self.imem_start = 0x8600000
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
boards = []
boards.append(Board8916(socid=206, smem_addr=0xe200000))
boards.append(Board8916(socid=206, smem_addr=0x6300000))
boards.append(Board8939(socid=239, smem_addr=0xe200000))
boards.append(Board8939(socid=241, smem_addr=0xe200000))
boards.append(Board8939(socid=239, smem_addr=0x6300000))
boards.append(Board8939(socid=241, smem_addr=0x6300000))
boards.append(Board8936(socid=233))
boards.append(Board8936(socid=240))
boards.append(Board8936(socid=242))
boards.append(Board8936(socid=243))
boards.append(Board8909(socid=245))
boards.append(Board8909(socid=258))
boards.append(Board8909(socid=265))
boards.append(Board8974(socid=126))
boards.append(Board8974(socid=184))
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