target/arm: Implement TPIDR2_EL0
[qemu/rayw.git] / target / ppc / monitor.c
blob0b805ef6e9271f45b0b0f1cbd54dc4c7a4026b63
1 /*
2 * QEMU monitor
4 * Copyright (c) 2003-2004 Fabrice Bellard
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
25 #include "qemu/osdep.h"
26 #include "cpu.h"
27 #include "monitor/monitor.h"
28 #include "qemu/ctype.h"
29 #include "monitor/hmp-target.h"
30 #include "monitor/hmp.h"
32 static target_long monitor_get_ccr(Monitor *mon, const struct MonitorDef *md,
33 int val)
35 CPUArchState *env = mon_get_cpu_env(mon);
36 unsigned int u;
37 int i;
39 u = 0;
40 for (i = 0; i < 8; i++) {
41 u |= env->crf[i] << (32 - (4 * (i + 1)));
44 return u;
47 static target_long monitor_get_xer(Monitor *mon, const struct MonitorDef *md,
48 int val)
50 CPUArchState *env = mon_get_cpu_env(mon);
51 return cpu_read_xer(env);
54 static target_long monitor_get_decr(Monitor *mon, const struct MonitorDef *md,
55 int val)
57 CPUArchState *env = mon_get_cpu_env(mon);
58 return cpu_ppc_load_decr(env);
61 static target_long monitor_get_tbu(Monitor *mon, const struct MonitorDef *md,
62 int val)
64 CPUArchState *env = mon_get_cpu_env(mon);
65 return cpu_ppc_load_tbu(env);
68 static target_long monitor_get_tbl(Monitor *mon, const struct MonitorDef *md,
69 int val)
71 CPUArchState *env = mon_get_cpu_env(mon);
72 return cpu_ppc_load_tbl(env);
75 void hmp_info_tlb(Monitor *mon, const QDict *qdict)
77 CPUArchState *env1 = mon_get_cpu_env(mon);
79 if (!env1) {
80 monitor_printf(mon, "No CPU available\n");
81 return;
83 dump_mmu(env1);
86 const MonitorDef monitor_defs[] = {
87 { "fpscr", offsetof(CPUPPCState, fpscr) },
88 /* Next instruction pointer */
89 { "nip|pc", offsetof(CPUPPCState, nip) },
90 { "lr", offsetof(CPUPPCState, lr) },
91 { "ctr", offsetof(CPUPPCState, ctr) },
92 { "decr", 0, &monitor_get_decr, },
93 { "ccr|cr", 0, &monitor_get_ccr, },
94 /* Machine state register */
95 { "xer", 0, &monitor_get_xer },
96 { "msr", offsetof(CPUPPCState, msr) },
97 { "tbu", 0, &monitor_get_tbu, },
98 { "tbl", 0, &monitor_get_tbl, },
99 { NULL },
102 const MonitorDef *target_monitor_defs(void)
104 return monitor_defs;
107 static int ppc_cpu_get_reg_num(const char *numstr, int maxnum, int *pregnum)
109 int regnum;
110 char *endptr = NULL;
112 if (!*numstr) {
113 return false;
116 regnum = strtoul(numstr, &endptr, 10);
117 if (*endptr || (regnum >= maxnum)) {
118 return false;
120 *pregnum = regnum;
122 return true;
125 int target_get_monitor_def(CPUState *cs, const char *name, uint64_t *pval)
127 int i, regnum;
128 PowerPCCPU *cpu = POWERPC_CPU(cs);
129 CPUPPCState *env = &cpu->env;
131 /* General purpose registers */
132 if ((qemu_tolower(name[0]) == 'r') &&
133 ppc_cpu_get_reg_num(name + 1, ARRAY_SIZE(env->gpr), &regnum)) {
134 *pval = env->gpr[regnum];
135 return 0;
138 /* Floating point registers */
139 if ((qemu_tolower(name[0]) == 'f') &&
140 ppc_cpu_get_reg_num(name + 1, 32, &regnum)) {
141 *pval = *cpu_fpr_ptr(env, regnum);
142 return 0;
145 /* Special purpose registers */
146 for (i = 0; i < ARRAY_SIZE(env->spr_cb); ++i) {
147 ppc_spr_t *spr = &env->spr_cb[i];
149 if (spr->name && (strcasecmp(name, spr->name) == 0)) {
150 *pval = env->spr[i];
151 return 0;
155 /* Segment registers */
156 #if !defined(CONFIG_USER_ONLY)
157 if ((strncasecmp(name, "sr", 2) == 0) &&
158 ppc_cpu_get_reg_num(name + 2, ARRAY_SIZE(env->sr), &regnum)) {
159 *pval = env->sr[regnum];
160 return 0;
162 #endif
164 return -EINVAL;