Skip to content
Snippets Groups Projects
Commit 3892345c authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "lrdp-v2: Adding support for sdm439 board.py and cachedumplib file are...

Merge "lrdp-v2: Adding support for sdm439 	board.py and cachedumplib file are modified to support sdm439 dump parsing"
parents d427ed2b 408a0510
No related branches found
No related tags found
No related merge requests found
...@@ -389,6 +389,20 @@ class Board632(Board): ...@@ -389,6 +389,20 @@ class Board632(Board):
self.wdog_addr = 0x8600658 self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class Board439(Board):
def __init__(self, socid):
super(Board439, self).__init__()
self.socid = socid
self.board_num = "sdm439"
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x6300000
self.phys_offset = 0x40000000
self.imem_start = 0x8600000
self.kaslr_addr = 0x86006d0
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
class Board8917(Board): class Board8917(Board):
def __init__(self, socid): def __init__(self, socid):
super(Board8917, self).__init__() super(Board8917, self).__init__()
...@@ -797,6 +811,9 @@ boards.append(BoardQCS605(socid=347)) ...@@ -797,6 +811,9 @@ boards.append(BoardQCS605(socid=347))
boards.append(BoardPoorwills(socid=334)) boards.append(BoardPoorwills(socid=334))
boards.append(BoardPoorwills(socid=335)) boards.append(BoardPoorwills(socid=335))
boards.append(Board439(socid=353))
def get_supported_boards(): def get_supported_boards():
""" Called by other part of the code to get a list of boards """ """ Called by other part of the code to get a list of boards """
return boards return boards
......
...@@ -859,3 +859,21 @@ lookuptable[("450", 0x84, 0x14)] = L1_DCache_A53() ...@@ -859,3 +859,21 @@ lookuptable[("450", 0x84, 0x14)] = L1_DCache_A53()
lookuptable[("450", 0x85, 0x14)] = L1_DCache_A53() lookuptable[("450", 0x85, 0x14)] = L1_DCache_A53()
lookuptable[("450", 0x86, 0x14)] = L1_DCache_A53() lookuptable[("450", 0x86, 0x14)] = L1_DCache_A53()
lookuptable[("450", 0x87, 0x14)] = L1_DCache_A53() lookuptable[("450", 0x87, 0x14)] = L1_DCache_A53()
# sdm839
lookuptable[("sdm839", 0x80, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x81, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x82, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x83, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x84, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x85, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x86, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x87, 0x14)] = L1_DCache_A53()
lookuptable[("sdm839", 0x60, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x61, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x62, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x63, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x64, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x65, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x66, 0x14)] = L1_ICache_A53()
lookuptable[("sdm839", 0x67, 0x14)] = L1_ICache_A53()
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