1 /*
2  * SPDX-License-Identifier: BSD-3-Clause
3  * SPDX-FileCopyrightText: Copyright TF-RMM Contributors.
4  */
5 
6 #ifndef RSI_WALK_H
7 #define RSI_WALK_H
8 
9 #include <stdbool.h>
10 
11 struct rsi_walk_result {
12 	/*
13 	 * If true, RTT walk failed due to missing PTE at level @rtt_level.
14 	 */
15 	bool abort;
16 
17 	/*
18 	 * RTT level at which the walk terminated.
19 	 */
20 	unsigned long rtt_level;
21 };
22 
23 #endif /* RSI_WALK_H */
24