blob: 1b874a7450a6db8324d5b83e0addea385d6a3988 [file] [log] [blame]
Konstantin Porotchkin62a76462018-02-26 15:51:11 +02001/*
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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000010#ifndef GWIN_H
11#define GWIN_H
Konstantin Porotchkin62a76462018-02-26 15:51:11 +020012
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000013#include <drivers/marvell/addr_map.h>
Konstantin Porotchkin62a76462018-02-26 15:51:11 +020014
15int init_gwin(int ap_index);
16void gwin_temp_win_insert(int ap_index, struct addr_map_win *win, int size);
17void gwin_temp_win_remove(int ap_index, struct addr_map_win *win, int size);
18
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000019#endif /* GWIN_H */