Thread (11 messages) 11 messages, 2 authors, 2011-11-24

Re: [4/4] powerpc/booke: Re-organize debug code

From: Kumar Gala <hidden>
Date: 2011-10-31 14:21:27

On Oct 28, 2011, at 2:37 PM, Jimi Xenidis wrote:
=20
On Oct 5, 2011, at 9:53 PM, Kumar Gala wrote:
=20
quoted
* set_dabr/do_dabr are no longer used when CNFIG_PPC_ADV_DEBUG_REGS =
is set
quoted
refactor code a bit such that we only build the dabr code for
!CONFIG_PPC_ADV_DEBUG_REGS and removed some CONFIG_PPC_ADV_DEBUG_REGS
code in set_dabr that would never get built.
=20
* Move do_send_trap into traps.c as its only used there
=20
Signed-off-by: Kumar Gala <redacted>
=20
---
arch/powerpc/include/asm/system.h |    5 +--
arch/powerpc/kernel/process.c     |   97 =
+++++++++++++-----------------------
quoted
arch/powerpc/kernel/traps.c       |   17 +++++++
3 files changed, 53 insertions(+), 66 deletions(-)
=20
diff --git a/arch/powerpc/include/asm/system.h =
b/arch/powerpc/include/asm/system.h
quoted
index e30a13d..1dc5d9c 100644
--- a/arch/powerpc/include/asm/system.h
+++ b/arch/powerpc/include/asm/system.h
@@ -111,11 +111,8 @@ static inline int debugger_dabr_match(struct =
pt_regs *regs) { return 0; }
quoted
static inline int debugger_fault_handler(struct pt_regs *regs) { =
return 0; }
quoted
#endif
=20
+#ifndef CONFIG_PPC_ADV_DEBUG_REGS
extern int set_dabr(unsigned long dabr);
-#ifdef CONFIG_PPC_ADV_DEBUG_REGS
-extern void do_send_trap(struct pt_regs *regs, unsigned long =
address,
quoted
-			 unsigned long error_code, int signal_code, int =
brkpt);
quoted hunk ↗ jump to hunk
quoted
-#else
=20
=20
This part of the patch breaks xmon.c
Naively I simply wrapped the xmon call:
=20
diff --git a/arch/powerpc/xmon/xmon.c b/arch/powerpc/xmon/xmon.c
index f08836a..b5911b2 100644
--- a/arch/powerpc/xmon/xmon.c
+++ b/arch/powerpc/xmon/xmon.c
@@ -738,8 +738,10 @@ static void insert_bpts(void)
=20
static void insert_cpu_bpts(void)
{
+#ifndef CONFIG_PPC_ADV_DEBUG_REGS
	if (dabr.enabled)
		set_dabr(dabr.address | (dabr.enabled & 7));
+#endif
	if (iabr && cpu_has_feature(CPU_FTR_IABR))
		mtspr(SPRN_IABR, iabr->address
			 | (iabr->enabled & (BP_IABR|BP_IABR_TE)));
@@ -767,7 +769,9 @@ static void remove_bpts(void)
=20
static void remove_cpu_bpts(void)
{
+#ifndef CONFIG_PPC_ADV_DEBUG_REGS
	set_dabr(0);
+#endif
	if (cpu_has_feature(CPU_FTR_IABR))
		mtspr(SPRN_IABR, 0);
}
Shouldn't all of these functions be #ifndef'd out as we don't support =
cpu_bpts on book-e parts in xmon code today?
=20
-JX
=20
=20
quoted
extern void do_dabr(struct pt_regs *regs, unsigned long address,
		    unsigned long error_code);
#endif
diff --git a/arch/powerpc/kernel/process.c =
b/arch/powerpc/kernel/process.c
quoted
index 269a309..989e574 100644
--- a/arch/powerpc/kernel/process.c
+++ b/arch/powerpc/kernel/process.c
@@ -251,50 +251,6 @@ void discard_lazy_cpu_state(void)
#endif /* CONFIG_SMP */
=20
#ifdef CONFIG_PPC_ADV_DEBUG_REGS
-void do_send_trap(struct pt_regs *regs, unsigned long address,
-		  unsigned long error_code, int signal_code, int =
breakpt)
quoted
-{
-	siginfo_t info;
-
-	if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
-			11, SIGSEGV) =3D=3D NOTIFY_STOP)
-		return;
-
-	/* Deliver the signal to userspace */
-	info.si_signo =3D SIGTRAP;
-	info.si_errno =3D breakpt;	/* breakpoint or watchpoint id =
*/
quoted
-	info.si_code =3D signal_code;
-	info.si_addr =3D (void __user *)address;
-	force_sig_info(SIGTRAP, &info, current);
-}
-#else	/* !CONFIG_PPC_ADV_DEBUG_REGS */
-void do_dabr(struct pt_regs *regs, unsigned long address,
-		    unsigned long error_code)
-{
-	siginfo_t info;
-
-	if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
-			11, SIGSEGV) =3D=3D NOTIFY_STOP)
-		return;
-
-	if (debugger_dabr_match(regs))
-		return;
-
-	/* Clear the DABR */
-	set_dabr(0);
-
-	/* Deliver the signal to userspace */
-	info.si_signo =3D SIGTRAP;
-	info.si_errno =3D 0;
-	info.si_code =3D TRAP_HWBKPT;
-	info.si_addr =3D (void __user *)address;
-	force_sig_info(SIGTRAP, &info, current);
-}
-#endif	/* CONFIG_PPC_ADV_DEBUG_REGS */
-
-static DEFINE_PER_CPU(unsigned long, current_dabr);
-
-#ifdef CONFIG_PPC_ADV_DEBUG_REGS
/*
* Set the debug registers back to their default "safe" values.
*/
@@ -357,16 +313,7 @@ static void switch_booke_debug_regs(struct =
thread_struct *new_thread)
quoted
			prime_debug_regs(new_thread);
}
#else	/* !CONFIG_PPC_ADV_DEBUG_REGS */
-#ifndef CONFIG_HAVE_HW_BREAKPOINT
-static void set_debug_reg_defaults(struct thread_struct *thread)
-{
-	if (thread->dabr) {
-		thread->dabr =3D 0;
-		set_dabr(0);
-	}
-}
-#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
-#endif	/* CONFIG_PPC_ADV_DEBUG_REGS */
+static DEFINE_PER_CPU(unsigned long, current_dabr);
=20
int set_dabr(unsigned long dabr)
{
@@ -376,19 +323,45 @@ int set_dabr(unsigned long dabr)
		return ppc_md.set_dabr(dabr);
=20
	/* XXX should we have a CPU_FTR_HAS_DABR ? */
-#ifdef CONFIG_PPC_ADV_DEBUG_REGS
-	mtspr(SPRN_DAC1, dabr);
-#ifdef CONFIG_PPC_47x
-	isync();
-#endif
-#elif defined(CONFIG_PPC_BOOK3S)
	mtspr(SPRN_DABR, dabr);
-#endif
-
=20
	return 0;
}
=20
+void do_dabr(struct pt_regs *regs, unsigned long address,
+		    unsigned long error_code)
+{
+	siginfo_t info;
+
+	if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
+			11, SIGSEGV) =3D=3D NOTIFY_STOP)
+		return;
+
+	if (debugger_dabr_match(regs))
+		return;
+
+	/* Clear the DABR */
+	set_dabr(0);
+
+	/* Deliver the signal to userspace */
+	info.si_signo =3D SIGTRAP;
+	info.si_errno =3D 0;
+	info.si_code =3D TRAP_HWBKPT;
+	info.si_addr =3D (void __user *)address;
+	force_sig_info(SIGTRAP, &info, current);
+}
+
+#ifndef CONFIG_HAVE_HW_BREAKPOINT
+static void set_debug_reg_defaults(struct thread_struct *thread)
+{
+	if (thread->dabr) {
+		thread->dabr =3D 0;
+		set_dabr(0);
+	}
+}
+#endif /* !CONFIG_HAVE_HW_BREAKPOINT */
+#endif	/* CONFIG_PPC_ADV_DEBUG_REGS */
+
#ifdef CONFIG_PPC64
DEFINE_PER_CPU(struct cpu_usage, cpu_usage_array);
#endif
diff --git a/arch/powerpc/kernel/traps.c =
b/arch/powerpc/kernel/traps.c
quoted
index db733d3..edc1108 100644
--- a/arch/powerpc/kernel/traps.c
+++ b/arch/powerpc/kernel/traps.c
@@ -1184,6 +1184,23 @@ void SoftwareEmulation(struct pt_regs *regs)
#endif /* CONFIG_8xx */
=20
#ifdef CONFIG_PPC_ADV_DEBUG_REGS
+static void do_send_trap(struct pt_regs *regs, unsigned long =
address,
quoted
+		  unsigned long error_code, int signal_code, int =
breakpt)
quoted
+{
+	siginfo_t info;
+
+	if (notify_die(DIE_DABR_MATCH, "dabr_match", regs, error_code,
+			11, SIGSEGV) =3D=3D NOTIFY_STOP)
+		return;
+
+	/* Deliver the signal to userspace */
+	info.si_signo =3D SIGTRAP;
+	info.si_errno =3D breakpt;	/* breakpoint or watchpoint id =
*/
quoted
+	info.si_code =3D signal_code;
+	info.si_addr =3D (void __user *)address;
+	force_sig_info(SIGTRAP, &info, current);
+}
+
static void handle_debug(struct pt_regs *regs, unsigned long =
debug_status)
quoted
{
	int changed =3D 0;
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help