1 /* 2 * Copyright (C) 2018 Marvell International Ltd. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 * https://spdx.org/licenses 6 */ 7 8 /* GWIN unit device driver for Marvell AP810 SoC */ 9 10 #ifndef _GWIN_H_ 11 #define _GWIN_H_ 12 13 #include <addr_map.h> 14 15 int init_gwin(int ap_index); 16 void gwin_temp_win_insert(int ap_index, struct addr_map_win *win, int size); 17 void gwin_temp_win_remove(int ap_index, struct addr_map_win *win, int size); 18 19 #endif /* _GWIN_H_ */ 20