Skip to content

Commit

Permalink
xue: Add support for Alder Lake xHCI
Browse files Browse the repository at this point in the history
  • Loading branch information
chp-io committed Feb 12, 2024
1 parent b73575b commit 2efa61a
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions deps/xue/include/xue.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
#define XUE_XHC_DEV_CANNON_POINT 0x9DEDULL
#define XUE_XHC_DEV_COMET_LAKE 0x02EDULL
#define XUE_XHC_DEV_TIGER_LAKE 0xA0EDULL
#define XUE_XHC_DEV_ALDER_LAKE 0x51EDULL

/* DbC idVendor and idProduct */
#define XUE_DBC_VENDOR 0x1D6B
Expand Down Expand Up @@ -71,6 +72,7 @@ static inline int known_xhc(uint32_t dev_ven)
case (XUE_XHC_DEV_CANNON_POINT << 16) | XUE_XHC_VEN_INTEL:
case (XUE_XHC_DEV_COMET_LAKE << 16) | XUE_XHC_VEN_INTEL:
case (XUE_XHC_DEV_TIGER_LAKE << 16) | XUE_XHC_VEN_INTEL:
case (XUE_XHC_DEV_ALDER_LAKE << 16) | XUE_XHC_VEN_INTEL:
return 1;
default:
return 0;
Expand Down

0 comments on commit 2efa61a

Please sign in to comment.