1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd
6 * based on exynos_drm_drv.h
9 #ifndef _ROCKCHIP_DRM_DRV_H
10 #define _ROCKCHIP_DRM_DRV_H
12 #include <drm/drm_atomic_helper.h>
13 #include <drm/drm_gem.h>
15 #include <linux/i2c.h>
16 #include <linux/module.h>
17 #include <linux/component.h>
19 #define ROCKCHIP_MAX_FB_BUFFER 3
20 #define ROCKCHIP_MAX_CONNECTOR 2
21 #define ROCKCHIP_MAX_CRTC 4
27 struct rockchip_crtc_state {
28 struct drm_crtc_state base;
38 #define to_rockchip_crtc_state(s) \
39 container_of(s, struct rockchip_crtc_state, base)
42 * Rockchip drm private structure.
44 * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
45 * @num_pipe: number of pipes for this device.
46 * @mm_lock: protect drm_mm on multi-threads.
48 struct rockchip_drm_private {
49 struct iommu_domain *domain;
50 struct device *iommu_dev;
55 struct rockchip_encoder {
57 struct drm_encoder encoder;
60 int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
62 void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
64 void rockchip_drm_dma_init_device(struct drm_device *drm_dev,
66 int rockchip_drm_wait_vact_end(struct drm_crtc *crtc, unsigned int mstimeout);
67 int rockchip_drm_encoder_set_crtc_endpoint_id(struct rockchip_encoder *rencoder,
68 struct device_node *np, int port, int reg);
69 int rockchip_drm_endpoint_is_subdriver(struct device_node *ep);
70 extern struct platform_driver cdn_dp_driver;
71 extern struct platform_driver dw_hdmi_rockchip_pltfm_driver;
72 extern struct platform_driver dw_mipi_dsi_rockchip_driver;
73 extern struct platform_driver inno_hdmi_driver;
74 extern struct platform_driver rockchip_dp_driver;
75 extern struct platform_driver rockchip_lvds_driver;
76 extern struct platform_driver vop_platform_driver;
77 extern struct platform_driver rk3066_hdmi_driver;
78 extern struct platform_driver vop2_platform_driver;
80 static inline struct rockchip_encoder *to_rockchip_encoder(struct drm_encoder *encoder)
82 return container_of(encoder, struct rockchip_encoder, encoder);
85 #endif /* _ROCKCHIP_DRM_DRV_H_ */