[Pdbg] [PATCH 07/19] pdbg: Add getcr and putcr options

Rashmica Gupta rashmica.g at gmail.com
Wed Aug 29 11:50:35 AEST 2018


Signed-off-by: Rashmica Gupta <rashmica.g at gmail.com>
---
 src/main.c |  6 +++++-
 src/reg.c  | 22 ++++++++++++++++++++++
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/src/main.c b/src/main.c
index 5d840ef..ff3ee2b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -86,7 +86,8 @@ extern struct optcmd_cmd
 	optcmd_getnia, optcmd_putnia, optcmd_getmsr, optcmd_putmsr,
 	optcmd_getring, optcmd_start, optcmd_stop, optcmd_step,
 	optcmd_threadstatus, optcmd_sreset, optcmd_regs, optcmd_probe,
-	optcmd_getmem, optcmd_putmem, optcmd_getxer, optcmd_putxer;
+	optcmd_getmem, optcmd_putmem, optcmd_getxer, optcmd_putxer,
+	optcmd_getcr, optcmd_putcr;
 
 static struct optcmd_cmd *cmds[] = {
 	&optcmd_getscom, &optcmd_putscom, &optcmd_getcfam, &optcmd_putcfam,
@@ -95,6 +96,7 @@ static struct optcmd_cmd *cmds[] = {
 	&optcmd_getring, &optcmd_start, &optcmd_stop, &optcmd_step,
 	&optcmd_threadstatus, &optcmd_sreset, &optcmd_regs, &optcmd_probe,
 	&optcmd_getmem, &optcmd_putmem, &optcmd_getxer, &optcmd_putxer,
+	&optcmd_getcr, &optcmd_putcr,
 };
 
 /* Purely for printing usage text. We could integrate printing argument and flag
@@ -114,6 +116,8 @@ static struct action actions[] = {
 	{ "putspr",  "<spr> <value>", "Write Special Purpose Register (SPR)" },
 	{ "getmsr",  "", "Get Machine State Register (MSR)" },
 	{ "putmsr",  "<value>", "Write Machine State Register (MSR)" },
+	{ "getcr",  "", "Get Condition Register (CR)" },
+	{ "putcr",  "<value>", "Write Condition Register (CR)" },
 	{ "getxer",  "", "Get Fixed Point Exception Register (XER)" },
 	{ "putxer",  "<value>", "Write Fixed Point Exception Register (XER)" },
 	{ "getring", "<addr> <len>", "Read a ring. Length must be correct" },
diff --git a/src/reg.c b/src/reg.c
index 3864316..fcf6f4c 100644
--- a/src/reg.c
+++ b/src/reg.c
@@ -24,6 +24,7 @@
 #include "main.h"
 #include "optcmd.h"
 
+#define REG_CR -5
 #define REG_XER -4
 #define REG_MEM -3
 #define REG_MSR -2
@@ -45,6 +46,8 @@ static void print_proc_reg(struct pdbg_target *target, uint64_t reg, uint64_t va
 		printf("nia: ");
 	else if (reg == REG_XER)
 		printf("xer: ");
+	else if (reg == REG_CR)
+		printf("cr: ");
 	else if (reg > REG_R31)
 		printf("spr%03" PRIu64 ": ", reg - REG_R31);
 	else if (reg >= 0 && reg <= 31)
@@ -68,6 +71,8 @@ static int putprocreg(struct pdbg_target *target, uint32_t index, uint64_t *reg,
 		rc = ram_putnia(target, *value);
 	else if (*reg == REG_XER)
 		rc = ram_putxer(target, *value);
+	else if (*reg == REG_CR)
+		rc = ram_putcr(target, *value);
 	else if (*reg > REG_R31)
 		rc = ram_putspr(target, *reg - REG_R31, *value);
 	else if (*reg >= 0 && *reg <= 31)
@@ -89,6 +94,8 @@ static int getprocreg(struct pdbg_target *target, uint32_t index, uint64_t *reg,
 		rc = ram_getnia(target, &value);
 	else if (*reg == REG_XER)
 		rc = ram_getxer(target, &value);
+	else if (*reg == REG_CR)
+		rc = ram_getcr(target, (uint32_t *)&value);
 	else if (*reg > REG_R31)
 		rc = ram_getspr(target, *reg - REG_R31, &value);
 	else if (*reg >= 0 && *reg <= 31)
@@ -169,3 +176,18 @@ static int putxer(uint64_t data)
 	return for_each_target("thread", putprocreg, &reg, &d);
 }
 OPTCMD_DEFINE_CMD_WITH_ARGS(putxer, putxer, (DATA));
+
+static int getcr(void)
+{
+	uint64_t cr = REG_CR;
+	return for_each_target("thread", getprocreg, &cr, NULL);
+}
+OPTCMD_DEFINE_CMD(getcr, getcr);
+
+static int putcr(uint32_t data)
+{
+	uint64_t cr = REG_CR;
+	uint64_t d = data;
+	return for_each_target("thread", putprocreg, &cr, &d);
+}
+OPTCMD_DEFINE_CMD_WITH_ARGS(putcr, putcr, (DATA32));
-- 
2.14.4



More information about the Pdbg mailing list