Lines Matching refs:crtc_id
318 void DRMPlaneManager::UnsetUnusedResources(uint32_t crtc_id, bool is_commit, drmModeAtomicReq *req)… in UnsetUnusedResources() argument
327 if (assigned_crtc == crtc_id && requested_crtc == 0) { in UnsetUnusedResources()
329 } else if (requested_crtc == crtc_id) { in UnsetUnusedResources()
336 void DRMPlaneManager::RetainPlanes(uint32_t crtc_id) { in RetainPlanes() argument
340 if (assigned_crtc == crtc_id) { in RetainPlanes()
342 plane.second->SetRequestedCrtc(crtc_id); in RetainPlanes()
344 DRM_LOGD("Plane %d: Retaining on CRTC %d", plane_id, crtc_id); in RetainPlanes()
349 void DRMPlaneManager::PostValidate(uint32_t crtc_id) { in PostValidate() argument
352 plane.second->PostValidate(crtc_id); in PostValidate()
356 void DRMPlaneManager::PostCommit(uint32_t crtc_id, bool success) { in PostCommit() argument
358 DRM_LOGD("crtc %d", crtc_id); in PostCommit()
360 plane.second->PostCommit(crtc_id, success); in PostCommit()
715 void DRMPlane::PostValidate(uint32_t crtc_id) { in PostValidate() argument
717 if (requested_crtc_id_ == crtc_id) { in PostValidate()
722 void DRMPlane::PostCommit(uint32_t crtc_id, bool success) { in PostCommit() argument
723 DRM_LOGD("crtc %d", crtc_id); in PostCommit()
726 PostValidate(crtc_id); in PostCommit()
740 if (requested_crtc == crtc_id && !is_lut_configured_) { in PostCommit()
751 if (requested_crtc == crtc_id || assigned_crtc == crtc_id) { in PostCommit()
840 uint32_t crtc_id = va_arg(args, uint32_t); in Perform() local
841 AddProperty(DRMProperty::CRTC_ID, crtc_id); in Perform()
842 SetRequestedCrtc(crtc_id); in Perform()
843 DRM_LOGV("Plane %d: Setting crtc %d", obj_id, crtc_id); in Perform()
985 drm_plane_->plane_id, drm_plane_->crtc_id, drm_plane_->fb_id, drm_plane_->crtc_x, in Dump()