2013-06-19 13:54:11 +02:00
|
|
|
/*
|
|
|
|
* rcar_du_crtc.h -- R-Car Display Unit CRTCs
|
|
|
|
*
|
2014-02-06 18:13:52 +01:00
|
|
|
* Copyright (C) 2013-2014 Renesas Electronics Corporation
|
2013-06-19 13:54:11 +02:00
|
|
|
*
|
|
|
|
* Contact: Laurent Pinchart (laurent.pinchart@ideasonboard.com)
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __RCAR_DU_CRTC_H__
|
|
|
|
#define __RCAR_DU_CRTC_H__
|
|
|
|
|
|
|
|
#include <linux/mutex.h>
|
2015-02-18 12:21:56 +01:00
|
|
|
#include <linux/wait.h>
|
2013-06-19 13:54:11 +02:00
|
|
|
|
|
|
|
#include <drm/drmP.h>
|
|
|
|
#include <drm/drm_crtc.h>
|
|
|
|
|
2013-06-16 21:01:02 +02:00
|
|
|
struct rcar_du_group;
|
2015-09-07 16:14:58 +02:00
|
|
|
struct rcar_du_vsp;
|
2013-06-19 13:54:11 +02:00
|
|
|
|
2015-04-29 00:11:57 +02:00
|
|
|
/**
|
|
|
|
* struct rcar_du_crtc - the CRTC, representing a DU superposition processor
|
|
|
|
* @crtc: base DRM CRTC
|
|
|
|
* @clock: the CRTC functional clock
|
|
|
|
* @extclock: external pixel dot clock (optional)
|
|
|
|
* @mmio_offset: offset of the CRTC registers in the DU MMIO block
|
|
|
|
* @index: CRTC software and hardware index
|
|
|
|
* @started: whether the CRTC has been started and is running
|
|
|
|
* @event: event to post when the pending page flip completes
|
|
|
|
* @flip_wait: wait queue used to signal page flip completion
|
|
|
|
* @outputs: bitmask of the outputs (enum rcar_du_output) driven by this CRTC
|
|
|
|
* @group: CRTC group this CRTC belongs to
|
|
|
|
*/
|
2013-06-19 13:54:11 +02:00
|
|
|
struct rcar_du_crtc {
|
|
|
|
struct drm_crtc crtc;
|
|
|
|
|
2013-06-14 14:15:01 +02:00
|
|
|
struct clk *clock;
|
2014-12-08 23:24:49 +01:00
|
|
|
struct clk *extclock;
|
2013-06-19 13:54:11 +02:00
|
|
|
unsigned int mmio_offset;
|
|
|
|
unsigned int index;
|
|
|
|
bool started;
|
|
|
|
|
|
|
|
struct drm_pending_vblank_event *event;
|
2015-02-18 12:21:56 +01:00
|
|
|
wait_queue_head_t flip_wait;
|
|
|
|
|
2013-06-19 13:54:11 +02:00
|
|
|
unsigned int outputs;
|
|
|
|
|
2013-06-16 21:01:02 +02:00
|
|
|
struct rcar_du_group *group;
|
2015-09-07 16:14:58 +02:00
|
|
|
struct rcar_du_vsp *vsp;
|
2013-06-19 13:54:11 +02:00
|
|
|
};
|
|
|
|
|
2013-06-17 13:48:27 +02:00
|
|
|
#define to_rcar_crtc(c) container_of(c, struct rcar_du_crtc, crtc)
|
|
|
|
|
2014-09-17 01:07:52 +02:00
|
|
|
enum rcar_du_output {
|
|
|
|
RCAR_DU_OUTPUT_DPAD0,
|
|
|
|
RCAR_DU_OUTPUT_DPAD1,
|
|
|
|
RCAR_DU_OUTPUT_LVDS0,
|
|
|
|
RCAR_DU_OUTPUT_LVDS1,
|
|
|
|
RCAR_DU_OUTPUT_TCON,
|
|
|
|
RCAR_DU_OUTPUT_MAX,
|
|
|
|
};
|
|
|
|
|
2013-06-16 21:01:02 +02:00
|
|
|
int rcar_du_crtc_create(struct rcar_du_group *rgrp, unsigned int index);
|
2013-06-19 13:54:11 +02:00
|
|
|
void rcar_du_crtc_enable_vblank(struct rcar_du_crtc *rcrtc, bool enable);
|
|
|
|
void rcar_du_crtc_suspend(struct rcar_du_crtc *rcrtc);
|
|
|
|
void rcar_du_crtc_resume(struct rcar_du_crtc *rcrtc);
|
|
|
|
|
2013-06-17 03:13:11 +02:00
|
|
|
void rcar_du_crtc_route_output(struct drm_crtc *crtc,
|
|
|
|
enum rcar_du_output output);
|
2013-06-19 13:54:11 +02:00
|
|
|
|
|
|
|
#endif /* __RCAR_DU_CRTC_H__ */
|