From: Rodrigo Vivi <rodrigo.vivi@intel.com>
To: Jani Nikula <jani.nikula@intel.com>
Cc: <intel-gfx@lists.freedesktop.org>,
<intel-xe@lists.freedesktop.org>, <lucas.demarchi@intel.com>,
<ville.syrjala@linux.intel.com>
Subject: Re: [PATCH v2 8/9] drm/i915/display: keep subplatforms next to their platforms
Date: Wed, 28 Aug 2024 16:52:12 -0400 [thread overview]
Message-ID: <Zs-N_Gd3tCBWV0IK@intel.com> (raw)
In-Reply-To: <43a8e73d499d909741e4b6c78ed4e20895fe1b24.1724092799.git.jani.nikula@intel.com>
On Mon, Aug 19, 2024 at 09:44:35PM +0300, Jani Nikula wrote:
> There's no reason to keep subplatforms separated in the members. Update
> the comment while at it.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> .../drm/i915/display/intel_display_device.h | 51 ++++++++++---------
> 1 file changed, 27 insertions(+), 24 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index 6d1f3de46836..86664b999ca9 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -15,7 +15,11 @@
> struct drm_i915_private;
> struct drm_printer;
>
> -/* Keep in gen based order, and chronological order within a gen */
> +/*
> + * Display platforms and subplatforms. Keep platforms in display version based
> + * order, chronological order within a version, and subplatforms next to the
> + * platform.
> + */
I wonder if we should do the reverse other, so a patch introducing a new
platform doesn't need to touch the previous one to add the '\'.
but,
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
> #define INTEL_DISPLAY_PLATFORMS(func) \
> /* Display ver 2 */ \
> func(I830) \
> @@ -42,56 +46,55 @@ struct drm_printer;
> func(IVYBRIDGE) \
> func(VALLEYVIEW) \
> func(HASWELL) \
> + func(HASWELL_ULT) \
> + func(HASWELL_ULX) \
> /* Display ver 8 */ \
> func(BROADWELL) \
> + func(BROADWELL_ULT) \
> + func(BROADWELL_ULX) \
> func(CHERRYVIEW) \
> /* Display ver 9 */ \
> func(SKYLAKE) \
> + func(SKYLAKE_ULT) \
> + func(SKYLAKE_ULX) \
> func(BROXTON) \
> func(KABYLAKE) \
> + func(KABYLAKE_ULT) \
> + func(KABYLAKE_ULX) \
> func(GEMINILAKE) \
> func(COFFEELAKE) \
> + func(COFFEELAKE_ULT) \
> + func(COFFEELAKE_ULX) \
> func(COMETLAKE) \
> + func(COMETLAKE_ULT) \
> + func(COMETLAKE_ULX) \
> /* Display ver 11 */ \
> func(ICELAKE) \
> + func(ICELAKE_PORT_F) \
> func(JASPERLAKE) \
> func(ELKHARTLAKE) \
> /* Display ver 12 */ \
> func(TIGERLAKE) \
> + func(TIGERLAKE_UY) \
> func(ROCKETLAKE) \
> func(DG1) \
> func(ALDERLAKE_S) \
> + func(ALDERLAKE_S_RAPTORLAKE_S) \
> /* Display ver 13 */ \
> func(ALDERLAKE_P) \
> + func(ALDERLAKE_P_ALDERLAKE_N) \
> + func(ALDERLAKE_P_RAPTORLAKE_P) \
> + func(ALDERLAKE_P_RAPTORLAKE_U) \
> func(DG2) \
> + func(DG2_G10) \
> + func(DG2_G11) \
> + func(DG2_G12) \
> /* Display ver 14 (based on GMD ID) */ \
> func(METEORLAKE) \
> /* Display ver 20 (based on GMD ID) */ \
> func(LUNARLAKE) \
> /* Display ver 14.1 (based on GMD ID) */ \
> - func(BATTLEMAGE) \
> - /* Subplatforms */ \
> - func(HASWELL_ULT) \
> - func(HASWELL_ULX) \
> - func(BROADWELL_ULT) \
> - func(BROADWELL_ULX) \
> - func(SKYLAKE_ULT) \
> - func(SKYLAKE_ULX) \
> - func(KABYLAKE_ULT) \
> - func(KABYLAKE_ULX) \
> - func(COFFEELAKE_ULT) \
> - func(COFFEELAKE_ULX) \
> - func(COMETLAKE_ULT) \
> - func(COMETLAKE_ULX) \
> - func(ICELAKE_PORT_F) \
> - func(TIGERLAKE_UY) \
> - func(ALDERLAKE_S_RAPTORLAKE_S) \
> - func(ALDERLAKE_P_ALDERLAKE_N) \
> - func(ALDERLAKE_P_RAPTORLAKE_P) \
> - func(ALDERLAKE_P_RAPTORLAKE_U) \
> - func(DG2_G10) \
> - func(DG2_G11) \
> - func(DG2_G12)
> + func(BATTLEMAGE)
>
> #define __MEMBER(name) unsigned long name:1;
> #define __COUNT(x) 1 +
> --
> 2.39.2
>
next prev parent reply other threads:[~2024-08-28 20:52 UTC|newest]
Thread overview: 46+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-08-19 18:44 [PATCH v2 0/9] drm/i915/display: platform identification with display->is.<PLATFORM> Jani Nikula
2024-08-19 18:44 ` [PATCH v2 1/9] drm/i915/display: use a macro to initialize subplatforms Jani Nikula
2024-08-19 18:44 ` [PATCH v2 2/9] drm/i915/display: use a macro to define platform enumerations Jani Nikula
2024-08-19 18:44 ` [PATCH v2 3/9] drm/i915/display: join the platform and subplatform enums Jani Nikula
2024-08-19 18:44 ` [PATCH v2 4/9] drm/i915/display: add display platforms structure with platform members Jani Nikula
2024-08-28 20:46 ` Rodrigo Vivi
2024-08-19 18:44 ` [PATCH v2 5/9] drm/i915/display: add platforms "is" member to struct intel_display Jani Nikula
2024-08-19 18:48 ` [PATCH v3] " Jani Nikula
2024-08-28 20:48 ` Rodrigo Vivi
2024-08-28 20:47 ` [PATCH v2 5/9] " Rodrigo Vivi
2024-08-19 18:44 ` [PATCH v2 6/9] drm/i915/display: remove the display platform enum as unnecessary Jani Nikula
2024-08-28 20:49 ` Rodrigo Vivi
2024-08-19 18:44 ` [PATCH v2 7/9] drm/i915/display: consider HSW/BDW ULX to also be ULT Jani Nikula
2024-08-28 20:50 ` Rodrigo Vivi
2024-08-19 18:44 ` [PATCH v2 8/9] drm/i915/display: keep subplatforms next to their platforms Jani Nikula
2024-08-28 20:52 ` Rodrigo Vivi [this message]
2024-08-19 18:44 ` [PATCH v2 9/9] drm/i915/bios: use display->is.PLATFORM instead of IS_PLATFORM() Jani Nikula
2024-08-28 20:52 ` Rodrigo Vivi
2024-08-19 18:51 ` ✓ CI.Patch_applied: success for drm/i915/display: platform identification with display->is.<PLATFORM> (rev2) Patchwork
2024-08-19 18:51 ` ✗ CI.checkpatch: warning " Patchwork
2024-08-19 18:52 ` ✓ CI.KUnit: success " Patchwork
2024-08-19 19:04 ` ✓ CI.Build: " Patchwork
2024-08-19 19:06 ` ✓ CI.Hooks: " Patchwork
2024-08-19 19:08 ` ✗ CI.checksparse: warning " Patchwork
2024-08-19 19:30 ` ✗ CI.BAT: failure " Patchwork
2024-08-19 19:35 ` ✓ CI.Patch_applied: success for drm/i915/display: platform identification with display->is.<PLATFORM> (rev3) Patchwork
2024-08-19 19:35 ` ✗ CI.checkpatch: warning " Patchwork
2024-08-19 19:36 ` ✓ CI.KUnit: success " Patchwork
2024-08-19 19:51 ` ✓ CI.Build: " Patchwork
2024-08-19 19:54 ` ✓ CI.Hooks: " Patchwork
2024-08-19 19:56 ` ✗ CI.checksparse: warning " Patchwork
2024-08-19 20:16 ` ✓ CI.BAT: success " Patchwork
2024-08-19 23:31 ` ✗ CI.FULL: failure for drm/i915/display: platform identification with display->is.<PLATFORM> (rev2) Patchwork
2024-08-20 0:25 ` ✗ CI.FULL: failure for drm/i915/display: platform identification with display->is.<PLATFORM> (rev3) Patchwork
2024-08-28 20:41 ` [PATCH v2 0/9] drm/i915/display: platform identification with display->is.<PLATFORM> Rodrigo Vivi
2024-08-29 16:03 ` Ville Syrjälä
2024-09-24 9:49 ` Jani Nikula
2024-09-24 13:14 ` Lucas De Marchi
2024-09-24 13:37 ` Jani Nikula
2024-09-24 13:43 ` Ville Syrjälä
2024-09-26 14:58 ` Rodrigo Vivi
2024-09-27 12:16 ` Jani Nikula
2024-09-27 14:49 ` Rodrigo Vivi
2024-09-27 15:01 ` Jani Nikula
2024-09-27 16:13 ` Rodrigo Vivi
2024-09-27 18:12 ` Lucas De Marchi
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=Zs-N_Gd3tCBWV0IK@intel.com \
--to=rodrigo.vivi@intel.com \
--cc=intel-gfx@lists.freedesktop.org \
--cc=intel-xe@lists.freedesktop.org \
--cc=jani.nikula@intel.com \
--cc=lucas.demarchi@intel.com \
--cc=ville.syrjala@linux.intel.com \
/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;
as well as URLs for NNTP newsgroup(s).