1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036 |
- /*
- * Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
- * Copyright (c) 2016-2021, The Linux Foundation. All rights reserved.
- * Copyright (C) 2014 Red Hat
- * Author: Rob Clark <[email protected]>
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms of the GNU General Public License version 2 as published by
- * the Free Software Foundation.
- *
- * This program is distributed in the hope that it will be useful, but WITHOUT
- * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
- * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
- * more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * this program. If not, see <http://www.gnu.org/licenses/>.
- */
- #include <drm/drm_panel.h>
- #include <drm/drm_vblank.h>
- #include <linux/version.h>
- #include "msm_drv.h"
- #include "msm_gem.h"
- #include "msm_kms.h"
- #include "sde_trace.h"
- #include <drm/drm_atomic_uapi.h>
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 0))
- #include <linux/dma-fence-chain.h>
- #endif
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- #include "ss_dsi_panel_common.h"
- #endif
- #define MULTIPLE_CONN_DETECTED(x) (x > 1)
- struct msm_commit {
- struct drm_device *dev;
- struct drm_atomic_state *state;
- uint32_t crtc_mask;
- uint32_t plane_mask;
- bool nonblock;
- struct kthread_work commit_work;
- };
- static struct drm_connector_state *_msm_get_conn_state(struct drm_crtc_state *crtc_state)
- {
- struct drm_connector *conn;
- struct drm_connector_state *conn_state = NULL;
- struct drm_device *dev;
- struct drm_connector_list_iter conn_iter;
- if (!crtc_state || !crtc_state->crtc)
- return NULL;
- dev = crtc_state->crtc->dev;
- drm_connector_list_iter_begin(dev, &conn_iter);
- drm_for_each_connector_iter(conn, &conn_iter) {
- if (drm_connector_mask(conn) & crtc_state->connector_mask) {
- if (!(conn_state && conn->connector_type ==
- DRM_MODE_CONNECTOR_VIRTUAL))
- conn_state = conn->state;
- }
- }
- drm_connector_list_iter_end(&conn_iter);
- return conn_state;
- }
- static inline bool _msm_seamless_for_crtc(struct drm_atomic_state *state,
- struct drm_crtc_state *crtc_state, bool enable)
- {
- struct drm_connector *connector = NULL;
- struct drm_connector_state *conn_state = NULL;
- struct msm_display_mode *msm_mode;
- struct msm_drm_private *priv = state->dev->dev_private;
- int i = 0;
- int conn_cnt = 0;
- if (!priv || !priv->kms || !priv->kms->funcs->get_msm_mode)
- return false;
- msm_mode = priv->kms->funcs->get_msm_mode(_msm_get_conn_state(crtc_state));
- if (!msm_mode)
- return false;
- if (msm_is_mode_seamless(msm_mode) ||
- msm_is_mode_seamless_vrr(msm_mode) ||
- msm_is_mode_seamless_poms(msm_mode) ||
- msm_is_mode_seamless_dyn_clk(msm_mode))
- return true;
- if (msm_is_mode_seamless_dms(msm_mode) && !enable)
- return true;
- if (!crtc_state->mode_changed && crtc_state->connectors_changed &&
- crtc_state->active) {
- for_each_old_connector_in_state(state, connector,
- conn_state, i) {
- if ((conn_state->crtc == crtc_state->crtc) ||
- (connector->state->crtc ==
- crtc_state->crtc))
- conn_cnt++;
- if (MULTIPLE_CONN_DETECTED(conn_cnt))
- return true;
- }
- }
- return false;
- }
- static inline bool _msm_seamless_for_conn(struct drm_connector *connector,
- struct drm_connector_state *old_conn_state, bool enable)
- {
- struct msm_display_mode *msm_mode;
- struct msm_drm_private *priv = connector->dev->dev_private;
- if (!old_conn_state || !old_conn_state->crtc)
- return false;
- if (!priv || !priv->kms || !priv->kms->funcs->get_msm_mode)
- return false;
- msm_mode = priv->kms->funcs->get_msm_mode(
- _msm_get_conn_state(old_conn_state->crtc->state));
- if (!msm_mode)
- return false;
- if (!old_conn_state->crtc->state->mode_changed &&
- !old_conn_state->crtc->state->active_changed &&
- old_conn_state->crtc->state->connectors_changed) {
- if (old_conn_state->crtc == connector->state->crtc) {
- if (enable && msm_is_private_mode_changed(
- _msm_get_conn_state(old_conn_state->crtc->state)))
- return false;
- return true;
- }
- }
- if (enable)
- return false;
- if (!connector->state->crtc &&
- old_conn_state->crtc->state->connectors_changed)
- return false;
- if (msm_is_mode_seamless(msm_mode) ||
- msm_is_mode_seamless_vrr(msm_mode) ||
- msm_is_mode_seamless_dyn_clk(msm_mode) ||
- msm_is_mode_seamless_dms(msm_mode))
- return true;
- return false;
- }
- /* clear specified crtcs (no longer pending update) */
- static void commit_destroy(struct msm_commit *c)
- {
- struct msm_drm_private *priv = c->dev->dev_private;
- uint32_t crtc_mask = c->crtc_mask;
- uint32_t plane_mask = c->plane_mask;
- /* End_atomic */
- spin_lock(&priv->pending_crtcs_event.lock);
- DBG("end: %08x", crtc_mask);
- priv->pending_crtcs &= ~crtc_mask;
- priv->pending_planes &= ~plane_mask;
- wake_up_all_locked(&priv->pending_crtcs_event);
- spin_unlock(&priv->pending_crtcs_event.lock);
- if (c->nonblock)
- kfree(c);
- }
- static void msm_atomic_wait_for_commit_done(
- struct drm_device *dev,
- struct drm_atomic_state *old_state)
- {
- struct drm_crtc *crtc;
- struct drm_crtc_state *new_crtc_state;
- struct msm_drm_private *priv = old_state->dev->dev_private;
- struct msm_kms *kms = priv->kms;
- int i;
- for_each_new_crtc_in_state(old_state, crtc, new_crtc_state, i) {
- if (!new_crtc_state->active)
- continue;
- kms->funcs->wait_for_crtc_commit_done(kms, crtc);
- }
- }
- static void
- msm_disable_outputs(struct drm_device *dev, struct drm_atomic_state *old_state)
- {
- struct drm_connector *connector;
- struct drm_connector_state *old_conn_state;
- struct drm_crtc *crtc;
- struct drm_crtc_state *old_crtc_state;
- int i;
- SDE_ATRACE_BEGIN("msm_disable");
- for_each_old_connector_in_state(old_state, connector,
- old_conn_state, i) {
- const struct drm_encoder_helper_funcs *funcs;
- struct drm_encoder *encoder;
- struct drm_bridge *bridge;
- /*
- * Shut down everything that's in the changeset and currently
- * still on. So need to check the old, saved state.
- */
- if (!old_conn_state->crtc)
- continue;
- old_crtc_state = drm_atomic_get_old_crtc_state(old_state,
- old_conn_state->crtc);
- if (!old_crtc_state->active ||
- !msm_atomic_needs_modeset(old_conn_state->crtc->state,
- _msm_get_conn_state(old_conn_state->crtc->state)))
- continue;
- encoder = old_conn_state->best_encoder;
- /* We shouldn't get this far if we didn't previously have
- * an encoder.. but WARN_ON() rather than explode.
- */
- if (WARN_ON(!encoder))
- continue;
- if (_msm_seamless_for_conn(connector, old_conn_state, false))
- continue;
- funcs = encoder->helper_private;
- DRM_DEBUG_ATOMIC("disabling [ENCODER:%d:%s]\n",
- encoder->base.id, encoder->name);
- /*
- * Each encoder has at most one connector (since we always steal
- * it away), so we won't call disable hooks twice.
- */
- bridge = drm_bridge_chain_get_first_bridge(encoder);
- drm_bridge_chain_disable(bridge);
- /* Right function depends upon target state. */
- if (connector->state->crtc && funcs->prepare)
- funcs->prepare(encoder);
- else if (funcs->disable)
- funcs->disable(encoder);
- else
- funcs->dpms(encoder, DRM_MODE_DPMS_OFF);
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- {
- /*
- notify registered clients about suspend event
- This noti is triggered before panel power off & DSI_CMD_SET_OFF.
- */
- int blank = FB_BLANK_POWERDOWN;
- if (encoder->encoder_type == DRM_MODE_ENCODER_DSI &&
- (connector->state->crtc &&
- connector->state->crtc->state->active_changed))
- __msm_drm_notifier_call_chain(FB_EVENT_BLANK, &blank);
- else
- pr_debug("%s %d\n", __func__, encoder->encoder_type);
- }
- #endif
- drm_bridge_chain_post_disable(bridge);
- }
- for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) {
- const struct drm_crtc_helper_funcs *funcs;
- /* Shut down everything that needs a full modeset. */
- if (!msm_atomic_needs_modeset(crtc->state,
- _msm_get_conn_state(crtc->state)))
- continue;
- if (!old_crtc_state->active)
- continue;
- if (!crtc->state->active_changed &&
- _msm_seamless_for_crtc(old_state, crtc->state, false))
- continue;
- funcs = crtc->helper_private;
- DRM_DEBUG_ATOMIC("disabling [CRTC:%d]\n",
- crtc->base.id);
- /* Right function depends upon target state. */
- if (crtc->state->enable && funcs->prepare)
- funcs->prepare(crtc);
- else if (funcs->disable)
- funcs->disable(crtc);
- else
- funcs->dpms(crtc, DRM_MODE_DPMS_OFF);
- }
- SDE_ATRACE_END("msm_disable");
- }
- static void
- msm_crtc_set_mode(struct drm_device *dev, struct drm_atomic_state *old_state)
- {
- struct drm_crtc *crtc;
- struct drm_crtc_state *old_crtc_state;
- struct drm_connector *connector;
- struct drm_connector_state *old_conn_state;
- int i;
- for_each_old_crtc_in_state(old_state, crtc, old_crtc_state, i) {
- const struct drm_crtc_helper_funcs *funcs;
- if (!crtc->state->mode_changed)
- continue;
- funcs = crtc->helper_private;
- if (crtc->state->enable && funcs->mode_set_nofb) {
- DRM_DEBUG_ATOMIC("modeset on [CRTC:%d]\n",
- crtc->base.id);
- funcs->mode_set_nofb(crtc);
- }
- }
- for_each_old_connector_in_state(old_state, connector,
- old_conn_state, i) {
- const struct drm_encoder_helper_funcs *funcs;
- struct drm_crtc_state *new_crtc_state;
- struct drm_encoder *encoder;
- struct drm_display_mode *mode, *adjusted_mode;
- struct drm_bridge *bridge;
- if (!connector->state->best_encoder)
- continue;
- encoder = connector->state->best_encoder;
- funcs = encoder->helper_private;
- new_crtc_state = connector->state->crtc->state;
- mode = &new_crtc_state->mode;
- adjusted_mode = &new_crtc_state->adjusted_mode;
- if (!new_crtc_state->active)
- continue;
- if (!new_crtc_state->mode_changed &&
- new_crtc_state->connectors_changed) {
- if (_msm_seamless_for_conn(connector,
- old_conn_state, true))
- continue;
- } else if (!new_crtc_state->mode_changed) {
- if (!msm_is_private_mode_changed(
- _msm_get_conn_state(old_conn_state->crtc->state)))
- continue;
- }
- DRM_DEBUG_ATOMIC("modeset on [ENCODER:%d:%s]\n",
- encoder->base.id, encoder->name);
- SDE_ATRACE_BEGIN("msm_set_mode");
- /*
- * Each encoder has at most one connector (since we always steal
- * it away), so we won't call mode_set hooks twice.
- */
- if (funcs->mode_set)
- funcs->mode_set(encoder, mode, adjusted_mode);
- bridge = drm_bridge_chain_get_first_bridge(encoder);
- drm_bridge_chain_mode_set(bridge, mode, adjusted_mode);
- SDE_ATRACE_END("msm_set_mode");
- }
- }
- /**
- * msm_atomic_helper_commit_modeset_disables - modeset commit to disable outputs
- * @dev: DRM device
- * @old_state: atomic state object with old state structures
- *
- * This function shuts down all the outputs that need to be shut down and
- * prepares them (if required) with the new mode.
- *
- * For compatibility with legacy crtc helpers this should be called before
- * drm_atomic_helper_commit_planes(), which is what the default commit function
- * does. But drivers with different needs can group the modeset commits together
- * and do the plane commits at the end. This is useful for drivers doing runtime
- * PM since planes updates then only happen when the CRTC is actually enabled.
- */
- void msm_atomic_helper_commit_modeset_disables(struct drm_device *dev,
- struct drm_atomic_state *old_state)
- {
- msm_disable_outputs(dev, old_state);
- drm_atomic_helper_update_legacy_modeset_state(dev, old_state);
- msm_crtc_set_mode(dev, old_state);
- }
- /**
- * msm_atomic_helper_commit_modeset_enables - modeset commit to enable outputs
- * @dev: DRM device
- * @old_state: atomic state object with old state structures
- *
- * This function enables all the outputs with the new configuration which had to
- * be turned off for the update.
- *
- * For compatibility with legacy crtc helpers this should be called after
- * drm_atomic_helper_commit_planes(), which is what the default commit function
- * does. But drivers with different needs can group the modeset commits together
- * and do the plane commits at the end. This is useful for drivers doing runtime
- * PM since planes updates then only happen when the CRTC is actually enabled.
- */
- static void msm_atomic_helper_commit_modeset_enables(struct drm_device *dev,
- struct drm_atomic_state *old_state)
- {
- struct drm_crtc *crtc;
- struct drm_crtc_state *old_crtc_state;
- struct drm_crtc_state *new_crtc_state;
- struct drm_connector *connector;
- struct drm_connector_state *new_conn_state;
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- int bridge_enable_count = 0;
- int i;
- SDE_ATRACE_BEGIN("msm_enable");
- for_each_oldnew_crtc_in_state(old_state, crtc, old_crtc_state,
- new_crtc_state, i) {
- const struct drm_crtc_helper_funcs *funcs;
- struct msm_display_mode *msm_mode;
- /* Need to filter out CRTCs where only planes change. */
- if (!msm_atomic_needs_modeset(new_crtc_state,
- _msm_get_conn_state(new_crtc_state)))
- continue;
- if (!new_crtc_state->active)
- continue;
- if (!crtc->state->active_changed &&
- _msm_seamless_for_crtc(old_state, crtc->state, true))
- continue;
- funcs = crtc->helper_private;
- if (crtc->state->enable) {
- DRM_DEBUG_ATOMIC("enabling [CRTC:%d]\n",
- crtc->base.id);
- if (funcs->atomic_enable)
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0))
- funcs->atomic_enable(crtc, old_state);
- #else
- funcs->atomic_enable(crtc, old_crtc_state);
- #endif
- else
- funcs->commit(crtc);
- }
- if (!kms->funcs || !kms->funcs->get_msm_mode)
- continue;
- msm_mode = kms->funcs->get_msm_mode(
- _msm_get_conn_state(new_crtc_state));
- if (!msm_mode)
- continue;
- if (msm_needs_vblank_pre_modeset(msm_mode))
- drm_crtc_wait_one_vblank(crtc);
- }
- for_each_new_connector_in_state(old_state, connector,
- new_conn_state, i) {
- const struct drm_encoder_helper_funcs *funcs;
- struct drm_encoder *encoder;
- struct drm_connector_state *old_conn_state;
- struct drm_bridge *bridge;
- if (!new_conn_state->best_encoder)
- continue;
- if (!new_conn_state->crtc->state->active ||
- !msm_atomic_needs_modeset(new_conn_state->crtc->state,
- _msm_get_conn_state(new_conn_state->crtc->state)))
- continue;
- old_conn_state = drm_atomic_get_old_connector_state(
- old_state, connector);
- if (_msm_seamless_for_conn(connector, old_conn_state, true))
- continue;
- encoder = connector->state->best_encoder;
- funcs = encoder->helper_private;
- DRM_DEBUG_ATOMIC("enabling [ENCODER:%d:%s]\n",
- encoder->base.id, encoder->name);
- /*
- * Each encoder has at most one connector (since we always steal
- * it away), so we won't call enable hooks twice.
- */
- bridge = drm_bridge_chain_get_first_bridge(encoder);
- drm_bridge_chain_pre_enable(bridge);
- ++bridge_enable_count;
- if (funcs->enable)
- funcs->enable(encoder);
- else
- funcs->commit(encoder);
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- {
- /*
- notify registered clients about resume event.
- This noti is triggered after panel power on & DSI_CMD_SET_ON.
- */
- int blank = FB_BLANK_UNBLANK;
- /* notify only in case state is changed (off -> on) */
- if (encoder->encoder_type == DRM_MODE_ENCODER_DSI &&
- (connector->state->crtc &&
- connector->state->crtc->state->active_changed))
- __msm_drm_notifier_call_chain(FB_EVENT_BLANK, &blank);
- else
- pr_debug("%s %d\n", __func__, encoder->encoder_type);
- }
- #endif
- }
- if (kms && kms->funcs && kms->funcs->commit) {
- DRM_DEBUG_ATOMIC("triggering commit\n");
- kms->funcs->commit(kms, old_state);
- }
- /* If no bridges were pre_enabled, skip iterating over them again */
- if (bridge_enable_count == 0) {
- SDE_ATRACE_END("msm_enable");
- return;
- }
- for_each_new_connector_in_state(old_state, connector,
- new_conn_state, i) {
- struct drm_encoder *encoder;
- struct drm_connector_state *old_conn_state;
- struct drm_bridge *bridge;
- if (!new_conn_state->best_encoder)
- continue;
- if (!new_conn_state->crtc->state->active ||
- !msm_atomic_needs_modeset(new_conn_state->crtc->state,
- _msm_get_conn_state(new_conn_state->crtc->state)))
- continue;
- old_conn_state = drm_atomic_get_old_connector_state(
- old_state, connector);
- if (_msm_seamless_for_conn(connector, old_conn_state, true))
- continue;
- encoder = connector->state->best_encoder;
- DRM_DEBUG_ATOMIC("bridge enable enabling [ENCODER:%d:%s]\n",
- encoder->base.id, encoder->name);
- bridge = drm_bridge_chain_get_first_bridge(encoder);
- drm_bridge_chain_enable(bridge);
- }
- SDE_ATRACE_END("msm_enable");
- }
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 0))
- struct dma_fence *msm_dma_resv_get_excl(struct drm_plane_state *new_plane_state,
- struct msm_gem_object *msm_obj)
- {
- enum dma_resv_usage usage;
- struct dma_fence *fence;
- struct dma_fence *new;
- int ret;
- if (!msm_obj)
- return NULL;
- fence = dma_fence_get(new_plane_state->fence);
- usage = fence ? DMA_RESV_USAGE_KERNEL : DMA_RESV_USAGE_WRITE;
- ret = dma_resv_get_singleton(msm_obj->resv, usage, &new);
- if (ret)
- goto error;
- if (new && fence) {
- struct dma_fence_chain *chain = dma_fence_chain_alloc();
- if (!chain) {
- ret = -ENOMEM;
- goto error;
- }
- dma_fence_chain_init(chain, fence, new, 1);
- fence = &chain->base;
- } else if (new) {
- fence = new;
- }
- error:
- dma_fence_put(fence);
- return NULL;
- }
- #endif
- int msm_atomic_prepare_fb(struct drm_plane *plane,
- struct drm_plane_state *new_state)
- {
- struct msm_drm_private *priv = plane->dev->dev_private;
- struct msm_kms *kms = priv->kms;
- struct drm_gem_object *obj;
- struct msm_gem_object *msm_obj;
- struct dma_fence *fence;
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 0))
- int i;
- #endif
- if (!new_state->fb)
- return 0;
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 0))
- for (i = 0; i < new_state->fb->format->num_planes; ++i) {
- obj = msm_framebuffer_bo(new_state->fb, i);
- msm_obj = to_msm_bo(obj);
- fence = msm_dma_resv_get_excl(new_state, msm_obj);
- dma_fence_put(new_state->fence);
- new_state->fence = fence;
- }
- #else
- obj = msm_framebuffer_bo(new_state->fb, 0);
- msm_obj = to_msm_bo(obj);
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0))
- fence = dma_resv_get_excl_unlocked(msm_obj->resv);
- #else
- fence = dma_resv_get_excl_rcu(msm_obj->resv);
- #endif
- drm_atomic_set_fence_for_plane(new_state, fence);
- #endif
- return msm_framebuffer_prepare(new_state->fb, kms->aspace);
- }
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- int ss_get_vdd_ndx_from_state(struct drm_atomic_state *old_state);
- #endif
- /* The (potentially) asynchronous part of the commit. At this point
- * nothing can fail short of armageddon.
- */
- static void complete_commit(struct msm_commit *c)
- {
- struct drm_atomic_state *state = c->state;
- struct drm_device *dev = state->dev;
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- int ndx;
- struct samsung_display_driver_data *vdd;
- #endif
- drm_atomic_helper_wait_for_fences(dev, state, false);
- kms->funcs->prepare_commit(kms, state);
- msm_atomic_helper_commit_modeset_disables(dev, state);
- drm_atomic_helper_commit_planes(dev, state,
- DRM_PLANE_COMMIT_ACTIVE_ONLY);
- msm_atomic_helper_commit_modeset_enables(dev, state);
- /* NOTE: _wait_for_vblanks() only waits for vblank on
- * enabled CRTCs. So we end up faulting when disabling
- * due to (potentially) unref'ing the outgoing fb's
- * before the vblank when the disable has latched.
- *
- * But if it did wait on disabled (or newly disabled)
- * CRTCs, that would be racy (ie. we could have missed
- * the irq. We need some way to poll for pipe shut
- * down. Or just live with occasionally hitting the
- * timeout in the CRTC disable path (which really should
- * not be critical path)
- */
- msm_atomic_wait_for_commit_done(dev, state);
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- ndx = ss_get_vdd_ndx_from_state(state);
- vdd = ss_get_vdd(ndx);
- if (vdd)
- ss_event_frame_update_post(vdd);
- #endif
- drm_atomic_helper_cleanup_planes(dev, state);
- kms->funcs->complete_commit(kms, state);
- drm_atomic_state_put(state);
- commit_destroy(c);
- }
- static void _msm_drm_commit_work_cb(struct kthread_work *work)
- {
- struct msm_commit *commit = NULL;
- if (!work) {
- DRM_ERROR("%s: Invalid commit work data!\n", __func__);
- return;
- }
- commit = container_of(work, struct msm_commit, commit_work);
- SDE_ATRACE_BEGIN("complete_commit");
- complete_commit(commit);
- SDE_ATRACE_END("complete_commit");
- }
- static struct msm_commit *commit_init(struct drm_atomic_state *state,
- bool nonblock)
- {
- struct msm_commit *c = kzalloc(sizeof(*c), GFP_KERNEL);
- if (!c)
- return NULL;
- c->dev = state->dev;
- c->state = state;
- c->nonblock = nonblock;
- kthread_init_work(&c->commit_work, _msm_drm_commit_work_cb);
- return c;
- }
- /* Start display thread function */
- static void msm_atomic_commit_dispatch(struct drm_device *dev,
- struct drm_atomic_state *state, struct msm_commit *commit)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct drm_crtc *crtc = NULL;
- struct drm_crtc_state *crtc_state = NULL;
- int ret = -ECANCELED, i = 0, j = 0;
- bool nonblock;
- /* cache since work will kfree commit in non-blocking case */
- nonblock = commit->nonblock;
- for_each_old_crtc_in_state(state, crtc, crtc_state, i) {
- for (j = 0; j < priv->num_crtcs; j++) {
- if (priv->disp_thread[j].crtc_id ==
- crtc->base.id) {
- if (priv->disp_thread[j].thread) {
- kthread_queue_work(
- &priv->disp_thread[j].worker,
- &commit->commit_work);
- /* only return zero if work is
- * queued successfully.
- */
- ret = 0;
- } else {
- DRM_ERROR(" Error for crtc_id: %d\n",
- priv->disp_thread[j].crtc_id);
- ret = -EINVAL;
- }
- break;
- }
- }
- /*
- * TODO: handle cases where there will be more than
- * one crtc per commit cycle. Remove this check then.
- * Current assumption is there will be only one crtc
- * per commit cycle.
- */
- if (j < priv->num_crtcs)
- break;
- }
- if (ret) {
- if (ret == -EINVAL)
- DRM_ERROR("failed to dispatch commit to any CRTC\n");
- else
- DRM_DEBUG("empty crtc state\n");
- /**
- * this is not expected to happen, but at this point the state
- * has been swapped, but we couldn't dispatch to a crtc thread.
- * fallback now to a synchronous complete_commit to try and
- * ensure that SW and HW state don't get out of sync.
- */
- complete_commit(commit);
- } else if (!nonblock) {
- kthread_flush_work(&commit->commit_work);
- }
- /* free nonblocking commits in this context, after processing */
- if (!nonblock)
- kfree(commit);
- }
- /**
- * drm_atomic_helper_commit - commit validated state object
- * @dev: DRM device
- * @state: the driver state object
- * @nonblock: nonblocking commit
- *
- * This function commits a with drm_atomic_helper_check() pre-validated state
- * object. This can still fail when e.g. the framebuffer reservation fails.
- *
- * RETURNS
- * Zero for success or -errno.
- */
- int msm_atomic_commit(struct drm_device *dev,
- struct drm_atomic_state *state, bool nonblock)
- {
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_commit *c;
- struct drm_crtc *crtc;
- struct drm_crtc_state *crtc_state;
- struct drm_plane *plane;
- struct drm_plane_state *old_plane_state, *new_plane_state;
- int i, ret;
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- struct samsung_display_driver_data *vdd;
- int ndx;
- #endif
- if (!priv || priv->shutdown_in_progress) {
- DRM_ERROR("priv is null or shutdwon is in-progress\n");
- return -EINVAL;
- }
- #if IS_ENABLED(CONFIG_DISPLAY_SAMSUNG)
- ndx = ss_get_vdd_ndx_from_state(state);
- vdd = ss_get_vdd(ndx);
- if (vdd)
- ss_event_frame_update_pre(vdd);
- #endif
- SDE_ATRACE_BEGIN("atomic_commit");
- ret = drm_atomic_helper_prepare_planes(dev, state);
- if (ret) {
- SDE_ATRACE_END("atomic_commit");
- return ret;
- }
- c = commit_init(state, nonblock);
- if (!c) {
- ret = -ENOMEM;
- goto error;
- }
- /*
- * Figure out what crtcs we have:
- */
- for_each_new_crtc_in_state(state, crtc, crtc_state, i)
- c->crtc_mask |= drm_crtc_mask(crtc);
- /*
- * Figure out what fence to wait for:
- */
- for_each_oldnew_plane_in_state(state, plane, old_plane_state,
- new_plane_state, i) {
- if ((new_plane_state->fb != old_plane_state->fb)
- && new_plane_state->fb) {
- struct drm_gem_object *obj;
- struct msm_gem_object *msm_obj;
- struct dma_fence *fence;
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 19, 0))
- int j;
- for (j = 0; j < new_plane_state->fb->format->num_planes; ++j) {
- obj = msm_framebuffer_bo(new_plane_state->fb, j);
- msm_obj = to_msm_bo(obj);
- fence = msm_dma_resv_get_excl(new_plane_state, msm_obj);
- dma_fence_put(new_plane_state->fence);
- new_plane_state->fence = fence;
- }
- #else
- obj = msm_framebuffer_bo(new_plane_state->fb, 0);
- msm_obj = to_msm_bo(obj);
- fence =
- #if (LINUX_VERSION_CODE >= KERNEL_VERSION(5, 15, 0))
- dma_resv_get_excl_unlocked(msm_obj->resv);
- #else
- dma_resv_get_excl_rcu(msm_obj->resv);
- #endif
- drm_atomic_set_fence_for_plane(new_plane_state, fence);
- #endif
- }
- c->plane_mask |= (1 << drm_plane_index(plane));
- }
- /* Protection for prepare_fence callback */
- retry:
- ret = drm_modeset_lock(&state->dev->mode_config.connection_mutex,
- state->acquire_ctx);
- if (ret == -EDEADLK) {
- drm_modeset_backoff(state->acquire_ctx);
- goto retry;
- }
- /*
- * Wait for pending updates on any of the same crtc's and then
- * mark our set of crtc's as busy:
- */
- /* Start Atomic */
- spin_lock(&priv->pending_crtcs_event.lock);
- ret = wait_event_interruptible_locked(priv->pending_crtcs_event,
- !(priv->pending_crtcs & c->crtc_mask) &&
- !(priv->pending_planes & c->plane_mask));
- if (ret == 0) {
- DBG("start: %08x", c->crtc_mask);
- priv->pending_crtcs |= c->crtc_mask;
- priv->pending_planes |= c->plane_mask;
- }
- spin_unlock(&priv->pending_crtcs_event.lock);
- if (ret)
- goto err_free;
- WARN_ON(drm_atomic_helper_swap_state(state, false) < 0);
- /*
- * Provide the driver a chance to prepare for output fences. This is
- * done after the point of no return, but before asynchronous commits
- * are dispatched to work queues, so that the fence preparation is
- * finished before the .atomic_commit returns.
- */
- if (priv && priv->kms && priv->kms->funcs &&
- priv->kms->funcs->prepare_fence)
- priv->kms->funcs->prepare_fence(priv->kms, state);
- /*
- * Everything below can be run asynchronously without the need to grab
- * any modeset locks at all under one conditions: It must be guaranteed
- * that the asynchronous work has either been cancelled (if the driver
- * supports it, which at least requires that the framebuffers get
- * cleaned up with drm_atomic_helper_cleanup_planes()) or completed
- * before the new state gets committed on the software side with
- * drm_atomic_helper_swap_state().
- *
- * This scheme allows new atomic state updates to be prepared and
- * checked in parallel to the asynchronous completion of the previous
- * update. Which is important since compositors need to figure out the
- * composition of the next frame right after having submitted the
- * current layout
- */
- drm_atomic_state_get(state);
- msm_atomic_commit_dispatch(dev, state, c);
- SDE_ATRACE_END("atomic_commit");
- return 0;
- err_free:
- kfree(c);
- error:
- drm_atomic_helper_cleanup_planes(dev, state);
- SDE_ATRACE_END("atomic_commit");
- return ret;
- }
- struct drm_atomic_state *msm_atomic_state_alloc(struct drm_device *dev)
- {
- struct msm_kms_state *state = kzalloc(sizeof(*state), GFP_KERNEL);
- if (!state || drm_atomic_state_init(dev, &state->base) < 0) {
- kfree(state);
- return NULL;
- }
- return &state->base;
- }
- void msm_atomic_state_clear(struct drm_atomic_state *s)
- {
- struct msm_kms_state *state = to_kms_state(s);
- drm_atomic_state_default_clear(&state->base);
- kfree(state->state);
- state->state = NULL;
- }
- void msm_atomic_state_free(struct drm_atomic_state *state)
- {
- kfree(to_kms_state(state)->state);
- drm_atomic_state_default_release(state);
- kfree(state);
- }
- void msm_atomic_commit_tail(struct drm_atomic_state *state)
- {
- struct drm_device *dev = state->dev;
- struct msm_drm_private *priv = dev->dev_private;
- struct msm_kms *kms = priv->kms;
- kms->funcs->prepare_commit(kms, state);
- drm_atomic_helper_commit_modeset_disables(dev, state);
- drm_atomic_helper_commit_planes(dev, state, 0);
- drm_atomic_helper_commit_modeset_enables(dev, state);
- if (kms->funcs->commit) {
- DRM_DEBUG_ATOMIC("triggering commit\n");
- kms->funcs->commit(kms, state);
- }
- if (!state->legacy_cursor_update)
- msm_atomic_wait_for_commit_done(dev, state);
- kms->funcs->complete_commit(kms, state);
- drm_atomic_helper_wait_for_vblanks(dev, state);
- drm_atomic_helper_commit_hw_done(state);
- drm_atomic_helper_cleanup_planes(dev, state);
- }
|