mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-21 22:37:01 +07:00
1802d0beec
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation 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 extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 655 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Richard Fontana <rfontana@redhat.com> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190527070034.575739538@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
41 lines
862 B
C
41 lines
862 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2015 MediaTek Inc.
|
|
* Author: CK Hu <ck.hu@mediatek.com>
|
|
*/
|
|
|
|
#ifndef _MTK_DRM_PLANE_H_
|
|
#define _MTK_DRM_PLANE_H_
|
|
|
|
#include <drm/drm_crtc.h>
|
|
#include <linux/types.h>
|
|
|
|
struct mtk_plane_pending_state {
|
|
bool config;
|
|
bool enable;
|
|
dma_addr_t addr;
|
|
unsigned int pitch;
|
|
unsigned int format;
|
|
unsigned int x;
|
|
unsigned int y;
|
|
unsigned int width;
|
|
unsigned int height;
|
|
bool dirty;
|
|
};
|
|
|
|
struct mtk_plane_state {
|
|
struct drm_plane_state base;
|
|
struct mtk_plane_pending_state pending;
|
|
};
|
|
|
|
static inline struct mtk_plane_state *
|
|
to_mtk_plane_state(struct drm_plane_state *state)
|
|
{
|
|
return container_of(state, struct mtk_plane_state, base);
|
|
}
|
|
|
|
int mtk_plane_init(struct drm_device *dev, struct drm_plane *plane,
|
|
unsigned long possible_crtcs, enum drm_plane_type type);
|
|
|
|
#endif
|