rockchip_drm_drv.h 2.3 KB
Newer Older
M
Mark Yao 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
/*
 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
 * Author:Mark Yao <mark.yao@rock-chips.com>
 *
 * based on exynos_drm_drv.h
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * 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 _ROCKCHIP_DRM_DRV_H
#define _ROCKCHIP_DRM_DRV_H

#include <drm/drm_fb_helper.h>
21
#include <drm/drm_atomic_helper.h>
M
Mark Yao 已提交
22 23 24 25 26 27 28 29 30 31 32
#include <drm/drm_gem.h>

#include <linux/module.h>
#include <linux/component.h>

#define ROCKCHIP_MAX_FB_BUFFER	3
#define ROCKCHIP_MAX_CONNECTOR	2
#define ROCKCHIP_MAX_CRTC	2

struct drm_device;
struct drm_connector;
33
struct iommu_domain;
M
Mark Yao 已提交
34

35 36 37 38
struct rockchip_crtc_state {
	struct drm_crtc_state base;
	int output_type;
	int output_mode;
39
	int output_bpc;
40
	int output_flags;
41 42 43 44
};
#define to_rockchip_crtc_state(s) \
		container_of(s, struct rockchip_crtc_state, base)

M
Mark Yao 已提交
45 46 47 48 49
/*
 * Rockchip drm private structure.
 *
 * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
 * @num_pipe: number of pipes for this device.
50
 * @mm_lock: protect drm_mm on multi-threads.
M
Mark Yao 已提交
51 52 53 54
 */
struct rockchip_drm_private {
	struct drm_fb_helper fbdev_helper;
	struct drm_gem_object *fbdev_bo;
55 56 57
	struct iommu_domain *domain;
	struct mutex mm_lock;
	struct drm_mm mm;
58
	struct list_head psr_list;
59
	struct mutex psr_list_lock;
M
Mark Yao 已提交
60 61 62 63 64 65
};

int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
				   struct device *dev);
void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
				    struct device *dev);
66
int rockchip_drm_wait_vact_end(struct drm_crtc *crtc, unsigned int mstimeout);
67

68
int rockchip_drm_endpoint_is_subdriver(struct device_node *ep);
69 70
extern struct platform_driver cdn_dp_driver;
extern struct platform_driver dw_hdmi_rockchip_pltfm_driver;
71
extern struct platform_driver dw_mipi_dsi_rockchip_driver;
72 73
extern struct platform_driver inno_hdmi_driver;
extern struct platform_driver rockchip_dp_driver;
74
extern struct platform_driver rockchip_lvds_driver;
75
extern struct platform_driver vop_platform_driver;
76
extern struct platform_driver rk3066_hdmi_driver;
M
Mark Yao 已提交
77
#endif /* _ROCKCHIP_DRM_DRV_H_ */