From 4ad4754817fecc0eae02cb6faf309972e2dcf23d Mon Sep 17 00:00:00 2001
From: Kyle Yan <kyan@codeaurora.org>
Date: Tue, 21 Feb 2017 11:20:16 -0800
Subject: [PATCH] lrdp-v2: Add support for SDM845

Add support for detecting sdm845 target and parsing the ramdumps.

Change-Id: Id7bd04d1f3a35bbb35b66a20a2ee2e39b86126c1
---
 linux-ramdump-parser-v2/boards.py | 18 +++++++++++++++++-
 1 file changed, 17 insertions(+), 1 deletion(-)

diff --git a/linux-ramdump-parser-v2/boards.py b/linux-ramdump-parser-v2/boards.py
index 79c385f..aa94cf9 100755
--- a/linux-ramdump-parser-v2/boards.py
+++ b/linux-ramdump-parser-v2/boards.py
@@ -1,4 +1,4 @@
-# Copyright (c) 2014-2016, The Linux Foundation. All rights reserved.
+# Copyright (c) 2014-2017, The Linux Foundation. All rights reserved.
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License version 2 and
@@ -415,6 +415,20 @@ class BoardCobalt(Board):
         self.wdog_addr = 0x146BF658
         self.imem_file_name = 'OCIMEM.BIN'
 
+class BoardSDM845(Board):
+    def __init__(self, socid):
+        super(BoardSDM845, self).__init__()
+        self.socid = socid
+        self.board_num = "sdm845"
+        self.cpu = 'CORTEXA53'
+        self.ram_start = 0x80000000
+        self.smem_addr = 0x6000000
+        self.phys_offset = 0x80000000
+        self.imem_start = 0x14680000
+        self.kaslr_addr = 0x146bf6d0
+        self.wdog_addr = 0x146BF658
+        self.imem_file_name = 'OCIMEM.BIN'
+
 class Board8998(Board):
     def __init__(self, socid):
         super(Board8998, self).__init__()
@@ -665,6 +679,8 @@ boards.append(Board660(socid=326))
 boards.append(Board630(socid=318))
 boards.append(Board630(socid=327))
 
+boards.append(BoardSDM845(socid=321))
+
 def get_supported_boards():
     """ Called by other part of the code to get a list of boards """
     return boards
-- 
GitLab