tsunami-o3-dual.py revision 9826
12SN/A# Copyright (c) 2012 ARM Limited
210688Sandreas.hansson@arm.com# All rights reserved.
310688Sandreas.hansson@arm.com#
410688Sandreas.hansson@arm.com# The license below extends only to copyright in the software and shall
510688Sandreas.hansson@arm.com# not be construed as granting a license to any other intellectual
610688Sandreas.hansson@arm.com# property including but not limited to intellectual property relating
710688Sandreas.hansson@arm.com# to a hardware implementation of the functionality of the software
810688Sandreas.hansson@arm.com# licensed hereunder.  You may use the software subject to the license
910688Sandreas.hansson@arm.com# terms below provided that you ensure that this notice is replicated
1010688Sandreas.hansson@arm.com# unmodified and in its entirety in all distributions of the software,
1110688Sandreas.hansson@arm.com# modified or unmodified, in source code or in binary form.
1210688Sandreas.hansson@arm.com#
1310688Sandreas.hansson@arm.com# Redistribution and use in source and binary forms, with or without
141762SN/A# modification, are permitted provided that the following conditions are
152SN/A# met: redistributions of source code must retain the above copyright
162SN/A# notice, this list of conditions and the following disclaimer;
172SN/A# redistributions in binary form must reproduce the above copyright
182SN/A# notice, this list of conditions and the following disclaimer in the
192SN/A# documentation and/or other materials provided with the distribution;
202SN/A# neither the name of the copyright holders nor the names of its
212SN/A# contributors may be used to endorse or promote products derived from
222SN/A# this software without specific prior written permission.
232SN/A#
242SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
252SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
262SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
272SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
282SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
292SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
302SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
312SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
322SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
332SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
342SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
352SN/A#
362SN/A# Authors: Andreas Sandberg
372SN/A
382SN/Afrom m5.objects import *
392665SN/Afrom alpha_generic import *
402665SN/A
412665SN/Aroot = LinuxAlphaFSSystem(mem_mode='timing',
4210688Sandreas.hansson@arm.com                          mem_class=DDR3_1600_x64,
432SN/A                          cpu_class=DerivO3CPU,
442SN/A                          num_cpus=2).create_root()
451400SN/A