110512SAli.Saidi@ARM.com# Copyright (c) 2012 ARM Limited
210512SAli.Saidi@ARM.com# All rights reserved.
310512SAli.Saidi@ARM.com#
410512SAli.Saidi@ARM.com# The license below extends only to copyright in the software and shall
510512SAli.Saidi@ARM.com# not be construed as granting a license to any other intellectual
610512SAli.Saidi@ARM.com# property including but not limited to intellectual property relating
710512SAli.Saidi@ARM.com# to a hardware implementation of the functionality of the software
810512SAli.Saidi@ARM.com# licensed hereunder.  You may use the software subject to the license
910512SAli.Saidi@ARM.com# terms below provided that you ensure that this notice is replicated
1010512SAli.Saidi@ARM.com# unmodified and in its entirety in all distributions of the software,
1110512SAli.Saidi@ARM.com# modified or unmodified, in source code or in binary form.
1210512SAli.Saidi@ARM.com#
1310512SAli.Saidi@ARM.com# Redistribution and use in source and binary forms, with or without
1410512SAli.Saidi@ARM.com# modification, are permitted provided that the following conditions are
1510512SAli.Saidi@ARM.com# met: redistributions of source code must retain the above copyright
1610512SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer;
1710512SAli.Saidi@ARM.com# redistributions in binary form must reproduce the above copyright
1810512SAli.Saidi@ARM.com# notice, this list of conditions and the following disclaimer in the
1910512SAli.Saidi@ARM.com# documentation and/or other materials provided with the distribution;
2010512SAli.Saidi@ARM.com# neither the name of the copyright holders nor the names of its
2110512SAli.Saidi@ARM.com# contributors may be used to endorse or promote products derived from
2210512SAli.Saidi@ARM.com# this software without specific prior written permission.
2310512SAli.Saidi@ARM.com#
2410512SAli.Saidi@ARM.com# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
2510512SAli.Saidi@ARM.com# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
2610512SAli.Saidi@ARM.com# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
2710512SAli.Saidi@ARM.com# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
2810512SAli.Saidi@ARM.com# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
2910512SAli.Saidi@ARM.com# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
3010512SAli.Saidi@ARM.com# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
3110512SAli.Saidi@ARM.com# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
3210512SAli.Saidi@ARM.com# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
3310512SAli.Saidi@ARM.com# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
3410512SAli.Saidi@ARM.com# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
3510512SAli.Saidi@ARM.com#
3610512SAli.Saidi@ARM.com# Authors: Andreas Sandberg
3710512SAli.Saidi@ARM.com
3810512SAli.Saidi@ARM.comfrom m5.objects import *
3910512SAli.Saidi@ARM.comfrom arm_generic import *
4010512SAli.Saidi@ARM.com
4110512SAli.Saidi@ARM.comroot = LinuxArmFSSystem(machine_type='VExpress_EMM64',
4210512SAli.Saidi@ARM.com                        mem_mode='timing',
4311837Swendy.elsasser@arm.com                        mem_class=DDR3_1600_8x8,
4410512SAli.Saidi@ARM.com                        cpu_class=MinorCPU,
4510512SAli.Saidi@ARM.com                        num_cpus=2).create_root()
46