summaryrefslogtreecommitdiffstats
path: root/include/pci_ids
diff options
context:
space:
mode:
authorBen Widawsky <benjamin.widawsky@intel.com>2016-02-08 12:42:29 -0800
committerBen Widawsky <benjamin.widawsky@intel.com>2016-03-11 11:17:28 -0800
commitd1ab544bb883d040576f0bd7f28ad3cda4c8ae05 (patch)
tree18b767fbfa6d3f9724486124e6d06b23aaa3c574 /include/pci_ids
parent5e6a43a001db0bb333deb3d003df11ab8ef96a21 (diff)
downloadexternal_mesa3d-d1ab544bb883d040576f0bd7f28ad3cda4c8ae05.zip
external_mesa3d-d1ab544bb883d040576f0bd7f28ad3cda4c8ae05.tar.gz
external_mesa3d-d1ab544bb883d040576f0bd7f28ad3cda4c8ae05.tar.bz2
i965/chv: Display proper branding
"Braswell" is a Cherryview based *thing*. It unfortunately requires extra information to determine its marketing name. Unlike all previous products, and hopefully all future ones, there is no unique 1:1 mapping of PCI device ID to brand string. I put up a fight about adding any complexity to our GL renderer string code for a very long time. However, a wise man made a comment to me that I couldn't argue with: if a user installs Windows on their hardware, the brand string should be the same as what we display in Linux. The Windows driver apparently does this check, so we should too. Note that I did manage to find a good use for this info anyway in the compute shader thread counts. v2: memcpy instead of strncpy, and some minor changes (Matt) Signed-off-by: Ben Widawsky <benjamin.widawsky@intel.com> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Jordan Justen <jordan.l.justen@intel.com
Diffstat (limited to 'include/pci_ids')
-rw-r--r--include/pci_ids/i965_pci_ids.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/pci_ids/i965_pci_ids.h b/include/pci_ids/i965_pci_ids.h
index bdfbefe..bd645fa 100644
--- a/include/pci_ids/i965_pci_ids.h
+++ b/include/pci_ids/i965_pci_ids.h
@@ -156,8 +156,8 @@ CHIPSET(0x5932, kbl_gt4, "Intel(R) Kabylake GT4")
CHIPSET(0x593A, kbl_gt4, "Intel(R) Kabylake GT4")
CHIPSET(0x593B, kbl_gt4, "Intel(R) Kabylake GT4")
CHIPSET(0x593D, kbl_gt4, "Intel(R) Kabylake GT4")
-CHIPSET(0x22B0, chv, "Intel(R) HD Graphics (Cherryview)")
-CHIPSET(0x22B1, chv, "Intel(R) HD Graphics (Cherryview)")
+CHIPSET(0x22B0, chv, "Intel(R) HD Graphics (Cherrytrail)")
+CHIPSET(0x22B1, chv, "Intel(R) HD Graphics XXX (Braswell)") /* Overridden in brw_get_renderer_string */
CHIPSET(0x22B2, chv, "Intel(R) HD Graphics (Cherryview)")
CHIPSET(0x22B3, chv, "Intel(R) HD Graphics (Cherryview)")
CHIPSET(0x0A84, bxt, "Intel(R) HD Graphics (Broxton)")