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