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

Merge "lrdpv2: Add support for msm8953"

parents 44655976 e37f7deb
No related branches found
No related tags found
No related merge requests found
...@@ -333,6 +333,20 @@ class Board8937(Board): ...@@ -333,6 +333,20 @@ class Board8937(Board):
self.wdog_addr = 0x8600658 self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class Board8953(Board):
def __init__(self, socid):
super(Board8953, self).__init__()
self.socid = socid
self.board_num = 8953
self.cpu = 'CORTEXA53'
self.ram_start = 0x80000000
self.smem_addr = 0x6300000
self.phys_offset = 0x40000000
self.imem_start = 0x8600000
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
boards = [] boards = []
boards.append(Board9640(socid=234)) boards.append(Board9640(socid=234))
...@@ -516,6 +530,8 @@ boards.append(Board9607(socid=299)) ...@@ -516,6 +530,8 @@ boards.append(Board9607(socid=299))
boards.append(Board8937(socid=294)) boards.append(Board8937(socid=294))
boards.append(Board8937(socid=295)) boards.append(Board8937(socid=295))
boards.append(Board8953(socid=293))
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