Mark Yao | 2048e32 | 2014-08-22 18:36:26 +0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) Fuzhou Rockchip Electronics Co.Ltd |
| 3 | * Author:Mark Yao <mark.yao@rock-chips.com> |
| 4 | * |
| 5 | * based on exynos_drm_drv.h |
| 6 | * |
| 7 | * This software is licensed under the terms of the GNU General Public |
| 8 | * License version 2, as published by the Free Software Foundation, and |
| 9 | * may be copied, distributed, and modified under those terms. |
| 10 | * |
| 11 | * This program is distributed in the hope that it will be useful, |
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 14 | * GNU General Public License for more details. |
| 15 | */ |
| 16 | |
| 17 | #ifndef _ROCKCHIP_DRM_DRV_H |
| 18 | #define _ROCKCHIP_DRM_DRV_H |
| 19 | |
| 20 | #include <drm/drm_fb_helper.h> |
Mark Yao | 63ebb9f | 2015-11-30 18:22:42 +0800 | [diff] [blame] | 21 | #include <drm/drm_atomic_helper.h> |
Mark Yao | 2048e32 | 2014-08-22 18:36:26 +0800 | [diff] [blame] | 22 | #include <drm/drm_gem.h> |
| 23 | |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/component.h> |
| 26 | |
| 27 | #define ROCKCHIP_MAX_FB_BUFFER 3 |
| 28 | #define ROCKCHIP_MAX_CONNECTOR 2 |
| 29 | #define ROCKCHIP_MAX_CRTC 2 |
| 30 | |
| 31 | struct drm_device; |
| 32 | struct drm_connector; |
| 33 | |
| 34 | /* |
| 35 | * Rockchip drm private crtc funcs. |
| 36 | * @enable_vblank: enable crtc vblank irq. |
| 37 | * @disable_vblank: disable crtc vblank irq. |
| 38 | */ |
| 39 | struct rockchip_crtc_funcs { |
| 40 | int (*enable_vblank)(struct drm_crtc *crtc); |
| 41 | void (*disable_vblank)(struct drm_crtc *crtc); |
| 42 | }; |
| 43 | |
Mark Yao | 4e257d9 | 2016-04-20 10:41:42 +0800 | [diff] [blame] | 44 | struct rockchip_crtc_state { |
| 45 | struct drm_crtc_state base; |
| 46 | int output_type; |
| 47 | int output_mode; |
| 48 | }; |
| 49 | #define to_rockchip_crtc_state(s) \ |
| 50 | container_of(s, struct rockchip_crtc_state, base) |
| 51 | |
Mark Yao | 2048e32 | 2014-08-22 18:36:26 +0800 | [diff] [blame] | 52 | /* |
| 53 | * Rockchip drm private structure. |
| 54 | * |
| 55 | * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc. |
| 56 | * @num_pipe: number of pipes for this device. |
| 57 | */ |
| 58 | struct rockchip_drm_private { |
| 59 | struct drm_fb_helper fbdev_helper; |
| 60 | struct drm_gem_object *fbdev_bo; |
| 61 | const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC]; |
Tomeu Vizoso | 5a58738 | 2016-06-06 16:53:32 +0200 | [diff] [blame] | 62 | struct drm_atomic_state *state; |
Yakir Yang | 5182c1a | 2016-07-24 14:57:44 +0800 | [diff] [blame] | 63 | |
| 64 | struct list_head psr_list; |
Sean Paul | 18d8d4d | 2016-08-16 16:11:28 -0700 | [diff] [blame] | 65 | spinlock_t psr_list_lock; |
Mark Yao | 2048e32 | 2014-08-22 18:36:26 +0800 | [diff] [blame] | 66 | }; |
| 67 | |
Mark Yao | b5f7b75 | 2015-11-23 15:21:08 +0800 | [diff] [blame] | 68 | int rockchip_register_crtc_funcs(struct drm_crtc *crtc, |
| 69 | const struct rockchip_crtc_funcs *crtc_funcs); |
| 70 | void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc); |
Mark Yao | 2048e32 | 2014-08-22 18:36:26 +0800 | [diff] [blame] | 71 | int rockchip_drm_dma_attach_device(struct drm_device *drm_dev, |
| 72 | struct device *dev); |
| 73 | void rockchip_drm_dma_detach_device(struct drm_device *drm_dev, |
| 74 | struct device *dev); |
Yakir Yang | 69c34e4 | 2016-07-24 14:57:40 +0800 | [diff] [blame] | 75 | int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num, |
| 76 | unsigned int mstimeout); |
| 77 | |
Mark Yao | 2048e32 | 2014-08-22 18:36:26 +0800 | [diff] [blame] | 78 | #endif /* _ROCKCHIP_DRM_DRV_H_ */ |