blob: 7370177015c8729e2e144d5824b3de2ee8e1d919 [file] [log] [blame]
/*
* drivers/amlogic/drm/meson_crtc.h
*
* Copyright (C) 2017 Amlogic, Inc. All rights reserved.
*
* 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.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
* more details.
*
*/
#ifndef __MESON_CRTC_H
#define __MESON_CRTC_H
#include <linux/kernel.h>
#include <drm/drmP.h>
#include <drm/drm_plane.h>
#include <drm/drm_atomic.h>
#include <drm/drm_atomic_helper.h>
#include <linux/amlogic/media/vout/vout_notify.h>
#ifdef CONFIG_AMLOGIC_MEDIA_ENHANCEMENT
#include <linux/amlogic/media/amvecm/amvecm.h>
#endif
#include "osd.h"
#include "osd_drm.h"
#include "meson_vpu.h"
#include "meson_drv.h"
#include "meson_fb.h"
struct am_meson_crtc_state {
struct drm_crtc_state base;
};
struct am_meson_crtc {
struct drm_crtc base;
struct device *dev;
struct drm_device *drm_dev;
struct meson_drm *priv;
struct drm_pending_vblank_event *event;
unsigned int irq;
struct dentry *crtc_debugfs_dir;
struct meson_vpu_pipeline *pipeline;
int dump_enable;
int blank_enable;
int dump_counts;
int dump_index;
char osddump_path[64];
};
#define to_am_meson_crtc(x) container_of(x, \
struct am_meson_crtc, base)
#define to_am_meson_crtc_state(x) container_of(x, \
struct am_meson_crtc_state, base)
int am_meson_crtc_create(struct am_meson_crtc *amcrtc);
#endif