Igt-dev Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: "Taylor, Clinton A" <clinton.a.taylor@intel.com>
To: "igt-dev@lists.freedesktop.org" <igt-dev@lists.freedesktop.org>,
	"Pottumuttu, Sai Teja" <sai.teja.pottumuttu@intel.com>
Subject: Re: [PATCH i-g-t v3 1/9] PTL: lib/intel_chipset: add pantherlake definition and support
Date: Fri, 15 Nov 2024 23:38:30 +0000	[thread overview]
Message-ID: <da10fba7035dd6fac673b121b591a3e249a43124.camel@intel.com> (raw)
In-Reply-To: <23b82425-281d-4ff5-b49f-165d1f10ecdb@intel.com>

On Fri, 2024-11-15 at 14:16 +0530, Pottumuttu, Sai Teja wrote:
> On 15-11-2024 00:33, Clint Taylor wrote:
> > From: Matt Atwood <matthew.s.atwood@intel.com>
> > 
> > Add support for the pantherlake platform for xe.
> > 
> > Signed-off-by: Matt Atwood <matthew.s.atwood@intel.com>
> > Signed-off-by: Clint Taylor <Clinton.A.Taylor@intel.com>
> 
> I think we can squash this one and the next flatccs patch so that the 
> complete/correct support stays in a single commit.

Good idea. Will make the change in the next version.

-Clint

> 
> 
> Thanks,
> Sai Teja
> 
> > ---
> >   lib/intel_chipset.h     |  2 ++
> >   lib/intel_device_info.c | 12 ++++++++++++
> >   2 files changed, 14 insertions(+)
> > 
> > diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h
> > index 0c04476bf..c93ad9f75 100644
> > --- a/lib/intel_chipset.h
> > +++ b/lib/intel_chipset.h
> > @@ -92,6 +92,8 @@ struct intel_device_info {
> >   	bool is_pontevecchio : 1;
> >   	bool is_lunarlake : 1;
> >   	bool is_battlemage : 1;
> > +	bool is_pantherlake : 1;
> > +
> >   	const struct intel_cmds_info *cmds_info;
> >   	const char *codename;
> >   };
> > diff --git a/lib/intel_device_info.c b/lib/intel_device_info.c
> > index 546b9c65a..69132e91c 100644
> > --- a/lib/intel_device_info.c
> > +++ b/lib/intel_device_info.c
> > @@ -526,6 +526,16 @@ static const struct intel_device_info intel_battlemage_info = {
> >   	.cmds_info = &xe2_cmds_info,
> >   };
> >   
> > +static const struct intel_device_info intel_pantherlake_info = {
> > +	.graphics_ver = 30,
> > +	.graphics_rel = 0,
> > +	.display_ver = 30,
> > +	.has_4tile = true,
> > +	.is_pantherlake = true,
> > +	.codename = "pantherlake",
> > +	.cmds_info = &gen12_pvc_cmds_info,
> > +};
> > +
> >   #define INTEL_PCI_ID_INIT(_id, _info) { \
> >   	.vendor_id = 0x8086, .device_id = (_id), \
> >   	.subvendor_id = PCI_MATCH_ANY, .subdevice_id = PCI_MATCH_ANY, \
> > @@ -642,6 +652,8 @@ static const struct pci_id_match intel_device_match[] = {
> >   
> >   	INTEL_BMG_IDS(INTEL_PCI_ID_INIT, &intel_battlemage_info),
> >   
> > +	INTEL_PTL_IDS(INTEL_PCI_ID_INIT, &intel_pantherlake_info),
> > +
> >   	INTEL_PCI_ID_INIT(PCI_MATCH_ANY, &intel_generic_info),
> >   };
> >   

  reply	other threads:[~2024-11-15 23:38 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-11-14 19:03 [PATCH i-g-t v3 0/9] Initial PTL support Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 1/9] PTL: lib/intel_chipset: add pantherlake definition and support Clint Taylor
2024-11-15  8:46   ` Pottumuttu, Sai Teja
2024-11-15 23:38     ` Taylor, Clinton A [this message]
2024-11-14 19:03 ` [PATCH i-g-t v3 2/9] PTL: lib/intel_device_info: Enable flatccs for PTL Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 3/9] XE3: lib/intel_pat: extend for xe3 Clint Taylor
2024-11-19  9:34   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 4/9] XE3: tests/intel/xe_pat: " Clint Taylor
2024-11-19 10:09   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 5/9] XE3: tests/kms_addfb_basic: fix x-tiled tests for case when there is no x-tile Clint Taylor
2024-11-15 13:31   ` Kamil Konieczny
2024-11-15 23:42     ` Taylor, Clinton A
2024-11-18 12:48       ` Kamil Konieczny
2024-11-28 14:05       ` Juha-Pekka Heikkilä
2024-11-14 19:03 ` [PATCH i-g-t v3 6/9] XE3: tests/intel/kms_draw_crc: " Clint Taylor
2024-11-21  5:52   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 7/9] XE3: tests/kms_cursor_legacy: flip_vs_cursor_busy_crc was requiring any driver but used intel x-tile Clint Taylor
2024-11-14 19:03 ` [PATCH i-g-t v3 8/9] XE3: tests/intel/kms_frontbuffer_tracking: fix x-tiled tests for case when there is no x-tile Clint Taylor
2024-12-02  7:04   ` Pottumuttu, Sai Teja
2024-11-14 19:03 ` [PATCH i-g-t v3 9/9] XE3: tests/intel/kms_frontbuffer_tracking: platform based handling of x-tile cases Clint Taylor
2024-11-14 19:53 ` ✗ Fi.CI.BAT: failure for Initial PTL support (rev3) Patchwork
2024-11-14 20:37 ` ✓ CI.xeBAT: success " Patchwork
2024-11-15 15:48 ` ✗ CI.xeFULL: 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=da10fba7035dd6fac673b121b591a3e249a43124.camel@intel.com \
    --to=clinton.a.taylor@intel.com \
    --cc=igt-dev@lists.freedesktop.org \
    --cc=sai.teja.pottumuttu@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