2019-05-27 14:55:01 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2015-10-29 16:36:23 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2015 Free Electrons
|
|
|
|
* Copyright (C) 2015 NextThing Co
|
|
|
|
*
|
|
|
|
* Maxime Ripard <maxime.ripard@free-electrons.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _SUN4I_CRTC_H_
|
|
|
|
#define _SUN4I_CRTC_H_
|
|
|
|
|
|
|
|
struct sun4i_crtc {
|
|
|
|
struct drm_crtc crtc;
|
|
|
|
struct drm_pending_vblank_event *event;
|
|
|
|
|
2017-05-17 22:47:17 +08:00
|
|
|
struct sunxi_engine *engine;
|
2017-02-23 16:05:43 +08:00
|
|
|
struct sun4i_tcon *tcon;
|
2015-10-29 16:36:23 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static inline struct sun4i_crtc *drm_crtc_to_sun4i_crtc(struct drm_crtc *crtc)
|
|
|
|
{
|
|
|
|
return container_of(crtc, struct sun4i_crtc, crtc);
|
|
|
|
}
|
|
|
|
|
2017-03-09 18:05:28 +08:00
|
|
|
struct sun4i_crtc *sun4i_crtc_init(struct drm_device *drm,
|
2017-05-17 22:47:17 +08:00
|
|
|
struct sunxi_engine *engine,
|
2017-03-09 18:05:28 +08:00
|
|
|
struct sun4i_tcon *tcon);
|
2015-10-29 16:36:23 +08:00
|
|
|
|
|
|
|
#endif /* _SUN4I_CRTC_H_ */
|