interrupts.cc revision 7400
16757SAli.Saidi@ARM.com/*
26757SAli.Saidi@ARM.com * Copyright (c) 2009 ARM Limited
36757SAli.Saidi@ARM.com * All rights reserved.
46757SAli.Saidi@ARM.com *
57400SAli.Saidi@ARM.com * The license below extends only to copyright in the software and shall
67400SAli.Saidi@ARM.com * not be construed as granting a license to any other intellectual
77400SAli.Saidi@ARM.com * property including but not limited to intellectual property relating
87400SAli.Saidi@ARM.com * to a hardware implementation of the functionality of the software
97400SAli.Saidi@ARM.com * licensed hereunder.  You may use the software subject to the license
107400SAli.Saidi@ARM.com * terms below provided that you ensure that this notice is replicated
117400SAli.Saidi@ARM.com * unmodified and in its entirety in all distributions of the software,
127400SAli.Saidi@ARM.com * modified or unmodified, in source code or in binary form.
137400SAli.Saidi@ARM.com *
146757SAli.Saidi@ARM.com * Redistribution and use in source and binary forms, with or without
156757SAli.Saidi@ARM.com * modification, are permitted provided that the following conditions are
166757SAli.Saidi@ARM.com * met: redistributions of source code must retain the above copyright
176757SAli.Saidi@ARM.com * notice, this list of conditions and the following disclaimer;
186757SAli.Saidi@ARM.com * redistributions in binary form must reproduce the above copyright
196757SAli.Saidi@ARM.com * notice, this list of conditions and the following disclaimer in the
206757SAli.Saidi@ARM.com * documentation and/or other materials provided with the distribution;
216757SAli.Saidi@ARM.com * neither the name of the copyright holders nor the names of its
226757SAli.Saidi@ARM.com * contributors may be used to endorse or promote products derived from
236757SAli.Saidi@ARM.com * this software without specific prior written permission.
246757SAli.Saidi@ARM.com *
256757SAli.Saidi@ARM.com * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
266757SAli.Saidi@ARM.com * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
276757SAli.Saidi@ARM.com * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
286757SAli.Saidi@ARM.com * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
296757SAli.Saidi@ARM.com * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
306757SAli.Saidi@ARM.com * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
316757SAli.Saidi@ARM.com * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
326757SAli.Saidi@ARM.com * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
336757SAli.Saidi@ARM.com * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
346757SAli.Saidi@ARM.com * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
356757SAli.Saidi@ARM.com * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
366757SAli.Saidi@ARM.com *
376757SAli.Saidi@ARM.com * Authors: Ali Saidi
386757SAli.Saidi@ARM.com */
396757SAli.Saidi@ARM.com
406757SAli.Saidi@ARM.com#include "arch/arm/interrupts.hh"
416757SAli.Saidi@ARM.com
426757SAli.Saidi@ARM.comArmISA::Interrupts *
436757SAli.Saidi@ARM.comArmInterruptsParams::create()
446757SAli.Saidi@ARM.com{
456757SAli.Saidi@ARM.com    return new ArmISA::Interrupts(this);
466757SAli.Saidi@ARM.com}
47