19792Sandreas.hansson@arm.com# Copyright (c) 2013 ARM Limited
29792Sandreas.hansson@arm.com# All rights reserved.
38889Sgeoffrey.blake@arm.com#
48889Sgeoffrey.blake@arm.com# The license below extends only to copyright in the software and shall
58889Sgeoffrey.blake@arm.com# not be construed as granting a license to any other intellectual
68889Sgeoffrey.blake@arm.com# property including but not limited to intellectual property relating
78889Sgeoffrey.blake@arm.com# to a hardware implementation of the functionality of the software
88889Sgeoffrey.blake@arm.com# licensed hereunder.  You may use the software subject to the license
98889Sgeoffrey.blake@arm.com# terms below provided that you ensure that this notice is replicated
108889Sgeoffrey.blake@arm.com# unmodified and in its entirety in all distributions of the software,
118889Sgeoffrey.blake@arm.com# modified or unmodified, in source code or in binary form.
128889Sgeoffrey.blake@arm.com#
138889Sgeoffrey.blake@arm.com# Redistribution and use in source and binary forms, with or without
148889Sgeoffrey.blake@arm.com# modification, are permitted provided that the following conditions are
158889Sgeoffrey.blake@arm.com# met: redistributions of source code must retain the above copyright
168889Sgeoffrey.blake@arm.com# notice, this list of conditions and the following disclaimer;
178889Sgeoffrey.blake@arm.com# redistributions in binary form must reproduce the above copyright
188889Sgeoffrey.blake@arm.com# notice, this list of conditions and the following disclaimer in the
198889Sgeoffrey.blake@arm.com# documentation and/or other materials provided with the distribution;
208889Sgeoffrey.blake@arm.com# neither the name of the copyright holders nor the names of its
218889Sgeoffrey.blake@arm.com# contributors may be used to endorse or promote products derived from
228889Sgeoffrey.blake@arm.com# this software without specific prior written permission.
238889Sgeoffrey.blake@arm.com#
248889Sgeoffrey.blake@arm.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
258889Sgeoffrey.blake@arm.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
268889Sgeoffrey.blake@arm.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
278889Sgeoffrey.blake@arm.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
288889Sgeoffrey.blake@arm.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
298889Sgeoffrey.blake@arm.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
308889Sgeoffrey.blake@arm.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
318889Sgeoffrey.blake@arm.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
328889Sgeoffrey.blake@arm.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
338889Sgeoffrey.blake@arm.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
348889Sgeoffrey.blake@arm.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
358889Sgeoffrey.blake@arm.com#
369792Sandreas.hansson@arm.com# Authors: Andreas Hansson
378889Sgeoffrey.blake@arm.com
388889Sgeoffrey.blake@arm.comfrom m5.objects import *
399792Sandreas.hansson@arm.comfrom base_config import *
408889Sgeoffrey.blake@arm.com
419792Sandreas.hansson@arm.comroot = BaseSESystemUniprocessor(mem_mode='atomic',
429792Sandreas.hansson@arm.com                                cpu_class=AtomicSimpleCPU,
439792Sandreas.hansson@arm.com                                checker=True).create_root()
44