]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/m32r/dv-m32r_cache.h
update copyright year range in GDB files
[thirdparty/binutils-gdb.git] / sim / m32r / dv-m32r_cache.h
CommitLineData
9c0c156b
MF
1/* Handle cache related addresses.
2
61baf725 3 Copyright (C) 1996-2017 Free Software Foundation, Inc.
9c0c156b
MF
4 Contributed by Cygnus Solutions and Mike Frysinger.
5
6 This file is part of the GNU simulators.
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20
21#ifndef DV_M32R_CACHE_H
22#define DV_M32R_CACHE_H
23
24/* Support for the MSPR register (Cache Purge Control Register)
25 and the MCCR register (Cache Control Register) are needed in order for
26 overlays to work correctly with the scache.
27 MSPR no longer exists but is supported for upward compatibility with
28 early overlay support. */
29
30/* Cache Purge Control (only exists on early versions of chips) */
31#define MSPR_ADDR 0xfffffff7
32#define MSPR_PURGE 1
33
34/* Lock Control Register (not supported) */
35#define MLCR_ADDR 0xfffffff7
36#define MLCR_LM 1
37
38/* Power Management Control Register (not supported) */
39#define MPMR_ADDR 0xfffffffb
40
41/* Cache Control Register */
42#define MCCR_ADDR 0xffffffff
43#define MCCR_CP 0x80
44/* not supported */
45#define MCCR_CM0 2
46#define MCCR_CM1 1
47
48#endif