Commit | Line | Data |
---|---|---|
eb826dc6 MF |
1 | /* GNU/Linux/BFIN specific low level interface, for the remote server for GDB. |
2 | ||
42a4f53d | 3 | Copyright (C) 2005-2019 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 | ||
26 | /* Defined in auto-generated file reg-bfin.c. */ | |
27 | void init_registers_bfin (void); | |
3aee8918 | 28 | extern const struct target_desc *tdesc_bfin; |
eb826dc6 MF |
29 | |
30 | static int bfin_regmap[] = | |
31 | { | |
32 | PT_R0, PT_R1, PT_R2, PT_R3, PT_R4, PT_R5, PT_R6, PT_R7, | |
33 | PT_P0, PT_P1, PT_P2, PT_P3, PT_P4, PT_P5, PT_USP, PT_FP, | |
34 | PT_I0, PT_I1, PT_I2, PT_I3, PT_M0, PT_M1, PT_M2, PT_M3, | |
35 | PT_B0, PT_B1, PT_B2, PT_B3, PT_L0, PT_L1, PT_L2, PT_L3, | |
36 | PT_A0X, PT_A0W, PT_A1X, PT_A1W, PT_ASTAT, PT_RETS, | |
37 | PT_LC0, PT_LT0, PT_LB0, PT_LC1, PT_LT1, PT_LB1, | |
38 | -1 /* PT_CYCLES */, -1 /* PT_CYCLES2 */, | |
39 | -1 /* PT_USP */, PT_SEQSTAT, PT_SYSCFG, PT_PC, PT_RETX, PT_RETN, PT_RETE, | |
40 | PT_PC, | |
41 | }; | |
42 | ||
43 | #define bfin_num_regs ARRAY_SIZE (bfin_regmap) | |
44 | ||
45 | static int | |
46 | bfin_cannot_store_register (int regno) | |
47 | { | |
48 | return (regno >= bfin_num_regs); | |
49 | } | |
50 | ||
51 | static int | |
52 | bfin_cannot_fetch_register (int regno) | |
53 | { | |
54 | return (regno >= bfin_num_regs); | |
55 | } | |
56 | ||
eb826dc6 | 57 | #define bfin_breakpoint_len 2 |
dd373349 AT |
58 | static const gdb_byte bfin_breakpoint[bfin_breakpoint_len] = {0xa1, 0x00}; |
59 | ||
60 | /* Implementation of linux_target_ops method "sw_breakpoint_from_kind". */ | |
61 | ||
62 | static const gdb_byte * | |
63 | bfin_sw_breakpoint_from_kind (int kind, int *size) | |
64 | { | |
65 | *size = bfin_breakpoint_len; | |
66 | return bfin_breakpoint; | |
67 | } | |
eb826dc6 MF |
68 | |
69 | static int | |
70 | bfin_breakpoint_at (CORE_ADDR where) | |
71 | { | |
72 | unsigned char insn[bfin_breakpoint_len]; | |
73 | ||
74 | read_inferior_memory(where, insn, bfin_breakpoint_len); | |
75 | if (insn[0] == bfin_breakpoint[0] | |
76 | && insn[1] == bfin_breakpoint[1]) | |
77 | return 1; | |
78 | ||
79 | /* If necessary, recognize more trap instructions here. GDB only uses the | |
80 | one. */ | |
81 | return 0; | |
82 | } | |
83 | ||
3aee8918 PA |
84 | static void |
85 | bfin_arch_setup (void) | |
86 | { | |
87 | current_process ()->tdesc = tdesc_bfin; | |
88 | } | |
89 | ||
7d00775e AT |
90 | /* Support for hardware single step. */ |
91 | ||
92 | static int | |
93 | bfin_supports_hardware_single_step (void) | |
94 | { | |
95 | return 1; | |
96 | } | |
97 | ||
3aee8918 PA |
98 | static struct usrregs_info bfin_usrregs_info = |
99 | { | |
100 | bfin_num_regs, | |
101 | bfin_regmap, | |
102 | }; | |
103 | ||
104 | static struct regs_info regs_info = | |
105 | { | |
106 | NULL, /* regset_bitmap */ | |
107 | &bfin_usrregs_info, | |
108 | }; | |
109 | ||
110 | static const struct regs_info * | |
111 | bfin_regs_info (void) | |
112 | { | |
113 | return ®s_info; | |
114 | } | |
115 | ||
eb826dc6 | 116 | struct linux_target_ops the_low_target = { |
3aee8918 PA |
117 | bfin_arch_setup, |
118 | bfin_regs_info, | |
eb826dc6 MF |
119 | bfin_cannot_fetch_register, |
120 | bfin_cannot_store_register, | |
c14dfd32 | 121 | NULL, /* fetch_register */ |
276d4552 YQ |
122 | linux_get_pc_32bit, |
123 | linux_set_pc_32bit, | |
dd373349 AT |
124 | NULL, /* breakpoint_kind_from_pc */ |
125 | bfin_sw_breakpoint_from_kind, | |
fa5308bd | 126 | NULL, /* get_next_pcs */ |
eb826dc6 MF |
127 | 2, |
128 | bfin_breakpoint_at, | |
7d00775e AT |
129 | NULL, /* supports_z_point_type */ |
130 | NULL, /* insert_point */ | |
131 | NULL, /* remove_point */ | |
132 | NULL, /* stopped_by_watchpoint */ | |
133 | NULL, /* stopped_data_address */ | |
134 | NULL, /* collect_ptrace_register */ | |
135 | NULL, /* supply_ptrace_register */ | |
136 | NULL, /* siginfo_fixup */ | |
137 | NULL, /* new_process */ | |
04ec7890 | 138 | NULL, /* delete_process */ |
7d00775e | 139 | NULL, /* new_thread */ |
466eecee | 140 | NULL, /* delete_thread */ |
7d00775e AT |
141 | NULL, /* new_fork */ |
142 | NULL, /* prepare_to_resume */ | |
143 | NULL, /* process_qsupported */ | |
144 | NULL, /* supports_tracepoints */ | |
145 | NULL, /* get_thread_area */ | |
146 | NULL, /* install_fast_tracepoint_jump_pad */ | |
147 | NULL, /* emit_ops */ | |
148 | NULL, /* get_min_fast_tracepoint_insn_len */ | |
149 | NULL, /* supports_range_stepping */ | |
150 | NULL, /* breakpoint_kind_from_current_state */ | |
151 | bfin_supports_hardware_single_step, | |
eb826dc6 | 152 | }; |
3aee8918 PA |
153 | |
154 | ||
155 | void | |
156 | initialize_low_arch (void) | |
157 | { | |
158 | init_registers_bfin (); | |
159 | } |