| 123456789101112131415161718192021 |
- /* SPDX-License-Identifier: GPL-2.0
- *
- * Copyright (C) 2025 Etnaviv Project
- */
- #ifndef _ETNAVIV_FLOP_RESET_H_
- #define _ETNAVIV_FLOP_RESET_H_
- #include <linux/types.h>
- struct etnaviv_chip_identity;
- struct etnaviv_drm_private;
- struct etnaviv_gpu;
- bool etnaviv_flop_reset_ppu_require(const struct etnaviv_chip_identity *chip_id);
- int etnaviv_flop_reset_ppu_init(struct etnaviv_drm_private *priv);
- void etnaviv_flop_reset_ppu_run(struct etnaviv_gpu *gpu);
- #endif
|