blob: 39a983d13afbde73412d92685c4c02355b63f29b [file] [log] [blame]
Laurent Pinchart4bf8e192013-06-19 13:54:11 +02001/*
2 * rcar_du_crtc.h -- R-Car Display Unit CRTCs
3 *
4 * Copyright (C) 2013 Renesas Corporation
5 *
6 * Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 */
13
14#ifndef __RCAR_DU_CRTC_H__
15#define __RCAR_DU_CRTC_H__
16
17#include <linux/mutex.h>
Laurent Pinchartef67a902013-06-17 03:13:11 +020018#include <linux/platform_data/rcar-du.h>
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020019
20#include <drm/drmP.h>
21#include <drm/drm_crtc.h>
22
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020023struct rcar_du_group;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020024struct rcar_du_plane;
25
26struct rcar_du_crtc {
27 struct drm_crtc crtc;
28
Laurent Pinchartf66ee302013-06-14 14:15:01 +020029 struct clk *clock;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020030 unsigned int mmio_offset;
31 unsigned int index;
32 bool started;
33
34 struct drm_pending_vblank_event *event;
35 unsigned int outputs;
36 int dpms;
37
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020038 struct rcar_du_group *group;
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020039 struct rcar_du_plane *plane;
40};
41
Laurent Pinchartcb2025d2013-06-16 21:01:02 +020042int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int index);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020043void rcar_du_crtc_enable_vblank(struct rcar_du_crtc *rcrtc, bool enable);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020044void rcar_du_crtc_cancel_page_flip(struct rcar_du_crtc *rcrtc,
45 struct drm_file *file);
46void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc);
47void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc);
48
Laurent Pinchartef67a902013-06-17 03:13:11 +020049void rcar_du_crtc_route_output(struct drm_crtc *crtc,
50 enum rcar_du_output output);
Laurent Pinchart4bf8e192013-06-19 13:54:11 +020051void rcar_du_crtc_update_planes(struct drm_crtc *crtc);
52
53#endif /* __RCAR_DU_CRTC_H__ */