Skip to content
Snippets Groups Projects
Commit 5ed75b38 authored by Olav Haugan's avatar Olav Haugan
Browse files

linux-ramdump-parser-v2: Add support for APQ8026 LW

APQ8026 LW has a different memory map and the SMEM location
has moved to 0x0300_0000.

Change-Id: Iede7dc26f5dc11127a5ba7f8ce4288ec5ab85f2d
parent f36ae5d0
No related branches found
No related tags found
No related merge requests found
...@@ -114,6 +114,19 @@ class Board8626(Board): ...@@ -114,6 +114,19 @@ class Board8626(Board):
self.wdog_addr = 0xfe805658 self.wdog_addr = 0xfe805658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class Board8026LW(Board):
def __init__(self, socid, board_num=8026):
super(Board8026LW, self).__init__()
self.socid = socid
self.board_num = board_num
self.cpu = 'CORTEXA7'
self.ram_start = 0x0
self.imem_start = 0xfe800000
self.smem_addr = 0x03000000
self.phys_offset = 0x0
self.wdog_addr = 0xfe805658
self.imem_file_name = 'OCIMEM.BIN'
class Board8610(Board): class Board8610(Board):
def __init__(self, socid, board_num=8610): def __init__(self, socid, board_num=8610):
super(Board8610, self).__init__() super(Board8610, self).__init__()
...@@ -197,6 +210,18 @@ boards.append(Board8626(socid=222)) ...@@ -197,6 +210,18 @@ boards.append(Board8626(socid=222))
boards.append(Board8626(socid=223)) boards.append(Board8626(socid=223))
boards.append(Board8626(socid=224)) boards.append(Board8626(socid=224))
boards.append(Board8026LW(socid=145))
boards.append(Board8026LW(socid=158))
boards.append(Board8026LW(socid=159))
boards.append(Board8026LW(socid=198))
boards.append(Board8026LW(socid=199))
boards.append(Board8026LW(socid=200))
boards.append(Board8026LW(socid=205))
boards.append(Board8026LW(socid=219))
boards.append(Board8026LW(socid=220))
boards.append(Board8026LW(socid=222))
boards.append(Board8026LW(socid=223))
boards.append(Board8026LW(socid=224))
boards.append(Board8610(socid=147)) boards.append(Board8610(socid=147))
boards.append(Board8610(socid=161)) boards.append(Board8610(socid=161))
......
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