Skip to content
Snippets Groups Projects
Commit 456791f6 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: Add support for SDM429/SDA439/SDA429"

parents 9517aa55 75f7b7ee
No related branches found
No related tags found
No related merge requests found
......@@ -403,6 +403,20 @@ class Board439(Board):
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
class Board429(Board):
def __init__(self, socid):
super(Board429, self).__init__()
self.socid = socid
self.board_num = "sdm429"
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):
def __init__(self, socid):
super(Board8917, self).__init__()
......@@ -812,7 +826,10 @@ boards.append(BoardPoorwills(socid=334))
boards.append(BoardPoorwills(socid=335))
boards.append(Board439(socid=353))
boards.append(Board439(socid=363))
boards.append(Board429(socid=354))
boards.append(Board429(socid=364))
def get_supported_boards():
""" Called by other part of the code to get a list of boards """
......
# Copyright (c) 2015-2017, The Linux Foundation. All rights reserved.
# Copyright (c) 2015-2018, 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
......@@ -877,3 +877,31 @@ 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()
# sdm439
lookuptable[("sdm439", 0x80, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x81, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x82, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x83, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x84, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x85, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x86, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x87, 0x14)] = L1_DCache_A53()
lookuptable[("sdm439", 0x60, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x61, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x62, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x63, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x64, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x65, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x66, 0x14)] = L1_ICache_A53()
lookuptable[("sdm439", 0x67, 0x14)] = L1_ICache_A53()
# sdm429
lookuptable[("sdm429", 0x84, 0x14)] = L1_DCache_A53()
lookuptable[("sdm429", 0x85, 0x14)] = L1_DCache_A53()
lookuptable[("sdm429", 0x86, 0x14)] = L1_DCache_A53()
lookuptable[("sdm429", 0x87, 0x14)] = L1_DCache_A53()
lookuptable[("sdm429", 0x64, 0x14)] = L1_ICache_A53()
lookuptable[("sdm429", 0x65, 0x14)] = L1_ICache_A53()
lookuptable[("sdm429", 0x66, 0x14)] = L1_ICache_A53()
lookuptable[("sdm429", 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