public inbox for intel-gfx@lists.freedesktop.org
 help / color / mirror / Atom feed
From: "Murthy, Arun R" <arun.r.murthy@intel.com>
To: Xaver Hugl <xaver.hugl@kde.org>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@gmail.com>, Simona Vetter <simona@ffwll.ch>,
	Jani Nikula <jani.nikula@linux.intel.com>,
	Rodrigo Vivi <rodrigo.vivi@intel.com>,
	"Joonas Lahtinen" <joonas.lahtinen@linux.intel.com>,
	Tvrtko Ursulin <tursulin@ursulin.net>, <harry.wentland@amd.com>,
	<uma.shankar@intel.com>, <louis.chauvet@bootlin.com>,
	<naveen1.kumar@intel.com>, <ramya.krishna.yella@intel.com>,
	<dri-devel@lists.freedesktop.org>,
	<intel-gfx@lists.freedesktop.org>,
	<intel-xe@lists.freedesktop.org>,
	"Suraj Kandpal" <suraj.kandpal@intel.com>
Subject: Re: [PATCH v10 0/7] User readable error codes on atomic_ioctl failure
Date: Mon, 23 Mar 2026 11:37:19 +0530	[thread overview]
Message-ID: <ec9b1e8d-daab-48a7-959a-bfc5309b3ea9@intel.com> (raw)
In-Reply-To: <CAFZQkGw=VJnzFWnh7GT_59NhuSTiy3-VPOcKdWTZX14rkgW_uw@mail.gmail.com>

On 18-03-2026 20:35, Xaver Hugl wrote:
> Hi,
>
> I now have an implementation in KWin:
> https://invent.kde.org/plasma/kwin/-/merge_requests/8991
>
> One thing I noticed is still missing is the catch-all case / unspecified
> error; the "invalid API usage" enum value would be quite misleading for
> that.

Have added the remaining error codes to the enum 
drm_mode_atomic_err_code, will push as part of patchset 11.
/**
  * enum drm_mode_atomic_failure_codes -  error codes for failures in 
atomic_ioctl
  * @DRM_MODE_ATOMIC_INVALID_API_USAGE: invallid API usage(DRM_ATOMIC not
  *                                     enabled, invalid falg, page_flip 
event
  *                                     with test-only, etc)
  * @DRM_MODE_ATOMIC_NEED_FULL_MODESET: Need full modeset on all 
connected crtc's
  * @DRM_MODE_ATOMIC_ASYNC_PROP_CHANGED: Property changed in async flip
  * @DRM_MODE_ATOMIC_SCANOUT_BW: For a given resolution, refresh rate 
and the
  *                              color depth cannot be accomodated. 
Resolution is
  *                              to lower the refresh rate or color depth.
  * @DRM_MODE_ATOMIC_CONNECTOR_BW: Refers to the limitation on the link 
rate on
  *                                a given connector.
  * @DRM_MODE_ATOMIC_PIPE_BW: Limitation on the pipe, either pipe not 
available
  *                           or the pipe scaling factor limitation.
  * @DRM_MODE_ATOMIC_MEMORY_DOMAIN: Any other memory/bandwidth related 
limitation
  *                                 other then the ones specified above.
  * @DRM_MODE_ATOMIC_SPEC_VIOLOATION: Limitation of a particular feature 
on that
  *                                   hardware. To get to know the 
feature, the
  *                                   property/object causing this is 
being sent
  *                                   back to user @failure_objs_ptr in the
  *                                   struct drm_mode_atomic_err_code
  */
enum drm_mode_atomic_failure_codes {
         DRM_MODE_ATOMIC_INVALID_API_USAGE,
         DRM_MODE_ATOMIC_NEED_FULL_MODESET,
         DRM_MODE_ATOMIC_ASYNC_PROP_CHANGED,
         DRM_MODE_ATOMIC_SCANOUT_BW,
         DRM_MODE_ATTOMIC_CONNECTOR_BW,
         DRM_MODE_ATTOMIC_PIPE_BW,
         DRM_MODE_ATOMIC_MEMORY_DOMAIN,
         DRM_MODE_ATOMIC_SPEC_VIOLOATION,
};


