16019SN/A/*
26019SN/A * Copyright (c) 2006 The Regents of The University of Michigan
36019SN/A * Copyright (c) 2007-2008 The Florida State University
46019SN/A * All rights reserved.
56019SN/A *
66019SN/A * Redistribution and use in source and binary forms, with or without
76019SN/A * modification, are permitted provided that the following conditions are
86019SN/A * met: redistributions of source code must retain the above copyright
96019SN/A * notice, this list of conditions and the following disclaimer;
106019SN/A * redistributions in binary form must reproduce the above copyright
116019SN/A * notice, this list of conditions and the following disclaimer in the
126019SN/A * documentation and/or other materials provided with the distribution;
136019SN/A * neither the name of the copyright holders nor the names of its
146019SN/A * contributors may be used to endorse or promote products derived from
156019SN/A * this software without specific prior written permission.
166019SN/A *
176019SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
186019SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
196019SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
206019SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
216019SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
226019SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
236019SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
246019SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
256019SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
266019SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
276019SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
286019SN/A *
296019SN/A * Authors: Ali Saidi
306019SN/A *          Stephen Hines
316019SN/A */
326019SN/A
338105Sgblack@eecs.umich.edu#ifndef __ARCH_ARM_MMAPPED_IPR_HH__
348105Sgblack@eecs.umich.edu#define __ARCH_ARM_MMAPPED_IPR_HH__
356019SN/A
366019SN/A/**
376019SN/A * @file
386019SN/A *
396019SN/A * ISA-specific helper functions for memory mapped IPR accesses.
406019SN/A */
416019SN/A
429897Sandreas@sandberg.pp.se#include "arch/generic/mmapped_ipr.hh"
436019SN/A
446019SN/Aclass ThreadContext;
456019SN/A
466019SN/Anamespace ArmISA
476019SN/A{
489897Sandreas@sandberg.pp.se    using GenericISA::handleIprRead;
499897Sandreas@sandberg.pp.se    using GenericISA::handleIprWrite;
506019SN/A} // namespace ArmISA
516019SN/A
526019SN/A#endif
53