Skip to content

Commit

Permalink
Add support for 0x3E980003 frame id for CFL refresh
Browse files Browse the repository at this point in the history
  • Loading branch information
vit9696 committed May 16, 2019
1 parent c044b11 commit 466d88d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ Lilu Changelog
==============
#### v1.3.6
- Lilu now uses OpenCore NVRAM variable GUIDs
- Add support for `0x3E980003` frame id for CFL refresh

#### v1.3.5
- Fixed analog audio device detection on certain laptops with Insyde firmware
Expand Down
1 change: 1 addition & 0 deletions Lilu/Headers/kern_devinfo.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,7 @@ class DeviceInfo {
static constexpr uint32_t ConnectorLessKabyLakePlatformId2 {0x59120003};
static constexpr uint32_t ConnectorLessCoffeeLakePlatformId1 {0x3E920003};
static constexpr uint32_t ConnectorLessCoffeeLakePlatformId2 {0x3E910003};
static constexpr uint32_t ConnectorLessCoffeeLakePlatformId3 {0x3E980003};

public:
/**
Expand Down
3 changes: 2 additions & 1 deletion Lilu/Sources/kern_devinfo.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,8 @@ bool DeviceInfo::isConnectorLessPlatformId(uint32_t id) {
id == ConnectorLessKabyLakePlatformId1 ||
id == ConnectorLessKabyLakePlatformId2 ||
id == ConnectorLessCoffeeLakePlatformId1 ||
id == ConnectorLessCoffeeLakePlatformId2;
id == ConnectorLessCoffeeLakePlatformId2 ||
id == ConnectorLessCoffeeLakePlatformId3;
}

void DeviceInfo::grabDevicesFromPciRoot(IORegistryEntry *pciRoot) {
Expand Down

0 comments on commit 466d88d

Please # to comment.