Skip to content
Snippets Groups Projects
Commit d28538a7 authored by Patrick Daly's avatar Patrick Daly
Browse files

lrdp-v2: Add support for mdmcalifornium

Add support for detecting the californium target.

Change-Id: I4ec2c37181eb625b4104e2621624a825493a14b1
parent be9942e9
No related branches found
No related tags found
No related merge requests found
...@@ -361,6 +361,21 @@ class Board8917(Board): ...@@ -361,6 +361,21 @@ class Board8917(Board):
self.wdog_addr = 0x8600658 self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN' self.imem_file_name = 'OCIMEM.BIN'
class BoardCalifornium(Board):
def __init__(self, socid):
super(BoardCalifornium, self).__init__()
self.socid = socid
self.board_num = "californium"
self.cpu = 'CORTEXA7'
self.ram_start = 0x80000000
self.smem_addr = 0x7e80000
self.phys_offset = 0x80000000
self.imem_start = 0x08600000
self.wdog_addr = 0x8600658
self.imem_file_name = 'OCIMEM.BIN'
boards = [] boards = []
boards.append(Board9640(socid=234)) boards.append(Board9640(socid=234))
...@@ -553,6 +568,8 @@ boards.append(Board8917(socid=307)) ...@@ -553,6 +568,8 @@ boards.append(Board8917(socid=307))
boards.append(Board8917(socid=308)) boards.append(Board8917(socid=308))
boards.append(Board8917(socid=309)) boards.append(Board8917(socid=309))
boards.append(BoardCalifornium(socid=279))
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