19657SN/A# Copyright (c) 2012 ARM Limited
29657SN/A# All rights reserved.
39657SN/A#
49657SN/A# The license below extends only to copyright in the software and shall
59657SN/A# not be construed as granting a license to any other intellectual
69657SN/A# property including but not limited to intellectual property relating
79657SN/A# to a hardware implementation of the functionality of the software
89657SN/A# licensed hereunder.  You may use the software subject to the license
99657SN/A# terms below provided that you ensure that this notice is replicated
109657SN/A# unmodified and in its entirety in all distributions of the software,
119657SN/A# modified or unmodified, in source code or in binary form.
129657SN/A#
139657SN/A# Redistribution and use in source and binary forms, with or without
149657SN/A# modification, are permitted provided that the following conditions are
159657SN/A# met: redistributions of source code must retain the above copyright
169657SN/A# notice, this list of conditions and the following disclaimer;
179657SN/A# redistributions in binary form must reproduce the above copyright
189657SN/A# notice, this list of conditions and the following disclaimer in the
199657SN/A# documentation and/or other materials provided with the distribution;
209657SN/A# neither the name of the copyright holders nor the names of its
219657SN/A# contributors may be used to endorse or promote products derived from
229657SN/A# this software without specific prior written permission.
239657SN/A#
249657SN/A# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
259657SN/A# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
269657SN/A# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
279657SN/A# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
289657SN/A# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
299657SN/A# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
309657SN/A# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
319657SN/A# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
329657SN/A# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
339657SN/A# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
349657SN/A# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
359657SN/A#
369657SN/A# Authors: Andreas Sandberg
379657SN/A
389657SN/Afrom m5.params import *
3914212Sgiacomo.travaglini@arm.comfrom m5.objects.BaseKvmCPU import BaseKvmCPU
409657SN/A
419657SN/Aclass ArmKvmCPU(BaseKvmCPU):
429657SN/A    type = 'ArmKvmCPU'
4310857Sandreas.sandberg@arm.com    cxx_header = "arch/arm/kvm/arm_cpu.hh"
44