Просмотр исходного кода

microblaze: Remove old user debugging gdb stub

Old gdb uses priviledged exception handler to handle
gdb exception. New gdb uses brki r16, 0x18 that's why
we can remove old gdb support.

Signed-off-by: Michal Simek <monstr@monstr.eu>
Michal Simek 15 лет назад
Родитель
Сommit
0425609680
1 измененных файлов с 1 добавлено и 8 удалено
  1. 1 8
      arch/microblaze/kernel/exceptions.c

+ 1 - 8
arch/microblaze/kernel/exceptions.c

@@ -72,7 +72,6 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
 							int fsr, int addr)
 							int fsr, int addr)
 {
 {
 #ifdef CONFIG_MMU
 #ifdef CONFIG_MMU
-	int code;
 	addr = regs->pc;
 	addr = regs->pc;
 #endif
 #endif
 
 
@@ -144,13 +143,7 @@ asmlinkage void full_exception(struct pt_regs *regs, unsigned int type,
 #ifdef CONFIG_MMU
 #ifdef CONFIG_MMU
 	case MICROBLAZE_PRIVILEGED_EXCEPTION:
 	case MICROBLAZE_PRIVILEGED_EXCEPTION:
 		pr_debug("Privileged exception\n");
 		pr_debug("Privileged exception\n");
-		/* "brk r0,r0" - used as debug breakpoint - old toolchain */
-		if (get_user(code, (unsigned long *)regs->pc) == 0
-			&& code == 0x980c0000) {
-			_exception(SIGTRAP, regs, TRAP_BRKPT, addr);
-		} else {
-			_exception(SIGILL, regs, ILL_PRVOPC, addr);
-		}
+		_exception(SIGILL, regs, ILL_PRVOPC, addr);
 		break;
 		break;
 #endif
 #endif
 	default:
 	default: