Commit | Line | Data |
---|---|---|
eb826dc6 MF |
1 | /* GNU/Linux/BFIN specific low level interface, for the remote server for GDB. |
2 | ||
b811d2c2 | 3 | Copyright (C) 2005-2020 Free Software Foundation, Inc. |
eb826dc6 MF |
4 | |
5 | Contributed by Analog Devices, Inc. | |
6 | ||
7 | This file is part of GDB. | |
8 | ||
9 | This program is free software; you can redistribute it and/or modify | |
10 | it under the terms of the GNU General Public License as published by | |
11 | the Free Software Foundation; either version 3 of the License, or | |
12 | (at your option) any later version. | |
13 | ||
14 | This program is distributed in the hope that it will be useful, | |
15 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
17 | GNU General Public License for more details. | |
18 | ||
19 | You should have received a copy of the GNU General Public License | |
20 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ | |
21 | ||
22 | #include "server.h" | |
23 | #include "linux-low.h" | |
eb826dc6 MF |
24 | #include <asm/ptrace.h> |
25 | ||
ef0478f6 TBA |
26 | /* Linux target op definitions for the BFIN architecture. */ |
27 | ||
28 | class bfin_target : public linux_process_target | |
29 | { | |
30 | public: | |
31 | ||
aa8d21c9 TBA |
32 | const regs_info *get_regs_info () override; |
33 | ||
3ca4edb6 TBA |
34 | const gdb_byte *sw_breakpoint_from_kind (int kind, int *size) override; |
35 | ||
797bcff5 TBA |
36 | protected: |
37 | ||
38 | void low_arch_setup () override; | |
daca57a7 TBA |
39 | |
40 | bool low_cannot_fetch_register (int regno) override; | |
41 | ||
42 | bool low_cannot_store_register (int regno) override; | |
bf9ae9d8 TBA |
43 | |
44 | bool low_supports_breakpoints () override; | |
45 | ||
46 | CORE_ADDR low_get_pc (regcache *regcache) override; | |
47 | ||
48 | void low_set_pc (regcache *regcache, CORE_ADDR newpc) override; | |
d4807ea2 TBA |
49 | |
50 | int low_decr_pc_after_break () override; | |
ef0478f6 TBA |
51 | }; |
52 | ||
53 | /* The singleton target ops object. */ | |
54 | ||
55 | static bfin_target the_bfin_target; | |
56 | ||
bf9ae9d8 TBA |
57 | bool |
58 | bfin_target::low_supports_breakpoints () | |
59 | { | |
60 | return true; | |
61 | } | |
62 | ||
63 | CORE_ADDR | |
64 | bfin_target::low_get_pc (regcache *regcache) | |
65 | { | |
66 | return linux_get_pc_32bit (regcache); | |
67 | } | |
68 | ||
69 | void | |
70 | bfin_target::low_set_pc (regcache *regcache, CORE_ADDR pc) | |
71 | { | |
72 | linux_set_pc_32bit (regcache, pc); | |
73 | } | |
74 | ||
d4807ea2 TBA |
75 | int |
76 | bfin_target::low_decr_pc_after_break () | |
77 | { | |
78 | return 2; | |
79 | } | |
80 | ||
eb826dc6 MF |
81 | /* Defined in auto-generated file reg-bfin.c. */ |
82 | void init_registers_bfin (void); | |
3aee8918 | 83 | extern const struct target_desc *tdesc_bfin; |
eb826dc6 MF |
84 | |
85 | static int bfin_regmap[] = | |
86 | { | |
87 | PT_R0, PT_R1, PT_R2, PT_R3, PT_R4, PT_R5, PT_R6, PT_R7, | |
88 | PT_P0, PT_P1, PT_P2, PT_P3, PT_P4, PT_P5, PT_USP, PT_FP, | |
89 | PT_I0, PT_I1, PT_I2, PT_I3, PT_M0, PT_M1, PT_M2, PT_M3, | |
90 | PT_B0, PT_B1, PT_B2, PT_B3, PT_L0, PT_L1, PT_L2, PT_L3, | |
91 | PT_A0X, PT_A0W, PT_A1X, PT_A1W, PT_ASTAT, PT_RETS, | |
92 | PT_LC0, PT_LT0, PT_LB0, PT_LC1, PT_LT1, PT_LB1, | |
93 | -1 /* PT_CYCLES */, -1 /* PT_CYCLES2 */, | |
94 | -1 /* PT_USP */, PT_SEQSTAT, PT_SYSCFG, PT_PC, PT_RETX, PT_RETN, PT_RETE, | |
95 | PT_PC, | |
96 | }; | |
97 | ||
98 | #define bfin_num_regs ARRAY_SIZE (bfin_regmap) | |
99 | ||
daca57a7 TBA |
100 | bool |
101 | bfin_target::low_cannot_store_register (int regno) | |
eb826dc6 MF |
102 | { |
103 | return (regno >= bfin_num_regs); | |
104 | } | |
105 | ||
daca57a7 TBA |
106 | bool |
107 | bfin_target::low_cannot_fetch_register (int regno) | |
eb826dc6 MF |
108 | { |
109 | return (regno >= bfin_num_regs); | |
110 | } | |
111 | ||
eb826dc6 | 112 | #define bfin_breakpoint_len 2 |
dd373349 AT |
113 | static const gdb_byte bfin_breakpoint[bfin_breakpoint_len] = {0xa1, 0x00}; |
114 | ||
3ca4edb6 | 115 | /* Implementation of target ops method "sw_breakpoint_from_kind". */ |
dd373349 | 116 | |
3ca4edb6 TBA |
117 | const gdb_byte * |
118 | bfin_target::sw_breakpoint_from_kind (int kind, int *size) | |
dd373349 AT |
119 | { |
120 | *size = bfin_breakpoint_len; | |
121 | return bfin_breakpoint; | |
122 | } | |
eb826dc6 MF |
123 | |
124 | static int | |
125 | bfin_breakpoint_at (CORE_ADDR where) | |
126 | { | |
127 | unsigned char insn[bfin_breakpoint_len]; | |
128 | ||
129 | read_inferior_memory(where, insn, bfin_breakpoint_len); | |
130 | if (insn[0] == bfin_breakpoint[0] | |
131 | && insn[1] == bfin_breakpoint[1]) | |
132 | return 1; | |
133 | ||
134 | /* If necessary, recognize more trap instructions here. GDB only uses the | |
135 | one. */ | |
136 | return 0; | |
137 | } | |
138 | ||
797bcff5 TBA |
139 | void |
140 | bfin_target::low_arch_setup () | |
3aee8918 PA |
141 | { |
142 | current_process ()->tdesc = tdesc_bfin; | |
143 | } | |
144 | ||
7d00775e AT |
145 | /* Support for hardware single step. */ |
146 | ||
147 | static int | |
148 | bfin_supports_hardware_single_step (void) | |
149 | { | |
150 | return 1; | |
151 | } | |
152 | ||
3aee8918 PA |
153 | static struct usrregs_info bfin_usrregs_info = |
154 | { | |
155 | bfin_num_regs, | |
156 | bfin_regmap, | |
157 | }; | |
158 | ||
aa8d21c9 | 159 | static struct regs_info myregs_info = |
3aee8918 PA |
160 | { |
161 | NULL, /* regset_bitmap */ | |
162 | &bfin_usrregs_info, | |
163 | }; | |
164 | ||
aa8d21c9 TBA |
165 | const regs_info * |
166 | bfin_target::get_regs_info () | |
3aee8918 | 167 | { |
aa8d21c9 | 168 | return &myregs_info; |
3aee8918 PA |
169 | } |
170 | ||
eb826dc6 | 171 | struct linux_target_ops the_low_target = { |
eb826dc6 | 172 | bfin_breakpoint_at, |
7d00775e AT |
173 | NULL, /* supports_z_point_type */ |
174 | NULL, /* insert_point */ | |
175 | NULL, /* remove_point */ | |
176 | NULL, /* stopped_by_watchpoint */ | |
177 | NULL, /* stopped_data_address */ | |
178 | NULL, /* collect_ptrace_register */ | |
179 | NULL, /* supply_ptrace_register */ | |
180 | NULL, /* siginfo_fixup */ | |
181 | NULL, /* new_process */ | |
04ec7890 | 182 | NULL, /* delete_process */ |
7d00775e | 183 | NULL, /* new_thread */ |
466eecee | 184 | NULL, /* delete_thread */ |
7d00775e AT |
185 | NULL, /* new_fork */ |
186 | NULL, /* prepare_to_resume */ | |
187 | NULL, /* process_qsupported */ | |
188 | NULL, /* supports_tracepoints */ | |
189 | NULL, /* get_thread_area */ | |
190 | NULL, /* install_fast_tracepoint_jump_pad */ | |
191 | NULL, /* emit_ops */ | |
192 | NULL, /* get_min_fast_tracepoint_insn_len */ | |
193 | NULL, /* supports_range_stepping */ | |
7d00775e | 194 | bfin_supports_hardware_single_step, |
eb826dc6 | 195 | }; |
3aee8918 | 196 | |
ef0478f6 TBA |
197 | /* The linux target ops object. */ |
198 | ||
199 | linux_process_target *the_linux_target = &the_bfin_target; | |
3aee8918 PA |
200 | |
201 | void | |
202 | initialize_low_arch (void) | |
203 | { | |
204 | init_registers_bfin (); | |
205 | } |