2019-05-30 02:57:49 +03:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2011-11-03 22:22:04 +04:00
|
|
|
/**************************************************************************
|
|
|
|
* Copyright (c) 2009-2011, Intel Corporation.
|
|
|
|
* All Rights Reserved.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Benjamin Defnet <benjamin.r.defnet@intel.com>
|
|
|
|
* Rajesh Poornachandran <rajesh.poornachandran@intel.com>
|
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
2013-03-14 15:36:54 +04:00
|
|
|
#ifndef _PSB_IRQ_H_
|
|
|
|
#define _PSB_IRQ_H_
|
2011-11-03 22:22:04 +04:00
|
|
|
|
2020-01-23 16:59:27 +03:00
|
|
|
struct drm_crtc;
|
2019-05-19 22:55:23 +03:00
|
|
|
struct drm_device;
|
2011-11-03 22:22:04 +04:00
|
|
|
|
|
|
|
bool sysirq_init(struct drm_device *dev);
|
|
|
|
void sysirq_uninit(struct drm_device *dev);
|
|
|
|
|
|
|
|
void psb_irq_preinstall(struct drm_device *dev);
|
|
|
|
int psb_irq_postinstall(struct drm_device *dev);
|
|
|
|
void psb_irq_uninstall(struct drm_device *dev);
|
2013-12-11 14:34:42 +04:00
|
|
|
irqreturn_t psb_irq_handler(int irq, void *arg);
|
2011-11-03 22:22:04 +04:00
|
|
|
|
|
|
|
int psb_irq_enable_dpst(struct drm_device *dev);
|
|
|
|
int psb_irq_disable_dpst(struct drm_device *dev);
|
|
|
|
void psb_irq_turn_on_dpst(struct drm_device *dev);
|
|
|
|
void psb_irq_turn_off_dpst(struct drm_device *dev);
|
2020-01-23 16:59:27 +03:00
|
|
|
int psb_enable_vblank(struct drm_crtc *crtc);
|
|
|
|
void psb_disable_vblank(struct drm_crtc *crtc);
|
|
|
|
u32 psb_get_vblank_counter(struct drm_crtc *crtc);
|
2011-11-03 22:22:04 +04:00
|
|
|
|
2012-03-08 20:02:20 +04:00
|
|
|
int mdfld_enable_te(struct drm_device *dev, int pipe);
|
|
|
|
void mdfld_disable_te(struct drm_device *dev, int pipe);
|
2013-03-14 15:36:54 +04:00
|
|
|
#endif /* _PSB_IRQ_H_ */
|