drm_fb_cma_helper.h 418 B

123456789101112131415161718
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __DRM_FB_CMA_HELPER_H__
  3. #define __DRM_FB_CMA_HELPER_H__
  4. #include <linux/types.h>
  5. struct drm_framebuffer;
  6. struct drm_plane_state;
  7. struct drm_gem_cma_object *drm_fb_cma_get_gem_obj(struct drm_framebuffer *fb,
  8. unsigned int plane);
  9. dma_addr_t drm_fb_cma_get_gem_addr(struct drm_framebuffer *fb,
  10. struct drm_plane_state *state,
  11. unsigned int plane);
  12. #endif