Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for new chipset #9

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ tested to work:

- Z370 (PCI device 0xA2AF)
- Z390 (PCI device 0xA36D)
- Series 100/C230 (PCI device 0xA12F)
- Wildcat Point-LP (PCI device 0x9CB1)
- Sunrise Point-LP (PCI device 0x9D2F)
- Cannon Point-LP (PCI device 0x9DED)
Expand Down
2 changes: 2 additions & 0 deletions include/xue.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@
/* Supported xHC PCI configurations */
#define XUE_XHC_CLASSC 0xC0330ULL
#define XUE_XHC_VEN_INTEL 0x8086ULL
#define XUE_XHC_DEV_C230 0xA12FULL
#define XUE_XHC_DEV_Z370 0xA2AFULL
#define XUE_XHC_DEV_Z390 0xA36DULL
#define XUE_XHC_DEV_WILDCAT_POINT 0x9CB1ULL
Expand Down Expand Up @@ -62,6 +63,7 @@
static inline int known_xhc(uint32_t dev_ven)
{
switch (dev_ven) {
case (XUE_XHC_DEV_C230 << 16) | XUE_XHC_VEN_INTEL:
case (XUE_XHC_DEV_Z370 << 16) | XUE_XHC_VEN_INTEL:
case (XUE_XHC_DEV_Z390 << 16) | XUE_XHC_VEN_INTEL:
case (XUE_XHC_DEV_WILDCAT_POINT << 16) | XUE_XHC_VEN_INTEL:
Expand Down