• Home
  • Raw
  • Download

Lines Matching refs:drm_plane

1019 static int sti_hqvdp_atomic_check(struct drm_plane *drm_plane,  in sti_hqvdp_atomic_check()  argument
1023 drm_plane); in sti_hqvdp_atomic_check()
1024 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_hqvdp_atomic_check()
1102 drm_plane->base.id, sti_plane_to_str(plane)); in sti_hqvdp_atomic_check()
1111 static void sti_hqvdp_atomic_update(struct drm_plane *drm_plane, in sti_hqvdp_atomic_update() argument
1115 drm_plane); in sti_hqvdp_atomic_update()
1117 drm_plane); in sti_hqvdp_atomic_update()
1118 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_hqvdp_atomic_update()
1245 static void sti_hqvdp_atomic_disable(struct drm_plane *drm_plane, in sti_hqvdp_atomic_disable() argument
1249 drm_plane); in sti_hqvdp_atomic_disable()
1250 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_hqvdp_atomic_disable()
1254 drm_plane->base.id); in sti_hqvdp_atomic_disable()
1261 drm_plane->base.id, sti_plane_to_str(plane)); in sti_hqvdp_atomic_disable()
1272 static int sti_hqvdp_late_register(struct drm_plane *drm_plane) in sti_hqvdp_late_register() argument
1274 struct sti_plane *plane = to_sti_plane(drm_plane); in sti_hqvdp_late_register()
1277 hqvdp_debugfs_init(hqvdp, drm_plane->dev->primary); in sti_hqvdp_late_register()
1292 static struct drm_plane *sti_hqvdp_create(struct drm_device *drm_dev, in sti_hqvdp_create()
1303 res = drm_universal_plane_init(drm_dev, &hqvdp->plane.drm_plane, 1, in sti_hqvdp_create()
1313 drm_plane_helper_add(&hqvdp->plane.drm_plane, &sti_hqvdp_helpers_funcs); in sti_hqvdp_create()
1317 return &hqvdp->plane.drm_plane; in sti_hqvdp_create()
1324 struct drm_plane *plane; in sti_hqvdp_bind()