Skip to content
Snippets Groups Projects
Commit b99d0f52 authored by Rishabh Bhatnagar's avatar Rishabh Bhatnagar
Browse files

ldrpv2: add support for Kona SoC

Add ramdump parser support for Kona.

Change-Id: I1e5b323f9661e2b194e83cf58c27d994de187d46
parent fb915d01
No related branches found
No related tags found
No related merge requests found
...@@ -668,6 +668,21 @@ class BoardPrairie(Board): ...@@ -668,6 +668,21 @@ class BoardPrairie(Board):
self.wdog_addr = 0x14680658 self.wdog_addr = 0x14680658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class BoardKona(Board):
def __init__(self, socid):
super(BoardKona, self).__init__()
self.socid = socid
self.board_num = "kona"
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x900000
self.smem_addr_buildinfo = 0x907210
self.phys_offset = 0xA0000000
self.imem_start = 0x14680000
self.kaslr_addr = 0x146bf6d0
self.wdog_addr = 0x146BF658
self.imem_file_name = 'OCIMEM.BIN'
boards = [] boards = []
boards.append(Board9640(socid=234)) boards.append(Board9640(socid=234))
...@@ -914,6 +929,8 @@ boards.append(Board439(socid=363)) ...@@ -914,6 +929,8 @@ boards.append(Board439(socid=363))
boards.append(Board429(socid=354)) boards.append(Board429(socid=354))
boards.append(Board429(socid=364)) boards.append(Board429(socid=364))
boards.append(BoardKona(socid=356))
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
......
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