public inbox for linux-next@vger.kernel.org
 help / color / mirror / Atom feed
From: Mark Brown <broonie@kernel.org>
To: Dave Airlie <airlied@redhat.com>, DRI <dri-devel@lists.freedesktop.org>
Cc: "Brian Nguyen" <brian3.nguyen@intel.com>,
	"Linux Kernel Mailing List" <linux-kernel@vger.kernel.org>,
	"Linux Next Mailing List" <linux-next@vger.kernel.org>,
	"Lukasz Laguna" <lukasz.laguna@intel.com>,
	"Matthew Brost" <matthew.brost@intel.com>,
	"Matt Roper" <matthew.d.roper@intel.com>,
	"Michal Wajdeczko" <michal.wajdeczko@intel.com>,
	"Nitin Gote" <nitin.r.gote@intel.com>,
	"Oak Zeng" <oak.zeng@intel.com>,
	"Tejas Upadhyay" <tejas.upadhyay@intel.com>,
	"Thomas Hellström" <thomas.hellstrom@linux.intel.com>
Subject: linux-next: manual merge of the drm tree with the drm-fixes tree
Date: Fri, 30 Jan 2026 15:37:28 +0000	[thread overview]
Message-ID: <aXzQOAppSJT_SUlb@sirena.org.uk> (raw)

