Thomas Gleixner | caab277 | 2019-06-03 07:44:50 +0200 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Laurent Pinchart | b556141 | 2017-10-13 17:59:05 +0300 | [diff] [blame] | 2 | /* |
| 3 | * omap_irq.h -- OMAP DRM IRQ Handling |
| 4 | * |
| 5 | * Copyright (C) 2011 Texas Instruments |
| 6 | * Author: Rob Clark <rob@ti.com> |
Laurent Pinchart | b556141 | 2017-10-13 17:59:05 +0300 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef __OMAPDRM_IRQ_H__ |
| 10 | #define __OMAPDRM_IRQ_H__ |
| 11 | |
| 12 | #include <linux/types.h> |
| 13 | |
| 14 | struct drm_crtc; |
| 15 | struct drm_device; |
| 16 | struct omap_irq_wait; |
| 17 | |
| 18 | int omap_irq_enable_vblank(struct drm_crtc *crtc); |
| 19 | void omap_irq_disable_vblank(struct drm_crtc *crtc); |
| 20 | void omap_drm_irq_uninstall(struct drm_device *dev); |
| 21 | int omap_drm_irq_install(struct drm_device *dev); |
| 22 | |
| 23 | struct omap_irq_wait *omap_irq_wait_init(struct drm_device *dev, |
Laurent Pinchart | dfe9cfc | 2018-02-11 15:07:33 +0200 | [diff] [blame] | 24 | u32 irqmask, int count); |
Laurent Pinchart | b556141 | 2017-10-13 17:59:05 +0300 | [diff] [blame] | 25 | int omap_irq_wait(struct drm_device *dev, struct omap_irq_wait *wait, |
| 26 | unsigned long timeout); |
| 27 | |
| 28 | #endif /* __OMAPDRM_IRQ_H__ */ |