1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
#[macro_use]
pub mod register_generation;
pub(crate) mod generic_ap;
pub(crate) mod memory_ap;
use crate::architecture::arm::dp::DebugPortError;
use crate::DebugProbeError;
pub use generic_ap::{ApClass, ApType, GenericAp, IDR};
pub use memory_ap::{
AddressIncrement, BaseaddrFormat, DataSize, MemoryAp, BASE, BASE2, CFG, CSW, DRW, TAR, TAR2,
};
use super::{
communication_interface::RegisterParseError, ApAddress, ArmError, DapAccess, DpAddress,
Register,
};
#[derive(Debug, thiserror::Error)]
pub enum AccessPortError {
#[error("Failed to read register {name} at address 0x{address:08x}")]
RegisterRead {
address: u8,
name: &'static str,
#[source]
source: Box<dyn std::error::Error + Send + Sync>,
},
#[error("Failed to write register {name} at address 0x{address:08x}")]
RegisterWrite {
address: u8,
name: &'static str,
#[source]
source: Box<dyn std::error::Error + Send + Sync>,
},
#[error("Error while communicating with debug port")]
DebugPort(#[from] DebugPortError),
#[error("Failed to flush batched writes")]
Flush(#[from] DebugProbeError),
#[error("Error parsing a register")]
RegisterParse(#[from] RegisterParseError),
}
impl AccessPortError {
pub fn register_read_error<R: Register, E: std::error::Error + Send + Sync + 'static>(
source: E,
) -> Self {
AccessPortError::RegisterRead {
address: R::ADDRESS,
name: R::NAME,
source: Box::new(source),
}
}
pub fn register_write_error<R: Register, E: std::error::Error + Send + Sync + 'static>(
source: E,
) -> Self {
AccessPortError::RegisterWrite {
address: R::ADDRESS,
name: R::NAME,
source: Box::new(source),
}
}
}
pub trait ApRegister<PORT: AccessPort>: Register + Sized {}
pub trait AccessPort {
fn ap_address(&self) -> ApAddress;
}
pub trait ApAccess {
fn read_ap_register<PORT, R>(&mut self, port: impl Into<PORT>) -> Result<R, ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>;
fn read_ap_register_repeated<PORT, R>(
&mut self,
port: impl Into<PORT> + Clone,
register: R,
values: &mut [u32],
) -> Result<(), ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>;
fn write_ap_register<PORT, R>(
&mut self,
port: impl Into<PORT>,
register: R,
) -> Result<(), ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>;
fn write_ap_register_repeated<PORT, R>(
&mut self,
port: impl Into<PORT> + Clone,
register: R,
values: &[u32],
) -> Result<(), ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>;
}
impl<T: DapAccess> ApAccess for T {
fn read_ap_register<PORT, R>(&mut self, port: impl Into<PORT>) -> Result<R, ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>,
{
tracing::debug!("Reading register {}", R::NAME);
let raw_value = self.read_raw_ap_register(port.into().ap_address(), R::ADDRESS)?;
tracing::debug!("Read register {}, value=0x{:x?}", R::NAME, raw_value);
Ok(raw_value.try_into()?)
}
fn write_ap_register<PORT, R>(
&mut self,
port: impl Into<PORT>,
register: R,
) -> Result<(), ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>,
{
tracing::debug!("Writing register {}, value={:x?}", R::NAME, register);
self.write_raw_ap_register(port.into().ap_address(), R::ADDRESS, register.into())
}
fn write_ap_register_repeated<PORT, R>(
&mut self,
port: impl Into<PORT>,
_register: R,
values: &[u32],
) -> Result<(), ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>,
{
tracing::debug!(
"Writing register {}, block with len={} words",
R::NAME,
values.len(),
);
self.write_raw_ap_register_repeated(port.into().ap_address(), R::ADDRESS, values)
}
fn read_ap_register_repeated<PORT, R>(
&mut self,
port: impl Into<PORT>,
_register: R,
values: &mut [u32],
) -> Result<(), ArmError>
where
PORT: AccessPort,
R: ApRegister<PORT>,
{
tracing::debug!(
"Reading register {}, block with len={} words",
R::NAME,
values.len(),
);
self.read_raw_ap_register_repeated(port.into().ap_address(), R::ADDRESS, values)
}
}
pub fn access_port_is_valid<AP>(debug_port: &mut AP, access_port: GenericAp) -> bool
where
AP: ApAccess,
{
let idr_result: Result<IDR, _> = debug_port.read_ap_register(access_port);
match idr_result {
Ok(idr) => u32::from(idr) != 0,
Err(_e) => false,
}
}
pub(crate) fn valid_access_ports<AP>(debug_port: &mut AP, dp: DpAddress) -> Vec<GenericAp>
where
AP: ApAccess,
{
(0..=255)
.map(|ap| GenericAp::new(ApAddress { dp, ap }))
.take_while(|port| access_port_is_valid(debug_port, *port))
.collect::<Vec<GenericAp>>()
}
pub fn get_ap_by_idr<AP, P>(debug_port: &mut AP, dp: DpAddress, f: P) -> Option<GenericAp>
where
AP: ApAccess,
P: Fn(IDR) -> bool,
{
(0..=255)
.map(|ap| GenericAp::new(ApAddress { dp, ap }))
.find(|ap| {
if let Ok(idr) = debug_port.read_ap_register(*ap) {
f(idr)
} else {
false
}
})
}