sti_drv.h 1012 字节
Newer Older
1
/* SPDX-License-Identifier: GPL-2.0 */
2 3 4 5 6
/*
 * Copyright (C) STMicroelectronics SA 2014
 * Author: Benjamin Gaignard <benjamin.gaignard@st.com> for STMicroelectronics.
 */

7 8
#ifndef _STI_DRV_H_
#define _STI_DRV_H_
9 10 11 12 13 14 15 16 17 18 19 20 21 22

#include <drm/drmP.h>

struct sti_compositor;
struct sti_tvout;

/**
 * STI drm private structure
 * This structure is stored as private in the drm_device
 *
 * @compo:                 compositor
 * @plane_zorder_property: z-order property for CRTC planes
 * @drm_dev:               drm device
 */
23
struct sti_private {
24 25 26
	struct sti_compositor *compo;
	struct drm_property *plane_zorder_property;
	struct drm_device *drm_dev;
27
	struct drm_fbdev_cma *fbdev;
28 29
};

T
Thierry Reding 已提交
30 31 32 33 34 35 36 37
extern struct platform_driver sti_tvout_driver;
extern struct platform_driver sti_hqvdp_driver;
extern struct platform_driver sti_hdmi_driver;
extern struct platform_driver sti_hda_driver;
extern struct platform_driver sti_dvo_driver;
extern struct platform_driver sti_vtg_driver;
extern struct platform_driver sti_compositor_driver;

38
#endif