As far as the enum INVALID_API_USAGE is concerned, there is a certain 
understanding on the
usage of the atomic_ioctl,  any miss in that would fall in this 
category. Some of them include
     - Driver doesnt support atomic, but still atomic_ioctl being used
     - Invalid/Junk flags
     - Async flip not supported
     - Flag page flip event along with test only is not supported
If changing this INVALID_API_USAGE to UNSPECIFIED_ERROR makes more 
sense, I can change that.

Thanks and Regards,
Arun R Murthy
-------------------

> - Xaver
>

  reply	other threads:[~2026-03-23  6:07 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-23  9:15 [PATCH v10 0/7] User readable error codes on atomic_ioctl failure Arun R Murthy
2026-02-23  9:15 ` [PATCH v10 1/7] drm: Define user readable error codes for atomic ioctl Arun R Murthy
2026-02-23  9:16 ` [PATCH v10 2/7] drm/atomic: Add error_code element in atomic_state Arun R Murthy
2026-02-23  9:16 ` [PATCH v10 3/7] drm/atomic: Call complete_signaling only if prepare_signaling is done Arun R Murthy
2026-02-23  9:16 ` [PATCH v10 4/7] drm/atomic: Allocate atomic_state at the beginning of atomic_ioctl Arun R Murthy
2026-02-23  9:16 ` [PATCH v10 5/7] drm/atomic: Return user readable error in atomic_ioctl Arun R Murthy
2026-02-23  9:16 ` [PATCH v10 6/7] drm/i915/display: Error codes for async flip failures Arun R Murthy
2026-02-23  9:16 ` [PATCH v10 7/7] drm: Introduce DRM_CAP_ATOMIC_ERROR_REPORTING Arun R Murthy
2026-02-23 10:07 ` [PATCH v10 0/7] User readable error codes on atomic_ioctl failure Murthy, Arun R
2026-02-24  7:07   ` Ville Syrjälä
2026-02-24  7:16     ` Murthy, Arun R
2026-02-24  8:46       ` Ville Syrjälä
2026-02-24  8:54         ` Murthy, Arun R
2026-02-24  9:03           ` Ville Syrjälä
2026-02-24  9:28         ` Jani Nikula
2026-02-24  9:31           ` Murthy, Arun R
2026-02-24 12:07             ` Jani Nikula
2026-03-18 15:26               ` Xaver Hugl
2026-02-23 11:09 ` ✗ i915.CI.BAT: failure for User readable error codes on atomic_ioctl failure (rev9) Patchwork
2026-03-18 15:05 ` [PATCH v10 0/7] User readable error codes on atomic_ioctl failure Xaver Hugl
2026-03-23  6:07   ` Murthy, Arun R [this message]
2026-03-23 21:19     ` Xaver Hugl
2026-03-24  4:46       ` Murthy, Arun R

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ec9b1e8d-daab-48a7-959a-bfc5309b3ea9@intel.com \
    --to=arun.r.murthy@intel.com \
    --cc=airlied@gmail.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=harry.wentland@amd.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=intel-xe@lists.freedesktop.org \
    --cc=jani.nikula@linux.intel.com \
    --cc=joonas.lahtinen@linux.intel.com \
    --cc=louis.chauvet@bootlin.com \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=naveen1.kumar@intel.com \
    --cc=ramya.krishna.yella@intel.com \
    --cc=rodrigo.vivi@intel.com \
    --cc=simona@ffwll.ch \
    --cc=suraj.kandpal@intel.com \
    --cc=tursulin@ursulin.net \
    --cc=tzimmermann@suse.de \
    --cc=uma.shankar@intel.com \
    --cc=xaver.hugl@kde.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox