rockchip_drm_drv.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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. #ifndef _ROCKCHIP_DRM_DRV_H
  17. #define _ROCKCHIP_DRM_DRV_H
  18. #include <drm/drm_fb_helper.h>
  19. #include <drm/drm_atomic_helper.h>
  20. #include <drm/drm_gem.h>
  21. #include <linux/module.h>
  22. #include <linux/component.h>
  23. #define ROCKCHIP_MAX_FB_BUFFER 3
  24. #define ROCKCHIP_MAX_CONNECTOR 2
  25. #define ROCKCHIP_MAX_CRTC 2
  26. struct drm_device;
  27. struct drm_connector;
  28. struct iommu_domain;
  29. struct rockchip_crtc_state {
  30. struct drm_crtc_state base;
  31. int output_type;
  32. int output_mode;
  33. };
  34. #define to_rockchip_crtc_state(s) \
  35. container_of(s, struct rockchip_crtc_state, base)
  36. /*
  37. * Rockchip drm private structure.
  38. *
  39. * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
  40. * @num_pipe: number of pipes for this device.
  41. */
  42. struct rockchip_drm_private {
  43. struct drm_fb_helper fbdev_helper;
  44. struct drm_gem_object *fbdev_bo;
  45. struct drm_atomic_state *state;
  46. struct iommu_domain *domain;
  47. /* protect drm_mm on multi-threads */
  48. struct mutex mm_lock;
  49. struct drm_mm mm;
  50. struct list_head psr_list;
  51. spinlock_t psr_list_lock;
  52. };
  53. int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
  54. struct device *dev);
  55. void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
  56. struct device *dev);
  57. int rockchip_drm_wait_line_flag(struct drm_crtc *crtc, unsigned int line_num,
  58. unsigned int mstimeout);
  59. extern struct platform_driver cdn_dp_driver;
  60. extern struct platform_driver dw_hdmi_rockchip_pltfm_driver;
  61. extern struct platform_driver dw_mipi_dsi_driver;
  62. extern struct platform_driver inno_hdmi_driver;
  63. extern struct platform_driver rockchip_dp_driver;
  64. extern struct platform_driver vop_platform_driver;
  65. #endif /* _ROCKCHIP_DRM_DRV_H_ */