mt_constants.hh revision 4661:44458219add1
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Korey Sewell
29 */
30
31#ifndef __ARCH_MIPS_MT_CONSTANTS_HH__
32#define __ARCH_MIPS_MT_CONSTANTS_HH__
33
34#include "arch/mips/types.hh"
35//#include "config/full_system.hh"
36
37namespace MipsISA
38{
39// MVPControl
40const unsigned MVPC_EVP = 0;
41const unsigned MVPC_CUR_VPE_HI = 3;
42const unsigned MVPC_CUR_VPE_LO = 0;
43
44// MVPConf0
45const unsigned MVPC0_TCA = 15;
46const unsigned MVPC0_PVPE_HI = 13;
47const unsigned MVPC0_PVPE_LO = 10;
48const unsigned MVPC0_PTC_HI = 7;
49const unsigned MVPC0_PTC_LO = 0;
50
51//VPEControl
52const unsigned VPEC_YSI = 21;
53const unsigned VPEC_EXCPT_HI = 18;
54const unsigned VPEC_EXCPT_LO = 16;
55const unsigned VPEC_TE = 15;
56const unsigned VPEC_TARG_TC_HI = 7;
57const unsigned VPEC_TARG_TC_LO = 0;
58
59//VPEConf0
60const unsigned VPEC0_MVP = 1;
61
62//TCBind
63const unsigned TCB_CUR_VPE_HI = 3;
64const unsigned TCB_CUR_VPE_LO = 0;
65const unsigned TCB_CUR_TC_HI = 28;
66const unsigned TCB_CUR_TC_LO = 21;
67
68
69//TCStatus
70const unsigned TCS_TCU_HI = 31;
71const unsigned TCS_TCU_LO = 28;
72const unsigned TCS_TMX = 27;
73const unsigned TCS_DT = 20;
74const unsigned TCS_DA = 15;
75const unsigned TCS_A = 13;
76const unsigned TCS_TKSU_HI = 12;
77const unsigned TCS_TKSU_LO = 11;
78const unsigned TCS_IXMT = 7;
79const unsigned TCS_ASID_HI = 7;
80const unsigned TCS_ASID_LO = 7;
81
82const unsigned TCSTATUS_TCU_HI = 31;
83const unsigned TCSTATUS_TCU_LO = 28;
84const unsigned TCSTATUS_TMX = 27;
85const unsigned TCSTATUS_RNST_HI = 24;
86const unsigned TCSTATUS_RNST_LO = 23;
87const unsigned TCSTATUS_TDS = 21;
88const unsigned TCSTATUS_DT = 20;
89const unsigned TCSTATUS_DA = 15;
90const unsigned TCSTATUS_A = 13;
91const unsigned TCSTATUS_TKSU_HI = 12;
92const unsigned TCSTATUS_TKSU_LO = 11;
93const unsigned TCSTATUS_IXMT = 7;
94const unsigned TCSTATUS_ASID_HI = 7;
95const unsigned TCSTATUS_ASID_LO = 7;
96
97//TCHalt
98const unsigned TCH_H = 0;
99
100//Status
101const unsigned S_CU_HI = 31;
102const unsigned S_CU_LO = 28;
103const unsigned S_MX = 24;
104const unsigned S_KSU_HI = 4;
105const unsigned S_KSU_LO = 3;
106
107// Config0
108const unsigned CFG_M = 31;
109
110// Config1
111const unsigned CFG1_M = 31;
112
113// Config2
114const unsigned CFG2_M = 31;
115
116// Config3
117const unsigned CFG3_M = 31;
118const unsigned CFG3_MT = 2;
119
120} // namespace MipsISA
121
122#endif
123