All of lore.kernel.org
 help / color / mirror / Atom feed
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>,
	<maarten.lankhorst@linux.intel.com>,
	<ville.syrjala@linux.intel.com>
Subject: Re: [PATCH v3 05/15] drm/i915/display: convert display platforms to lower case
Date: Mon, 7 Oct 2024 15:49:48 -0400	[thread overview]
Message-ID: <ZwQ7XGH3atqGyMci@intel.com> (raw)
In-Reply-To: <0574d8ad22b6899e01a0d84fcf32862ebe557dc5.1727699233.git.jani.nikula@intel.com>

On Mon, Sep 30, 2024 at 03:31:06PM +0300, Jani Nikula wrote:
> This will be helpful for follow-up, where the names here become struct
> member names.
> 
> This does impact debug logs as well, making everything lower case.
> 
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>

Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>

> ---
>  .../drm/i915/display/intel_display_device.c   | 120 +++++++++---------
>  .../drm/i915/display/intel_display_device.h   | 120 +++++++++---------
>  2 files changed, 120 insertions(+), 120 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.c b/drivers/gpu/drm/i915/display/intel_display_device.c
> index ab98a69b84a7..b2610217f5c5 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.c
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.c
> @@ -236,7 +236,7 @@ static const struct intel_display_device_info no_display = {};
>  	.__runtime_defaults.cpu_transcoder_mask = BIT(TRANSCODER_A)
>  
>  static const struct platform_desc i830_desc = {
> -	PLATFORM(I830),
> +	PLATFORM(i830),
>  	.info = &(const struct intel_display_device_info) {
>  		I830_DISPLAY,
>  
> @@ -245,7 +245,7 @@ static const struct platform_desc i830_desc = {
>  };
>  
>  static const struct platform_desc i845_desc = {
> -	PLATFORM(I845G),
> +	PLATFORM(i845g),
>  	.info = &(const struct intel_display_device_info) {
>  		I845_DISPLAY,
>  
> @@ -254,7 +254,7 @@ static const struct platform_desc i845_desc = {
>  };
>  
>  static const struct platform_desc i85x_desc = {
> -	PLATFORM(I85X),
> +	PLATFORM(i85x),
>  	.info = &(const struct intel_display_device_info) {
>  		I830_DISPLAY,
>  
> @@ -264,7 +264,7 @@ static const struct platform_desc i85x_desc = {
>  };
>  
>  static const struct platform_desc i865g_desc = {
> -	PLATFORM(I865G),
> +	PLATFORM(i865g),
>  	.info = &(const struct intel_display_device_info) {
>  		I845_DISPLAY,
>  
> @@ -286,7 +286,7 @@ static const struct platform_desc i865g_desc = {
>  	.__runtime_defaults.port_mask = BIT(PORT_B) | BIT(PORT_C) /* SDVO B/C */
>  
>  static const struct platform_desc i915g_desc = {
> -	PLATFORM(I915G),
> +	PLATFORM(i915g),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN3_DISPLAY,
>  		I845_COLORS,
> @@ -296,7 +296,7 @@ static const struct platform_desc i915g_desc = {
>  };
>  
>  static const struct platform_desc i915gm_desc = {
> -	PLATFORM(I915GM),
> +	PLATFORM(i915gm),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN3_DISPLAY,
>  		I9XX_COLORS,
> @@ -309,7 +309,7 @@ static const struct platform_desc i915gm_desc = {
>  };
>  
>  static const struct platform_desc i945g_desc = {
> -	PLATFORM(I945G),
> +	PLATFORM(i945g),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN3_DISPLAY,
>  		I845_COLORS,
> @@ -320,7 +320,7 @@ static const struct platform_desc i945g_desc = {
>  };
>  
>  static const struct platform_desc i945gm_desc = {
> -	PLATFORM(I915GM),
> +	PLATFORM(i915gm),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN3_DISPLAY,
>  		I9XX_COLORS,
> @@ -334,7 +334,7 @@ static const struct platform_desc i945gm_desc = {
>  };
>  
>  static const struct platform_desc g33_desc = {
> -	PLATFORM(G33),
> +	PLATFORM(g33),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN3_DISPLAY,
>  		I845_COLORS,
> @@ -343,7 +343,7 @@ static const struct platform_desc g33_desc = {
>  };
>  
>  static const struct platform_desc pnv_desc = {
> -	PLATFORM(PINEVIEW),
> +	PLATFORM(pineview),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN3_DISPLAY,
>  		I9XX_COLORS,
> @@ -364,7 +364,7 @@ static const struct platform_desc pnv_desc = {
>  		BIT(TRANSCODER_A) | BIT(TRANSCODER_B)
>  
>  static const struct platform_desc i965g_desc = {
> -	PLATFORM(I965G),
> +	PLATFORM(i965g),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN4_DISPLAY,
>  		.has_overlay = 1,
> @@ -374,7 +374,7 @@ static const struct platform_desc i965g_desc = {
>  };
>  
>  static const struct platform_desc i965gm_desc = {
> -	PLATFORM(I965GM),
> +	PLATFORM(i965gm),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN4_DISPLAY,
>  		.has_overlay = 1,
> @@ -386,7 +386,7 @@ static const struct platform_desc i965gm_desc = {
>  };
>  
>  static const struct platform_desc g45_desc = {
> -	PLATFORM(G45),
> +	PLATFORM(g45),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN4_DISPLAY,
>  
> @@ -395,7 +395,7 @@ static const struct platform_desc g45_desc = {
>  };
>  
>  static const struct platform_desc gm45_desc = {
> -	PLATFORM(GM45),
> +	PLATFORM(gm45),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN4_DISPLAY,
>  		.supports_tv = 1,
> @@ -418,14 +418,14 @@ static const struct platform_desc gm45_desc = {
>  	.__runtime_defaults.port_mask = BIT(PORT_A) | BIT(PORT_B) | BIT(PORT_C) | BIT(PORT_D) /* DP A, SDVO/HDMI/DP B, HDMI/DP C/D */
>  
>  static const struct platform_desc ilk_d_desc = {
> -	PLATFORM(IRONLAKE),
> +	PLATFORM(ironlake),
>  	.info = &(const struct intel_display_device_info) {
>  		ILK_DISPLAY,
>  	},
>  };
>  
>  static const struct platform_desc ilk_m_desc = {
> -	PLATFORM(IRONLAKE),
> +	PLATFORM(ironlake),
>  	.info = &(const struct intel_display_device_info) {
>  		ILK_DISPLAY,
>  
> @@ -434,7 +434,7 @@ static const struct platform_desc ilk_m_desc = {
>  };
>  
>  static const struct platform_desc snb_desc = {
> -	PLATFORM(SANDYBRIDGE),
> +	PLATFORM(sandybridge),
>  	.info = &(const struct intel_display_device_info) {
>  		.has_hotplug = 1,
>  		I9XX_PIPE_OFFSETS,
> @@ -451,7 +451,7 @@ static const struct platform_desc snb_desc = {
>  };
>  
>  static const struct platform_desc ivb_desc = {
> -	PLATFORM(IVYBRIDGE),
> +	PLATFORM(ivybridge),
>  	.info = &(const struct intel_display_device_info) {
>  		.has_hotplug = 1,
>  		IVB_PIPE_OFFSETS,
> @@ -468,7 +468,7 @@ static const struct platform_desc ivb_desc = {
>  };
>  
>  static const struct platform_desc vlv_desc = {
> -	PLATFORM(VALLEYVIEW),
> +	PLATFORM(valleyview),
>  	.info = &(const struct intel_display_device_info) {
>  		.has_gmch = 1,
>  		.has_hotplug = 1,
> @@ -499,14 +499,14 @@ static const u16 hsw_ulx_ids[] = {
>  };
>  
>  static const struct platform_desc hsw_desc = {
> -	PLATFORM(HASWELL),
> +	PLATFORM(haswell),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(HASWELL, ULT),
> +			SUBPLATFORM(haswell, ult),
>  			.pciidlist = hsw_ult_ids,
>  		},
>  		{
> -			SUBPLATFORM(HASWELL, ULX),
> +			SUBPLATFORM(haswell, ulx),
>  			.pciidlist = hsw_ulx_ids,
>  		},
>  		{},
> @@ -549,14 +549,14 @@ static const u16 bdw_ulx_ids[] = {
>  };
>  
>  static const struct platform_desc bdw_desc = {
> -	PLATFORM(BROADWELL),
> +	PLATFORM(broadwell),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(BROADWELL, ULT),
> +			SUBPLATFORM(broadwell, ult),
>  			.pciidlist = bdw_ult_ids,
>  		},
>  		{
> -			SUBPLATFORM(BROADWELL, ULX),
> +			SUBPLATFORM(broadwell, ulx),
>  			.pciidlist = bdw_ulx_ids,
>  		},
>  		{},
> @@ -583,7 +583,7 @@ static const struct platform_desc bdw_desc = {
>  };
>  
>  static const struct platform_desc chv_desc = {
> -	PLATFORM(CHERRYVIEW),
> +	PLATFORM(cherryview),
>  	.info = &(const struct intel_display_device_info) {
>  		.has_hotplug = 1,
>  		.has_gmch = 1,
> @@ -646,14 +646,14 @@ static const enum intel_step skl_steppings[] = {
>  };
>  
>  static const struct platform_desc skl_desc = {
> -	PLATFORM(SKYLAKE),
> +	PLATFORM(skylake),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(SKYLAKE, ULT),
> +			SUBPLATFORM(skylake, ult),
>  			.pciidlist = skl_ult_ids,
>  		},
>  		{
> -			SUBPLATFORM(SKYLAKE, ULX),
> +			SUBPLATFORM(skylake, ulx),
>  			.pciidlist = skl_ulx_ids,
>  		},
>  		{},
> @@ -687,14 +687,14 @@ static const enum intel_step kbl_steppings[] = {
>  };
>  
>  static const struct platform_desc kbl_desc = {
> -	PLATFORM(KABYLAKE),
> +	PLATFORM(kabylake),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(KABYLAKE, ULT),
> +			SUBPLATFORM(kabylake, ult),
>  			.pciidlist = kbl_ult_ids,
>  		},
>  		{
> -			SUBPLATFORM(KABYLAKE, ULX),
> +			SUBPLATFORM(kabylake, ulx),
>  			.pciidlist = kbl_ulx_ids,
>  		},
>  		{},
> @@ -718,14 +718,14 @@ static const u16 cfl_ulx_ids[] = {
>  };
>  
>  static const struct platform_desc cfl_desc = {
> -	PLATFORM(COFFEELAKE),
> +	PLATFORM(coffeelake),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(COFFEELAKE, ULT),
> +			SUBPLATFORM(coffeelake, ult),
>  			.pciidlist = cfl_ult_ids,
>  		},
>  		{
> -			SUBPLATFORM(COFFEELAKE, ULX),
> +			SUBPLATFORM(coffeelake, ulx),
>  			.pciidlist = cfl_ulx_ids,
>  		},
>  		{},
> @@ -740,10 +740,10 @@ static const u16 cml_ult_ids[] = {
>  };
>  
>  static const struct platform_desc cml_desc = {
> -	PLATFORM(COMETLAKE),
> +	PLATFORM(cometlake),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(COMETLAKE, ULT),
> +			SUBPLATFORM(cometlake, ult),
>  			.pciidlist = cml_ult_ids,
>  		},
>  		{},
> @@ -782,7 +782,7 @@ static const enum intel_step bxt_steppings[] = {
>  };
>  
>  static const struct platform_desc bxt_desc = {
> -	PLATFORM(BROXTON),
> +	PLATFORM(broxton),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN9_LP_DISPLAY,
>  		.dbuf.size = 512 - 4, /* 4 blocks for bypass path allocation */
> @@ -797,7 +797,7 @@ static const enum intel_step glk_steppings[] = {
>  };
>  
>  static const struct platform_desc glk_desc = {
> -	PLATFORM(GEMINILAKE),
> +	PLATFORM(geminilake),
>  	.info = &(const struct intel_display_device_info) {
>  		GEN9_LP_DISPLAY,
>  		.dbuf.size = 1024 - 4, /* 4 blocks for bypass path allocation */
> @@ -859,10 +859,10 @@ static const enum intel_step icl_steppings[] = {
>  };
>  
>  static const struct platform_desc icl_desc = {
> -	PLATFORM(ICELAKE),
> +	PLATFORM(icelake),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(ICELAKE, PORT_F),
> +			SUBPLATFORM(icelake, port_f),
>  			.pciidlist = icl_port_f_ids,
>  		},
>  		{},
> @@ -887,13 +887,13 @@ static const enum intel_step jsl_ehl_steppings[] = {
>  };
>  
>  static const struct platform_desc jsl_desc = {
> -	PLATFORM(JASPERLAKE),
> +	PLATFORM(jasperlake),
>  	.info = &jsl_ehl_display,
>  	STEP_INFO(jsl_ehl_steppings),
>  };
>  
>  static const struct platform_desc ehl_desc = {
> -	PLATFORM(ELKHARTLAKE),
> +	PLATFORM(elkhartlake),
>  	.info = &jsl_ehl_display,
>  	STEP_INFO(jsl_ehl_steppings),
>  };
> @@ -959,10 +959,10 @@ static const enum intel_step tgl_uy_steppings[] = {
>  };
>  
>  static const struct platform_desc tgl_desc = {
> -	PLATFORM(TIGERLAKE),
> +	PLATFORM(tigerlake),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(TIGERLAKE, UY),
> +			SUBPLATFORM(tigerlake, uy),
>  			.pciidlist = tgl_uy_ids,
>  			STEP_INFO(tgl_uy_steppings),
>  		},
> @@ -987,7 +987,7 @@ static const enum intel_step dg1_steppings[] = {
>  };
>  
>  static const struct platform_desc dg1_desc = {
> -	PLATFORM(DG1),
> +	PLATFORM(dg1),
>  	.info = &(const struct intel_display_device_info) {
>  		XE_D_DISPLAY,
>  
> @@ -1004,7 +1004,7 @@ static const enum intel_step rkl_steppings[] = {
>  };
>  
>  static const struct platform_desc rkl_desc = {
> -	PLATFORM(ROCKETLAKE),
> +	PLATFORM(rocketlake),
>  	.info = &(const struct intel_display_device_info) {
>  		XE_D_DISPLAY,
>  		.abox_mask = BIT(0),
> @@ -1039,10 +1039,10 @@ static const enum intel_step adl_s_rpl_s_steppings[] = {
>  };
>  
>  static const struct platform_desc adl_s_desc = {
> -	PLATFORM(ALDERLAKE_S),
> +	PLATFORM(alderlake_s),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(ALDERLAKE_S, RAPTORLAKE_S),
> +			SUBPLATFORM(alderlake_s, raptorlake_s),
>  			.pciidlist = adls_rpls_ids,
>  			STEP_INFO(adl_s_rpl_s_steppings),
>  		},
> @@ -1146,20 +1146,20 @@ static const enum intel_step adl_p_rpl_pu_steppings[] = {
>  };
>  
>  static const struct platform_desc adl_p_desc = {
> -	PLATFORM(ALDERLAKE_P),
> +	PLATFORM(alderlake_p),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(ALDERLAKE_P, ALDERLAKE_N),
> +			SUBPLATFORM(alderlake_p, alderlake_n),
>  			.pciidlist = adlp_adln_ids,
>  			STEP_INFO(adl_p_adl_n_steppings),
>  		},
>  		{
> -			SUBPLATFORM(ALDERLAKE_P, RAPTORLAKE_P),
> +			SUBPLATFORM(alderlake_p, raptorlake_p),
>  			.pciidlist = adlp_rplp_ids,
>  			STEP_INFO(adl_p_rpl_pu_steppings),
>  		},
>  		{
> -			SUBPLATFORM(ALDERLAKE_P, RAPTORLAKE_U),
> +			SUBPLATFORM(alderlake_p, raptorlake_u),
>  			.pciidlist = adlp_rplu_ids,
>  			STEP_INFO(adl_p_rpl_pu_steppings),
>  		},
> @@ -1214,20 +1214,20 @@ static const enum intel_step dg2_g12_steppings[] = {
>  };
>  
>  static const struct platform_desc dg2_desc = {
> -	PLATFORM(DG2),
> +	PLATFORM(dg2),
>  	.subplatforms = (const struct subplatform_desc[]) {
>  		{
> -			SUBPLATFORM(DG2, G10),
> +			SUBPLATFORM(dg2, g10),
>  			.pciidlist = dg2_g10_ids,
>  			STEP_INFO(dg2_g10_steppings),
>  		},
>  		{
> -			SUBPLATFORM(DG2, G11),
> +			SUBPLATFORM(dg2, g11),
>  			.pciidlist = dg2_g11_ids,
>  			STEP_INFO(dg2_g11_steppings),
>  		},
>  		{
> -			SUBPLATFORM(DG2, G12),
> +			SUBPLATFORM(dg2, g12),
>  			.pciidlist = dg2_g12_ids,
>  			STEP_INFO(dg2_g12_steppings),
>  		},
> @@ -1305,15 +1305,15 @@ static const struct intel_display_device_info xe2_hpd_display = {
>   * reported by the hardware.
>   */
>  static const struct platform_desc mtl_desc = {
> -	PLATFORM(METEORLAKE),
> +	PLATFORM(meteorlake),
>  };
>  
>  static const struct platform_desc lnl_desc = {
> -	PLATFORM(LUNARLAKE),
> +	PLATFORM(lunarlake),
>  };
>  
>  static const struct platform_desc bmg_desc = {
> -	PLATFORM(BATTLEMAGE),
> +	PLATFORM(battlemage),
>  };
>  
>  __diag_pop();
> diff --git a/drivers/gpu/drm/i915/display/intel_display_device.h b/drivers/gpu/drm/i915/display/intel_display_device.h
> index dc425e2661bc..c4208c34cc31 100644
> --- a/drivers/gpu/drm/i915/display/intel_display_device.h
> +++ b/drivers/gpu/drm/i915/display/intel_display_device.h
> @@ -22,79 +22,79 @@ struct drm_printer;
>  #define INTEL_DISPLAY_PLATFORMS(func) \
>  	func(PLATFORM_UNINITIALIZED) \
>  	/* Display ver 2 */ \
> -	func(I830) \
> -	func(I845G) \
> -	func(I85X) \
> -	func(I865G) \
> +	func(i830) \
> +	func(i845g) \
> +	func(i85x) \
> +	func(i865g) \
>  	/* Display ver 3 */ \
> -	func(I915G) \
> -	func(I915GM) \
> -	func(I945G) \
> -	func(I945GM) \
> -	func(G33) \
> -	func(PINEVIEW) \
> +	func(i915g) \
> +	func(i915gm) \
> +	func(i945g) \
> +	func(i945gm) \
> +	func(g33) \
> +	func(pineview) \
>  	/* Display ver 4 */ \
> -	func(I965G) \
> -	func(I965GM) \
> -	func(G45) \
> -	func(GM45) \
> +	func(i965g) \
> +	func(i965gm) \
> +	func(g45) \
> +	func(gm45) \
>  	/* Display ver 5 */ \
> -	func(IRONLAKE) \
> +	func(ironlake) \
>  	/* Display ver 6 */ \
> -	func(SANDYBRIDGE) \
> +	func(sandybridge) \
>  	/* Display ver 7 */ \
> -	func(IVYBRIDGE) \
> -	func(VALLEYVIEW) \
> -	func(HASWELL) \
> -	func(HASWELL_ULT) \
> -	func(HASWELL_ULX) \
> +	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) \
> +	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) \
> +	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) \
> +	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) \
> +	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) \
> +	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) \
> +	func(meteorlake) \
>  	/* Display ver 20 (based on GMD ID) */ \
> -	func(LUNARLAKE) \
> +	func(lunarlake) \
>  	/* Display ver 14.1 (based on GMD ID) */ \
> -	func(BATTLEMAGE)
> +	func(battlemage)
>  
>  #define __ENUM(x) INTEL_DISPLAY_ ## x,
>  
> -- 
> 2.39.5
> 

  reply	other threads:[~2024-10-07 19:49 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-09-30 12:31 [PATCH v3 00/15] drm/i915/display: platform identification with display->platform.<platform> Jani Nikula
2024-09-30 12:31 ` [PATCH v3 01/15] drm/i915/display: reindent subplatform initialization Jani Nikula
2024-10-07 19:35   ` Rodrigo Vivi
2024-09-30 12:31 ` [PATCH v3 02/15] drm/i915/display: use a macro to initialize subplatforms Jani Nikula
2024-10-07 19:41   ` Rodrigo Vivi
2024-09-30 12:31 ` [PATCH v3 03/15] drm/i915/display: use a macro to define platform enumerations Jani Nikula
2024-10-07 19:48   ` Rodrigo Vivi
2024-10-07 20:36   ` Michal Wajdeczko
2024-10-08  9:30     ` Jani Nikula
2024-10-08  9:42       ` Michal Wajdeczko
2024-10-08 10:08         ` Jani Nikula
2024-09-30 12:31 ` [PATCH v3 04/15] drm/i915/display: join the platform and subplatform enums Jani Nikula
2024-10-07 19:49   ` Rodrigo Vivi
2024-09-30 12:31 ` [PATCH v3 05/15] drm/i915/display: convert display platforms to lower case Jani Nikula
2024-10-07 19:49   ` Rodrigo Vivi [this message]
2024-09-30 12:31 ` [PATCH v3 06/15] drm/i915/display: add display platforms structure with platform members Jani Nikula
2024-10-07 19:54   ` Rodrigo Vivi
2024-10-08  9:36     ` Jani Nikula
2024-09-30 12:31 ` [PATCH v3 07/15] drm/i915/display: add platform member to struct intel_display Jani Nikula
2024-09-30 12:31 ` [PATCH v3 08/15] drm/i915/display: remove the display platform enum as unnecessary Jani Nikula
2024-09-30 12:31 ` [PATCH v3 09/15] drm/i915/display: add platform group for g4x Jani Nikula
2024-09-30 12:31 ` [PATCH v3 10/15] drm/i915/display: add subplatform group for HSW/BDW ULT Jani Nikula
2024-09-30 12:31 ` [PATCH v3 11/15] drm/i915/bios: use display->platform.<platform> instead of IS_<PLATFORM>() Jani Nikula
2024-09-30 12:31 ` [PATCH v3 12/15] drm/i915/pps: " Jani Nikula
2024-09-30 12:31 ` [PATCH v3 13/15] drm/i915/tv: " Jani Nikula
2024-09-30 12:31 ` [PATCH v3 14/15] drm/i915/vga: " Jani Nikula
2024-09-30 12:31 ` [PATCH v3 15/15] drm/i915/vblank: " Jani Nikula
2024-09-30 16:27 ` ✓ CI.Patch_applied: success for drm/i915/display: platform identification with display->platform.<platform> Patchwork
2024-09-30 16:27 ` ✗ CI.checkpatch: warning " Patchwork
2024-09-30 16:29 ` ✓ CI.KUnit: success " Patchwork
2024-09-30 16:41 ` ✓ CI.Build: " Patchwork
2024-09-30 16:44 ` ✓ CI.Hooks: " Patchwork
2024-09-30 16:45 ` ✗ CI.checksparse: warning " Patchwork
2024-09-30 17:19 ` ✓ CI.BAT: success " Patchwork
2024-09-30 21:50 ` ✗ CI.FULL: failure " Patchwork
2024-10-01  1:45 ` ✗ Fi.CI.SPARSE: warning " Patchwork
2024-10-01  1:53 ` ✓ Fi.CI.BAT: success " Patchwork
2024-10-01 14:34 ` ✗ Fi.CI.IGT: failure " Patchwork

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=ZwQ7XGH3atqGyMci@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=maarten.lankhorst@linux.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.