xref: /rk3399_ARM-atf/include/drivers/marvell/addr_map.h (revision 06f3c7058c42a9f1a9f7df75ea2de71a000855e8)
1 /*
2  * Copyright (C) 2018 Marvell International Ltd.
3  *
4  * SPDX-License-Identifier:     BSD-3-Clause
5  * https://spdx.org/licenses
6  */
7 
8 /* Address map types for Marvell address translation unit drivers */
9 
10 #ifndef ADDR_MAP_H
11 #define ADDR_MAP_H
12 
13 #include <stdint.h>
14 
15 struct addr_map_win {
16 	uint64_t base_addr;
17 	uint64_t win_size;
18 	uint32_t target_id;
19 };
20 
21 #endif /* ADDR_MAP_H */
22