All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Surendrakumar Upadhyay, TejaskumarX" <tejaskumarx.surendrakumar.upadhyay@intel.com>
To: Jani Nikula <jani.nikula@linux.intel.com>,
	"intel-gfx@lists.freedesktop.org"
	<intel-gfx@lists.freedesktop.org>
Subject: Re: [Intel-gfx] [PATCH V3] drm/i915/adl-n: Enable ADL-N platform
Date: Thu, 16 Dec 2021 11:49:42 +0000	[thread overview]
Message-ID: <PH7PR11MB58198ADADA9696C530EED98BDF779@PH7PR11MB5819.namprd11.prod.outlook.com> (raw)
In-Reply-To: <PH7PR11MB5819F79DC3340A5357D850D4DF719@PH7PR11MB5819.namprd11.prod.outlook.com>



> -----Original Message-----
> From: Surendrakumar Upadhyay, TejaskumarX
> Sent: 10 December 2021 16:21
> To: Jani Nikula <jani.nikula@linux.intel.com>; intel-gfx@lists.freedesktop.org
> Subject: RE: [Intel-gfx] [PATCH V3] drm/i915/adl-n: Enable ADL-N platform
> 
> 
> 
> > -----Original Message-----
> > From: Jani Nikula <jani.nikula@linux.intel.com>
> > Sent: 10 December 2021 16:18
> > To: Surendrakumar Upadhyay, TejaskumarX
> > <tejaskumarx.surendrakumar.upadhyay@intel.com>; intel-
> > gfx@lists.freedesktop.org
> > Subject: Re: [Intel-gfx] [PATCH V3] drm/i915/adl-n: Enable ADL-N
> > platform
> >
> > On Fri, 10 Dec 2021, Tejas Upadhyay
> > <tejaskumarx.surendrakumar.upadhyay@intel.com> wrote:
> > > Adding PCI device ids and enabling ADL-N platform.
> > > ADL-N from i915 point of view is subplatform of ADL-P.
> > >
> > > BSpec: 68397
> > >
> > > Changes since V2:
> > > 	- Added version log history
> > > Changes since V1:
> > > 	- replace IS_ALDERLAKE_N with IS_ADLP_N - Jani Nikula
> > >
> > > Signed-off-by: Tejas Upadhyay
> > > <tejaskumarx.surendrakumar.upadhyay@intel.com>
> > > ---
> > >  arch/x86/kernel/early-quirks.c           | 1 +
> > >  drivers/gpu/drm/i915/i915_drv.h          | 2 ++
> > >  drivers/gpu/drm/i915/i915_pci.c          | 1 +
> > >  drivers/gpu/drm/i915/intel_device_info.c | 7 +++++++
> > > drivers/gpu/drm/i915/intel_device_info.h | 3 +++
> > >  include/drm/i915_pciids.h                | 6 ++++++
> > >  6 files changed, 20 insertions(+)
> > >
> > > diff --git a/arch/x86/kernel/early-quirks.c
> > > b/arch/x86/kernel/early-quirks.c index fd2d3ab38ebb..1ca3a56fdc2d
> > > 100644
> > > --- a/arch/x86/kernel/early-quirks.c
> > > +++ b/arch/x86/kernel/early-quirks.c
> > > @@ -554,6 +554,7 @@ static const struct pci_device_id
> > > intel_early_ids[]
> > __initconst = {
> > >  	INTEL_RKL_IDS(&gen11_early_ops),
> > >  	INTEL_ADLS_IDS(&gen11_early_ops),
> > >  	INTEL_ADLP_IDS(&gen11_early_ops),
> > > +	INTEL_ADLN_IDS(&gen11_early_ops),
> > >  	INTEL_RPLS_IDS(&gen11_early_ops),
> > >  };
> > >
> > > diff --git a/drivers/gpu/drm/i915/i915_drv.h
> > > b/drivers/gpu/drm/i915/i915_drv.h index a0f54a69b11d..b2ec85a3e40a
> > > 100644
> > > --- a/drivers/gpu/drm/i915/i915_drv.h
> > > +++ b/drivers/gpu/drm/i915/i915_drv.h
> > > @@ -1283,6 +1283,8 @@ IS_SUBPLATFORM(const struct
> drm_i915_private
> > *i915,
> > >  	IS_SUBPLATFORM(dev_priv, INTEL_DG2, INTEL_SUBPLATFORM_G11)
> > #define
> > > IS_ADLS_RPLS(dev_priv) \
> > >  	IS_SUBPLATFORM(dev_priv, INTEL_ALDERLAKE_S,
> > INTEL_SUBPLATFORM_RPL_S)
> > > +#define IS_ADLP_N(dev_priv) \
> > > +	IS_SUBPLATFORM(dev_priv, INTEL_ALDERLAKE_P,
> > INTEL_SUBPLATFORM_N)
> >
> > Oh, what do you need to use this for?
> >
> 
> Tejas : This is readiness for ADL-N specific workarounds.
> 
> > BR,
> > Jani.
> >

Hi Jani, you want any changes for this patch? Or we can go ahead and ack/merge?

Thanks,
Tejas
> >
> > >  #define IS_HSW_EARLY_SDV(dev_priv) (IS_HASWELL(dev_priv) && \
> > >  				    (INTEL_DEVID(dev_priv) & 0xFF00) ==
> > 0x0C00)  #define
> > > IS_BDW_ULT(dev_priv) \ diff --git a/drivers/gpu/drm/i915/i915_pci.c
> > > b/drivers/gpu/drm/i915/i915_pci.c index 708a23415e9c..6a19e9da53cc
> > > 100644
> > > --- a/drivers/gpu/drm/i915/i915_pci.c
> > > +++ b/drivers/gpu/drm/i915/i915_pci.c
> > > @@ -1132,6 +1132,7 @@ static const struct pci_device_id pciidlist[] = {
> > >  	INTEL_RKL_IDS(&rkl_info),
> > >  	INTEL_ADLS_IDS(&adl_s_info),
> > >  	INTEL_ADLP_IDS(&adl_p_info),
> > > +	INTEL_ADLN_IDS(&adl_p_info),
> > >  	INTEL_DG1_IDS(&dg1_info),
> > >  	INTEL_RPLS_IDS(&adl_s_info),
> > >  	{0, 0, 0}
> > > diff --git a/drivers/gpu/drm/i915/intel_device_info.c
> > > b/drivers/gpu/drm/i915/intel_device_info.c
> > > index a3446a2abcb2..54944d87cd3c 100644
> > > --- a/drivers/gpu/drm/i915/intel_device_info.c
> > > +++ b/drivers/gpu/drm/i915/intel_device_info.c
> > > @@ -170,6 +170,10 @@ static const u16 subplatform_portf_ids[] = {
> > >  	INTEL_ICL_PORT_F_IDS(0),
> > >  };
> > >
> > > +static const u16 subplatform_n_ids[] = {
> > > +	INTEL_ADLN_IDS(0),
> > > +};
> > > +
> > >  static const u16 subplatform_rpls_ids[] = {
> > >  	INTEL_RPLS_IDS(0),
> > >  };
> > > @@ -210,6 +214,9 @@ void intel_device_info_subplatform_init(struct
> > drm_i915_private *i915)
> > >  	} else if (find_devid(devid, subplatform_portf_ids,
> > >  			      ARRAY_SIZE(subplatform_portf_ids))) {
> > >  		mask = BIT(INTEL_SUBPLATFORM_PORTF);
> > > +	} else if (find_devid(devid, subplatform_n_ids,
> > > +				ARRAY_SIZE(subplatform_n_ids))) {
> > > +		mask = BIT(INTEL_SUBPLATFORM_N);
> > >  	} else if (find_devid(devid, subplatform_rpls_ids,
> > >  			      ARRAY_SIZE(subplatform_rpls_ids))) {
> > >  		mask = BIT(INTEL_SUBPLATFORM_RPL_S); diff --git
> > > a/drivers/gpu/drm/i915/intel_device_info.h
> > > b/drivers/gpu/drm/i915/intel_device_info.h
> > > index 213ae2c07126..e341d90f28a2 100644
> > > --- a/drivers/gpu/drm/i915/intel_device_info.h
> > > +++ b/drivers/gpu/drm/i915/intel_device_info.h
> > > @@ -113,6 +113,9 @@ enum intel_platform {
> > >  /* ADL-S */
> > >  #define INTEL_SUBPLATFORM_RPL_S	0
> > >
> > > +/* ADL-P */
> > > +#define INTEL_SUBPLATFORM_N    0
> > > +
> > >  enum intel_ppgtt_type {
> > >  	INTEL_PPGTT_NONE = I915_GEM_PPGTT_NONE,
> > >  	INTEL_PPGTT_ALIASING = I915_GEM_PPGTT_ALIASING, diff --git
> > > a/include/drm/i915_pciids.h b/include/drm/i915_pciids.h index
> > > baf3d1d3d566..533890dc9da1 100644
> > > --- a/include/drm/i915_pciids.h
> > > +++ b/include/drm/i915_pciids.h
> > > @@ -666,6 +666,12 @@
> > >  	INTEL_VGA_DEVICE(0x46C2, info), \
> > >  	INTEL_VGA_DEVICE(0x46C3, info)
> > >
> > > +/* ADL-N */
> > > +#define INTEL_ADLN_IDS(info) \
> > > +	INTEL_VGA_DEVICE(0x46D0, info), \
> > > +	INTEL_VGA_DEVICE(0x46D1, info), \
> > > +	INTEL_VGA_DEVICE(0x46D2, info)
> > > +
> > >  /* RPL-S */
> > >  #define INTEL_RPLS_IDS(info) \
> > >  	INTEL_VGA_DEVICE(0xA780, info), \
> >
> > --
> > Jani Nikula, Intel Open Source Graphics Center

  reply	other threads:[~2021-12-16 11:49 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-12-10  5:18 [Intel-gfx] [PATCH V3] drm/i915/adl-n: Enable ADL-N platform Tejas Upadhyay
2021-12-10 10:48 ` Jani Nikula
2021-12-10 10:50   ` Surendrakumar Upadhyay, TejaskumarX
2021-12-16 11:49     ` Surendrakumar Upadhyay, TejaskumarX [this message]
2021-12-10 12:45 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915/adl-n: Enable ADL-N platform (rev3) Patchwork
2021-12-10 12:46 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2021-12-10 13:14 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2021-12-11  8:34 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
2021-12-16 11:57 ` [Intel-gfx] [PATCH V3] drm/i915/adl-n: Enable ADL-N platform Jani Nikula
2021-12-17 10:37   ` Srivatsa, Anusha
2021-12-17 13:27 ` Jani Nikula
2021-12-17 13:27   ` Jani Nikula
2021-12-18  9:31   ` Thomas Gleixner
2021-12-18  9:31     ` Thomas Gleixner
2021-12-22  8:17     ` Jani Nikula
2021-12-22  8:17       ` Jani Nikula
2021-12-19  8:49   ` Lucas De Marchi
2021-12-19  8:49     ` Lucas De Marchi
2021-12-20 11:33     ` Borislav Petkov
2021-12-20 11:33       ` Borislav Petkov
2021-12-22  8:18       ` Jani Nikula
2021-12-22  8:18         ` Jani Nikula

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=PH7PR11MB58198ADADA9696C530EED98BDF779@PH7PR11MB5819.namprd11.prod.outlook.com \
    --to=tejaskumarx.surendrakumar.upadhyay@intel.com \
    --cc=intel-gfx@lists.freedesktop.org \
    --cc=jani.nikula@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.