[-- Attachment #1: Type: text/plain, Size: 3823 bytes --]

Hi all,

Today's linux-next merge of the drm tree got conflicts in:

  drivers/gpu/drm/xe/xe_pci.c
  drivers/gpu/drm/xe/xe_pci_types.h

between commit:

  ca8dcfedac480 ("drm/xe: derive mem copy capability from graphics version")

from the drm-fixes tree and commits:

  83f4151787c5d ("drm/xe/lnl: Drop pre-production workaround support")
  7ef2d25e47736 ("drm/xe: Track pre-production workaround support")
  9b1a0e0a15c97 ("drm/xe: Add page reclamation info to device info")
  79cb005c71343 ("drm/xe: Add device flag to indicate standalone MERT")

from the drm tree.

I fixed it up (see below) and can carry the fix as necessary. This
is now fixed as far as linux-next is concerned, but any non trivial
conflicts should be mentioned to your upstream maintainer when your tree
is submitted for merging.  You may also want to consider cooperating
with the maintainer of the conflicting tree to minimise any particularly
complex conflicts.

diff --cc drivers/gpu/drm/xe/xe_pci.c
index 2aa883f5ef797,09189ff3da441..0000000000000
--- a/drivers/gpu/drm/xe/xe_pci.c
+++ b/drivers/gpu/drm/xe/xe_pci.c
@@@ -358,10 -365,15 +364,14 @@@ static const struct xe_device_desc bmg_
  	.has_fan_control = true,
  	.has_flat_ccs = 1,
  	.has_mbx_power_limits = true,
+ 	.has_mbx_thermal_info = true,
  	.has_gsc_nvm = 1,
  	.has_heci_cscfi = 1,
+ 	.has_i2c = true,
  	.has_late_bind = true,
+ 	.has_pre_prod_wa = 1,
+ 	.has_soc_remapper_telem = true,
  	.has_sriov = true,
 -	.has_mem_copy_instr = true,
  	.max_gt_per_tile = 2,
  	.needs_scratch = true,
  	.subplatforms = (const struct xe_subplatform_desc[]) {
@@@ -378,6 -390,9 +388,8 @@@ static const struct xe_device_desc ptl_
  	.has_display = true,
  	.has_flat_ccs = 1,
  	.has_sriov = true,
 -	.has_mem_copy_instr = true,
+ 	.has_pre_prod_wa = 1,
+ 	.has_pxp = true,
  	.max_gt_per_tile = 2,
  	.needs_scratch = true,
  	.needs_shared_vf_gt_wq = true,
@@@ -390,6 -405,8 +402,7 @@@ static const struct xe_device_desc nvls
  	.dma_mask_size = 46,
  	.has_display = true,
  	.has_flat_ccs = 1,
 -	.has_mem_copy_instr = true,
+ 	.has_pre_prod_wa = 1,
  	.max_gt_per_tile = 2,
  	.require_force_probe = true,
  	.va_bits = 48,
@@@ -666,11 -692,18 +688,17 @@@ static int xe_info_init_early(struct xe
  	xe->info.has_gsc_nvm = desc->has_gsc_nvm;
  	xe->info.has_heci_gscfi = desc->has_heci_gscfi;
  	xe->info.has_heci_cscfi = desc->has_heci_cscfi;
+ 	xe->info.has_i2c = desc->has_i2c;
  	xe->info.has_late_bind = desc->has_late_bind;
  	xe->info.has_llc = desc->has_llc;
+ 	xe->info.has_mert = desc->has_mert;
+ 	xe->info.has_page_reclaim_hw_assist = desc->has_page_reclaim_hw_assist;
+ 	xe->info.has_pre_prod_wa = desc->has_pre_prod_wa;
  	xe->info.has_pxp = desc->has_pxp;
+ 	xe->info.has_soc_remapper_sysctrl = desc->has_soc_remapper_sysctrl;
+ 	xe->info.has_soc_remapper_telem = desc->has_soc_remapper_telem;
  	xe->info.has_sriov = xe_configfs_primary_gt_allowed(to_pci_dev(xe->drm.dev)) &&
  		desc->has_sriov;
 -	xe->info.has_mem_copy_instr = desc->has_mem_copy_instr;
  	xe->info.skip_guc_pc = desc->skip_guc_pc;
  	xe->info.skip_mtcfg = desc->skip_mtcfg;
  	xe->info.skip_pcode = desc->skip_pcode;
diff --cc drivers/gpu/drm/xe/xe_pci_types.h
index a4451bdc79fb3,20acc5349ee6d..0000000000000
--- a/drivers/gpu/drm/xe/xe_pci_types.h
+++ b/drivers/gpu/drm/xe/xe_pci_types.h
@@@ -46,7 -48,14 +48,13 @@@ struct xe_device_desc 
  	u8 has_late_bind:1;
  	u8 has_llc:1;
  	u8 has_mbx_power_limits:1;
+ 	u8 has_mbx_thermal_info:1;
 -	u8 has_mem_copy_instr:1;
+ 	u8 has_mert:1;
+ 	u8 has_pre_prod_wa:1;
+ 	u8 has_page_reclaim_hw_assist:1;
  	u8 has_pxp:1;
+ 	u8 has_soc_remapper_sysctrl:1;
+ 	u8 has_soc_remapper_telem:1;
  	u8 has_sriov:1;
  	u8 needs_scratch:1;
  	u8 skip_guc_pc:1;

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 488 bytes --]

             reply	other threads:[~2026-01-30 15:37 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-01-30 15:37 Mark Brown [this message]
  -- strict thread matches above, loose matches on Subject: below --
2026-03-27 20:52 linux-next: manual merge of the drm tree with the drm-fixes tree Mark Brown
2026-03-27 20:46 Mark Brown
2026-03-09 14:35 Mark Brown
2026-03-06 13:47 Mark Brown
2026-03-06 13:47 Mark Brown
2026-01-30 15:28 Mark Brown
2026-01-23 17:45 Mark Brown
2025-06-27  2:58 Stephen Rothwell
2024-10-18  1:56 Stephen Rothwell
2024-06-27 15:08 Mark Brown
2024-06-27 15:00 Mark Brown
2024-06-21 13:21 Mark Brown
2023-08-18  1:53 Stephen Rothwell
2023-02-13  0:23 Stephen Rothwell
2022-09-26 17:49 broonie
2022-02-25 16:37 broonie
2022-02-24 16:33 broonie
2021-08-06 12:04 Mark Brown
2021-08-10 11:56 ` Geert Uytterhoeven
2021-08-10 12:53   ` Stephen Rothwell
2020-07-10  2:28 Stephen Rothwell
2019-08-23  3:20 Stephen Rothwell
2019-07-05  2:50 Stephen Rothwell
2019-03-01  2:23 Stephen Rothwell
2019-03-01 23:29 ` Alex Deucher
2019-03-04  0:54   ` Stephen Rothwell
2019-03-11 12:36     ` Daniel Vetter
2018-12-14  1:51 Stephen Rothwell
2018-12-07  2:38 Stephen Rothwell
2018-12-07  2:31 Stephen Rothwell

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=aXzQOAppSJT_SUlb@sirena.org.uk \
    --to=broonie@kernel.org \
    --cc=airlied@redhat.com \
    --cc=brian3.nguyen@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-next@vger.kernel.org \
    --cc=lukasz.laguna@intel.com \
    --cc=matthew.brost@intel.com \
    --cc=matthew.d.roper@intel.com \
    --cc=michal.wajdeczko@intel.com \
    --cc=nitin.r.gote@intel.com \
    --cc=oak.zeng@intel.com \
    --cc=tejas.upadhyay@intel.com \
    --cc=thomas.hellstrom@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