• Home
  • Raw
  • Download

Lines Matching refs:drm_plane

183 static int sti_cursor_atomic_check(struct drm_plane *drm_plane,  in sti_cursor_atomic_check()  argument
187 drm_plane); in sti_cursor_atomic_check()
188 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_cursor_atomic_check()
252 drm_plane->base.id, sti_plane_to_str(plane)); in sti_cursor_atomic_check()
258 static void sti_cursor_atomic_update(struct drm_plane *drm_plane, in sti_cursor_atomic_update() argument
262 drm_plane); in sti_cursor_atomic_update()
263 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_cursor_atomic_update()
313 static void sti_cursor_atomic_disable(struct drm_plane *drm_plane, in sti_cursor_atomic_disable() argument
317 drm_plane); in sti_cursor_atomic_disable()
318 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_cursor_atomic_disable()
322 drm_plane->base.id); in sti_cursor_atomic_disable()
329 drm_plane->base.id, sti_plane_to_str(plane)); in sti_cursor_atomic_disable()
340 static int sti_cursor_late_register(struct drm_plane *drm_plane) in sti_cursor_late_register() argument
342 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_cursor_late_register()
345 cursor_debugfs_init(cursor, drm_plane->dev->primary); in sti_cursor_late_register()
360 struct drm_plane *sti_cursor_create(struct drm_device *drm_dev, in sti_cursor_create()
392 res = drm_universal_plane_init(drm_dev, &cursor->plane.drm_plane, in sti_cursor_create()
403 drm_plane_helper_add(&cursor->plane.drm_plane, in sti_cursor_create()
408 return &cursor->plane.drm_plane; in sti_cursor_create()