stdlib: Moved LupV Board to an experimental folder

Change-Id: I9cd67177fe8f0cb34bebb4fd3f9d3af0a518c7b6
Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/53045
Maintainer: Bobby Bruce <bbruce@ucdavis.edu>
Tested-by: kokoro <noreply+kokoro@google.com>
Reviewed-by: Jason Lowe-Power <power.jg@gmail.com>
This commit is contained in:
Melissa Jost
2021-11-19 19:13:27 -08:00
committed by melissa jost
parent 5891e3edf0
commit 0abe8e6b82
3 changed files with 14 additions and 11 deletions

View File

@@ -37,7 +37,10 @@ PySource('gem5.components.boards', 'gem5/components/boards/__init__.py')
PySource('gem5.components.boards', 'gem5/components/boards/abstract_board.py')
PySource('gem5.components.boards', 'gem5/components/boards/mem_mode.py')
PySource('gem5.components.boards', 'gem5/components/boards/riscv_board.py')
PySource('gem5.components.boards', 'gem5/components/boards/lupv_board.py')
PySource('gem5.components.boards.experimental',
'gem5/components/boards/experimental/__init__.py')
PySource('gem5.components.boards.experimental',
'gem5/components/boards/experimental/lupv_board.py')
PySource('gem5.components.boards', 'gem5/components/boards/simple_board.py')
PySource('gem5.components.boards', 'gem5/components/boards/test_board.py')
PySource('gem5.components.boards', 'gem5/components/boards/x86_board.py')

View File

@@ -27,14 +27,14 @@
import os
from typing import Optional
from ...utils.override import overrides
from .simple_board import SimpleBoard
from .abstract_board import AbstractBoard
from ..processors.abstract_processor import AbstractProcessor
from ..memory.abstract_memory_system import AbstractMemorySystem
from ..cachehierarchies.abstract_cache_hierarchy import AbstractCacheHierarchy
from ...isas import ISA
from ...runtime import get_runtime_isa
from ....utils.override import overrides
from ..simple_board import SimpleBoard
from ..abstract_board import AbstractBoard
from ...processors.abstract_processor import AbstractProcessor
from ...memory.abstract_memory_system import AbstractMemorySystem
from ...cachehierarchies.abstract_cache_hierarchy import AbstractCacheHierarchy
from ....isas import ISA
from ....runtime import get_runtime_isa
import m5
from m5.objects import (
@@ -173,10 +173,10 @@ class LupvBoard(SimpleBoard):
self._int_ids['RNG']
]
# Set the number of sources to the PIC as 0 because we've removed the
# Set the number of sources to the PIC as 0 because we've removed the
# connections from all the external devices to the PIC, and moved them
# to the LupioPIC. The PIC and CLINT only remain on the board at this
# point for our bbl to use upon startup, and will
# point for our bbl to use upon startup, and will
# remain unused during the simulation
self.pic.n_src = 0
self.pic.n_contexts = 0