Introduce ARL-H support (#172)

This commit is contained in:
John Machado 2024-02-09 13:10:18 +05:30 committed by GitHub
parent f5943626a1
commit 544a8be6f6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 0 deletions

View File

@ -1966,6 +1966,11 @@ typedef enum __NATIVEGTTYPE
// ARL-S
#define DEV_ID_7D67 0x7D67
// ARL-H
#define DEV_ID_7D41 0x7D41
#define DEV_ID_7D51 0x7D51
#define DEV_ID_7DD1 0x7DD1
#define MGM_HAS 0
//#define SDG_HAS 1 //Reserve place for Springdale-G HAS
@ -2012,6 +2017,11 @@ typedef enum __NATIVEGTTYPE
// Macro to identify ARL-S Device ID
#define GFX_IS_ARL_S(d) ( ( d == DEV_ID_7D67 ) )
// Macro to identify ARL-H Device ID
#define GFX_IS_ARL_H(d) ( ( d == DEV_ID_7D41 ) || \
( d == DEV_ID_7D51 ) || \
( d == DEV_ID_7DD1 ))
//we define the highest cap and lower cap of stepping IDs
#define SI_REV_ID(lo,hi) (lo | hi<<16)