2017-12-06 19:29:47 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
2014-07-31 00:48:35 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) STMicroelectronics SA 2014
|
|
|
|
* Authors: Benjamin Gaignard <benjamin.gaignard@st.com>
|
|
|
|
* Fabien Dessenne <fabien.dessenne@st.com>
|
|
|
|
* for STMicroelectronics.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STI_GDP_H_
|
|
|
|
#define _STI_GDP_H_
|
|
|
|
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
2019-06-05 21:48:35 +08:00
|
|
|
#include <drm/drm_plane.h>
|
|
|
|
|
|
|
|
struct drm_device;
|
|
|
|
struct device;
|
|
|
|
|
2015-08-03 20:22:16 +08:00
|
|
|
struct drm_plane *sti_gdp_create(struct drm_device *drm_dev,
|
|
|
|
struct device *dev, int desc,
|
|
|
|
void __iomem *baseaddr,
|
|
|
|
unsigned int possible_crtcs,
|
|
|
|
enum drm_plane_type type);
|
2014-07-31 00:48:35 +08:00
|
|
|
#endif
|