From 68a3eb192d4653860f7336610a7ecc3bc31472d5 Mon Sep 17 00:00:00 2001 From: Rodrigo Vivi Date: Wed, 4 Jan 2017 15:09:35 -0800 Subject: lib/cfl: Introduce Coffeelake platform definition. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Coffeelake is a IntelĀ® Processor containing IntelĀ® HD Graphics following Kabylake. It is Gen9 graphics based platform on top of CNP PCH. On following patches we will start adding PCI IDs and the platform specific changes. Signed-off-by: Rodrigo Vivi Reviewed-by: Clinton Taylor --- lib/intel_chipset.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/intel_chipset.h') diff --git a/lib/intel_chipset.h b/lib/intel_chipset.h index 259b45f5..24688907 100644 --- a/lib/intel_chipset.h +++ b/lib/intel_chipset.h @@ -64,6 +64,7 @@ struct intel_device_info { bool is_broxton : 1; bool is_kabylake : 1; bool is_geminilake : 1; + bool is_coffeelake : 1; const char *codename; }; @@ -158,6 +159,7 @@ void intel_check_pch(void); #define IS_SKYLAKE(devid) (intel_get_device_info(devid)->is_skylake) #define IS_BROXTON(devid) (intel_get_device_info(devid)->is_broxton) #define IS_GEMINILAKE(devid) (intel_get_device_info(devid)->is_geminilake) +#define IS_COFFEELAKE(devid) (intel_get_device_info(devid)->is_coffeelake) #define IS_GEN(devid, x) (intel_get_device_info(devid)->gen & (1u << ((x)-1))) #define AT_LEAST_GEN(devid, x) (intel_get_device_info(devid)->gen & -(1u << ((x)-1))) -- cgit v1.2.3