nouveau_display.h 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __NOUVEAU_DISPLAY_H__
  3. #define __NOUVEAU_DISPLAY_H__
  4. #include "nouveau_drv.h"
  5. #include <nvif/disp.h>
  6. struct nouveau_framebuffer {
  7. struct drm_framebuffer base;
  8. struct nouveau_bo *nvbo;
  9. struct nouveau_vma *vma;
  10. u32 r_handle;
  11. u32 r_format;
  12. u32 r_pitch;
  13. struct nvif_object h_base[4];
  14. struct nvif_object h_core;
  15. };
  16. static inline struct nouveau_framebuffer *
  17. nouveau_framebuffer(struct drm_framebuffer *fb)
  18. {
  19. return container_of(fb, struct nouveau_framebuffer, base);
  20. }
  21. int nouveau_framebuffer_new(struct drm_device *,
  22. const struct drm_mode_fb_cmd2 *,
  23. struct nouveau_bo *, struct nouveau_framebuffer **);
  24. struct nouveau_page_flip_state {
  25. struct list_head head;
  26. struct drm_pending_vblank_event *event;
  27. struct drm_crtc *crtc;
  28. int bpp, pitch;
  29. u64 offset;
  30. };
  31. struct nouveau_display {
  32. void *priv;
  33. void (*dtor)(struct drm_device *);
  34. int (*init)(struct drm_device *);
  35. void (*fini)(struct drm_device *);
  36. struct nvif_disp disp;
  37. struct drm_property *dithering_mode;
  38. struct drm_property *dithering_depth;
  39. struct drm_property *underscan_property;
  40. struct drm_property *underscan_hborder_property;
  41. struct drm_property *underscan_vborder_property;
  42. /* not really hue and saturation: */
  43. struct drm_property *vibrant_hue_property;
  44. struct drm_property *color_vibrance_property;
  45. struct drm_atomic_state *suspend;
  46. };
  47. static inline struct nouveau_display *
  48. nouveau_display(struct drm_device *dev)
  49. {
  50. return nouveau_drm(dev)->display;
  51. }
  52. int nouveau_display_create(struct drm_device *dev);
  53. void nouveau_display_destroy(struct drm_device *dev);
  54. int nouveau_display_init(struct drm_device *dev);
  55. void nouveau_display_fini(struct drm_device *dev, bool suspend, bool runtime);
  56. int nouveau_display_suspend(struct drm_device *dev, bool runtime);
  57. void nouveau_display_resume(struct drm_device *dev, bool runtime);
  58. int nouveau_display_vblank_enable(struct drm_device *, unsigned int);
  59. void nouveau_display_vblank_disable(struct drm_device *, unsigned int);
  60. bool nouveau_display_scanoutpos(struct drm_device *, unsigned int,
  61. bool, int *, int *, ktime_t *,
  62. ktime_t *, const struct drm_display_mode *);
  63. int nouveau_crtc_page_flip(struct drm_crtc *crtc, struct drm_framebuffer *fb,
  64. struct drm_pending_vblank_event *event,
  65. uint32_t page_flip_flags,
  66. struct drm_modeset_acquire_ctx *ctx);
  67. int nouveau_finish_page_flip(struct nouveau_channel *,
  68. struct nouveau_page_flip_state *);
  69. int nouveau_display_dumb_create(struct drm_file *, struct drm_device *,
  70. struct drm_mode_create_dumb *args);
  71. int nouveau_display_dumb_map_offset(struct drm_file *, struct drm_device *,
  72. u32 handle, u64 *offset);
  73. void nouveau_hdmi_mode_set(struct drm_encoder *, struct drm_display_mode *);
  74. #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
  75. extern int nouveau_backlight_init(struct drm_device *);
  76. extern void nouveau_backlight_exit(struct drm_device *);
  77. extern void nouveau_backlight_ctor(void);
  78. extern void nouveau_backlight_dtor(void);
  79. #else
  80. static inline int
  81. nouveau_backlight_init(struct drm_device *dev)
  82. {
  83. return 0;
  84. }
  85. static inline void
  86. nouveau_backlight_exit(struct drm_device *dev) {
  87. }
  88. static inline void
  89. nouveau_backlight_ctor(void) {
  90. }
  91. static inline void
  92. nouveau_backlight_dtor(void) {
  93. }
  94. #endif
  95. struct drm_framebuffer *
  96. nouveau_user_framebuffer_create(struct drm_device *, struct drm_file *,
  97. const struct drm_mode_fb_cmd2 *);
  98. #endif