Skip to content

Commit 544a8be

Browse files
authored
Introduce ARL-H support (#172)
1 parent f594362 commit 544a8be

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

Source/inc/common/igfxfmid.h

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1966,6 +1966,11 @@ typedef enum __NATIVEGTTYPE
19661966
// ARL-S
19671967
#define DEV_ID_7D67 0x7D67
19681968

1969+
// ARL-H
1970+
#define DEV_ID_7D41 0x7D41
1971+
#define DEV_ID_7D51 0x7D51
1972+
#define DEV_ID_7DD1 0x7DD1
1973+
19691974
#define MGM_HAS 0
19701975

19711976
//#define SDG_HAS 1 //Reserve place for Springdale-G HAS
@@ -2012,6 +2017,11 @@ typedef enum __NATIVEGTTYPE
20122017
// Macro to identify ARL-S Device ID
20132018
#define GFX_IS_ARL_S(d) ( ( d == DEV_ID_7D67 ) )
20142019

2020+
// Macro to identify ARL-H Device ID
2021+
#define GFX_IS_ARL_H(d) ( ( d == DEV_ID_7D41 ) || \
2022+
( d == DEV_ID_7D51 ) || \
2023+
( d == DEV_ID_7DD1 ))
2024+
20152025
//we define the highest cap and lower cap of stepping IDs
20162026
#define SI_REV_ID(lo,hi) (lo | hi<<16)
20172027

0 commit comments

Comments
 (0)