dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
From: Ben Widawsky <ben@bwidawsk.net>
To: Ben Widawsky <benjamin.widawsky@intel.com>
Cc: mesa-dev <mesa-dev@lists.freedesktop.org>,
	dri-devel@lists.freedesktop.org
Subject: Re: [PATCH] [v2] intel: Add missing SKL device IDs
Date: Tue, 16 Feb 2016 19:31:37 -0800	[thread overview]
Message-ID: <20160217033136.GA1396@mail.bwidawsk.net> (raw)
In-Reply-To: <1455666165-29646-1-git-send-email-benjamin.widawsky@intel.com>

On Tue, Feb 16, 2016 at 03:42:45PM -0800, Ben Widawsky wrote:
> A new list yielded new devices that apparently have shipped, or will ship.
> 
> v2: I can't read. 0x192d is GT3
> 
> Signed-off-by: Ben Widawsky <benjamin.widawsky@intel.com>
> ---
>  intel/intel_chipset.h | 11 ++++++++---
>  1 file changed, 8 insertions(+), 3 deletions(-)
> 
> diff --git a/intel/intel_chipset.h b/intel/intel_chipset.h
> index 35148e5..9c24701 100644
> --- a/intel/intel_chipset.h
> +++ b/intel/intel_chipset.h
> @@ -168,6 +168,7 @@
>  #define PCI_CHIP_SKYLAKE_DT_GT1		0x1902
>  #define PCI_CHIP_SKYLAKE_ULT_GT1	0x1906
>  #define PCI_CHIP_SKYLAKE_SRV_GT1	0x190A /* Reserved */
> +#define PCI_CHIP_SKYLAKE_H_GT1		0x190B
>  #define PCI_CHIP_SKYLAKE_ULX_GT1	0x190E /* Reserved */
>  #define PCI_CHIP_SKYLAKE_DT_GT2		0x1912
>  #define PCI_CHIP_SKYLAKE_FUSED0_GT2	0x1913 /* Reserved */
> @@ -182,6 +183,7 @@
>  #define PCI_CHIP_SKYLAKE_GT3		0x1926
>  #define PCI_CHIP_SKYLAKE_HALO_GT3	0x192B /* Reserved */
>  #define PCI_CHIP_SKYLAKE_SRV_GT4	0x192A
> +#define PCI_CHIP_SKYLAKE_MEDIA_SRV_GT3	0x192D
>  #define PCI_CHIP_SKYLAKE_DT_GT4		0x1932
>  #define PCI_CHIP_SKYLAKE_SRV_GT4X	0x193A
>  #define PCI_CHIP_SKYLAKE_H_GT4		0x193B
> @@ -376,7 +378,8 @@
>  #define IS_SKL_GT1(devid)	((devid) == PCI_CHIP_SKYLAKE_ULT_GT1	|| \
>  				 (devid) == PCI_CHIP_SKYLAKE_ULX_GT1	|| \
>  				 (devid) == PCI_CHIP_SKYLAKE_DT_GT1	|| \
> -				 (devid) == PCI_CHIP_SKYLAKE_SRV_GT1)
> +				 (devid) == PCI_CHIP_SKYLAKE_SRV_GT1	|| \
> +				 (devid) == PCI_CHIP_SKYLAKE_H_GT1)
>  
>  #define IS_SKL_GT2(devid)	((devid) == PCI_CHIP_SKYLAKE_DT_GT2	|| \
>  				 (devid) == PCI_CHIP_SKYLAKE_FUSED0_GT2	|| \
> @@ -390,13 +393,15 @@
>  				 (devid) == PCI_CHIP_SKYLAKE_MOBILE_GT2)
>  
>  #define IS_SKL_GT3(devid)	((devid) == PCI_CHIP_SKYLAKE_GT3	|| \
> -				 (devid) == PCI_CHIP_SKYLAKE_HALO_GT3)
> +				 (devid) == PCI_CHIP_SKYLAKE_HALO_GT3   || \
> +				 (devid) == PCI_CHIP_SKYLAKE_MEDIA_SRV_GT3)
> +
>  
>  #define IS_SKL_GT4(devid)	((devid) == PCI_CHIP_SKYLAKE_SRV_GT4	|| \
>  				 (devid) == PCI_CHIP_SKYLAKE_DT_GT4	|| \
>  				 (devid) == PCI_CHIP_SKYLAKE_SRV_GT4X	|| \
>  				 (devid) == PCI_CHIP_SKYLAKE_H_GT4	|| \
> -				 (devid) == PCI_CHIP_SKYLAKE_WKS_GT4)
> +				 (devid) == PCI_CHIP_SKYLAKE_WKS_GT4    || \

Really sloppy on my part... This hunk is gone from my local patch. I'm not even
sure really how I sent this out...

>  
>  #define IS_KBL_GT1(devid)	((devid) == PCI_CHIP_KABYLAKE_ULT_GT1_5	|| \
>  				 (devid) == PCI_CHIP_KABYLAKE_ULX_GT1_5	|| \
> -- 
> 2.7.1
> 
> _______________________________________________
> mesa-dev mailing list
> mesa-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/mesa-dev
_______________________________________________
mesa-dev mailing list
mesa-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/mesa-dev

      reply	other threads:[~2016-02-17  3:31 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1455664759-21931-1-git-send-email-benjamin.widawsky@intel.com>
2016-02-16 23:22 ` [PATCH] intel: Add missing SKL device IDs Ben Widawsky
2016-02-16 23:42   ` [PATCH] [v2] " Ben Widawsky
2016-02-17  3:31     ` Ben Widawsky [this message]

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=20160217033136.GA1396@mail.bwidawsk.net \
    --to=ben@bwidawsk.net \
    --cc=benjamin.widawsky@intel.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=mesa-dev@lists.freedesktop.org \
    /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).