blob: 7a3d9642fd98468b6ca3a4f31d69f3c932c2d131 [file] [log] [blame]
Julius Werner50a81742014-05-15 11:57:38 -07001/*
2 * Copyright 2014 Google Inc.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2 of
7 * the License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but without any warranty; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Julius Werner50a81742014-05-15 11:57:38 -070013 */
14
15#include <exception.h>
16#include <gdb.h>
17#include <libpayload.h>
18
19struct gdb_regs
20{
21 u32 r[16];
22 struct fp_reg
23 {
24 u8 byte[12];
25 } __attribute__((packed)) f[8];
26 u32 fps;
27 u32 cpsr;
28} __attribute__((packed));
29
30static const u8 type_to_signal[] = {
31 [EXC_UNDEF] = GDB_SIGILL,
32 [EXC_SWI] = GDB_SIGTRAP,
33 [EXC_PABORT] = GDB_SIGSEGV,
34 [EXC_DABORT] = GDB_SIGSEGV,
35};
36
37/* Scratch value to write reentrant exception states to. We never read it. */
38static struct exception_state sentinel_exception_state;
39
40static int gdb_exception_hook(u32 type)
41{
42 /*
43 * If we were not resumed we are in deep trouble here. GDB probably told
44 * us to do something stupid and caused a reentrant exception. All we
45 * can do is just blindly send an error code and keep going. Eventually
46 * GDB will tell us to resume and we return right back to the original
47 * exception state ("jumping over" all the nested ones).
48 */
49 if (gdb_state.connected && !gdb_state.resumed) {
50 static const char error_code[] = "E22"; /* EINVAL? */
51 static const struct gdb_message tmp_reply = {
52 .buf = (u8 *)error_code,
53 .used = sizeof(error_code),
54 .size = sizeof(error_code),
55 };
56 gdb_send_reply(&tmp_reply);
57 gdb_command_loop(gdb_state.signal); /* preserve old signal */
58 } else {
59 if (type >= ARRAY_SIZE(type_to_signal) || !type_to_signal[type])
60 return 0;
61 exception_state_ptr = &sentinel_exception_state;
62 gdb_command_loop(type_to_signal[type]);
63 }
64
65 exception_state_ptr = &exception_state;
66 return 1;
67}
68
69void gdb_arch_init(void)
70{
71 exception_install_hook(&gdb_exception_hook);
72}
73
74void gdb_arch_enter(void)
75{
76 u32 *sp;
77
78 asm volatile ("mov %0, %%sp" : "=r"(sp) );
79
80 /* Avoid reentrant exceptions, just call the hook if in one already. */
81 if (sp >= exception_stack && sp <= exception_stack_end)
82 gdb_exception_hook(EXC_SWI);
83 else
84 asm volatile ("svc #0");
85}
86
87int gdb_arch_set_single_step(int on)
88{
89 /* GDB seems to only need this on x86, ARM works fine without it. */
90 return -1;
91}
92
93void gdb_arch_encode_regs(struct gdb_message *message)
94{
95 gdb_message_encode_bytes(message, exception_state.regs,
96 sizeof(exception_state.regs));
97 gdb_message_encode_zero_bytes(message,
98 offsetof(struct gdb_regs, cpsr) - offsetof(struct gdb_regs, f));
99 gdb_message_encode_bytes(message, &exception_state.cpsr,
100 sizeof(exception_state.cpsr));
101}
102
103void gdb_arch_decode_regs(int offset, struct gdb_message *message)
104{
105 const int cpsr_hex_offset = offsetof(struct gdb_regs, cpsr) * 2;
106 gdb_message_decode_bytes(message, offset,
107 exception_state.regs, sizeof(exception_state.regs));
108 gdb_message_decode_bytes(message, offset + cpsr_hex_offset,
109 &exception_state.cpsr, sizeof(exception_state.cpsr));
110}