diff options
| -rw-r--r-- | arch/arm/Kconfig | 1 | ||||
| -rw-r--r-- | arch/arm/kernel/Makefile | 1 | ||||
| -rw-r--r-- | arch/arm/kernel/kgdb.c | 201 | ||||
| -rw-r--r-- | arch/arm/kernel/setup.c | 2 | ||||
| -rw-r--r-- | arch/arm/kernel/traps.c | 5 | ||||
| -rw-r--r-- | arch/powerpc/Kconfig | 1 | ||||
| -rw-r--r-- | arch/powerpc/Kconfig.debug | 50 | ||||
| -rw-r--r-- | arch/powerpc/kernel/Makefile | 1 | ||||
| -rw-r--r-- | arch/powerpc/kernel/kgdb.c | 410 | ||||
| -rw-r--r-- | arch/powerpc/kernel/setup_32.c | 16 | ||||
| -rw-r--r-- | arch/powerpc/platforms/powermac/setup.c | 6 | ||||
| -rw-r--r-- | drivers/serial/cpm_uart/cpm_uart_core.c | 95 | ||||
| -rw-r--r-- | drivers/serial/mpsc.c | 148 | ||||
| -rw-r--r-- | include/asm-arm/kgdb.h | 104 | ||||
| -rw-r--r-- | include/asm-arm/traps.h | 2 | ||||
| -rw-r--r-- | include/asm-powerpc/kgdb.h | 92 | ||||
| -rw-r--r-- | lib/Kconfig.kgdb | 3 |
17 files changed, 1025 insertions, 113 deletions
diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index c7ad324ddf2c..d048f6887d0b 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig | |||
| @@ -12,6 +12,7 @@ config ARM | |||
| 12 | select RTC_LIB | 12 | select RTC_LIB |
| 13 | select SYS_SUPPORTS_APM_EMULATION | 13 | select SYS_SUPPORTS_APM_EMULATION |
| 14 | select HAVE_OPROFILE | 14 | select HAVE_OPROFILE |
| 15 | select HAVE_ARCH_KGDB | ||
| 15 | select HAVE_KPROBES if (!XIP_KERNEL) | 16 | select HAVE_KPROBES if (!XIP_KERNEL) |
| 16 | select HAVE_KRETPROBES if (HAVE_KPROBES) | 17 | select HAVE_KRETPROBES if (HAVE_KPROBES) |
| 17 | select HAVE_FTRACE if (!XIP_KERNEL) | 18 | select HAVE_FTRACE if (!XIP_KERNEL) |
diff --git a/arch/arm/kernel/Makefile b/arch/arm/kernel/Makefile index eb9092ca8008..1d296fc8494e 100644 --- a/arch/arm/kernel/Makefile +++ b/arch/arm/kernel/Makefile | |||
| @@ -28,6 +28,7 @@ obj-$(CONFIG_KPROBES) += kprobes.o kprobes-decode.o | |||
| 28 | obj-$(CONFIG_ATAGS_PROC) += atags.o | 28 | obj-$(CONFIG_ATAGS_PROC) += atags.o |
| 29 | obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o | 29 | obj-$(CONFIG_OABI_COMPAT) += sys_oabi-compat.o |
| 30 | obj-$(CONFIG_ARM_THUMBEE) += thumbee.o | 30 | obj-$(CONFIG_ARM_THUMBEE) += thumbee.o |
| 31 | obj-$(CONFIG_KGDB) += kgdb.o | ||
| 31 | 32 | ||
| 32 | obj-$(CONFIG_CRUNCH) += crunch.o crunch-bits.o | 33 | obj-$(CONFIG_CRUNCH) += crunch.o crunch-bits.o |
| 33 | AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312 | 34 | AFLAGS_crunch-bits.o := -Wa,-mcpu=ep9312 |
diff --git a/arch/arm/kernel/kgdb.c b/arch/arm/kernel/kgdb.c new file mode 100644 index 000000000000..aaffaecffcd1 --- /dev/null +++ b/arch/arm/kernel/kgdb.c | |||
| @@ -0,0 +1,201 @@ | |||
| 1 | /* | ||
| 2 | * arch/arm/kernel/kgdb.c | ||
| 3 | * | ||
| 4 | * ARM KGDB support | ||
| 5 | * | ||
| 6 | * Copyright (c) 2002-2004 MontaVista Software, Inc | ||
| 7 | * Copyright (c) 2008 Wind River Systems, Inc. | ||
| 8 | * | ||
| 9 | * Authors: George Davis <davis_g@mvista.com> | ||
| 10 | * Deepak Saxena <dsaxena@plexity.net> | ||
| 11 | */ | ||
| 12 | #include <linux/kgdb.h> | ||
| 13 | #include <asm/traps.h> | ||
| 14 | |||
| 15 | /* Make a local copy of the registers passed into the handler (bletch) */ | ||
| 16 | void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *kernel_regs) | ||
| 17 | { | ||
| 18 | int regno; | ||
| 19 | |||
| 20 | /* Initialize all to zero. */ | ||
| 21 | for (regno = 0; regno < GDB_MAX_REGS; regno++) | ||
| 22 | gdb_regs[regno] = 0; | ||
| 23 | |||
| 24 | gdb_regs[_R0] = kernel_regs->ARM_r0; | ||
| 25 | gdb_regs[_R1] = kernel_regs->ARM_r1; | ||
| 26 | gdb_regs[_R2] = kernel_regs->ARM_r2; | ||
| 27 | gdb_regs[_R3] = kernel_regs->ARM_r3; | ||
| 28 | gdb_regs[_R4] = kernel_regs->ARM_r4; | ||
| 29 | gdb_regs[_R5] = kernel_regs->ARM_r5; | ||
| 30 | gdb_regs[_R6] = kernel_regs->ARM_r6; | ||
| 31 | gdb_regs[_R7] = kernel_regs->ARM_r7; | ||
| 32 | gdb_regs[_R8] = kernel_regs->ARM_r8; | ||
| 33 | gdb_regs[_R9] = kernel_regs->ARM_r9; | ||
| 34 | gdb_regs[_R10] = kernel_regs->ARM_r10; | ||
| 35 | gdb_regs[_FP] = kernel_regs->ARM_fp; | ||
| 36 | gdb_regs[_IP] = kernel_regs->ARM_ip; | ||
| 37 | gdb_regs[_SPT] = kernel_regs->ARM_sp; | ||
| 38 | gdb_regs[_LR] = kernel_regs->ARM_lr; | ||
| 39 | gdb_regs[_PC] = kernel_regs->ARM_pc; | ||
| 40 | gdb_regs[_CPSR] = kernel_regs->ARM_cpsr; | ||
| 41 | } | ||
| 42 | |||
| 43 | /* Copy local gdb registers back to kgdb regs, for later copy to kernel */ | ||
| 44 | void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *kernel_regs) | ||
| 45 | { | ||
| 46 | kernel_regs->ARM_r0 = gdb_regs[_R0]; | ||
| 47 | kernel_regs->ARM_r1 = gdb_regs[_R1]; | ||
| 48 | kernel_regs->ARM_r2 = gdb_regs[_R2]; | ||
| 49 | kernel_regs->ARM_r3 = gdb_regs[_R3]; | ||
| 50 | kernel_regs->ARM_r4 = gdb_regs[_R4]; | ||
| 51 | kernel_regs->ARM_r5 = gdb_regs[_R5]; | ||
| 52 | kernel_regs->ARM_r6 = gdb_regs[_R6]; | ||
| 53 | kernel_regs->ARM_r7 = gdb_regs[_R7]; | ||
| 54 | kernel_regs->ARM_r8 = gdb_regs[_R8]; | ||
| 55 | kernel_regs->ARM_r9 = gdb_regs[_R9]; | ||
| 56 | kernel_regs->ARM_r10 = gdb_regs[_R10]; | ||
| 57 | kernel_regs->ARM_fp = gdb_regs[_FP]; | ||
| 58 | kernel_regs->ARM_ip = gdb_regs[_IP]; | ||
| 59 | kernel_regs->ARM_sp = gdb_regs[_SPT]; | ||
| 60 | kernel_regs->ARM_lr = gdb_regs[_LR]; | ||
| 61 | kernel_regs->ARM_pc = gdb_regs[_PC]; | ||
| 62 | kernel_regs->ARM_cpsr = gdb_regs[_CPSR]; | ||
| 63 | } | ||
| 64 | |||
| 65 | void | ||
| 66 | sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *task) | ||
| 67 | { | ||
| 68 | struct pt_regs *thread_regs; | ||
| 69 | int regno; | ||
| 70 | |||
| 71 | /* Just making sure... */ | ||
| 72 | if (task == NULL) | ||
| 73 | return; | ||
| 74 | |||
| 75 | /* Initialize to zero */ | ||
| 76 | for (regno = 0; regno < GDB_MAX_REGS; regno++) | ||
| 77 | gdb_regs[regno] = 0; | ||
| 78 | |||
| 79 | /* Otherwise, we have only some registers from switch_to() */ | ||
| 80 | thread_regs = task_pt_regs(task); | ||
| 81 | gdb_regs[_R0] = thread_regs->ARM_r0; | ||
| 82 | gdb_regs[_R1] = thread_regs->ARM_r1; | ||
| 83 | gdb_regs[_R2] = thread_regs->ARM_r2; | ||
| 84 | gdb_regs[_R3] = thread_regs->ARM_r3; | ||
| 85 | gdb_regs[_R4] = thread_regs->ARM_r4; | ||
| 86 | gdb_regs[_R5] = thread_regs->ARM_r5; | ||
| 87 | gdb_regs[_R6] = thread_regs->ARM_r6; | ||
| 88 | gdb_regs[_R7] = thread_regs->ARM_r7; | ||
| 89 | gdb_regs[_R8] = thread_regs->ARM_r8; | ||
| 90 | gdb_regs[_R9] = thread_regs->ARM_r9; | ||
| 91 | gdb_regs[_R10] = thread_regs->ARM_r10; | ||
| 92 | gdb_regs[_FP] = thread_regs->ARM_fp; | ||
| 93 | gdb_regs[_IP] = thread_regs->ARM_ip; | ||
| 94 | gdb_regs[_SPT] = thread_regs->ARM_sp; | ||
| 95 | gdb_regs[_LR] = thread_regs->ARM_lr; | ||
| 96 | gdb_regs[_PC] = thread_regs->ARM_pc; | ||
| 97 | gdb_regs[_CPSR] = thread_regs->ARM_cpsr; | ||
| 98 | } | ||
| 99 | |||
| 100 | static int compiled_break; | ||
| 101 | |||
| 102 | int kgdb_arch_handle_exception(int exception_vector, int signo, | ||
| 103 | int err_code, char *remcom_in_buffer, | ||
| 104 | char *remcom_out_buffer, | ||
| 105 | struct pt_regs *linux_regs) | ||
| 106 | { | ||
| 107 | unsigned long addr; | ||
| 108 | char *ptr; | ||
| 109 | |||
| 110 | switch (remcom_in_buffer[0]) { | ||
| 111 | case 'D': | ||
| 112 | case 'k': | ||
| 113 | case 'c': | ||
| 114 | kgdb_contthread = NULL; | ||
| 115 | |||
| 116 | /* | ||
| 117 | * Try to read optional parameter, pc unchanged if no parm. | ||
| 118 | * If this was a compiled breakpoint, we need to move | ||
| 119 | * to the next instruction or we will just breakpoint | ||
| 120 | * over and over again. | ||
| 121 | */ | ||
| 122 | ptr = &remcom_in_buffer[1]; | ||
| 123 | if (kgdb_hex2long(&ptr, &addr)) | ||
| 124 | linux_regs->ARM_pc = addr; | ||
| 125 | else if (compiled_break == 1) | ||
| 126 | linux_regs->ARM_pc += 4; | ||
| 127 | |||
| 128 | compiled_break = 0; | ||
| 129 | |||
| 130 | return 0; | ||
| 131 | } | ||
| 132 | |||
| 133 | return -1; | ||
| 134 | } | ||
| 135 | |||
| 136 | static int kgdb_brk_fn(struct pt_regs *regs, unsigned int instr) | ||
| 137 | { | ||
| 138 | kgdb_handle_exception(1, SIGTRAP, 0, regs); | ||
| 139 | |||
| 140 | return 0; | ||
| 141 | } | ||
| 142 | |||
| 143 | static int kgdb_compiled_brk_fn(struct pt_regs *regs, unsigned int instr) | ||
| 144 | { | ||
| 145 | compiled_break = 1; | ||
| 146 | kgdb_handle_exception(1, SIGTRAP, 0, regs); | ||
| 147 | |||
| 148 | return 0; | ||
| 149 | } | ||
| 150 | |||
| 151 | static struct undef_hook kgdb_brkpt_hook = { | ||
| 152 | .instr_mask = 0xffffffff, | ||
| 153 | .instr_val = KGDB_BREAKINST, | ||
| 154 | .fn = kgdb_brk_fn | ||
| 155 | }; | ||
| 156 | |||
| 157 | static struct undef_hook kgdb_compiled_brkpt_hook = { | ||
| 158 | .instr_mask = 0xffffffff, | ||
| 159 | .instr_val = KGDB_COMPILED_BREAK, | ||
| 160 | .fn = kgdb_compiled_brk_fn | ||
| 161 | }; | ||
| 162 | |||
| 163 | /** | ||
| 164 | * kgdb_arch_init - Perform any architecture specific initalization. | ||
| 165 | * | ||
| 166 | * This function will handle the initalization of any architecture | ||
| 167 | * specific callbacks. | ||
| 168 | */ | ||
| 169 | int kgdb_arch_init(void) | ||
| 170 | { | ||
| 171 | register_undef_hook(&kgdb_brkpt_hook); | ||
| 172 | register_undef_hook(&kgdb_compiled_brkpt_hook); | ||
| 173 | |||
| 174 | return 0; | ||
| 175 | } | ||
| 176 | |||
| 177 | /** | ||
| 178 | * kgdb_arch_exit - Perform any architecture specific uninitalization. | ||
| 179 | * | ||
| 180 | * This function will handle the uninitalization of any architecture | ||
| 181 | * specific callbacks, for dynamic registration and unregistration. | ||
| 182 | */ | ||
| 183 | void kgdb_arch_exit(void) | ||
| 184 | { | ||
| 185 | unregister_undef_hook(&kgdb_brkpt_hook); | ||
| 186 | unregister_undef_hook(&kgdb_compiled_brkpt_hook); | ||
| 187 | } | ||
| 188 | |||
| 189 | /* | ||
| 190 | * Register our undef instruction hooks with ARM undef core. | ||
| 191 | * We regsiter a hook specifically looking for the KGB break inst | ||
| 192 | * and we handle the normal undef case within the do_undefinstr | ||
| 193 | * handler. | ||
| 194 | */ | ||
| 195 | struct kgdb_arch arch_kgdb_ops = { | ||
| 196 | #ifndef __ARMEB__ | ||
| 197 | .gdb_bpt_instr = {0xfe, 0xde, 0xff, 0xe7} | ||
| 198 | #else /* ! __ARMEB__ */ | ||
| 199 | .gdb_bpt_instr = {0xe7, 0xff, 0xde, 0xfe} | ||
| 200 | #endif | ||
| 201 | }; | ||
diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c index b7b0720bc1bb..38f0e7940a13 100644 --- a/arch/arm/kernel/setup.c +++ b/arch/arm/kernel/setup.c | |||
| @@ -36,6 +36,7 @@ | |||
| 36 | #include <asm/mach/arch.h> | 36 | #include <asm/mach/arch.h> |
| 37 | #include <asm/mach/irq.h> | 37 | #include <asm/mach/irq.h> |
| 38 | #include <asm/mach/time.h> | 38 | #include <asm/mach/time.h> |
| 39 | #include <asm/traps.h> | ||
| 39 | 40 | ||
| 40 | #include "compat.h" | 41 | #include "compat.h" |
| 41 | #include "atags.h" | 42 | #include "atags.h" |
| @@ -853,6 +854,7 @@ void __init setup_arch(char **cmdline_p) | |||
| 853 | conswitchp = &dummy_con; | 854 | conswitchp = &dummy_con; |
| 854 | #endif | 855 | #endif |
| 855 | #endif | 856 | #endif |
| 857 | early_trap_init(); | ||
| 856 | } | 858 | } |
| 857 | 859 | ||
| 858 | 860 | ||
diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c index 5595fdd75e82..7277aef83098 100644 --- a/arch/arm/kernel/traps.c +++ b/arch/arm/kernel/traps.c | |||
| @@ -708,6 +708,11 @@ EXPORT_SYMBOL(abort); | |||
| 708 | 708 | ||
| 709 | void __init trap_init(void) | 709 | void __init trap_init(void) |
| 710 | { | 710 | { |
| 711 | return; | ||
| 712 | } | ||
| 713 | |||
| 714 | void __init early_trap_init(void) | ||
| 715 | { | ||
| 711 | unsigned long vectors = CONFIG_VECTORS_BASE; | 716 | unsigned long vectors = CONFIG_VECTORS_BASE; |
| 712 | extern char __stubs_start[], __stubs_end[]; | 717 | extern char __stubs_start[], __stubs_end[]; |
| 713 | extern char __vectors_start[], __vectors_end[]; | 718 | extern char __vectors_start[], __vectors_end[]; |
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index 4c22242b396f..737ebf9d12bb 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
| @@ -112,6 +112,7 @@ config PPC | |||
| 112 | select HAVE_FTRACE | 112 | select HAVE_FTRACE |
| 113 | select HAVE_IDE | 113 | select HAVE_IDE |
| 114 | select HAVE_KPROBES | 114 | select HAVE_KPROBES |
| 115 | select HAVE_ARCH_KGDB | ||
| 115 | select HAVE_KRETPROBES | 116 | select HAVE_KRETPROBES |
| 116 | select HAVE_LMB | 117 | select HAVE_LMB |
| 117 | select HAVE_DMA_ATTRS if PPC64 | 118 | select HAVE_DMA_ATTRS if PPC64 |
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug index 2840ab69ef4e..8c8aadbe9563 100644 --- a/arch/powerpc/Kconfig.debug +++ b/arch/powerpc/Kconfig.debug | |||
| @@ -41,22 +41,6 @@ config HCALL_STATS | |||
| 41 | This option will add a small amount of overhead to all hypervisor | 41 | This option will add a small amount of overhead to all hypervisor |
| 42 | calls. | 42 | calls. |
| 43 | 43 | ||
| 44 | config DEBUGGER | ||
| 45 | bool "Enable debugger hooks" | ||
| 46 | depends on DEBUG_KERNEL | ||
| 47 | help | ||
| 48 | Include in-kernel hooks for kernel debuggers. Unless you are | ||
| 49 | intending to debug the kernel, say N here. | ||
| 50 | |||
| 51 | config KGDB | ||
| 52 | bool "Include kgdb kernel debugger" | ||
| 53 | depends on DEBUGGER && (BROKEN || PPC_GEN550 || 4xx) | ||
| 54 | select DEBUG_INFO | ||
| 55 | help | ||
| 56 | Include in-kernel hooks for kgdb, the Linux kernel source level | ||
| 57 | debugger. See <http://kgdb.sourceforge.net/> for more information. | ||
| 58 | Unless you are intending to debug the kernel, say N here. | ||
| 59 | |||
| 60 | config CODE_PATCHING_SELFTEST | 44 | config CODE_PATCHING_SELFTEST |
| 61 | bool "Run self-tests of the code-patching code." | 45 | bool "Run self-tests of the code-patching code." |
| 62 | depends on DEBUG_KERNEL | 46 | depends on DEBUG_KERNEL |
| @@ -67,36 +51,9 @@ config FTR_FIXUP_SELFTEST | |||
| 67 | depends on DEBUG_KERNEL | 51 | depends on DEBUG_KERNEL |
| 68 | default n | 52 | default n |
| 69 | 53 | ||
| 70 | choice | ||
| 71 | prompt "Serial Port" | ||
| 72 | depends on KGDB | ||
| 73 | default KGDB_TTYS1 | ||
| 74 | |||
| 75 | config KGDB_TTYS0 | ||
| 76 | bool "ttyS0" | ||
| 77 | |||
| 78 | config KGDB_TTYS1 | ||
| 79 | bool "ttyS1" | ||
| 80 | |||
| 81 | config KGDB_TTYS2 | ||
| 82 | bool "ttyS2" | ||
| 83 | |||
| 84 | config KGDB_TTYS3 | ||
| 85 | bool "ttyS3" | ||
| 86 | |||
| 87 | endchoice | ||
| 88 | |||
| 89 | config KGDB_CONSOLE | ||
| 90 | bool "Enable serial console thru kgdb port" | ||
| 91 | depends on KGDB && 8xx || CPM2 | ||
| 92 | help | ||
| 93 | If you enable this, all serial console messages will be sent | ||
| 94 | over the gdb stub. | ||
| 95 | If unsure, say N. | ||
| 96 | |||
| 97 | config XMON | 54 | config XMON |
| 98 | bool "Include xmon kernel debugger" | 55 | bool "Include xmon kernel debugger" |
| 99 | depends on DEBUGGER | 56 | depends on DEBUG_KERNEL |
| 100 | help | 57 | help |
| 101 | Include in-kernel hooks for the xmon kernel monitor/debugger. | 58 | Include in-kernel hooks for the xmon kernel monitor/debugger. |
| 102 | Unless you are intending to debug the kernel, say N here. | 59 | Unless you are intending to debug the kernel, say N here. |
| @@ -126,6 +83,11 @@ config XMON_DISASSEMBLY | |||
| 126 | to say Y here, unless you're building for a memory-constrained | 83 | to say Y here, unless you're building for a memory-constrained |
| 127 | system. | 84 | system. |
| 128 | 85 | ||
| 86 | config DEBUGGER | ||
| 87 | bool | ||
| 88 | depends on KGDB || XMON | ||
| 89 | default y | ||
| 90 | |||
| 129 | config IRQSTACKS | 91 | config IRQSTACKS |
| 130 | bool "Use separate kernel stacks when processing interrupts" | 92 | bool "Use separate kernel stacks when processing interrupts" |
| 131 | help | 93 | help |
diff --git a/arch/powerpc/kernel/Makefile b/arch/powerpc/kernel/Makefile index bf0b1fd0ec34..1a4094704b1f 100644 --- a/arch/powerpc/kernel/Makefile +++ b/arch/powerpc/kernel/Makefile | |||
| @@ -74,6 +74,7 @@ obj-y += time.o prom.o traps.o setup-common.o \ | |||
| 74 | misc_$(CONFIG_WORD_SIZE).o | 74 | misc_$(CONFIG_WORD_SIZE).o |
| 75 | obj-$(CONFIG_PPC32) += entry_32.o setup_32.o | 75 | obj-$(CONFIG_PPC32) += entry_32.o setup_32.o |
| 76 | obj-$(CONFIG_PPC64) += dma_64.o iommu.o | 76 | obj-$(CONFIG_PPC64) += dma_64.o iommu.o |
| 77 | obj-$(CONFIG_KGDB) += kgdb.o | ||
| 77 | obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o | 78 | obj-$(CONFIG_PPC_MULTIPLATFORM) += prom_init.o |
| 78 | obj-$(CONFIG_MODULES) += ppc_ksyms.o | 79 | obj-$(CONFIG_MODULES) += ppc_ksyms.o |
| 79 | obj-$(CONFIG_BOOTX_TEXT) += btext.o | 80 | obj-$(CONFIG_BOOTX_TEXT) += btext.o |
diff --git a/arch/powerpc/kernel/kgdb.c b/arch/powerpc/kernel/kgdb.c new file mode 100644 index 000000000000..b4fdf2f2743c --- /dev/null +++ b/arch/powerpc/kernel/kgdb.c | |||
| @@ -0,0 +1,410 @@ | |||
| 1 | /* | ||
| 2 | * PowerPC backend to the KGDB stub. | ||
| 3 | * | ||
| 4 | * 1998 (c) Michael AK Tesch (tesch@cs.wisc.edu) | ||
| 5 | * Copyright (C) 2003 Timesys Corporation. | ||
| 6 | * Copyright (C) 2004-2006 MontaVista Software, Inc. | ||
| 7 | * PPC64 Mods (C) 2005 Frank Rowand (frowand@mvista.com) | ||
| 8 | * PPC32 support restored by Vitaly Wool <vwool@ru.mvista.com> and | ||
| 9 | * Sergei Shtylyov <sshtylyov@ru.mvista.com> | ||
| 10 | * Copyright (C) 2007-2008 Wind River Systems, Inc. | ||
| 11 | * | ||
| 12 | * This file is licensed under the terms of the GNU General Public License | ||
| 13 | * version 2. This program as licensed "as is" without any warranty of any | ||
| 14 | * kind, whether express or implied. | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include <linux/kernel.h> | ||
| 18 | #include <linux/init.h> | ||
| 19 | #include <linux/kgdb.h> | ||
| 20 | #include <linux/smp.h> | ||
| 21 | #include <linux/signal.h> | ||
| 22 | #include <linux/ptrace.h> | ||
| 23 | #include <asm/current.h> | ||
| 24 | #include <asm/processor.h> | ||
| 25 | #include <asm/machdep.h> | ||
| 26 | |||
| 27 | /* | ||
| 28 | * This table contains the mapping between PowerPC hardware trap types, and | ||
| 29 | * signals, which are primarily what GDB understands. GDB and the kernel | ||
| 30 | * don't always agree on values, so we use constants taken from gdb-6.2. | ||
| 31 | */ | ||
| 32 | static struct hard_trap_info | ||
| 33 | { | ||
| 34 | unsigned int tt; /* Trap type code for powerpc */ | ||
| 35 | unsigned char signo; /* Signal that we map this trap into */ | ||
| 36 | } hard_trap_info[] = { | ||
| 37 | { 0x0100, 0x02 /* SIGINT */ }, /* system reset */ | ||
| 38 | { 0x0200, 0x0b /* SIGSEGV */ }, /* machine check */ | ||
| 39 | { 0x0300, 0x0b /* SIGSEGV */ }, /* data access */ | ||
| 40 | { 0x0400, 0x0b /* SIGSEGV */ }, /* instruction access */ | ||
| 41 | { 0x0500, 0x02 /* SIGINT */ }, /* external interrupt */ | ||
| 42 | { 0x0600, 0x0a /* SIGBUS */ }, /* alignment */ | ||
| 43 | { 0x0700, 0x05 /* SIGTRAP */ }, /* program check */ | ||
| 44 | { 0x0800, 0x08 /* SIGFPE */ }, /* fp unavailable */ | ||
| 45 | { 0x0900, 0x0e /* SIGALRM */ }, /* decrementer */ | ||
| 46 | { 0x0c00, 0x14 /* SIGCHLD */ }, /* system call */ | ||
| 47 | #if defined(CONFIG_40x) || defined(CONFIG_BOOKE) | ||
| 48 | { 0x2002, 0x05 /* SIGTRAP */ }, /* debug */ | ||
| 49 | #if defined(CONFIG_FSL_BOOKE) | ||
| 50 | { 0x2010, 0x08 /* SIGFPE */ }, /* spe unavailable */ | ||
| 51 | { 0x2020, 0x08 /* SIGFPE */ }, /* spe unavailable */ | ||
| 52 | { 0x2030, 0x08 /* SIGFPE */ }, /* spe fp data */ | ||
| 53 | { 0x2040, 0x08 /* SIGFPE */ }, /* spe fp data */ | ||
| 54 | { 0x2050, 0x08 /* SIGFPE */ }, /* spe fp round */ | ||
| 55 | { 0x2060, 0x0e /* SIGILL */ }, /* performace monitor */ | ||
| 56 | { 0x2900, 0x08 /* SIGFPE */ }, /* apu unavailable */ | ||
| 57 | { 0x3100, 0x0e /* SIGALRM */ }, /* fixed interval timer */ | ||
| 58 | { 0x3200, 0x02 /* SIGINT */ }, /* watchdog */ | ||
| 59 | #else /* ! CONFIG_FSL_BOOKE */ | ||
| 60 | { 0x1000, 0x0e /* SIGALRM */ }, /* prog interval timer */ | ||
| 61 | { 0x1010, 0x0e /* SIGALRM */ }, /* fixed interval timer */ | ||
| 62 | { 0x1020, 0x02 /* SIGINT */ }, /* watchdog */ | ||
| 63 | { 0x2010, 0x08 /* SIGFPE */ }, /* fp unavailable */ | ||
| 64 | { 0x2020, 0x08 /* SIGFPE */ }, /* ap unavailable */ | ||
| 65 | #endif | ||
| 66 | #else /* ! (defined(CONFIG_40x) || defined(CONFIG_BOOKE)) */ | ||
| 67 | { 0x0d00, 0x05 /* SIGTRAP */ }, /* single-step */ | ||
| 68 | #if defined(CONFIG_8xx) | ||
| 69 | { 0x1000, 0x04 /* SIGILL */ }, /* software emulation */ | ||
| 70 | #else /* ! CONFIG_8xx */ | ||
| 71 | { 0x0f00, 0x04 /* SIGILL */ }, /* performance monitor */ | ||
| 72 | { 0x0f20, 0x08 /* SIGFPE */ }, /* altivec unavailable */ | ||
| 73 | { 0x1300, 0x05 /* SIGTRAP */ }, /* instruction address break */ | ||
| 74 | #if defined(CONFIG_PPC64) | ||
| 75 | { 0x1200, 0x05 /* SIGILL */ }, /* system error */ | ||
| 76 | { 0x1500, 0x04 /* SIGILL */ }, /* soft patch */ | ||
| 77 | { 0x1600, 0x04 /* SIGILL */ }, /* maintenance */ | ||
| 78 | { 0x1700, 0x08 /* SIGFPE */ }, /* altivec assist */ | ||
| 79 | { 0x1800, 0x04 /* SIGILL */ }, /* thermal */ | ||
| 80 | #else /* ! CONFIG_PPC64 */ | ||
| 81 | { 0x1400, 0x02 /* SIGINT */ }, /* SMI */ | ||
| 82 | { 0x1600, 0x08 /* SIGFPE */ }, /* altivec assist */ | ||
| 83 | { 0x1700, 0x04 /* SIGILL */ }, /* TAU */ | ||
| 84 | { 0x2000, 0x05 /* SIGTRAP */ }, /* run mode */ | ||
| 85 | #endif | ||
| 86 | #endif | ||
| 87 | #endif | ||
| 88 | { 0x0000, 0x00 } /* Must be last */ | ||
| 89 | }; | ||
| 90 | |||
| 91 | static int computeSignal(unsigned int tt) | ||
| 92 | { | ||
| 93 | struct hard_trap_info *ht; | ||
| 94 | |||
| 95 | for (ht = hard_trap_info; ht->tt && ht->signo; ht++) | ||
| 96 | if (ht->tt == tt) | ||
| 97 | return ht->signo; | ||
| 98 | |||
| 99 | return SIGHUP; /* default for things we don't know about */ | ||
| 100 | } | ||
| 101 | |||
| 102 | static int kgdb_call_nmi_hook(struct pt_regs *regs) | ||
| 103 | { | ||
| 104 | kgdb_nmicallback(raw_smp_processor_id(), regs); | ||
| 105 | return 0; | ||
| 106 | } | ||
| 107 | |||
| 108 | #ifdef CONFIG_SMP | ||
| 109 | void kgdb_roundup_cpus(unsigned long flags) | ||
| 110 | { | ||
| 111 | smp_send_debugger_break(MSG_ALL_BUT_SELF); | ||
| 112 | } | ||
| 113 | #endif | ||
| 114 | |||
| 115 | /* KGDB functions to use existing PowerPC64 hooks. */ | ||
| 116 | static int kgdb_debugger(struct pt_regs *regs) | ||
| 117 | { | ||
| 118 | return kgdb_handle_exception(0, computeSignal(TRAP(regs)), 0, regs); | ||
| 119 | } | ||
| 120 | |||
| 121 | static int kgdb_handle_breakpoint(struct pt_regs *regs) | ||
| 122 | { | ||
| 123 | if (user_mode(regs)) | ||
| 124 | return 0; | ||
| 125 | |||
| 126 | if (kgdb_handle_exception(0, SIGTRAP, 0, regs) != 0) | ||
| 127 | return 0; | ||
| 128 | |||
| 129 | if (*(u32 *) (regs->nip) == *(u32 *) (&arch_kgdb_ops.gdb_bpt_instr)) | ||
| 130 | regs->nip += 4; | ||
| 131 | |||
| 132 | return 1; | ||
| 133 | } | ||
| 134 | |||
| 135 | static int kgdb_singlestep(struct pt_regs *regs) | ||
| 136 | { | ||
| 137 | struct thread_info *thread_info, *exception_thread_info; | ||
| 138 | |||
| 139 | if (user_mode(regs)) | ||
| 140 | return 0; | ||
| 141 | |||
| 142 | /* | ||
| 143 | * On Book E and perhaps other processsors, singlestep is handled on | ||
| 144 | * the critical exception stack. This causes current_thread_info() | ||
| 145 | * to fail, since it it locates the thread_info by masking off | ||
| 146 | * the low bits of the current stack pointer. We work around | ||
| 147 | * this issue by copying the thread_info from the kernel stack | ||
| 148 | * before calling kgdb_handle_exception, and copying it back | ||
| 149 | * afterwards. On most processors the copy is avoided since | ||
| 150 | * exception_thread_info == thread_info. | ||
| 151 | */ | ||
| 152 | thread_info = (struct thread_info *)(regs->gpr[1] & ~(THREAD_SIZE-1)); | ||
| 153 | exception_thread_info = current_thread_info(); | ||
| 154 | |||
| 155 | if (thread_info != exception_thread_info) | ||
| 156 | memcpy(exception_thread_info, thread_info, sizeof *thread_info); | ||
| 157 | |||
| 158 | kgdb_handle_exception(0, SIGTRAP, 0, regs); | ||
| 159 | |||
| 160 | if (thread_info != exception_thread_info) | ||
| 161 | memcpy(thread_info, exception_thread_info, sizeof *thread_info); | ||
| 162 | |||
| 163 | return 1; | ||
| 164 | } | ||
| 165 | |||
| 166 | static int kgdb_iabr_match(struct pt_regs *regs) | ||
| 167 | { | ||
| 168 | if (user_mode(regs)) | ||
| 169 | return 0; | ||
| 170 | |||
| 171 | if (kgdb_handle_exception(0, computeSignal(TRAP(regs)), 0, regs) != 0) | ||
| 172 | return 0; | ||
| 173 | return 1; | ||
| 174 | } | ||
| 175 | |||
| 176 | static int kgdb_dabr_match(struct pt_regs *regs) | ||
| 177 | { | ||
| 178 | if (user_mode(regs)) | ||
| 179 | return 0; | ||
| 180 | |||
| 181 | if (kgdb_handle_exception(0, computeSignal(TRAP(regs)), 0, regs) != 0) | ||
| 182 | return 0; | ||
| 183 | return 1; | ||
| 184 | } | ||
| 185 | |||
| 186 | #define PACK64(ptr, src) do { *(ptr++) = (src); } while (0) | ||
| 187 | |||
| 188 | #define PACK32(ptr, src) do { \ | ||
| 189 | u32 *ptr32; \ | ||
| 190 | ptr32 = (u32 *)ptr; \ | ||
| 191 | *(ptr32++) = (src); \ | ||
| 192 | ptr = (unsigned long *)ptr32; \ | ||
| 193 | } while (0) | ||
| 194 | |||
| 195 | |||
| 196 | void pt_regs_to_gdb_regs(unsigned long *gdb_regs, struct pt_regs *regs) | ||
| 197 | { | ||
| 198 | unsigned long *ptr = gdb_regs; | ||
| 199 | int reg; | ||
| 200 | |||
| 201 | memset(gdb_regs, 0, NUMREGBYTES); | ||
| 202 | |||
| 203 | for (reg = 0; reg < 32; reg++) | ||
| 204 | PACK64(ptr, regs->gpr[reg]); | ||
| 205 | |||
| 206 | #ifdef CONFIG_FSL_BOOKE | ||
| 207 | #ifdef CONFIG_SPE | ||
| 208 | for (reg = 0; reg < 32; reg++) | ||
| 209 | PACK64(ptr, current->thread.evr[reg]); | ||
| 210 | #else | ||
| 211 | ptr += 32; | ||
| 212 | #endif | ||
| 213 | #else | ||
| 214 | /* fp registers not used by kernel, leave zero */ | ||
| 215 | ptr += 32 * 8 / sizeof(long); | ||
| 216 | #endif | ||
| 217 | |||
| 218 | PACK64(ptr, regs->nip); | ||
| 219 | PACK64(ptr, regs->msr); | ||
| 220 | PACK32(ptr, regs->ccr); | ||
| 221 | PACK64(ptr, regs->link); | ||
| 222 | PACK64(ptr, regs->ctr); | ||
| 223 | PACK32(ptr, regs->xer); | ||
| 224 | |||
| 225 | BUG_ON((unsigned long)ptr > | ||
| 226 | (unsigned long)(((void *)gdb_regs) + NUMREGBYTES)); | ||
| 227 | } | ||
| 228 | |||
| 229 | void sleeping_thread_to_gdb_regs(unsigned long *gdb_regs, struct task_struct *p) | ||
| 230 | { | ||
| 231 | struct pt_regs *regs = (struct pt_regs *)(p->thread.ksp + | ||
| 232 | STACK_FRAME_OVERHEAD); | ||
| 233 | unsigned long *ptr = gdb_regs; | ||
| 234 | int reg; | ||
| 235 | |||
| 236 | memset(gdb_regs, 0, NUMREGBYTES); | ||
| 237 | |||
| 238 | /* Regs GPR0-2 */ | ||
| 239 | for (reg = 0; reg < 3; reg++) | ||
| 240 | PACK64(ptr, regs->gpr[reg]); | ||
| 241 | |||
| 242 | /* Regs GPR3-13 are caller saved, not in regs->gpr[] */ | ||
| 243 | ptr += 11; | ||
| 244 | |||
| 245 | /* Regs GPR14-31 */ | ||
| 246 | for (reg = 14; reg < 32; reg++) | ||
| 247 | PACK64(ptr, regs->gpr[reg]); | ||
| 248 | |||
| 249 | #ifdef CONFIG_FSL_BOOKE | ||
| 250 | #ifdef CONFIG_SPE | ||
| 251 | for (reg = 0; reg < 32; reg++) | ||
| 252 | PACK64(ptr, p->thread.evr[reg]); | ||
| 253 | #else | ||
| 254 | ptr += 32; | ||
| 255 | #endif | ||
| 256 | #else | ||
| 257 | /* fp registers not used by kernel, leave zero */ | ||
| 258 | ptr += 32 * 8 / sizeof(long); | ||
| 259 | #endif | ||
| 260 | |||
| 261 | PACK64(ptr, regs->nip); | ||
| 262 | PACK64(ptr, regs->msr); | ||
| 263 | PACK32(ptr, regs->ccr); | ||
| 264 | PACK64(ptr, regs->link); | ||
| 265 | PACK64(ptr, regs->ctr); | ||
| 266 | PACK32(ptr, regs->xer); | ||
| 267 | |||
| 268 | BUG_ON((unsigned long)ptr > | ||
| 269 | (unsigned long)(((void *)gdb_regs) + NUMREGBYTES)); | ||
| 270 | } | ||
| 271 | |||
| 272 | #define UNPACK64(dest, ptr) do { dest = *(ptr++); } while (0) | ||
| 273 | |||
| 274 | #define UNPACK32(dest, ptr) do { \ | ||
| 275 | u32 *ptr32; \ | ||
| 276 | ptr32 = (u32 *)ptr; \ | ||
| 277 | dest = *(ptr32++); \ | ||
| 278 | ptr = (unsigned long *)ptr32; \ | ||
| 279 | } while (0) | ||
| 280 | |||
| 281 | void gdb_regs_to_pt_regs(unsigned long *gdb_regs, struct pt_regs *regs) | ||
| 282 | { | ||
| 283 | unsigned long *ptr = gdb_regs; | ||
| 284 | int reg; | ||
| 285 | #ifdef CONFIG_SPE | ||
| 286 | union { | ||
| 287 | u32 v32[2]; | ||
| 288 | u64 v64; | ||
| 289 | } acc; | ||
| 290 | #endif | ||
| 291 | |||
| 292 | for (reg = 0; reg < 32; reg++) | ||
| 293 | UNPACK64(regs->gpr[reg], ptr); | ||
| 294 | |||
| 295 | #ifdef CONFIG_FSL_BOOKE | ||
| 296 | #ifdef CONFIG_SPE | ||
| 297 | for (reg = 0; reg < 32; reg++) | ||
| 298 | UNPACK64(current->thread.evr[reg], ptr); | ||
| 299 | #else | ||
| 300 | ptr += 32; | ||
| 301 | #endif | ||
| 302 | #else | ||
| 303 | /* fp registers not used by kernel, leave zero */ | ||
| 304 | ptr += 32 * 8 / sizeof(int); | ||
| 305 | #endif | ||
| 306 | |||
| 307 | UNPACK64(regs->nip, ptr); | ||
| 308 | UNPACK64(regs->msr, ptr); | ||
| 309 | UNPACK32(regs->ccr, ptr); | ||
| 310 | UNPACK64(regs->link, ptr); | ||
| 311 | UNPACK64(regs->ctr, ptr); | ||
| 312 | UNPACK32(regs->xer, ptr); | ||
| 313 | |||
| 314 | BUG_ON((unsigned long)ptr > | ||
| 315 | (unsigned long)(((void *)gdb_regs) + NUMREGBYTES)); | ||
| 316 | } | ||
| 317 | |||
| 318 | /* | ||
| 319 | * This function does PowerPC specific procesing for interfacing to gdb. | ||
| 320 | */ | ||
| 321 | int kgdb_arch_handle_exception(int vector, int signo, int err_code, | ||
| 322 | char *remcom_in_buffer, char *remcom_out_buffer, | ||
| 323 | struct pt_regs *linux_regs) | ||
| 324 | { | ||
| 325 | char *ptr = &remcom_in_buffer[1]; | ||
| 326 | unsigned long addr; | ||
| 327 | |||
| 328 | switch (remcom_in_buffer[0]) { | ||
| 329 | /* | ||
| 330 | * sAA..AA Step one instruction from AA..AA | ||
| 331 | * This will return an error to gdb .. | ||
| 332 | */ | ||
| 333 | case 's': | ||
| 334 | case 'c': | ||
| 335 | /* handle the optional parameter */ | ||
| 336 | if (kgdb_hex2long(&ptr, &addr)) | ||
| 337 | linux_regs->nip = addr; | ||
| 338 | |||
| 339 | atomic_set(&kgdb_cpu_doing_single_step, -1); | ||
| 340 | /* set the trace bit if we're stepping */ | ||
| 341 | if (remcom_in_buffer[0] == 's') { | ||
| 342 | #if defined(CONFIG_40x) || defined(CONFIG_BOOKE) | ||
| 343 | mtspr(SPRN_DBCR0, | ||
| 344 | mfspr(SPRN_DBCR0) | DBCR0_IC | DBCR0_IDM); | ||
| 345 | linux_regs->msr |= MSR_DE; | ||
| 346 | #else | ||
| 347 | linux_regs->msr |= MSR_SE; | ||
| 348 | #endif | ||
| 349 | kgdb_single_step = 1; | ||
| 350 | if (kgdb_contthread) | ||
| 351 | atomic_set(&kgdb_cpu_doing_single_step, | ||
| 352 | raw_smp_processor_id()); | ||
| 353 | } | ||
| 354 | return 0; | ||
| 355 | } | ||
| 356 | |||
| 357 | return -1; | ||
| 358 | } | ||
| 359 | |||
| 360 | /* | ||
| 361 | * Global data | ||
| 362 | */ | ||
| 363 | struct kgdb_arch arch_kgdb_ops = { | ||
| 364 | .gdb_bpt_instr = {0x7d, 0x82, 0x10, 0x08}, | ||
| 365 | }; | ||
| 366 | |||
| 367 | static int kgdb_not_implemented(struct pt_regs *regs) | ||
| 368 | { | ||
| 369 | return 0; | ||
| 370 | } | ||
| 371 | |||
| 372 | static void *old__debugger_ipi; | ||
| 373 | static void *old__debugger; | ||
| 374 | static void *old__debugger_bpt; | ||
| 375 | static void *old__debugger_sstep; | ||
| 376 | static void *old__debugger_iabr_match; | ||
| 377 | static void *old__debugger_dabr_match; | ||
| 378 | static void *old__debugger_fault_handler; | ||
| 379 | |||
| 380 | int kgdb_arch_init(void) | ||
| 381 | { | ||
| 382 | old__debugger_ipi = __debugger_ipi; | ||
| 383 | old__debugger = __debugger; | ||
| 384 | old__debugger_bpt = __debugger_bpt; | ||
| 385 | old__debugger_sstep = __debugger_sstep; | ||
| 386 | old__debugger_iabr_match = __debugger_iabr_match; | ||
| 387 | old__debugger_dabr_match = __debugger_dabr_match; | ||
| 388 | old__debugger_fault_handler = __debugger_fault_handler; | ||
| 389 | |||
| 390 | __debugger_ipi = kgdb_call_nmi_hook; | ||
| 391 | __debugger = kgdb_debugger; | ||
| 392 | __debugger_bpt = kgdb_handle_breakpoint; | ||
| 393 | __debugger_sstep = kgdb_singlestep; | ||
| 394 | __debugger_iabr_match = kgdb_iabr_match; | ||
| 395 | __debugger_dabr_match = kgdb_dabr_match; | ||
| 396 | __debugger_fault_handler = kgdb_not_implemented; | ||
| 397 | |||
| 398 | return 0; | ||
| 399 | } | ||
| 400 | |||
| 401 | void kgdb_arch_exit(void) | ||
| 402 | { | ||
| 403 | __debugger_ipi = old__debugger_ipi; | ||
| 404 | __debugger = old__debugger; | ||
| 405 | __debugger_bpt = old__debugger_bpt; | ||
| 406 | __debugger_sstep = old__debugger_sstep; | ||
| 407 | __debugger_iabr_match = old__debugger_iabr_match; | ||
| 408 | __debugger_dabr_match = old__debugger_dabr_match; | ||
| 409 | __debugger_fault_handler = old__debugger_fault_handler; | ||
| 410 | } | ||
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c index 4efebe88e64a..066e65c59b58 100644 --- a/arch/powerpc/kernel/setup_32.c +++ b/arch/powerpc/kernel/setup_32.c | |||
| @@ -43,10 +43,6 @@ | |||
| 43 | 43 | ||
| 44 | #define DBG(fmt...) | 44 | #define DBG(fmt...) |
| 45 | 45 | ||
| 46 | #if defined CONFIG_KGDB | ||
| 47 | #include <asm/kgdb.h> | ||
| 48 | #endif | ||
| 49 | |||
| 50 | extern void bootx_init(unsigned long r4, unsigned long phys); | 46 | extern void bootx_init(unsigned long r4, unsigned long phys); |
| 51 | 47 | ||
| 52 | int boot_cpuid; | 48 | int boot_cpuid; |
| @@ -302,18 +298,6 @@ void __init setup_arch(char **cmdline_p) | |||
| 302 | 298 | ||
| 303 | xmon_setup(); | 299 | xmon_setup(); |
| 304 | 300 | ||
| 305 | #if defined(CONFIG_KGDB) | ||
| 306 | if (ppc_md.kgdb_map_scc) | ||
| 307 | ppc_md.kgdb_map_scc(); | ||
| 308 | set_debug_traps(); | ||
| 309 | if (strstr(cmd_line, "gdb")) { | ||
| 310 | if (ppc_md.progress) | ||
| 311 | ppc_md.progress("setup_arch: kgdb breakpoint", 0x4000); | ||
| 312 | printk("kgdb breakpoint activated\n"); | ||
| 313 | breakpoint(); | ||
| 314 | } | ||
| 315 | #endif | ||
| 316 | |||
| 317 | /* | 301 | /* |
| 318 | * Set cache line size based on type of cpu as a default. | 302 | * Set cache line size based on type of cpu as a default. |
| 319 | * Systems with OF can look in the properties on the cpu node(s) | 303 | * Systems with OF can look in the properties on the cpu node(s) |
diff --git a/arch/powerpc/platforms/powermac/setup.c b/arch/powerpc/platforms/powermac/setup.c index 00bd0166d07f..31635446901a 100644 --- a/arch/powerpc/platforms/powermac/setup.c +++ b/arch/powerpc/platforms/powermac/setup.c | |||
| @@ -97,8 +97,6 @@ extern struct machdep_calls pmac_md; | |||
| 97 | int sccdbg; | 97 | int sccdbg; |
| 98 | #endif | 98 | #endif |
| 99 | 99 | ||
| 100 | extern void zs_kgdb_hook(int tty_num); | ||
| 101 | |||
| 102 | sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN; | 100 | sys_ctrler_t sys_ctrler = SYS_CTRLER_UNKNOWN; |
| 103 | EXPORT_SYMBOL(sys_ctrler); | 101 | EXPORT_SYMBOL(sys_ctrler); |
| 104 | 102 | ||
| @@ -329,10 +327,6 @@ static void __init pmac_setup_arch(void) | |||
| 329 | l2cr_init(); | 327 | l2cr_init(); |
| 330 | #endif /* CONFIG_PPC32 */ | 328 | #endif /* CONFIG_PPC32 */ |
| 331 | 329 | ||
| 332 | #ifdef CONFIG_KGDB | ||
| 333 | zs_kgdb_hook(0); | ||
| 334 | #endif | ||
| 335 | |||
| 336 | find_via_cuda(); | 330 | find_via_cuda(); |
| 337 | find_via_pmu(); | 331 | find_via_pmu(); |
| 338 | smu_init(); | 332 | smu_init(); |
diff --git a/drivers/serial/cpm_uart/cpm_uart_core.c b/drivers/serial/cpm_uart/cpm_uart_core.c index 93e407ee08b9..1ff80de177db 100644 --- a/drivers/serial/cpm_uart/cpm_uart_core.c +++ b/drivers/serial/cpm_uart/cpm_uart_core.c | |||
| @@ -201,6 +201,10 @@ static void cpm_uart_int_tx(struct uart_port *port) | |||
| 201 | cpm_uart_tx_pump(port); | 201 | cpm_uart_tx_pump(port); |
| 202 | } | 202 | } |
| 203 | 203 | ||
| 204 | #ifdef CONFIG_CONSOLE_POLL | ||
| 205 | static int serial_polled; | ||
| 206 | #endif | ||
| 207 | |||
| 204 | /* | 208 | /* |
| 205 | * Receive characters | 209 | * Receive characters |
| 206 | */ | 210 | */ |
| @@ -222,6 +226,12 @@ static void cpm_uart_int_rx(struct uart_port *port) | |||
| 222 | */ | 226 | */ |
| 223 | bdp = pinfo->rx_cur; | 227 | bdp = pinfo->rx_cur; |
| 224 | for (;;) { | 228 | for (;;) { |
| 229 | #ifdef CONFIG_CONSOLE_POLL | ||
| 230 | if (unlikely(serial_polled)) { | ||
| 231 | serial_polled = 0; | ||
| 232 | return; | ||
| 233 | } | ||
| 234 | #endif | ||
| 225 | /* get status */ | 235 | /* get status */ |
| 226 | status = in_be16(&bdp->cbd_sc); | 236 | status = in_be16(&bdp->cbd_sc); |
| 227 | /* If this one is empty, return happy */ | 237 | /* If this one is empty, return happy */ |
| @@ -253,7 +263,12 @@ static void cpm_uart_int_rx(struct uart_port *port) | |||
| 253 | goto handle_error; | 263 | goto handle_error; |
| 254 | if (uart_handle_sysrq_char(port, ch)) | 264 | if (uart_handle_sysrq_char(port, ch)) |
| 255 | continue; | 265 | continue; |
| 256 | 266 | #ifdef CONFIG_CONSOLE_POLL | |
| 267 | if (unlikely(serial_polled)) { | ||
| 268 | serial_polled = 0; | ||
| 269 | return; | ||
| 270 | } | ||
| 271 | #endif | ||
| 257 | error_return: | 272 | error_return: |
| 258 | tty_insert_flip_char(tty, ch, flg); | 273 | tty_insert_flip_char(tty, ch, flg); |
| 259 | 274 | ||
| @@ -865,6 +880,80 @@ static void cpm_uart_config_port(struct uart_port *port, int flags) | |||
| 865 | cpm_uart_request_port(port); | 880 | cpm_uart_request_port(port); |
| 866 | } | 881 | } |
| 867 | } | 882 | } |
| 883 | |||
| 884 | #ifdef CONFIG_CONSOLE_POLL | ||
| 885 | /* Serial polling routines for writing and reading from the uart while | ||
| 886 | * in an interrupt or debug context. | ||
| 887 | */ | ||
| 888 | |||
| 889 | #define GDB_BUF_SIZE 512 /* power of 2, please */ | ||
| 890 | |||
| 891 | static char poll_buf[GDB_BUF_SIZE]; | ||
| 892 | static char *pollp; | ||
| 893 | static int poll_chars; | ||
| 894 | |||
| 895 | static int poll_wait_key(char *obuf, struct uart_cpm_port *pinfo) | ||
| 896 | { | ||
| 897 | u_char c, *cp; | ||
| 898 | volatile cbd_t *bdp; | ||
| 899 | int i; | ||
| 900 | |||
| 901 | /* Get the address of the host memory buffer. | ||
| 902 | */ | ||
| 903 | bdp = pinfo->rx_cur; | ||
| 904 | while (bdp->cbd_sc & BD_SC_EMPTY) | ||
| 905 | ; | ||
| 906 | |||
| 907 | /* If the buffer address is in the CPM DPRAM, don't | ||
| 908 | * convert it. | ||
| 909 | */ | ||
| 910 | cp = cpm2cpu_addr(bdp->cbd_bufaddr, pinfo); | ||
| 911 | |||
| 912 | if (obuf) { | ||
| 913 | i = c = bdp->cbd_datlen; | ||
| 914 | while (i-- > 0) | ||
| 915 | *obuf++ = *cp++; | ||
| 916 | } else | ||
| 917 | c = *cp; | ||
| 918 | bdp->cbd_sc &= ~(BD_SC_BR | BD_SC_FR | BD_SC_PR | BD_SC_OV | BD_SC_ID); | ||
| 919 | bdp->cbd_sc |= BD_SC_EMPTY; | ||
| 920 | |||
| 921 | if (bdp->cbd_sc & BD_SC_WRAP) | ||
| 922 | bdp = pinfo->rx_bd_base; | ||
| 923 | else | ||
| 924 | bdp++; | ||
| 925 | pinfo->rx_cur = (cbd_t *)bdp; | ||
| 926 | |||
| 927 | return (int)c; | ||
| 928 | } | ||
| 929 | |||
| 930 | static int cpm_get_poll_char(struct uart_port *port) | ||
| 931 | { | ||
| 932 | struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port; | ||
| 933 | |||
| 934 | if (!serial_polled) { | ||
| 935 | serial_polled = 1; | ||
| 936 | poll_chars = 0; | ||
| 937 | } | ||
| 938 | if (poll_chars <= 0) { | ||
| 939 | poll_chars = poll_wait_key(poll_buf, pinfo); | ||
| 940 | pollp = poll_buf; | ||
| 941 | } | ||
| 942 | poll_chars--; | ||
| 943 | return *pollp++; | ||
| 944 | } | ||
| 945 | |||
| 946 | static void cpm_put_poll_char(struct uart_port *port, | ||
| 947 | unsigned char c) | ||
| 948 | { | ||
| 949 | struct uart_cpm_port *pinfo = (struct uart_cpm_port *)port; | ||
| 950 | static char ch[2]; | ||
| 951 | |||
| 952 | ch[0] = (char)c; | ||
| 953 | cpm_uart_early_write(pinfo->port.line, ch, 1); | ||
| 954 | } | ||
| 955 | #endif /* CONFIG_CONSOLE_POLL */ | ||
| 956 | |||
| 868 | static struct uart_ops cpm_uart_pops = { | 957 | static struct uart_ops cpm_uart_pops = { |
| 869 | .tx_empty = cpm_uart_tx_empty, | 958 | .tx_empty = cpm_uart_tx_empty, |
| 870 | .set_mctrl = cpm_uart_set_mctrl, | 959 | .set_mctrl = cpm_uart_set_mctrl, |
| @@ -882,6 +971,10 @@ static struct uart_ops cpm_uart_pops = { | |||
| 882 | .request_port = cpm_uart_request_port, | 971 | .request_port = cpm_uart_request_port, |
| 883 | .config_port = cpm_uart_config_port, | 972 | .config_port = cpm_uart_config_port, |
| 884 | .verify_port = cpm_uart_verify_port, | 973 | .verify_port = cpm_uart_verify_port, |
| 974 | #ifdef CONFIG_CONSOLE_POLL | ||
| 975 | .poll_get_char = cpm_get_poll_char, | ||
| 976 | .poll_put_char = cpm_put_poll_char, | ||
| 977 | #endif | ||
| 885 | }; | 978 | }; |
| 886 | 979 | ||
| 887 | struct uart_cpm_port cpm_uart_ports[UART_NR]; | 980 | struct uart_cpm_port cpm_uart_ports[UART_NR]; |
diff --git a/drivers/serial/mpsc.c b/drivers/serial/mpsc.c index c9f53e71f252..61d3ade5286c 100644 --- a/drivers/serial/mpsc.c +++ b/drivers/serial/mpsc.c | |||
| @@ -921,6 +921,10 @@ static int mpsc_make_ready(struct mpsc_port_info *pi) | |||
| 921 | return 0; | 921 | return 0; |
| 922 | } | 922 | } |
| 923 | 923 | ||
| 924 | #ifdef CONFIG_CONSOLE_POLL | ||
| 925 | static int serial_polled; | ||
| 926 | #endif | ||
| 927 | |||
| 924 | /* | 928 | /* |
| 925 | ****************************************************************************** | 929 | ****************************************************************************** |
| 926 | * | 930 | * |
| @@ -956,7 +960,12 @@ static int mpsc_rx_intr(struct mpsc_port_info *pi) | |||
| 956 | while (!((cmdstat = be32_to_cpu(rxre->cmdstat)) | 960 | while (!((cmdstat = be32_to_cpu(rxre->cmdstat)) |
| 957 | & SDMA_DESC_CMDSTAT_O)) { | 961 | & SDMA_DESC_CMDSTAT_O)) { |
| 958 | bytes_in = be16_to_cpu(rxre->bytecnt); | 962 | bytes_in = be16_to_cpu(rxre->bytecnt); |
| 959 | 963 | #ifdef CONFIG_CONSOLE_POLL | |
| 964 | if (unlikely(serial_polled)) { | ||
| 965 | serial_polled = 0; | ||
| 966 | return 0; | ||
| 967 | } | ||
| 968 | #endif | ||
| 960 | /* Following use of tty struct directly is deprecated */ | 969 | /* Following use of tty struct directly is deprecated */ |
| 961 | if (unlikely(tty_buffer_request_room(tty, bytes_in) | 970 | if (unlikely(tty_buffer_request_room(tty, bytes_in) |
| 962 | < bytes_in)) { | 971 | < bytes_in)) { |
| @@ -1017,6 +1026,12 @@ static int mpsc_rx_intr(struct mpsc_port_info *pi) | |||
| 1017 | if (uart_handle_sysrq_char(&pi->port, *bp)) { | 1026 | if (uart_handle_sysrq_char(&pi->port, *bp)) { |
| 1018 | bp++; | 1027 | bp++; |
| 1019 | bytes_in--; | 1028 | bytes_in--; |
| 1029 | #ifdef CONFIG_CONSOLE_POLL | ||
| 1030 | if (unlikely(serial_polled)) { | ||
| 1031 | serial_polled = 0; | ||
| 1032 | return 0; | ||
| 1033 | } | ||
| 1034 | #endif | ||
| 1020 | goto next_frame; | 1035 | goto next_frame; |
| 1021 | } | 1036 | } |
| 1022 | 1037 | ||
| @@ -1519,6 +1534,133 @@ static int mpsc_verify_port(struct uart_port *port, struct serial_struct *ser) | |||
| 1519 | 1534 | ||
| 1520 | return rc; | 1535 | return rc; |
| 1521 | } | 1536 | } |
| 1537 | #ifdef CONFIG_CONSOLE_POLL | ||
| 1538 | /* Serial polling routines for writing and reading from the uart while | ||
| 1539 | * in an interrupt or debug context. | ||
| 1540 | */ | ||
| 1541 | |||
| 1542 | static char poll_buf[2048]; | ||
| 1543 | static int poll_ptr; | ||
| 1544 | static int poll_cnt; | ||
| 1545 | static void mpsc_put_poll_char(struct uart_port *port, | ||
| 1546 | unsigned char c); | ||
| 1547 | |||
| 1548 | static int mpsc_get_poll_char(struct uart_port *port) | ||
| 1549 | { | ||
| 1550 | struct mpsc_port_info *pi = (struct mpsc_port_info *)port; | ||
| 1551 | struct mpsc_rx_desc *rxre; | ||
| 1552 | u32 cmdstat, bytes_in, i; | ||
| 1553 | u8 *bp; | ||
| 1554 | |||
| 1555 | if (!serial_polled) | ||
| 1556 | serial_polled = 1; | ||
| 1557 | |||
| 1558 | pr_debug("mpsc_rx_intr[%d]: Handling Rx intr\n", pi->port.line); | ||
| 1559 | |||
| 1560 | if (poll_cnt) { | ||
| 1561 | poll_cnt--; | ||
| 1562 | return poll_buf[poll_ptr++]; | ||
| 1563 | } | ||
| 1564 | poll_ptr = 0; | ||
| 1565 | poll_cnt = 0; | ||
| 1566 | |||
| 1567 | while (poll_cnt == 0) { | ||
| 1568 | rxre = (struct mpsc_rx_desc *)(pi->rxr + | ||
| 1569 | (pi->rxr_posn*MPSC_RXRE_SIZE)); | ||
| 1570 | dma_cache_sync(pi->port.dev, (void *)rxre, | ||
| 1571 | MPSC_RXRE_SIZE, DMA_FROM_DEVICE); | ||
| 1572 | #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE) | ||
| 1573 | if (pi->cache_mgmt) /* GT642[46]0 Res #COMM-2 */ | ||
| 1574 | invalidate_dcache_range((ulong)rxre, | ||
| 1575 | (ulong)rxre + MPSC_RXRE_SIZE); | ||
| 1576 | #endif | ||
| 1577 | /* | ||
| 1578 | * Loop through Rx descriptors handling ones that have | ||
| 1579 | * been completed. | ||
| 1580 | */ | ||
| 1581 | while (poll_cnt == 0 && | ||
| 1582 | !((cmdstat = be32_to_cpu(rxre->cmdstat)) & | ||
| 1583 | SDMA_DESC_CMDSTAT_O)){ | ||
| 1584 | bytes_in = be16_to_cpu(rxre->bytecnt); | ||
| 1585 | bp = pi->rxb + (pi->rxr_posn * MPSC_RXBE_SIZE); | ||
| 1586 | dma_cache_sync(pi->port.dev, (void *) bp, | ||
| 1587 | MPSC_RXBE_SIZE, DMA_FROM_DEVICE); | ||
| 1588 | #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE) | ||
| 1589 | if (pi->cache_mgmt) /* GT642[46]0 Res #COMM-2 */ | ||
| 1590 | invalidate_dcache_range((ulong)bp, | ||
| 1591 | (ulong)bp + MPSC_RXBE_SIZE); | ||
| 1592 | #endif | ||
| 1593 | if ((unlikely(cmdstat & (SDMA_DESC_CMDSTAT_BR | | ||
| 1594 | SDMA_DESC_CMDSTAT_FR | SDMA_DESC_CMDSTAT_OR))) && | ||
| 1595 | !(cmdstat & pi->port.ignore_status_mask)) { | ||
| 1596 | poll_buf[poll_cnt] = *bp; | ||
| 1597 | poll_cnt++; | ||
| 1598 | } else { | ||
| 1599 | for (i = 0; i < bytes_in; i++) { | ||
| 1600 | poll_buf[poll_cnt] = *bp++; | ||
| 1601 | poll_cnt++; | ||
| 1602 | } | ||
| 1603 | pi->port.icount.rx += bytes_in; | ||
| 1604 | } | ||
| 1605 | rxre->bytecnt = cpu_to_be16(0); | ||
| 1606 | wmb(); | ||
| 1607 | rxre->cmdstat = cpu_to_be32(SDMA_DESC_CMDSTAT_O | | ||
| 1608 | SDMA_DESC_CMDSTAT_EI | | ||
| 1609 | SDMA_DESC_CMDSTAT_F | | ||
| 1610 | SDMA_DESC_CMDSTAT_L); | ||
| 1611 | wmb(); | ||
| 1612 | dma_cache_sync(pi->port.dev, (void *)rxre, | ||
| 1613 | MPSC_RXRE_SIZE, DMA_BIDIRECTIONAL); | ||
| 1614 | #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE) | ||
| 1615 | if (pi->cache_mgmt) /* GT642[46]0 Res #COMM-2 */ | ||
| 1616 | flush_dcache_range((ulong)rxre, | ||
| 1617 | (ulong)rxre + MPSC_RXRE_SIZE); | ||
| 1618 | #endif | ||
| 1619 | |||
| 1620 | /* Advance to next descriptor */ | ||
| 1621 | pi->rxr_posn = (pi->rxr_posn + 1) & | ||
| 1622 | (MPSC_RXR_ENTRIES - 1); | ||
| 1623 | rxre = (struct mpsc_rx_desc *)(pi->rxr + | ||
| 1624 | (pi->rxr_posn * MPSC_RXRE_SIZE)); | ||
| 1625 | dma_cache_sync(pi->port.dev, (void *)rxre, | ||
| 1626 | MPSC_RXRE_SIZE, DMA_FROM_DEVICE); | ||
| 1627 | #if defined(CONFIG_PPC32) && !defined(CONFIG_NOT_COHERENT_CACHE) | ||
| 1628 | if (pi->cache_mgmt) /* GT642[46]0 Res #COMM-2 */ | ||
| 1629 | invalidate_dcache_range((ulong)rxre, | ||
| 1630 | (ulong)rxre + MPSC_RXRE_SIZE); | ||
| 1631 | #endif | ||
| 1632 | } | ||
| 1633 | |||
| 1634 | /* Restart rx engine, if its stopped */ | ||
| 1635 | if ((readl(pi->sdma_base + SDMA_SDCM) & SDMA_SDCM_ERD) == 0) | ||
| 1636 | mpsc_start_rx(pi); | ||
| 1637 | } | ||
| 1638 | if (poll_cnt) { | ||
| 1639 | poll_cnt--; | ||
| 1640 | return poll_buf[poll_ptr++]; | ||
| 1641 | } | ||
| 1642 | |||
| 1643 | return 0; | ||
| 1644 | } | ||
| 1645 | |||
| 1646 | |||
| 1647 | static void mpsc_put_poll_char(struct uart_port *port, | ||
| 1648 | unsigned char c) | ||
| 1649 | { | ||
| 1650 | struct mpsc_port_info *pi = (struct mpsc_port_info *)port; | ||
| 1651 | u32 data; | ||
| 1652 | |||
| 1653 | data = readl(pi->mpsc_base + MPSC_MPCR); | ||
| 1654 | writeb(c, pi->mpsc_base + MPSC_CHR_1); | ||
| 1655 | mb(); | ||
| 1656 | data = readl(pi->mpsc_base + MPSC_CHR_2); | ||
| 1657 | data |= MPSC_CHR_2_TTCS; | ||
| 1658 | writel(data, pi->mpsc_base + MPSC_CHR_2); | ||
| 1659 | mb(); | ||
| 1660 | |||
| 1661 | while (readl(pi->mpsc_base + MPSC_CHR_2) & MPSC_CHR_2_TTCS); | ||
| 1662 | } | ||
| 1663 | #endif | ||
| 1522 | 1664 | ||
| 1523 | static struct uart_ops mpsc_pops = { | 1665 | static struct uart_ops mpsc_pops = { |
| 1524 | .tx_empty = mpsc_tx_empty, | 1666 | .tx_empty = mpsc_tx_empty, |
| @@ -1537,6 +1679,10 @@ static struct uart_ops mpsc_pops = { | |||
| 1537 | .request_port = mpsc_request_port, | 1679 | .request_port = mpsc_request_port, |
| 1538 | .config_port = mpsc_config_port, | 1680 | .config_port = mpsc_config_port, |
| 1539 | .verify_port = mpsc_verify_port, | 1681 | .verify_port = mpsc_verify_port, |
| 1682 | #ifdef CONFIG_CONSOLE_POLL | ||
| 1683 | .poll_get_char = mpsc_get_poll_char, | ||
| 1684 | .poll_put_char = mpsc_put_poll_char, | ||
| 1685 | #endif | ||
| 1540 | }; | 1686 | }; |
| 1541 | 1687 | ||
| 1542 | /* | 1688 | /* |
diff --git a/include/asm-arm/kgdb.h b/include/asm-arm/kgdb.h new file mode 100644 index 000000000000..67af4b841984 --- /dev/null +++ b/include/asm-arm/kgdb.h | |||
| @@ -0,0 +1,104 @@ | |||
| 1 | /* | ||
| 2 | * ARM KGDB support | ||
| 3 | * | ||
| 4 | * Author: Deepak Saxena <dsaxena@mvista.com> | ||
| 5 | * | ||
| 6 | * Copyright (C) 2002 MontaVista Software Inc. | ||
| 7 | * | ||
| 8 | */ | ||
| 9 | |||
| 10 | #ifndef __ARM_KGDB_H__ | ||
| 11 | #define __ARM_KGDB_H__ | ||
| 12 | |||
| 13 | #include <linux/ptrace.h> | ||
| 14 | |||
| 15 | /* | ||
| 16 | * GDB assumes that we're a user process being debugged, so | ||
| 17 | * it will send us an SWI command to write into memory as the | ||
| 18 | * debug trap. When an SWI occurs, the next instruction addr is | ||
| 19 | * placed into R14_svc before jumping to the vector trap. | ||
| 20 | * This doesn't work for kernel debugging as we are already in SVC | ||
| 21 | * we would loose the kernel's LR, which is a bad thing. This | ||
| 22 | * is bad thing. | ||
| 23 | * | ||
| 24 | * By doing this as an undefined instruction trap, we force a mode | ||
| 25 | * switch from SVC to UND mode, allowing us to save full kernel state. | ||
| 26 | * | ||
| 27 | * We also define a KGDB_COMPILED_BREAK which can be used to compile | ||
| 28 | * in breakpoints. This is important for things like sysrq-G and for | ||
| 29 | * the initial breakpoint from trap_init(). | ||
| 30 | * | ||
| 31 | * Note to ARM HW designers: Add real trap support like SH && PPC to | ||
| 32 | * make our lives much much simpler. :) | ||
| 33 | */ | ||
| 34 | #define BREAK_INSTR_SIZE 4 | ||
| 35 | #define GDB_BREAKINST 0xef9f0001 | ||
| 36 | #define KGDB_BREAKINST 0xe7ffdefe | ||
| 37 | #define KGDB_COMPILED_BREAK 0xe7ffdeff | ||
| 38 | #define CACHE_FLUSH_IS_SAFE 1 | ||
| 39 | |||
| 40 | #ifndef __ASSEMBLY__ | ||
| 41 | |||
| 42 | static inline void arch_kgdb_breakpoint(void) | ||
| 43 | { | ||
| 44 | asm(".word 0xe7ffdeff"); | ||
| 45 | } | ||
| 46 | |||
| 47 | extern void kgdb_handle_bus_error(void); | ||
| 48 | extern int kgdb_fault_expected; | ||
| 49 | |||
| 50 | #endif /* !__ASSEMBLY__ */ | ||
| 51 | |||
| 52 | /* | ||
| 53 | * From Kevin Hilman: | ||
| 54 | * | ||
| 55 | * gdb is expecting the following registers layout. | ||
| 56 | * | ||
| 57 | * r0-r15: 1 long word each | ||
| 58 | * f0-f7: unused, 3 long words each !! | ||
| 59 | * fps: unused, 1 long word | ||
| 60 | * cpsr: 1 long word | ||
| 61 | * | ||
| 62 | * Even though f0-f7 and fps are not used, they need to be | ||
| 63 | * present in the registers sent for correct processing in | ||
| 64 | * the host-side gdb. | ||
| 65 | * | ||
| 66 | * In particular, it is crucial that CPSR is in the right place, | ||
| 67 | * otherwise gdb will not be able to correctly interpret stepping over | ||
| 68 | * conditional branches. | ||
| 69 | */ | ||
| 70 | #define _GP_REGS 16 | ||
| 71 | #define _FP_REGS 8 | ||
| 72 | #define _EXTRA_REGS 2 | ||
| 73 | #define GDB_MAX_REGS (_GP_REGS + (_FP_REGS * 3) + _EXTRA_REGS) | ||
| 74 | |||
| 75 | #define KGDB_MAX_NO_CPUS 1 | ||
| 76 | #define BUFMAX 400 | ||
| 77 | #define NUMREGBYTES (GDB_MAX_REGS << 2) | ||
| 78 | #define NUMCRITREGBYTES (32 << 2) | ||
| 79 | |||
| 80 | #define _R0 0 | ||
| 81 | #define _R1 1 | ||
| 82 | #define _R2 2 | ||
| 83 | #define _R3 3 | ||
| 84 | #define _R4 4 | ||
| 85 | #define _R5 5 | ||
| 86 | #define _R6 6 | ||
| 87 | #define _R7 7 | ||
| 88 | #define _R8 8 | ||
| 89 | #define _R9 9 | ||
| 90 | #define _R10 10 | ||
| 91 | #define _FP 11 | ||
| 92 | #define _IP 12 | ||
| 93 | #define _SPT 13 | ||
| 94 | #define _LR 14 | ||
| 95 | #define _PC 15 | ||
| 96 | #define _CPSR (GDB_MAX_REGS - 1) | ||
| 97 | |||
| 98 | /* | ||
| 99 | * So that we can denote the end of a frame for tracing, | ||
| 100 | * in the simple case: | ||
| 101 | */ | ||
| 102 | #define CFI_END_FRAME(func) __CFI_END_FRAME(_PC, _SPT, func) | ||
| 103 | |||
| 104 | #endif /* __ASM_KGDB_H__ */ | ||
diff --git a/include/asm-arm/traps.h b/include/asm-arm/traps.h index f1541afcf85c..aa399aec568e 100644 --- a/include/asm-arm/traps.h +++ b/include/asm-arm/traps.h | |||
| @@ -24,4 +24,6 @@ static inline int in_exception_text(unsigned long ptr) | |||
| 24 | ptr < (unsigned long)&__exception_text_end; | 24 | ptr < (unsigned long)&__exception_text_end; |
| 25 | } | 25 | } |
| 26 | 26 | ||
| 27 | extern void __init early_trap_init(void); | ||
| 28 | |||
| 27 | #endif | 29 | #endif |
diff --git a/include/asm-powerpc/kgdb.h b/include/asm-powerpc/kgdb.h index b617dac82969..1399caf719ae 100644 --- a/include/asm-powerpc/kgdb.h +++ b/include/asm-powerpc/kgdb.h | |||
| @@ -1,57 +1,65 @@ | |||
| 1 | /* | 1 | /* |
| 2 | * kgdb.h: Defines and declarations for serial line source level | 2 | * include/asm-powerpc/kgdb.h |
| 3 | * remote debugging of the Linux kernel using gdb. | ||
| 4 | * | 3 | * |
| 4 | * The PowerPC (32/64) specific defines / externs for KGDB. Based on | ||
| 5 | * the previous 32bit and 64bit specific files, which had the following | ||
| 6 | * copyrights: | ||
| 7 | * | ||
| 8 | * PPC64 Mods (C) 2005 Frank Rowand (frowand@mvista.com) | ||
| 9 | * PPC Mods (C) 2004 Tom Rini (trini@mvista.com) | ||
| 10 | * PPC Mods (C) 2003 John Whitney (john.whitney@timesys.com) | ||
| 5 | * PPC Mods (C) 1998 Michael Tesch (tesch@cs.wisc.edu) | 11 | * PPC Mods (C) 1998 Michael Tesch (tesch@cs.wisc.edu) |
| 6 | * | 12 | * |
| 13 | * | ||
| 7 | * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) | 14 | * Copyright (C) 1995 David S. Miller (davem@caip.rutgers.edu) |
| 15 | * Author: Tom Rini <trini@kernel.crashing.org> | ||
| 16 | * | ||
| 17 | * 2006 (c) MontaVista Software, Inc. This file is licensed under | ||
| 18 | * the terms of the GNU General Public License version 2. This program | ||
| 19 | * is licensed "as is" without any warranty of any kind, whether express | ||
| 20 | * or implied. | ||
| 8 | */ | 21 | */ |
| 9 | #ifdef __KERNEL__ | 22 | #ifdef __KERNEL__ |
| 10 | #ifndef _PPC_KGDB_H | 23 | #ifndef __POWERPC_KGDB_H__ |
| 11 | #define _PPC_KGDB_H | 24 | #define __POWERPC_KGDB_H__ |
| 12 | 25 | ||
| 13 | #ifndef __ASSEMBLY__ | 26 | #ifndef __ASSEMBLY__ |
| 14 | 27 | ||
| 15 | /* Things specific to the gen550 backend. */ | 28 | #define BREAK_INSTR_SIZE 4 |
| 16 | struct uart_port; | 29 | #define BUFMAX ((NUMREGBYTES * 2) + 512) |
| 17 | 30 | #define OUTBUFMAX ((NUMREGBYTES * 2) + 512) | |
| 18 | extern void gen550_progress(char *, unsigned short); | 31 | static inline void arch_kgdb_breakpoint(void) |
| 19 | extern void gen550_kgdb_map_scc(void); | 32 | { |
| 20 | extern void gen550_init(int, struct uart_port *); | 33 | asm(".long 0x7d821008"); /* twge r2, r2 */ |
| 21 | 34 | } | |
| 22 | /* Things specific to the pmac backend. */ | 35 | #define CACHE_FLUSH_IS_SAFE 1 |
| 23 | extern void zs_kgdb_hook(int tty_num); | ||
| 24 | |||
| 25 | /* To init the kgdb engine. (called by serial hook)*/ | ||
| 26 | extern void set_debug_traps(void); | ||
| 27 | |||
| 28 | /* To enter the debugger explicitly. */ | ||
| 29 | extern void breakpoint(void); | ||
| 30 | |||
| 31 | /* For taking exceptions | ||
| 32 | * these are defined in traps.c | ||
| 33 | */ | ||
| 34 | extern int (*debugger)(struct pt_regs *regs); | ||
| 35 | extern int (*debugger_bpt)(struct pt_regs *regs); | ||
| 36 | extern int (*debugger_sstep)(struct pt_regs *regs); | ||
| 37 | extern int (*debugger_iabr_match)(struct pt_regs *regs); | ||
| 38 | extern int (*debugger_dabr_match)(struct pt_regs *regs); | ||
| 39 | extern void (*debugger_fault_handler)(struct pt_regs *regs); | ||
| 40 | |||
| 41 | /* What we bring to the party */ | ||
| 42 | int kgdb_bpt(struct pt_regs *regs); | ||
| 43 | int kgdb_sstep(struct pt_regs *regs); | ||
| 44 | void kgdb(struct pt_regs *regs); | ||
| 45 | int kgdb_iabr_match(struct pt_regs *regs); | ||
| 46 | int kgdb_dabr_match(struct pt_regs *regs); | ||
| 47 | 36 | ||
| 37 | /* The number bytes of registers we have to save depends on a few | ||
| 38 | * things. For 64bit we default to not including vector registers and | ||
| 39 | * vector state registers. */ | ||
| 40 | #ifdef CONFIG_PPC64 | ||
| 48 | /* | 41 | /* |
| 49 | * external low-level support routines (ie macserial.c) | 42 | * 64 bit (8 byte) registers: |
| 43 | * 32 gpr, 32 fpr, nip, msr, link, ctr | ||
| 44 | * 32 bit (4 byte) registers: | ||
| 45 | * ccr, xer, fpscr | ||
| 50 | */ | 46 | */ |
| 51 | extern void kgdb_interruptible(int); /* control interrupts from serial */ | 47 | #define NUMREGBYTES ((68 * 8) + (3 * 4)) |
| 52 | extern void putDebugChar(char); /* write a single character */ | 48 | #define NUMCRITREGBYTES 184 |
| 53 | extern char getDebugChar(void); /* read and return a single char */ | 49 | #else /* CONFIG_PPC32 */ |
| 54 | 50 | /* On non-E500 family PPC32 we determine the size by picking the last | |
| 51 | * register we need, but on E500 we skip sections so we list what we | ||
| 52 | * need to store, and add it up. */ | ||
| 53 | #ifndef CONFIG_E500 | ||
| 54 | #define MAXREG (PT_FPSCR+1) | ||
| 55 | #else | ||
| 56 | /* 32 GPRs (8 bytes), nip, msr, ccr, link, ctr, xer, acc (8 bytes), spefscr*/ | ||
| 57 | #define MAXREG ((32*2)+6+2+1) | ||
| 58 | #endif | ||
| 59 | #define NUMREGBYTES (MAXREG * sizeof(int)) | ||
| 60 | /* CR/LR, R1, R2, R13-R31 inclusive. */ | ||
| 61 | #define NUMCRITREGBYTES (23 * sizeof(int)) | ||
| 62 | #endif /* 32/64 */ | ||
| 55 | #endif /* !(__ASSEMBLY__) */ | 63 | #endif /* !(__ASSEMBLY__) */ |
| 56 | #endif /* !(_PPC_KGDB_H) */ | 64 | #endif /* !__POWERPC_KGDB_H__ */ |
| 57 | #endif /* __KERNEL__ */ | 65 | #endif /* __KERNEL__ */ |
diff --git a/lib/Kconfig.kgdb b/lib/Kconfig.kgdb index a5d4b1dac2a5..2cfd2721f7ed 100644 --- a/lib/Kconfig.kgdb +++ b/lib/Kconfig.kgdb | |||
| @@ -1,7 +1,4 @@ | |||
| 1 | 1 | ||
| 2 | config HAVE_ARCH_KGDB_SHADOW_INFO | ||
| 3 | bool | ||
| 4 | |||
| 5 | config HAVE_ARCH_KGDB | 2 | config HAVE_ARCH_KGDB |
| 6 | bool | 3 | bool |
| 7 | 4 | ||
