gwin.h 461 B

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