rockchip_drm_drv.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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. /*
  29. * Rockchip drm private crtc funcs.
  30. * @enable_vblank: enable crtc vblank irq.
  31. * @disable_vblank: disable crtc vblank irq.
  32. */
  33. struct rockchip_crtc_funcs {
  34. int (*enable_vblank)(struct drm_crtc *crtc);
  35. void (*disable_vblank)(struct drm_crtc *crtc);
  36. void (*wait_for_update)(struct drm_crtc *crtc);
  37. void (*cancel_pending_vblank)(struct drm_crtc *crtc, struct drm_file *file_priv);
  38. };
  39. struct rockchip_atomic_commit {
  40. struct work_struct work;
  41. struct drm_atomic_state *state;
  42. struct drm_device *dev;
  43. struct mutex lock;
  44. };
  45. /*
  46. * Rockchip drm private structure.
  47. *
  48. * @crtc: array of enabled CRTCs, used to map from "pipe" to drm_crtc.
  49. * @num_pipe: number of pipes for this device.
  50. */
  51. struct rockchip_drm_private {
  52. struct drm_fb_helper fbdev_helper;
  53. struct drm_gem_object *fbdev_bo;
  54. const struct rockchip_crtc_funcs *crtc_funcs[ROCKCHIP_MAX_CRTC];
  55. struct rockchip_atomic_commit commit;
  56. };
  57. void rockchip_drm_atomic_work(struct work_struct *work);
  58. int rockchip_register_crtc_funcs(struct drm_crtc *crtc,
  59. const struct rockchip_crtc_funcs *crtc_funcs);
  60. void rockchip_unregister_crtc_funcs(struct drm_crtc *crtc);
  61. int rockchip_drm_crtc_mode_config(struct drm_crtc *crtc, int connector_type,
  62. int out_mode);
  63. int rockchip_drm_dma_attach_device(struct drm_device *drm_dev,
  64. struct device *dev);
  65. void rockchip_drm_dma_detach_device(struct drm_device *drm_dev,
  66. struct device *dev);
  67. #endif /* _ROCKCHIP_DRM_DRV_H_ */