├── ACPI ├── SSDT-DGPU.aml ├── SSDT-DGPU.dsl ├── SSDT-I2CX.aml ├── SSDT-I2CX.dsl ├── SSDT-PCI0.aml ├── SSDT-PCI0.dsl ├── SSDT-PLUG.aml ├── SSDT-PLUG.dsl ├── SSDT-PNLF.aml ├── SSDT-PNLF.dsl ├── SSDT-PS2K.aml ├── SSDT-PS2K.dsl ├── SSDT-TYPC.aml ├── SSDT-TYPC.dsl ├── SSDT-USBX.aml ├── SSDT-USBX.dsl └── iasl ├── Capture.png ├── Drivers ├── OpenCanopy.efi ├── OpenHfsPlus.efi └── OpenRuntime.efi ├── Kexts ├── AirportBrcmFixup.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── AirportBrcmFixup │ │ └── PlugIns │ │ ├── AirPortBrcm4360_Injector.kext │ │ └── Contents │ │ │ └── Info.plist │ │ └── AirPortBrcmNIC_Injector.kext │ │ └── Contents │ │ └── Info.plist ├── AppleALC.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── AppleALC ├── BrcmBluetoothInjector.kext │ └── Contents │ │ └── Info.plist ├── BrcmFirmwareData.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── BrcmFirmwareData ├── BrcmPatchRAM3.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── BrcmPatchRAM3 ├── BrightnessKeys.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── BrightnessKeys ├── CPUFriend.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── CPUFriend ├── CPUFriendDataProvider.kext │ └── Contents │ │ └── Info.plist ├── Lilu.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── Lilu ├── NVMeFix.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── NVMeFix ├── RestrictEvents.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── RestrictEvents ├── SMCBatteryManager.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── SMCBatteryManager │ │ └── Resources │ │ └── SSDT-BATC.dsl ├── SMCDellSensors.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── SMCDellSensors ├── SMCLightSensor.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── SMCLightSensor ├── SMCProcessor.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── SMCProcessor ├── SMCSuperIO.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── SMCSuperIO ├── Sinetek-rtsx.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── Sinetek-rtsx │ │ └── _CodeSignature │ │ └── CodeResources ├── USBPorts.kext │ └── Contents │ │ └── Info.plist ├── VerbStub.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VerbStub ├── VirtualSMC.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VirtualSMC ├── VoltageShift.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoltageShift │ │ ├── Resources │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── _CodeSignature │ │ └── CodeResources ├── VoodooI2C.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooI2C │ │ └── PlugIns │ │ ├── VoodooGPIO.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooGPIO │ │ ├── VoodooI2CServices.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooI2CServices │ │ └── VoodooInput.kext │ │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooInput │ │ └── _CodeSignature │ │ └── CodeResources ├── VoodooI2CHID.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VoodooI2CHID ├── VoodooInput.kext │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VoodooInput ├── VoodooPS2Controller.kext │ └── Contents │ │ ├── Info.plist │ │ ├── MacOS │ │ └── VoodooPS2Controller │ │ └── PlugIns │ │ ├── VoodooInput.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ ├── MacOS │ │ │ └── VoodooInput │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ ├── VoodooPS2Keyboard.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Keyboard │ │ ├── VoodooPS2Mouse.kext │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── MacOS │ │ │ └── VoodooPS2Mouse │ │ └── VoodooPS2Trackpad.kext │ │ └── Contents │ │ ├── Info.plist │ │ └── MacOS │ │ └── VoodooPS2Trackpad └── WhateverGreen.kext │ └── Contents │ ├── Info.plist │ └── MacOS │ └── WhateverGreen ├── OpenCore.efi ├── README.md ├── Resources ├── Font │ ├── Font_1x.bin │ ├── Font_1x.png │ ├── Font_2x.bin │ └── Font_2x.png ├── Image │ ├── Acidanthera │ │ └── GoldenGate │ │ │ ├── AppleRecv.icns │ │ │ ├── AppleTM.icns │ │ │ ├── BtnFocus.icns │ │ │ ├── Cursor.icns │ │ │ ├── Dot.icns │ │ │ ├── Enter.icns │ │ │ ├── ExtAppleRecv.icns │ │ │ ├── ExtAppleTM.icns │ │ │ ├── ExtHardDrive.icns │ │ │ ├── HardDrive.icns │ │ │ ├── Left.icns │ │ │ ├── Lock.icns │ │ │ ├── Password.icns │ │ │ ├── Restart.icns │ │ │ ├── Right.icns │ │ │ ├── Selected.icns │ │ │ ├── Selector.icns │ │ │ ├── SetDefault.icns │ │ │ ├── Shell.icns │ │ │ ├── ShutDown.icns │ │ │ ├── Tool.icns │ │ │ └── Windows.icns │ ├── AppleRecv.icns │ ├── AppleTM.icns │ ├── Cursor.icns │ ├── ExtAppleRecv.icns │ ├── ExtAppleTM.icns │ ├── ExtHardDrive.icns │ ├── HardDrive.icns │ ├── Selected.icns │ ├── Selector.icns │ ├── Shell.icns │ ├── Tool.icns │ └── Windows.icns └── Label │ ├── Apple.l2x │ ├── Apple.lbl │ ├── AppleRecv.l2x │ ├── AppleRecv.lbl │ ├── AppleTM.l2x │ ├── AppleTM.lbl │ ├── EFIBoot.l2x │ ├── EFIBoot.lbl │ ├── Other.l2x │ ├── Other.lbl │ ├── ResetNVRAM.l2x │ ├── ResetNVRAM.lbl │ ├── SIPDisabled.l2x │ ├── SIPDisabled.lbl │ ├── SIPEnabled.l2x │ ├── SIPEnabled.lbl │ ├── Shell.l2x │ ├── Shell.lbl │ ├── Tool.l2x │ ├── Tool.lbl │ ├── Windows.l2x │ └── Windows.lbl └── config.plist /ACPI/SSDT-DGPU.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-DGPU.aml -------------------------------------------------------------------------------- /ACPI/SSDT-DGPU.dsl: -------------------------------------------------------------------------------- 1 | // Disable discrete GPU 2 | // Patch: Rename _WAK to ZWAK 3 | // Find: 14 39 5F 57 41 4B 01 4 | // Replace: 14 39 5A 57 41 4B 01 5 | // Reference: 6 | // [1] https://github.com/RehabMan/OS-X-Clover-Laptop-Config/blob/master/hotpatch/SSDT-DDGPU.dsl 7 | // [2] https://github.com/RehabMan/OS-X-Clover-Laptop-Config/blob/master/hotpatch/SSDT-PTSWAK.dsl 8 | 9 | DefinitionBlock ("", "SSDT", 2, "hack", "DGPU", 0x00000000) 10 | { 11 | External (_SB_.PCI0.PEG0.PEGP._OFF, MethodObj) 12 | External (ZWAK, MethodObj) 13 | 14 | Method (DGPU, 0, NotSerialized) 15 | { 16 | If (_OSI ("Darwin") && CondRefOf(\_SB.PCI0.PEG0.PEGP._OFF)) { \_SB.PCI0.PEG0.PEGP._OFF() } 17 | } 18 | 19 | // disable dGPU on bootup[1] 20 | Device (RMD1) 21 | { 22 | Name (_HID, "RMD10000") 23 | Method (_INI, 0, NotSerialized) 24 | { 25 | DGPU () 26 | } 27 | 28 | Method (_STA, 0, NotSerialized) 29 | { 30 | If (_OSI ("Darwin")) { Return (0x0F) } 31 | Return (Zero) 32 | } 33 | } 34 | 35 | // disable dGPU at wake[2] 36 | Method (_WAK, 1) 37 | { 38 | Local0 = ZWAK (Arg0) 39 | DGPU () 40 | Return (Local0) 41 | } 42 | } 43 | 44 | -------------------------------------------------------------------------------- /ACPI/SSDT-I2CX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-I2CX.aml -------------------------------------------------------------------------------- /ACPI/SSDT-I2CX.dsl: -------------------------------------------------------------------------------- 1 | // Enable TPD0 GPIO pinning 2 | // Patch: Rename USTP to One 3 | // Find: 55 53 54 50 10 4 | // Replace: 01 A3 A3 A3 10 5 | // References: 6 | // [1] https://github.com/xxxzc/xps15-9550-macos/issues/26#issuecomment-546838295 7 | // [2] https://github.com/daliansky/OC-little/tree/master/09-OCI2C-TPXX%E8%A1%A5%E4%B8%81%E6%96%B9%E6%B3%95 8 | // [3] https://github.com/alexandred/VoodooI2C/blob/master/Documentation/GPIO%20Pinning.md 9 | 10 | DefinitionBlock ("", "SSDT", 2, "hack", "I2CX", 0x00000000) 11 | { 12 | External (TPDM, FieldUnitObj) 13 | External (TPLM, FieldUnitObj) 14 | 15 | Scope (\) 16 | { 17 | If (_OSI ("Darwin")) 18 | { 19 | TPDM = Zero // enable touchpad 20 | } 21 | } 22 | 23 | } -------------------------------------------------------------------------------- /ACPI/SSDT-PCI0.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-PCI0.aml -------------------------------------------------------------------------------- /ACPI/SSDT-PCI0.dsl: -------------------------------------------------------------------------------- 1 | // Add some unnecessary missing devices 2 | // Including PMCR, DMAC, MCHC and SBUS 3 | // References: 4 | // [1] https://github.com/acidanthera/OpenCorePkg/blob/master/Docs/AcpiSamples/SSDT-PMC.dsl 5 | // [2] https://github.com/acidanthera/OpenCorePkg/blob/master/Docs/AcpiSamples/SSDT-SBUS-MCHC.dsl 6 | 7 | DefinitionBlock ("", "SSDT", 2, "hack", "PCI0", 0x00000000) 8 | { 9 | External (_SB_.PCI0, DeviceObj) 10 | External (_SB_.PCI0.LPCB, DeviceObj) 11 | External (_SB_.PCI0.SBUS.BUS0, DeviceObj) 12 | 13 | Scope (_SB.PCI0.LPCB) 14 | { 15 | Device (PMCR) // Intel 300-series PMC support[1] 16 | { 17 | Name (_HID, EisaId ("APP9876")) // _HID: Hardware ID 18 | Method (_STA, 0, NotSerialized) // _STA: Status 19 | { 20 | If (_OSI ("Darwin")) { Return (0x0B) } 21 | Return (Zero) 22 | } 23 | Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings 24 | { 25 | Memory32Fixed (ReadWrite, 26 | 0xFE000000, // Address Base 27 | 0x00010000, // Address Length 28 | ) 29 | }) 30 | } 31 | 32 | Device (DMAC) 33 | { 34 | Name (_HID, EisaId ("PNP0200") /* PC-class DMA Controller */) // _HID: Hardware ID 35 | Name (_CRS, ResourceTemplate () // _CRS: Current Resource Settings 36 | { 37 | IO (Decode16, 38 | 0x0000, // Range Minimum 39 | 0x0000, // Range Maximum 40 | 0x01, // Alignment 41 | 0x20, // Length 42 | ) 43 | IO (Decode16, 44 | 0x0081, // Range Minimum 45 | 0x0081, // Range Maximum 46 | 0x01, // Alignment 47 | 0x11, // Length 48 | ) 49 | IO (Decode16, 50 | 0x0093, // Range Minimum 51 | 0x0093, // Range Maximum 52 | 0x01, // Alignment 53 | 0x0D, // Length 54 | ) 55 | IO (Decode16, 56 | 0x00C0, // Range Minimum 57 | 0x00C0, // Range Maximum 58 | 0x01, // Alignment 59 | 0x20, // Length 60 | ) 61 | DMA (Compatibility, NotBusMaster, Transfer8_16, ) 62 | {4} 63 | }) 64 | 65 | Method (_STA, 0, NotSerialized) // _STA: Status 66 | { 67 | If (_OSI ("Darwin")) { Return (0x0F) } 68 | Return (Zero) 69 | } 70 | } 71 | } 72 | 73 | Scope (_SB.PCI0) 74 | { 75 | Device (MCHC) // MCHC[2] 76 | { 77 | Name (_ADR, Zero) // _ADR: Address 78 | Method (_STA, 0, NotSerialized) // _STA: Status 79 | { 80 | If (_OSI ("Darwin")) { Return (0x0F) } 81 | Return (Zero) 82 | } 83 | } 84 | } 85 | 86 | Device (_SB.PCI0.SBUS.BUS0) // SBUS[2] 87 | { 88 | Name (_CID, "smbus") // _CID: Compatible ID 89 | Name (_ADR, Zero) // _ADR: Address 90 | Device (DVL0) 91 | { 92 | Name (_ADR, 0x57) // _ADR: Address 93 | Name (_CID, "diagsvault") // _CID: Compatible ID 94 | Method (_DSM, 4, NotSerialized) // _DSM: Device-Specific Method 95 | { 96 | If (!Arg2) 97 | { 98 | Return (Buffer (One) 99 | { 100 | 0x57 // W 101 | }) 102 | } 103 | 104 | Return (Package (0x02) 105 | { 106 | "address", 107 | 0x57 108 | }) 109 | } 110 | } 111 | 112 | Method (_STA, 0, NotSerialized) // _STA: Status 113 | { 114 | If (_OSI ("Darwin")) { Return (0x0F) } 115 | Return (Zero) 116 | } 117 | } 118 | } 119 | 120 | -------------------------------------------------------------------------------- /ACPI/SSDT-PLUG.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-PLUG.aml -------------------------------------------------------------------------------- /ACPI/SSDT-PLUG.dsl: -------------------------------------------------------------------------------- 1 | // Inject plugin-type=1 for XCPM 2 | // Reference: 3 | // [1] https://github.com/acidanthera/OpenCorePkg/blob/master/Docs/AcpiSamples/SSDT-PLUG.dsl 4 | 5 | DefinitionBlock ("", "SSDT", 2, "ACDT", "CpuPlug", 0x00003000) 6 | { 7 | External (_SB.PR00, ProcessorObj) 8 | 9 | Scope (_SB.PR00) 10 | { 11 | Method (_DSM, 4, NotSerialized) 12 | { 13 | If (LEqual (Arg2, Zero)) 14 | { 15 | Return (Buffer (One) { 0x03 }) 16 | } 17 | 18 | Return (Package (0x02) 19 | { 20 | "plugin-type", 21 | One 22 | }) 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /ACPI/SSDT-PNLF.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-PNLF.aml -------------------------------------------------------------------------------- /ACPI/SSDT-PNLF.dsl: -------------------------------------------------------------------------------- 1 | // Make brightness control work 2 | // References: 3 | // [1] https://github.com/daliansky/OC-little/blob/master/05-OC-PNLF%E6%B3%A8%E5%85%A5%E6%96%B9%E6%B3%95/%E5%AE%9A%E5%88%B6%E4%BA%AE%E5%BA%A6%E8%A1%A5%E4%B8%81/SSDT-PNLF-CFL.dsl 4 | // [2] https://github.com/daliansky/OC-little/tree/master/%E4%BF%9D%E7%95%99%E9%A1%B9%E7%9B%AE/X02-%E4%BA%AE%E5%BA%A6%E5%BF%AB%E6%8D%B7%E9%94%AE%E8%A1%A5%E4%B8%81 5 | 6 | DefinitionBlock ("", "SSDT", 2, "hack", "BCKM", 0x00000000) 7 | { 8 | External (_SB_.ACOS, IntObj) 9 | External (_SB_.ACSE, IntObj) 10 | 11 | // inject PNLF for CoffeeLake to make brightness control work[1] 12 | Scope (_SB) 13 | { 14 | Device (PNLF) 15 | { 16 | Name (_ADR, Zero) 17 | Name (_HID, EisaId ("APP0002")) 18 | Name (_CID, "backlight") 19 | Name (_UID, 0x13) // for CoffeeLake+ 20 | 21 | Method (_STA, 0, NotSerialized) 22 | { 23 | If (_OSI ("Darwin")) { Return (0x0B) } 24 | Return (Zero) 25 | } 26 | } 27 | } 28 | 29 | // make BRT6 to be called on Darwin 30 | // in SMEE, EV5 is called only when OSID >= 0x20, and OSID: 31 | // if ACOS == 0: init ACOS based on OS version 32 | // return ACOS 33 | // hence set ACOS >= 0x20 can do the trick, and this trick affects less methods than _OSI renaming patch 34 | Scope (\) 35 | { 36 | If (_OSI ("Darwin")) 37 | { 38 | \_SB.ACOS = 0x80 // simulate Windows 2013(Win81) 39 | \_SB.ACSE = Zero // disable HIDD for faster power menu popup 40 | } 41 | } 42 | } 43 | -------------------------------------------------------------------------------- /ACPI/SSDT-PS2K.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-PS2K.aml -------------------------------------------------------------------------------- /ACPI/SSDT-PS2K.dsl: -------------------------------------------------------------------------------- 1 | // Remap PrntScr to disable touchpad 2 | // Supported Voodoo PrntScr Key combinations: 3 | // PrntScr Enable/Disable touchpad 4 | // Windows+PrntScr Enable/Disable touchpad+keyboard 5 | // Ctrl+Alt+PrntScr Reset and enable touchpad 6 | // Shift+PrntScr Send SysRq scancode to the kernel 7 | // Reference: https://github.com/acidanthera/VoodooPS2/blob/master/Docs/ACPI/SSDT-PrtSc-Remap.dsl 8 | 9 | DefinitionBlock ("", "SSDT", 2, "ACDT", "ps2", 0) 10 | { 11 | External (_SB_.PCI0.LPCB.PS2K, DeviceObj) 12 | 13 | Name(_SB.PCI0.LPCB.PS2K.RMCF, Package() 14 | { 15 | "Keyboard", Package() 16 | { 17 | "RemapPrntScr", ">y", 18 | }, 19 | }) 20 | } 21 | //EOF -------------------------------------------------------------------------------- /ACPI/SSDT-TYPC.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-TYPC.aml -------------------------------------------------------------------------------- /ACPI/SSDT-TYPC.dsl: -------------------------------------------------------------------------------- 1 | // Type-C hotplug 2 | // Patch: Rename RP17.PXSX._RMV to XRMV 3 | // Find: 52 50 31 37 50 58 53 58 14 33 5F 52 4D 56 4 | // Replace: 52 50 31 37 50 58 53 58 14 33 58 52 4D 56 5 | // References: 6 | // [1] https://www.insanelymac.com/forum/topic/324366-dell-xps-15-9560-4k-touch-1tb-ssd-32gb-ram-100-adobergb%E2%80%8B/ 7 | // [2] https://www.tonymacx86.com/threads/usb-c-hotplug-questions.211313/ 8 | // [3] https://github.com/the-darkvoid/XPS9360-macOS/issues/118 9 | 10 | DefinitionBlock ("", "SSDT", 2, "hack", "TYPC", 0x00000000) 11 | { 12 | External (_SB_.PCI0.RP17.PXSX, DeviceObj) 13 | External (_SB_.PCI0.RP17.PXSX.XRMV, MethodObj) 14 | 15 | Scope (\_SB.PCI0.RP17.PXSX) 16 | { 17 | // key method to make type-c removable 18 | Method (_RMV, 0, NotSerialized) // _RMV: Removal Status 19 | { 20 | If (_OSI ("Darwin")) 21 | { 22 | Return (One) 23 | } 24 | Return (\_SB.PCI0.RP17.PXSX.XRMV ()) 25 | } 26 | } 27 | } -------------------------------------------------------------------------------- /ACPI/SSDT-USBX.aml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/SSDT-USBX.aml -------------------------------------------------------------------------------- /ACPI/SSDT-USBX.dsl: -------------------------------------------------------------------------------- 1 | // USB power injection 2 | // Reference: 3 | // [1] https://github.com/acidanthera/OpenCorePkg/blob/master/Docs/AcpiSamples/SSDT-EC-USBX.dsl 4 | 5 | DefinitionBlock ("", "SSDT", 2, "hack", "_USB", 0x00000000) 6 | { 7 | External (_SB_.PCI0.LPCB, DeviceObj) 8 | 9 | Scope (\_SB) 10 | { 11 | Device (USBX) 12 | { 13 | Name (_ADR, Zero) // _ADR: Address 14 | Method (_STA, 0, NotSerialized) // _STA: Status 15 | { 16 | If (_OSI ("Darwin")) 17 | { 18 | Return (0x0F) 19 | } 20 | Return (Zero) 21 | } 22 | 23 | Method (_DSM, 4, NotSerialized) // _DSM: Device-Specific Method 24 | { 25 | If ((Arg2 == Zero)) 26 | { 27 | Return (Buffer (One) 28 | { 29 | 0x03 // . 30 | }) 31 | } 32 | 33 | Return (Package (0x08) 34 | { 35 | "kUSBSleepPowerSupply", 36 | 0x13EC, 37 | "kUSBSleepPortCurrentLimit", 38 | 0x0834, 39 | "kUSBWakePowerSupply", 40 | 0x13EC, 41 | "kUSBWakePortCurrentLimit", 42 | 0x0834 43 | }) 44 | } 45 | } 46 | } 47 | 48 | Scope (\_SB.PCI0.LPCB) 49 | { 50 | Device (EC) 51 | { 52 | Name (_HID, "ACID0001") // _HID: Hardware ID 53 | Method (_STA, 0, NotSerialized) 54 | { 55 | If (_OSI ("Darwin")) { Return (0x0F) } 56 | Return (Zero) 57 | } 58 | } 59 | } 60 | } 61 | -------------------------------------------------------------------------------- /ACPI/iasl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/ACPI/iasl -------------------------------------------------------------------------------- /Capture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Capture.png -------------------------------------------------------------------------------- /Drivers/OpenCanopy.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Drivers/OpenCanopy.efi -------------------------------------------------------------------------------- /Drivers/OpenHfsPlus.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Drivers/OpenHfsPlus.efi -------------------------------------------------------------------------------- /Drivers/OpenRuntime.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Drivers/OpenRuntime.efi -------------------------------------------------------------------------------- /Kexts/AirportBrcmFixup.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1217 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | AirportBrcmFixup 11 | CFBundleIdentifier 12 | as.lvs1974.AirportBrcmFixup 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | AirportBrcmFixup 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.1.3 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.1.3 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.lvs1974.AirportBrcmFixup 48 | 49 | CFBundleIdentifier 50 | as.lvs1974.AirportBrcmFixup 51 | IOClass 52 | AirportBrcmFixup 53 | IOMatchCategory 54 | AirportBrcmFixup 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | as.lvs1974.FakeAirportBrcmFixup 61 | 62 | CFBundleIdentifier 63 | as.lvs1974.AirportBrcmFixup 64 | IOClass 65 | FakeBrcm 66 | IOMatchCategory 67 | IODefaultMatchCategory 68 | IONameMatch 69 | 70 | pci14e4,43ba 71 | pci14e4,43a3 72 | pci14e4,43a0 73 | pci14e4,4331 74 | pci14e4,4353 75 | pci14e4,43b1 76 | pci14e4,43b2 77 | pci14e4,4357 78 | pci14e4,432b 79 | pci14e4,4311 80 | pci14e4,4312 81 | pci14e4,4313 82 | pci14e4,4318 83 | pci14e4,4319 84 | pci14e4,431a 85 | pci14e4,4320 86 | pci14e4,4324 87 | pci14e4,4325 88 | pci14e4,4328 89 | pci14e4,432c 90 | pci14e4,432d 91 | 92 | IOProbeScore 93 | 6000 94 | IOProviderClass 95 | IOPCIDevice 96 | TruePowerOff 97 | 98 | 99 | 100 | LSMinimumSystemVersion 101 | 10.8 102 | NSHumanReadableCopyright 103 | Copyright © 2017 lvs1974. All rights reserved. 104 | OSBundleCompatibleVersion 105 | 1.0 106 | OSBundleLibraries 107 | 108 | as.vit9696.Lilu 109 | 1.2.6 110 | com.apple.iokit.IOPCIFamily 111 | 2.7 112 | com.apple.kpi.bsd 113 | 12.0.0 114 | com.apple.kpi.dsep 115 | 12.0.0 116 | com.apple.kpi.iokit 117 | 12.0.0 118 | com.apple.kpi.libkern 119 | 12.0.0 120 | com.apple.kpi.mach 121 | 12.0.0 122 | com.apple.kpi.unsupported 123 | 12.0.0 124 | 125 | OSBundleRequired 126 | Network-Root 127 | 128 | 129 | -------------------------------------------------------------------------------- /Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/AirportBrcmFixup.kext/Contents/MacOS/AirportBrcmFixup -------------------------------------------------------------------------------- /Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcm4360_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcm4360Injector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcm4360 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_Brcm4360 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.Brcm4360 27 | IOClass 28 | AirPort_Brcm4360 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43a3 37 | pci14e4,43b1 38 | pci14e4,43b2 39 | 40 | IOProbeScore 41 | 1110 42 | IOProviderClass 43 | IOPCIDevice 44 | TruePowerOff 45 | 46 | 47 | 48 | OSBundleRequired 49 | Network-Root 50 | 51 | 52 | -------------------------------------------------------------------------------- /Kexts/AirportBrcmFixup.kext/Contents/PlugIns/AirPortBrcmNIC_Injector.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleGetInfoString 6 | Copyright © 2020 lvs1974. All rights reserved. 7 | CFBundleIdentifier 8 | as.lvs1974.AirportBrcmNICInjector 9 | CFBundleInfoDictionaryVersion 10 | 6.0 11 | CFBundleName 12 | AirPortBrcmNIC 13 | CFBundlePackageType 14 | KEXT 15 | CFBundleShortVersionString 16 | 1.0 17 | CFBundleSignature 18 | ???? 19 | CFBundleVersion 20 | 1.0 21 | IOKitPersonalities 22 | 23 | Airport_BrcmNIC 24 | 25 | CFBundleIdentifier 26 | com.apple.driver.AirPort.BrcmNIC 27 | IOClass 28 | AirPort_BrcmNIC 29 | IOMatchCategory 30 | IODefaultMatchCategory 31 | IONameMatch 32 | 33 | pci14e4,4331 34 | pci14e4,4353 35 | pci14e4,4357 36 | pci14e4,43ba 37 | pci14e4,43a3 38 | pci14e4,43a0 39 | pci14e4,43b1 40 | pci14e4,43b2 41 | 42 | IOProbeScore 43 | 2048 44 | IOProviderClass 45 | IOPCIDevice 46 | TruePowerOff 47 | 48 | 49 | 50 | OSBundleRequired 51 | Network-Root 52 | 53 | 54 | -------------------------------------------------------------------------------- /Kexts/AppleALC.kext/Contents/MacOS/AppleALC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/AppleALC.kext/Contents/MacOS/AppleALC -------------------------------------------------------------------------------- /Kexts/BrcmFirmwareData.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1217 7 | CFBundleExecutable 8 | BrcmFirmwareData 9 | CFBundleIdentifier 10 | as.acidanthera.BrcmFirmwareStore 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | BrcmFirmwareData 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 2.6.0 19 | CFBundleSignature 20 | ???? 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.0 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | BrcmFirmwareStore 46 | 47 | CFBundleIdentifier 48 | as.acidanthera.BrcmFirmwareStore 49 | IOClass 50 | BrcmFirmwareStore 51 | IOMatchCategory 52 | BrcmFirmwareStore 53 | IOProviderClass 54 | IOResources 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.8 59 | OSBundleCompatibleVersion 60 | 2.6.0 61 | OSBundleLibraries 62 | 63 | com.apple.kpi.iokit 64 | 9.0 65 | com.apple.kpi.libkern 66 | 9.0 67 | com.apple.kpi.mach 68 | 9.0 69 | 70 | 71 | 72 | -------------------------------------------------------------------------------- /Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/BrcmFirmwareData.kext/Contents/MacOS/BrcmFirmwareData -------------------------------------------------------------------------------- /Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/BrcmPatchRAM3.kext/Contents/MacOS/BrcmPatchRAM3 -------------------------------------------------------------------------------- /Kexts/BrightnessKeys.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1217 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | BrightnessKeys 11 | CFBundleIdentifier 12 | as.acidanthera.BrightnessKeys 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | BrightnessKeys 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleSupportedPlatforms 20 | 21 | MacOSX 22 | 23 | CFBundleVersion 24 | 1.0.2 25 | DTCompiler 26 | com.apple.compilers.llvm.clang.1_0 27 | DTPlatformBuild 28 | 12B45b 29 | DTPlatformName 30 | macosx 31 | DTPlatformVersion 32 | 11.0 33 | DTSDKBuild 34 | 20A2408 35 | DTSDKName 36 | macosx11.0 37 | DTXcode 38 | 1220 39 | DTXcodeBuild 40 | 12B45b 41 | IOKitPersonalities 42 | 43 | BrightnessKeys 44 | 45 | CFBundleIdentifier 46 | as.acidanthera.BrightnessKeys 47 | IOClass 48 | BrightnessKeys 49 | IOMatchCategory 50 | BrightnessKeys 51 | IOProviderClass 52 | IOResources 53 | IOResourceMatch 54 | IOKit 55 | 56 | 57 | LSMinimumSystemVersion 58 | 10.11 59 | OSBundleLibraries 60 | 61 | as.vit9696.Lilu 62 | 1.2.0 63 | com.apple.iokit.IOACPIFamily 64 | 1.0.0d1 65 | com.apple.iokit.IOHIDFamily 66 | 1.0.0b1 67 | com.apple.kpi.bsd 68 | 8.0.0 69 | com.apple.kpi.iokit 70 | 8.0.0 71 | com.apple.kpi.libkern 72 | 8.0.0 73 | com.apple.kpi.mach 74 | 8.0.0 75 | com.apple.kpi.unsupported 76 | 8.0.0 77 | 78 | OSBundleRequired 79 | Console 80 | 81 | 82 | -------------------------------------------------------------------------------- /Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/BrightnessKeys.kext/Contents/MacOS/BrightnessKeys -------------------------------------------------------------------------------- /Kexts/CPUFriend.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1217 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | CPUFriend 11 | CFBundleIdentifier 12 | org.vanilla.driver.CPUFriend 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | CPUFriend 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | CPUFriend 48 | 49 | CFBundleIdentifier 50 | org.vanilla.driver.CPUFriend 51 | IOClass 52 | CPUFriend 53 | IOMatchCategory 54 | CPUFriend 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | 60 | CPUFriendPlatform 61 | 62 | CFBundleIdentifier 63 | org.vanilla.driver.CPUFriend 64 | IOClass 65 | CPUFriendData 66 | IOProbeScore 67 | 6000 68 | IOPropertyMatch 69 | 70 | IOCPUNumber 71 | 0 72 | 73 | IOProviderClass 74 | AppleACPICPU 75 | IOResourceMatch 76 | ACPI 77 | 78 | 79 | LSMinimumSystemVersion 80 | 10.8 81 | NSHumanReadableCopyright 82 | Copyright © 2017 - 2019 PMheart. All rights reserved. 83 | OSBundleCompatibleVersion 84 | 1.0 85 | OSBundleLibraries 86 | 87 | as.vit9696.Lilu 88 | 1.2.0 89 | com.apple.iokit.IOACPIFamily 90 | 1.0.0d1 91 | com.apple.kpi.bsd 92 | 12.0.0 93 | com.apple.kpi.dsep 94 | 12.0.0 95 | com.apple.kpi.iokit 96 | 12.0.0 97 | com.apple.kpi.libkern 98 | 12.0.0 99 | com.apple.kpi.mach 100 | 12.0.0 101 | com.apple.kpi.unsupported 102 | 12.0.0 103 | 104 | OSBundleRequired 105 | Root 106 | 107 | 108 | -------------------------------------------------------------------------------- /Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/CPUFriend.kext/Contents/MacOS/CPUFriend -------------------------------------------------------------------------------- /Kexts/Lilu.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Lilu 11 | CFBundleIdentifier 12 | as.vit9696.Lilu 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Lilu 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.5.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.Lilu 48 | 49 | CFBundleIdentifier 50 | as.vit9696.Lilu 51 | IOClass 52 | Lilu 53 | IOMatchCategory 54 | Lilu 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOBSD 59 | 60 | 61 | LSMinimumSystemVersion 62 | 10.6 63 | NSHumanReadableCopyright 64 | Copyright © 2016-2020 vit9696. All rights reserved. 65 | OSBundleCompatibleVersion 66 | 1.2.0 67 | OSBundleLibraries 68 | 69 | com.apple.kernel.6.0 70 | 7.9.9 71 | com.apple.kpi.bsd 72 | 8.0.0 73 | com.apple.kpi.iokit 74 | 8.0.0 75 | com.apple.kpi.libkern 76 | 8.0.0 77 | com.apple.kpi.mach 78 | 8.0.0 79 | com.apple.kpi.unsupported 80 | 8.0.0 81 | 82 | OSBundleLibraries_x86_64 83 | 84 | com.apple.kpi.bsd 85 | 10.0.0 86 | com.apple.kpi.dsep 87 | 10.0.0 88 | com.apple.kpi.iokit 89 | 10.0.0 90 | com.apple.kpi.libkern 91 | 10.0.0 92 | com.apple.kpi.mach 93 | 10.0.0 94 | com.apple.kpi.unsupported 95 | 10.0.0 96 | 97 | OSBundleRequired 98 | Root 99 | 100 | 101 | -------------------------------------------------------------------------------- /Kexts/Lilu.kext/Contents/MacOS/Lilu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/Lilu.kext/Contents/MacOS/Lilu -------------------------------------------------------------------------------- /Kexts/NVMeFix.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1217 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | NVMeFix 11 | CFBundleIdentifier 12 | org.acidanthera.NVMeFix 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | NVMeFix 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.9 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.9 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | org.acidanthera.NVMeFix 46 | 47 | CFBundleIdentifier 48 | org.acidanthera.NVMeFix 49 | IOClass 50 | NVMeFix 51 | IOMatchCategory 52 | NVMeFix 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.14 61 | NSHumanReadableCopyright 62 | Copyright © 2019 acidanthera. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.4.1 69 | com.apple.kpi.bsd 70 | 12.0.0 71 | com.apple.kpi.dsep 72 | 12.0.0 73 | com.apple.kpi.iokit 74 | 12.0.0 75 | com.apple.kpi.libkern 76 | 12.0.0 77 | com.apple.kpi.mach 78 | 12.0.0 79 | com.apple.kpi.unsupported 80 | 12.0.0 81 | 82 | OSBundleRequired 83 | Root 84 | 85 | 86 | -------------------------------------------------------------------------------- /Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/NVMeFix.kext/Contents/MacOS/NVMeFix -------------------------------------------------------------------------------- /Kexts/RestrictEvents.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1417 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | RestrictEvents 11 | CFBundleIdentifier 12 | as.vit9696.RestrictEvents 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | RestrictEvents 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.5 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.5 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | as.vit9696.RestrictEfiCheck 46 | 47 | CFBundleIdentifier 48 | as.vit9696.RestrictEvents 49 | IOClass 50 | IOService 51 | IOMatchCategory 52 | com_apple_driver_eficheck 53 | IONameMatch 54 | 55 | pci8086,1c41 56 | pci8086,1c42 57 | pci8086,1c43 58 | pci8086,1c44 59 | pci8086,1c46 60 | pci8086,1c47 61 | pci8086,1c49 62 | pci8086,1c4a 63 | pci8086,1c4b 64 | pci8086,1c4c 65 | pci8086,1c4d 66 | pci8086,1c4e 67 | pci8086,1c4f 68 | pci8086,1c50 69 | pci8086,1c52 70 | pci8086,1c5c 71 | pci8086,1d41 72 | pci8086,1e42 73 | pci8086,1e44 74 | pci8086,1e46 75 | pci8086,1e47 76 | pci8086,1e48 77 | pci8086,1e49 78 | pci8086,1e4a 79 | pci8086,1e53 80 | pci8086,1e55 81 | pci8086,1e56 82 | pci8086,1e57 83 | pci8086,1e58 84 | pci8086,1e59 85 | pci8086,1e5d 86 | pci8086,1e5e 87 | pci8086,1e5f 88 | pci8086,3b02 89 | pci8086,3b03 90 | pci8086,3b06 91 | pci8086,3b07 92 | pci8086,3b08 93 | pci8086,3b09 94 | pci8086,3b0a 95 | pci8086,3b0b 96 | pci8086,3b0f 97 | pci8086,3b12 98 | pci8086,3b14 99 | pci8086,3b16 100 | pci8086,8c44 101 | pci8086,8c4b 102 | pci8086,8cc1 103 | pci8086,8cc2 104 | pci8086,8cc3 105 | pci8086,8cc4 106 | pci8086,8cc6 107 | pci8086,8c41 108 | pci8086,8c42 109 | pci8086,8c44 110 | pci8086,8c46 111 | pci8086,8c49 112 | pci8086,8c4a 113 | pci8086,8c4b 114 | pci8086,8c4c 115 | pci8086,8c4e 116 | pci8086,8c4f 117 | pci8086,8c50 118 | pci8086,8c52 119 | pci8086,8c54 120 | pci8086,8c56 121 | pci8086,8c5c 122 | pci8086,8d44 123 | pci8086,8d47 124 | pci8086,9cc1 125 | pci8086,9cc2 126 | pci8086,9cc3 127 | pci8086,9cc5 128 | pci8086,9cc6 129 | pci8086,9cc7 130 | pci8086,9cc9 131 | pci8086,9c41 132 | pci8086,9c43 133 | pci8086,9c45 134 | pci8086,9d41 135 | pci8086,9d43 136 | pci8086,9d46 137 | pci8086,9d48 138 | pci8086,9d4b 139 | pci8086,9d4e 140 | pci8086,a145 141 | pci8086,a151 142 | pci8086,a306 143 | 144 | IOProbeScore 145 | 5000 146 | IOProviderClass 147 | IOPCIDevice 148 | 149 | as.vit9696.RestrictEvents 150 | 151 | CFBundleIdentifier 152 | as.vit9696.RestrictEvents 153 | IOClass 154 | RestrictEvents 155 | IOMatchCategory 156 | RestrictEvents 157 | IOProviderClass 158 | IOResources 159 | IOResourceMatch 160 | IOKit 161 | 162 | 163 | LSMinimumSystemVersion 164 | 10.8 165 | NSHumanReadableCopyright 166 | Copyright © 2020 vit9696. All rights reserved. 167 | OSBundleCompatibleVersion 168 | 1.0 169 | OSBundleLibraries 170 | 171 | as.vit9696.Lilu 172 | 1.2.0 173 | com.apple.kpi.bsd 174 | 12.0.0 175 | com.apple.kpi.dsep 176 | 12.0.0 177 | com.apple.kpi.iokit 178 | 12.0.0 179 | com.apple.kpi.libkern 180 | 12.0.0 181 | com.apple.kpi.mach 182 | 12.0.0 183 | com.apple.kpi.unsupported 184 | 12.0.0 185 | 186 | OSBundleRequired 187 | Root 188 | 189 | 190 | -------------------------------------------------------------------------------- /Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/RestrictEvents.kext/Contents/MacOS/RestrictEvents -------------------------------------------------------------------------------- /Kexts/SMCBatteryManager.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCBatteryManager 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCBatteryManager 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCBatteryManager 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.2.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | IOSMBusController 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCBatteryManager 49 | IOClass 50 | SMCSMBusController 51 | IOMatchCategory 52 | SMCSMBusController 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | SMCBatteryManager 59 | 60 | CFBundleIdentifier 61 | ru.usrsse2.SMCBatteryManager 62 | IOClass 63 | SMCBatteryManager 64 | IOMatchCategory 65 | SMCBatteryManager 66 | IOProviderClass 67 | IOResources 68 | IOResourceMatch 69 | IOKit 70 | 71 | 72 | LSMinimumSystemVersion 73 | 10.6 74 | NSHumanReadableCopyright 75 | Copyright © 2018 usrsse2. All rights reserved. 76 | OSBundleCompatibleVersion 77 | 1.0.0 78 | OSBundleLibraries 79 | 80 | as.vit9696.Lilu 81 | 1.2.0 82 | as.vit9696.VirtualSMC 83 | 1.0.0 84 | com.apple.iokit.IOACPIFamily 85 | 1.0.0d1 86 | com.apple.iokit.IOSMBusFamily 87 | 1.0.0 88 | com.apple.kpi.bsd 89 | 8.0.0 90 | com.apple.kpi.iokit 91 | 8.0.0 92 | com.apple.kpi.libkern 93 | 8.0.0 94 | com.apple.kpi.mach 95 | 8.0.0 96 | com.apple.kpi.unsupported 97 | 8.0.0 98 | 99 | OSBundleRequired 100 | Root 101 | 102 | 103 | -------------------------------------------------------------------------------- /Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/SMCBatteryManager.kext/Contents/MacOS/SMCBatteryManager -------------------------------------------------------------------------------- /Kexts/SMCBatteryManager.kext/Contents/Resources/SSDT-BATC.dsl: -------------------------------------------------------------------------------- 1 | // SSDT-BATC.dsl 2 | // 3 | // Based on https://github.com/RehabMan/OS-X-ACPI-Battery-Driver/blob/master/SSDT-BATC.dsl 4 | // 5 | // An SSDT to combine two batteries into one 6 | // initial work/testing by ag6952563 (with assistance by RehabMan) 7 | // finalize into generic SSDT by RehabMan 8 | // some code cleanup/optimization/and bug fixing by RehabMan 9 | // modifications to work VirtualSMC SMCBatteryManager by armenio 10 | // add _BIX (easy, following the original code from RehabMan) by armenio 11 | // 12 | // OS X support for multiple batteries is a bit buggy. 13 | // This SSDT can be used to combine two batteries into one, 14 | // avoiding the bugs. 15 | // 16 | // It may need modification depending on the ACPI path of your 17 | // existing battery objects. 18 | // 19 | 20 | // IMPORTANT: 21 | // 22 | // To use this SSDT, you must also patch any Notify for either BAT0 or BAT1 23 | // objects. 24 | // 25 | // The Notify is used to tell the system when a battery is removed or added. 26 | // 27 | // Any code: 28 | // Notify (...BAT0, ...) 29 | // -or 30 | // Notify (...BAT1, ...) 31 | // 32 | // Must be changed to: 33 | // Notify (...BATC, ...) 34 | // 35 | // Refer to Dual Battery Support.md for patching details 36 | // 37 | 38 | DefinitionBlock ("", "SSDT", 2, "ACDT", "BATC", 0x00000000) 39 | { 40 | External (_SB_.PCI0.LPCB.EC, DeviceObj) 41 | External (_SB_.PCI0.LPCB.EC.BAT0, DeviceObj) 42 | External (_SB_.PCI0.LPCB.EC.BAT0._BIF, MethodObj) 43 | External (_SB_.PCI0.LPCB.EC.BAT0._BIX, MethodObj) 44 | External (_SB_.PCI0.LPCB.EC.BAT0._BST, MethodObj) 45 | External (_SB_.PCI0.LPCB.EC.BAT0._HID, IntObj) 46 | External (_SB_.PCI0.LPCB.EC.BAT0._STA, MethodObj) 47 | External (_SB_.PCI0.LPCB.EC.BAT1, DeviceObj) 48 | External (_SB_.PCI0.LPCB.EC.BAT1._BIF, MethodObj) 49 | External (_SB_.PCI0.LPCB.EC.BAT1._BIX, MethodObj) 50 | External (_SB_.PCI0.LPCB.EC.BAT1._BST, MethodObj) 51 | External (_SB_.PCI0.LPCB.EC.BAT1._HID, IntObj) 52 | External (_SB_.PCI0.LPCB.EC.BAT1._STA, MethodObj) 53 | 54 | Scope (\_SB.PCI0.LPCB.EC) 55 | { 56 | Device (BATC) 57 | { 58 | Name (_HID, EisaId ("PNP0C0A")) 59 | Name (_UID, 0x02) 60 | 61 | Method (_INI) 62 | { 63 | If (_OSI ("Darwin")) 64 | { 65 | // disable original battery objects by setting invalid _HID 66 | ^^BAT0._HID = 0 67 | ^^BAT1._HID = 0 68 | } 69 | } 70 | 71 | Method (_STA) 72 | { 73 | If (_OSI ("Darwin")) 74 | { 75 | // call original _STA for BAT0 and BAT1 76 | // result is bitwise OR between them 77 | Return (^^BAT0._STA () | ^^BAT1._STA ()) 78 | } 79 | Else 80 | { 81 | Return (Zero) 82 | } 83 | } 84 | 85 | Method (_BIF) 86 | { 87 | // Local0 BAT0._BIF 88 | // Local1 BAT1._BIF 89 | // Local2 BAT0._STA 90 | // Local3 BAT1._STA 91 | // Local4/Local5 scratch 92 | 93 | // gather and validate data from BAT0 94 | Local0 = ^^BAT0._BIF () 95 | Local2 = ^^BAT0._STA () 96 | If (0x1f == Local2) 97 | { 98 | // check for invalid design capacity 99 | Local4 = DerefOf (Local0 [1]) 100 | If (!Local4 || Ones == Local4) { Local2 = 0; } 101 | // check for invalid last full charge capacity 102 | Local4 = DerefOf (Local0 [2]) 103 | If (!Local4 || Ones == Local4) { Local2 = 0; } 104 | // check for invalid design voltage 105 | Local4 = DerefOf (Local0 [4]) 106 | If (!Local4 || Ones == Local4) { Local2 = 0; } 107 | } 108 | // gather and validate data from BAT1 109 | Local1 = ^^BAT1._BIF () 110 | Local3 = ^^BAT1._STA () 111 | If (0x1f == Local3) 112 | { 113 | // check for invalid design capacity 114 | Local4 = DerefOf (Local1 [1]) 115 | If (!Local4 || Ones == Local4) { Local3 = 0; } 116 | // check for invalid last full charge capacity 117 | Local4 = DerefOf (Local1 [2]) 118 | If (!Local4 || Ones == Local4) { Local3 = 0; } 119 | // check for invalid design voltage 120 | Local4 = DerefOf (Local1 [4]) 121 | If (!Local4 || Ones == Local4) { Local3 = 0; } 122 | } 123 | // find primary and secondary battery 124 | If (0x1f != Local2 && 0x1f == Local3) 125 | { 126 | // make primary use BAT1 data 127 | Local0 = Local1 // BAT1._BIF result 128 | Local2 = Local3 // BAT1._STA result 129 | Local3 = 0 // no secondary battery 130 | } 131 | // combine batteries into Local0 result if possible 132 | If (0x1f == Local2 && 0x1f == Local3) 133 | { 134 | // _BIF 0 Power Unit - leave BAT0 value 135 | // _BIF 1 Design Capacity - add BAT0 and BAT1 values 136 | Local4 = DerefOf (Local0 [1]) 137 | Local5 = DerefOf (Local1 [1]) 138 | If (0xffffffff != Local4 && 0xffffffff != Local5) 139 | { 140 | Local0 [1] = Local4 + Local5 141 | } 142 | // _BIF 2 Last Full Charge Capacity - add BAT0 and BAT1 values 143 | Local4 = DerefOf (Local0 [2]) 144 | Local5 = DerefOf (Local1 [2]) 145 | If (0xffffffff != Local4 && 0xffffffff != Local5) 146 | { 147 | Local0 [2] = Local4 + Local5 148 | } 149 | // _BIF 3 Battery Technology - leave BAT0 value 150 | // _BIF 4 Design Voltage - average between BAT0 and BAT1 values 151 | Local4 = DerefOf (Local0 [4]) 152 | Local5 = DerefOf (Local1 [4]) 153 | If (0xffffffff != Local4 && 0xffffffff != Local5) 154 | { 155 | Local0 [4] = (Local4 + Local5) / 2 156 | } 157 | // _BIF 5 Design Capacity of Warning - add BAT0 and BAT1 values 158 | Local0 [5] = DerefOf (Local0 [5]) + DerefOf (Local1 [5]) 159 | // _BIF 6 Design Capacity of Low - add BAT0 and BAT1 values 160 | Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6]) 161 | // _BIF 7 Battery Capacity Granularity 1 - add BAT0 and BAT1 values 162 | Local4 = DerefOf (Local0 [7]) 163 | Local5 = DerefOf (Local1 [7]) 164 | If (0xffffffff != Local4 && 0xffffffff != Local5) 165 | { 166 | Local0 [7] = Local4 + Local5 167 | } 168 | // _BIF 8 Battery Capacity Granularity 2 - add BAT0 and BAT1 values 169 | Local4 = DerefOf (Local0 [8]) 170 | Local5 = DerefOf (Local1 [8]) 171 | If (0xffffffff != Local4 && 0xffffffff != Local5) 172 | { 173 | Local0 [8] = Local4 + Local5 174 | } 175 | // _BIF 9 Model Number - concatenate BAT0 and BAT1 values 176 | Local0 [0x09] = Concatenate (Concatenate (DerefOf (Local0 [0x09]), " / "), DerefOf (Local1 [0x09])) 177 | // _BIF a Serial Number - concatenate BAT0 and BAT1 values 178 | Local0 [0x0a] = Concatenate (Concatenate (DerefOf (Local0 [0x0a]), " / "), DerefOf (Local1 [0x0a])) 179 | // _BIF b Battery Type - concatenate BAT0 and BAT1 values 180 | Local0 [0x0b] = Concatenate (Concatenate (DerefOf (Local0 [0x0b]), " / "), DerefOf (Local1 [0x0b])) 181 | // _BIF c OEM Information - concatenate BAT0 and BAT1 values 182 | Local0 [0x0c] = Concatenate (Concatenate (DerefOf (Local0 [0x0c]), " / "), DerefOf (Local1 [0x0c])) 183 | } 184 | 185 | Return (Local0) 186 | } // _BIF 187 | 188 | Method (_BIX) 189 | { 190 | // Local0 BAT0._BIX 191 | // Local1 BAT1._BIX 192 | // Local2 BAT0._STA 193 | // Local3 BAT1._STA 194 | // Local4/Local5 scratch 195 | 196 | // gather and validate data from BAT0 197 | Local0 = ^^BAT0._BIX () 198 | Local2 = ^^BAT0._STA () 199 | If (0x1f == Local2) 200 | { 201 | // check for invalid design capacity 202 | Local4 = DerefOf (Local0 [2]) 203 | If (!Local4 || Ones == Local4) { Local2 = 0; } 204 | // check for invalid last full charge capacity 205 | Local4 = DerefOf (Local0 [3]) 206 | If (!Local4 || Ones == Local4) { Local2 = 0; } 207 | // check for invalid design voltage 208 | Local4 = DerefOf (Local0 [5]) 209 | If (!Local4 || Ones == Local4) { Local2 = 0; } 210 | } 211 | // gather and validate data from BAT1 212 | Local1 = ^^BAT1._BIX () 213 | Local3 = ^^BAT1._STA () 214 | If (0x1f == Local3) 215 | { 216 | // check for invalid design capacity 217 | Local4 = DerefOf (Local1 [2]) 218 | If (!Local4 || Ones == Local4) { Local3 = 0; } 219 | // check for invalid last full charge capacity 220 | Local4 = DerefOf (Local1 [3]) 221 | If (!Local4 || Ones == Local4) { Local3 = 0; } 222 | // check for invalid design voltage 223 | Local4 = DerefOf (Local1 [5]) 224 | If (!Local4 || Ones == Local4) { Local3 = 0; } 225 | } 226 | // find primary and secondary battery 227 | If (0x1f != Local2 && 0x1f == Local3) 228 | { 229 | // make primary use BAT1 data 230 | Local0 = Local1 // BAT1._BIX result 231 | Local2 = Local3 // BAT1._STA result 232 | Local3 = 0 // no secondary battery 233 | } 234 | // combine batteries into Local0 result if possible 235 | If (0x1f == Local2 && 0x1f == Local3) 236 | { 237 | // _BIX 0 Revision - leave BAT0 value 238 | // _BIX 1 Power Unit - leave BAT0 value 239 | // _BIX 2 Design Capacity - add BAT0 and BAT1 values 240 | Local4 = DerefOf (Local0 [2]) 241 | Local5 = DerefOf (Local1 [2]) 242 | If (0xffffffff != Local4 && 0xffffffff != Local5) 243 | { 244 | Local0 [2] = Local4 + Local5 245 | } 246 | // _BIX 3 Last Full Charge Capacity - add BAT0 and BAT1 values 247 | Local4 = DerefOf (Local0 [3]) 248 | Local5 = DerefOf (Local1 [3]) 249 | If (0xffffffff != Local4 && 0xffffffff != Local5) 250 | { 251 | Local0 [3] = Local4 + Local5 252 | } 253 | // _BIX 4 Battery Technology - leave BAT0 value 254 | // _BIX 5 Design Voltage - average between BAT0 and BAT1 values 255 | Local4 = DerefOf (Local0 [5]) 256 | Local5 = DerefOf (Local1 [5]) 257 | If (0xffffffff != Local4 && 0xffffffff != Local5) 258 | { 259 | Local0 [5] = (Local4 + Local5) / 2 260 | } 261 | // _BIX 6 Design Capacity of Warning - add BAT0 and BAT1 values 262 | Local0 [6] = DerefOf (Local0 [6]) + DerefOf (Local1 [6]) 263 | // _BIX 7 Design Capacity of Low - add BAT0 and BAT1 values 264 | Local0 [7] = DerefOf (Local0 [7]) + DerefOf (Local1 [7]) 265 | // _BIX 8 Cycle Count - average between BAT0 and BAT1 values 266 | Local4 = DerefOf (Local0 [8]) 267 | Local5 = DerefOf (Local1 [8]) 268 | If (0xffffffff != Local4 && 0xffffffff != Local5) 269 | { 270 | Local0 [8] = (Local4 + Local5) / 2 271 | } 272 | // _BIX 9 Measurement Accuracy - average between BAT0 and BAT1 values 273 | Local0 [9] = (DerefOf (Local0 [9]) + DerefOf (Local1 [9])) / 2 274 | // _BIX 0xa Max Sampling Time - average between BAT0 and BAT1 values 275 | Local4 = DerefOf (Local0 [0xa]) 276 | Local5 = DerefOf (Local1 [0xa]) 277 | If (0xffffffff != Local4 && 0xffffffff != Local5) 278 | { 279 | Local0 [0xa] = (Local4 + Local5) / 2 280 | } 281 | // _BIX 0xb Min Sampling Time - average between BAT0 and BAT1 values 282 | Local4 = DerefOf (Local0 [0xb]) 283 | Local5 = DerefOf (Local1 [0xb]) 284 | If (0xffffffff != Local4 && 0xffffffff != Local5) 285 | { 286 | Local0 [0xb] = (Local4 + Local5) / 2 287 | } 288 | // _BIX 0xc Max Averaging Interval - average between BAT0 and BAT1 values 289 | Local0 [0xc] = (DerefOf (Local0 [0xc]) + DerefOf (Local1 [0xc])) / 2 290 | // _BIX 0xd Min Averaging Interval - average between BAT0 and BAT1 values 291 | Local0 [0xd] = (DerefOf (Local0 [0xd]) + DerefOf (Local1 [0xd])) / 2 292 | // _BIX 0xe Battery Capacity Granularity 1 - add BAT0 and BAT1 values 293 | Local4 = DerefOf (Local0 [0xe]) 294 | Local5 = DerefOf (Local1 [0xe]) 295 | If (0xffffffff != Local4 && 0xffffffff != Local5) 296 | { 297 | Local0 [0xe] = Local4 + Local5 298 | } 299 | // _BIX 0xf Battery Capacity Granularity 2 - add BAT0 and BAT1 values 300 | Local4 = DerefOf (Local0 [0xf]) 301 | Local5 = DerefOf (Local1 [0xf]) 302 | If (0xffffffff != Local4 && 0xffffffff != Local5) 303 | { 304 | Local0 [0xf] = Local4 + Local5 305 | } 306 | // _BIX 10 Model Number - concatenate BAT0 and BAT1 values 307 | Local0 [0x10] = Concatenate (Concatenate (DerefOf (Local0 [0x10]), " / "), DerefOf (Local1 [0x10])) 308 | // _BIX 11 Serial Number - concatenate BAT0 and BAT1 values 309 | Local0 [0x11] = Concatenate (Concatenate (DerefOf (Local0 [0x11]), " / "), DerefOf (Local1 [0x11])) 310 | // _BIX 12 Battery Type - concatenate BAT0 and BAT1 values 311 | Local0 [0x12] = Concatenate (Concatenate (DerefOf (Local0 [0x12]), " / "), DerefOf (Local1 [0x12])) 312 | // _BIX 13 OEM Information - concatenate BAT0 and BAT1 values 313 | Local0 [0x13] = Concatenate (Concatenate (DerefOf (Local0 [0x13]), " / "), DerefOf (Local1 [0x13])) 314 | // _BIX 14 Battery Swapping Capability - leave BAT0 value for now 315 | } 316 | Return (Local0) 317 | } // _BIX 318 | 319 | Method (_BST) 320 | { 321 | // Local0 BAT0._BST 322 | // Local1 BAT1._BST 323 | // Local2 BAT0._STA 324 | // Local3 BAT1._STA 325 | // Local4/Local5 scratch 326 | 327 | // gather battery data from BAT0 328 | Local0 = ^^BAT0._BST () 329 | Local2 = ^^BAT0._STA () 330 | If (0x1f == Local2) 331 | { 332 | // check for invalid remaining capacity 333 | Local4 = DerefOf (Local0 [2]) 334 | If (!Local4 || Ones == Local4) { Local2 = 0; } 335 | } 336 | // gather battery data from BAT1 337 | Local1 = ^^BAT1._BST () 338 | Local3 = ^^BAT1._STA () 339 | If (0x1f == Local3) 340 | { 341 | // check for invalid remaining capacity 342 | Local4 = DerefOf (Local1 [2]) 343 | If (!Local4 || Ones == Local4) { Local3 = 0; } 344 | } 345 | // find primary and secondary battery 346 | If (0x1f != Local2 && 0x1f == Local3) 347 | { 348 | // make primary use BAT1 data 349 | Local0 = Local1 // BAT1._BST result 350 | Local2 = Local3 // BAT1._STA result 351 | Local3 = 0 // no secondary battery 352 | } 353 | // combine batteries into Local0 result if possible 354 | If (0x1f == Local2 && 0x1f == Local3) 355 | { 356 | // _BST 0 - Battery State - if one battery is charging, then charging, else discharging 357 | Local4 = DerefOf (Local0 [0]) 358 | Local5 = DerefOf (Local1 [0]) 359 | If (Local4 != Local5) 360 | { 361 | If (Local4 == 2 || Local5 == 2) 362 | { 363 | // 2 = charging 364 | Local0 [0] = 2 365 | } 366 | ElseIf (Local4 == 1 || Local5 == 1) 367 | { 368 | // 1 = discharging 369 | Local0 [0] = 1 370 | } 371 | ElseIf (Local4 == 3 || Local5 == 3) 372 | { 373 | Local0 [0] = 3 374 | } 375 | ElseIf (Local4 == 4 || Local5 == 4) 376 | { 377 | // critical 378 | Local0 [0] = 4 379 | } 380 | ElseIf (Local4 == 5 || Local5 == 5) 381 | { 382 | // critical and discharging 383 | Local0 [0] = 5 384 | } 385 | // if none of the above, just leave as BAT0 is 386 | } 387 | 388 | // _BST 1 - Battery Present Rate - add BAT0 and BAT1 values 389 | Local0 [1] = DerefOf (Local0 [1]) + DerefOf (Local1 [1]) 390 | // _BST 2 - Battery Remaining Capacity - add BAT0 and BAT1 values 391 | Local0 [2] = DerefOf (Local0 [2]) + DerefOf (Local1 [2]) 392 | // _BST 3 - Battery Present Voltage - average between BAT0 and BAT1 values 393 | Local0 [3] = (DerefOf (Local0 [3]) + DerefOf (Local1 [3])) / 2 394 | } 395 | Return (Local0) 396 | } // _BST 397 | } // BATC 398 | } // Scope (...) 399 | } 400 | //EOF 401 | -------------------------------------------------------------------------------- /Kexts/SMCDellSensors.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCDellSensors 11 | CFBundleIdentifier 12 | as.lvs1974.SMCDellSensors 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCDellSensors 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.2.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | SMCDellSensors 46 | 47 | CFBundleIdentifier 48 | as.lvs1974.SMCDellSensors 49 | FanMultiplier 50 | 1 51 | FanNames 52 | 53 | CPU Fan 54 | System Fan 55 | GPU Fan 56 | PSU Fan 57 | Chipset Fan 58 | Other Fan 59 | 60 | IOClass 61 | SMCDellSensors 62 | IOMatchCategory 63 | SMCDellSensors 64 | IOProviderClass 65 | IOResources 66 | IOResourceMatch 67 | IOKit 68 | StopFanOffsets 69 | 70 | 0 71 | 0 72 | 0 73 | 0 74 | 0 75 | 0 76 | 77 | 78 | 79 | LSMinimumSystemVersion 80 | 10.7 81 | NSHumanReadableCopyright 82 | Copyright © 2018 usrsse2. All rights reserved. 83 | OSBundleCompatibleVersion 84 | 1.0.0 85 | OSBundleLibraries 86 | 87 | as.vit9696.Lilu 88 | 1.2.0 89 | as.vit9696.VirtualSMC 90 | 1.0.0 91 | com.apple.kpi.bsd 92 | 11.0.0 93 | com.apple.kpi.dsep 94 | 11.0.0 95 | com.apple.kpi.iokit 96 | 11.0.0 97 | com.apple.kpi.libkern 98 | 11.0.0 99 | com.apple.kpi.mach 100 | 11.0.0 101 | com.apple.kpi.unsupported 102 | 11.0.0 103 | 104 | OSBundleRequired 105 | Root 106 | 107 | 108 | -------------------------------------------------------------------------------- /Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/SMCDellSensors.kext/Contents/MacOS/SMCDellSensors -------------------------------------------------------------------------------- /Kexts/SMCLightSensor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCLightSensor 11 | CFBundleIdentifier 12 | ru.usrsse2.SMCLightSensor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCLightSensor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.7 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.2.7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | SMCLightSensor 46 | 47 | CFBundleIdentifier 48 | ru.usrsse2.SMCLightSensor 49 | IOClass 50 | SMCLightSensor 51 | IOMatchCategory 52 | SMCLightSensor 53 | IOProviderClass 54 | IOResources 55 | IOResourceMatch 56 | IOKit 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.6 61 | NSHumanReadableCopyright 62 | Copyright © 2018 vit9696. All rights reserved. 63 | OSBundleCompatibleVersion 64 | 1.0.0 65 | OSBundleLibraries 66 | 67 | as.vit9696.Lilu 68 | 1.2.0 69 | as.vit9696.VirtualSMC 70 | 1.0.0 71 | com.apple.iokit.IOACPIFamily 72 | 1.0.0d1 73 | com.apple.kpi.bsd 74 | 10.0.0 75 | com.apple.kpi.dsep 76 | 10.0.0 77 | com.apple.kpi.iokit 78 | 10.0.0 79 | com.apple.kpi.libkern 80 | 10.0.0 81 | com.apple.kpi.mach 82 | 10.0.0 83 | com.apple.kpi.unsupported 84 | 10.0.0 85 | 86 | 87 | 88 | -------------------------------------------------------------------------------- /Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/SMCLightSensor.kext/Contents/MacOS/SMCLightSensor -------------------------------------------------------------------------------- /Kexts/SMCProcessor.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCProcessor 11 | CFBundleIdentifier 12 | as.vit9696.SMCProcessor 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCProcessor 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.SMCProcessor 48 | 49 | CFBundleIdentifier 50 | as.vit9696.SMCProcessor 51 | IOClass 52 | SMCProcessor 53 | IOMatchCategory 54 | SMCProcessor 55 | IONameMatch 56 | processor 57 | IOPropertyMatch 58 | 59 | processor-index 60 | 0 61 | 62 | IOProviderClass 63 | IOACPIPlatformDevice 64 | IOResourceMatch 65 | ACPI 66 | 67 | 68 | LSMinimumSystemVersion 69 | 10.7 70 | NSHumanReadableCopyright 71 | Copyright © 2018 vit9696. All rights reserved. 72 | OSBundleCompatibleVersion 73 | 1.0 74 | OSBundleLibraries 75 | 76 | as.vit9696.Lilu 77 | 1.2.0 78 | as.vit9696.VirtualSMC 79 | 1.0.0 80 | com.apple.iokit.IOACPIFamily 81 | 1.0.0d1 82 | com.apple.kpi.bsd 83 | 11.0.0 84 | com.apple.kpi.dsep 85 | 11.0.0 86 | com.apple.kpi.iokit 87 | 11.0.0 88 | com.apple.kpi.libkern 89 | 11.0.0 90 | com.apple.kpi.mach 91 | 11.0.0 92 | com.apple.kpi.unsupported 93 | 11.0.0 94 | 95 | OSBundleRequired 96 | Root 97 | 98 | 99 | -------------------------------------------------------------------------------- /Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/SMCProcessor.kext/Contents/MacOS/SMCProcessor -------------------------------------------------------------------------------- /Kexts/SMCSuperIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | SMCSuperIO 11 | CFBundleIdentifier 12 | ru.joedm.SMCSuperIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | SMCSuperIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ru.joedm.SMCSuperIO 48 | 49 | CFBundleIdentifier 50 | ru.joedm.SMCSuperIO 51 | IOClass 52 | SMCSuperIO 53 | IOMatchCategory 54 | SMCSuperIO 55 | IOPCIClassMatch 56 | 0x06010000&0xffff0000 57 | IOProviderClass 58 | IOPCIDevice 59 | IOResourceMatch 60 | ACPI 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.6 65 | NSHumanReadableCopyright 66 | Copyright © 2018 joedm. All rights reserved. 67 | OSBundleCompatibleVersion 68 | 1.0 69 | OSBundleLibraries 70 | 71 | as.vit9696.Lilu 72 | 1.2.0 73 | as.vit9696.VirtualSMC 74 | 1.0.0 75 | com.apple.iokit.IOACPIFamily 76 | 1.0.0d1 77 | com.apple.kpi.bsd 78 | 10.0.0 79 | com.apple.kpi.dsep 80 | 10.0.0 81 | com.apple.kpi.iokit 82 | 10.0.0 83 | com.apple.kpi.libkern 84 | 10.0.0 85 | com.apple.kpi.mach 86 | 10.0.0 87 | com.apple.kpi.unsupported 88 | 10.0.0 89 | 90 | OSBundleRequired 91 | Root 92 | 93 | 94 | -------------------------------------------------------------------------------- /Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/SMCSuperIO.kext/Contents/MacOS/SMCSuperIO -------------------------------------------------------------------------------- /Kexts/Sinetek-rtsx.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19E287 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | Sinetek-rtsx 11 | CFBundleIdentifier 12 | com.sinet3k.Sinetek-rtsx 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Sinetek-rtsx 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 7 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E608c 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 17A315g 35 | DTSDKName 36 | macosx10.13 37 | DTXcode 38 | 1150 39 | DTXcodeBuild 40 | 11E608c 41 | IOKitPersonalities 42 | 43 | Sinetek_rtsx 44 | 45 | CFBundleIdentifier 46 | com.sinet3k.Sinetek-rtsx 47 | IOClass 48 | Sinetek_rtsx 49 | IOKitDebug 50 | 65535 51 | IOPCIMatch 52 | 0x520910EC 0x522710EC 0x522910EC 0x522A10EC 0x524910EC 0x528610EC 0x528710EC 0x528910EC 0x525A10EC 53 | IOProbeScore 54 | 1000 55 | IOProviderClass 56 | IOPCIDevice 57 | 58 | 59 | LSMinimumSystemVersion 60 | 10.13 61 | NSHumanReadableCopyright 62 | Copyright © 2017 sinetek (modified by cholonam). All rights reserved. 63 | OSBundleLibraries 64 | 65 | com.apple.iokit.IOPCIFamily 66 | 2.9 67 | com.apple.iokit.IOStorageFamily 68 | 2.1 69 | com.apple.kpi.bsd 70 | 16.4 71 | com.apple.kpi.iokit 72 | 16.4 73 | com.apple.kpi.libkern 74 | 16.4 75 | com.apple.kpi.mach 76 | 16.4 77 | com.apple.kpi.unsupported 78 | 8.0 79 | 80 | 81 | 82 | -------------------------------------------------------------------------------- /Kexts/Sinetek-rtsx.kext/Contents/MacOS/Sinetek-rtsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/Sinetek-rtsx.kext/Contents/MacOS/Sinetek-rtsx -------------------------------------------------------------------------------- /Kexts/Sinetek-rtsx.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Kexts/USBPorts.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleDevelopmentRegion 6 | English 7 | CFBundleGetInfoString 8 | 1.0 Copyright © 2018-2020 Headsoft. All rights reserved. 9 | CFBundleIdentifier 10 | com.Headsoft.USBPorts 11 | CFBundleInfoDictionaryVersion 12 | 6.0 13 | CFBundleName 14 | USBPorts 15 | CFBundlePackageType 16 | KEXT 17 | CFBundleShortVersionString 18 | 2006 19 | CFBundleSignature 20 | ???? 21 | CFBundleVersion 22 | 1.0 23 | IOKitPersonalities 24 | 25 | MacBookPro15,1-XHC 26 | 27 | CFBundleIdentifier 28 | com.apple.driver.AppleUSBMergeNub 29 | IOClass 30 | AppleUSBMergeNub 31 | IONameMatch 32 | XHC 33 | IOPCIPrimaryMatch 34 | 0xa36d8086 35 | IOProbeScore 36 | 5000 37 | IOProviderClass 38 | AppleIntelCNLUSBXHCI 39 | IOProviderMergeProperties 40 | 41 | kUSBSleepPortCurrentLimit 42 | 2100 43 | kUSBSleepPowerSupply 44 | 5100 45 | kUSBWakePortCurrentLimit 46 | 2100 47 | kUSBWakePowerSupply 48 | 5100 49 | port-count 50 | 51 | EgAAAA== 52 | 53 | ports 54 | 55 | HS01 56 | 57 | UsbConnector 58 | 3 59 | name 60 | HS01 61 | port 62 | 63 | AQAAAA== 64 | 65 | 66 | HS02 67 | 68 | UsbConnector 69 | 3 70 | name 71 | HS02 72 | port 73 | 74 | AgAAAA== 75 | 76 | 77 | HS04 78 | 79 | UsbConnector 80 | 255 81 | name 82 | HS04 83 | port 84 | 85 | BAAAAA== 86 | 87 | 88 | HS05 89 | 90 | UsbConnector 91 | 9 92 | name 93 | HS05 94 | port 95 | 96 | BQAAAA== 97 | 98 | 99 | HS09 100 | 101 | UsbConnector 102 | 255 103 | name 104 | HS09 105 | port 106 | 107 | CQAAAA== 108 | 109 | 110 | HS12 111 | 112 | UsbConnector 113 | 255 114 | name 115 | HS12 116 | port 117 | 118 | DAAAAA== 119 | 120 | 121 | SS01 122 | 123 | UsbConnector 124 | 3 125 | name 126 | SS01 127 | port 128 | 129 | EQAAAA== 130 | 131 | 132 | SS02 133 | 134 | UsbConnector 135 | 3 136 | name 137 | SS02 138 | port 139 | 140 | EgAAAA== 141 | 142 | 143 | 144 | 145 | model 146 | MacBookPro15,1 147 | 148 | 149 | OSBundleRequired 150 | Root 151 | 152 | 153 | -------------------------------------------------------------------------------- /Kexts/VerbStub.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 18B75 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VerbStub 11 | CFBundleIdentifier 12 | com.XPS.VerbStub 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VerbStub 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.0.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 10B61 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 18B71 35 | DTSDKName 36 | macosx10.14 37 | DTXcode 38 | 1010 39 | DTXcodeBuild 40 | 10B61 41 | IOKitPersonalities 42 | 43 | VerbStub 44 | 45 | CFBundleIdentifier 46 | com.XPS.VerbStub 47 | IOClass 48 | com_XPS_VerbStub 49 | IOMatchCategory 50 | com_XPS_VerbStub 51 | IOProviderClass 52 | IOHDACodecFunction 53 | IOUserClientClass 54 | VerbStubUserClient 55 | 56 | VerbStubResidency 57 | 58 | CFBundleIdentifier 59 | com.XPS.VerbStub 60 | IOClass 61 | VerbStubResidency 62 | IOMatchCategory 63 | VerbStubResidency 64 | IOProviderClass 65 | IOResources 66 | 67 | 68 | NSHumanReadableCopyright 69 | Copyright © 2017 VerbStub. All rights reserved. 70 | OSBundleLibraries 71 | 72 | com.apple.iokit.IOPCIFamily 73 | 2.9 74 | com.apple.kpi.iokit 75 | 16.6 76 | com.apple.kpi.libkern 77 | 16.6 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /Kexts/VerbStub.kext/Contents/MacOS/VerbStub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VerbStub.kext/Contents/MacOS/VerbStub -------------------------------------------------------------------------------- /Kexts/VirtualSMC.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1323 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VirtualSMC 11 | CFBundleIdentifier 12 | as.vit9696.VirtualSMC 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VirtualSMC 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.2.7 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.2.7 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | as.vit9696.VirtualSMC 48 | 49 | CFBundleIdentifier 50 | as.vit9696.VirtualSMC 51 | IOClass 52 | VirtualSMC 53 | IODeviceMemory 54 | 55 | 56 | 57 | address 58 | 768 59 | length 60 | 32 61 | 62 | 63 | 64 | 65 | address 66 | 4277141504 67 | length 68 | 65536 69 | 70 | 71 | 72 | IOInterruptControllers 73 | 74 | io-apic-0 75 | 76 | IOInterruptSpecifiers 77 | 78 | 79 | BgAAAAAAAAA= 80 | 81 | 82 | IOMatchCategory 83 | IOACPIPlatformDevice 84 | IOName 85 | SMC 86 | IOProbeScore 87 | 60000 88 | IOProviderClass 89 | AppleACPIPlatformExpert 90 | Keystore 91 | 92 | Generic 93 | 94 | 95 | attr 96 | 97 | iA== 98 | 99 | comment 100 | Total fan number, this should be put to a plugin 101 | name 102 | 103 | Rk51bQ== 104 | 105 | type 106 | 107 | dWk4IA== 108 | 109 | value 110 | 111 | AA== 112 | 113 | 114 | 115 | attr 116 | 117 | gA== 118 | 119 | comment 120 | CPU plimit 121 | name 122 | 123 | TVNUYw== 124 | 125 | type 126 | 127 | dWk4IA== 128 | 129 | value 130 | 131 | AA== 132 | 133 | 134 | 135 | attr 136 | 137 | gA== 138 | 139 | comment 140 | FAN plimit (supposedly) 141 | name 142 | 143 | TVNUZg== 144 | 145 | type 146 | 147 | dWk4IA== 148 | 149 | value 150 | 151 | AA== 152 | 153 | 154 | 155 | attr 156 | 157 | gA== 158 | 159 | comment 160 | Memory plimit 161 | name 162 | 163 | TVNUbQ== 164 | 165 | type 166 | 167 | dWk4IA== 168 | 169 | value 170 | 171 | AA== 172 | 173 | 174 | 175 | attr 176 | 177 | gA== 178 | 179 | comment 180 | This should be 1 on laptops, and is overriden by sensors 181 | name 182 | 183 | QkFUUA== 184 | 185 | type 186 | 187 | ZmxhZw== 188 | 189 | value 190 | 191 | AA== 192 | 193 | 194 | 195 | attr 196 | 197 | gA== 198 | 199 | comment 200 | Only MacPros have custom illumination controllers 201 | name 202 | 203 | THNOTQ== 204 | 205 | type 206 | 207 | dWk4IA== 208 | 209 | value 210 | 211 | AA== 212 | 213 | 214 | 215 | GenericDesktopV1 216 | 217 | GenericDesktopV2 218 | 219 | GenericLaptopV1 220 | 221 | GenericLaptopV2 222 | 223 | GenericV1 224 | 225 | 226 | attr 227 | 228 | gA== 229 | 230 | comment 231 | GPU plimit 232 | name 233 | 234 | TVNUZw== 235 | 236 | type 237 | 238 | dWk4IA== 239 | 240 | value 241 | 242 | AA== 243 | 244 | 245 | 246 | GenericV2 247 | 248 | 249 | attr 250 | 251 | gA== 252 | 253 | comment 254 | E plimit (???) 255 | name 256 | 257 | TVNUZQ== 258 | 259 | type 260 | 261 | dWk4IA== 262 | 263 | value 264 | 265 | AA== 266 | 267 | 268 | 269 | attr 270 | 271 | gA== 272 | 273 | comment 274 | I plimit (???) 275 | name 276 | 277 | TVNUaQ== 278 | 279 | type 280 | 281 | dWk4IA== 282 | 283 | value 284 | 285 | AA== 286 | 287 | 288 | 289 | attr 290 | 291 | gA== 292 | 293 | comment 294 | J plimit (???) 295 | name 296 | 297 | TVNUag== 298 | 299 | type 300 | 301 | dWk4IA== 302 | 303 | value 304 | 305 | AA== 306 | 307 | 308 | 309 | 310 | ModelInfo 311 | 312 | GenericV1 313 | 314 | branch 315 | 316 | ajUyAAAAAAA= 317 | 318 | hwname 319 | 320 | c21jLXBpa2V0b24A 321 | 322 | platform 323 | 324 | ajUyAAAAAAA= 325 | 326 | rev 327 | 328 | AXQPAAAE 329 | 330 | revfb 331 | 332 | AXQPAAAE 333 | 334 | revfu 335 | 336 | AXQPAAAE 337 | 338 | 339 | GenericV2 340 | 341 | branch 342 | 343 | ajUyAAAAAAA= 344 | 345 | hwname 346 | 347 | c21jLWh1cm9ucml2ZXIA 348 | 349 | platform 350 | 351 | ajUyAAAAAAA= 352 | 353 | rev 354 | 355 | AigPAAAH 356 | 357 | revfb 358 | 359 | AigPAAAH 360 | 361 | revfu 362 | 363 | AigPAAAH 364 | 365 | 366 | GenericV3 367 | 368 | hwname 369 | 370 | c21jLWh1cm9ucml2ZXIA 371 | 372 | platform 373 | 374 | ajUyAAAAAAA= 375 | 376 | 377 | 378 | _STA 379 | 11 380 | name 381 | 382 | QVBQMDAwMQA= 383 | 384 | 385 | 386 | LSMinimumSystemVersion 387 | 10.6 388 | NSHumanReadableCopyright 389 | Copyright © 2017 vit9696. All rights reserved. 390 | OSBundleCompatibleVersion 391 | 1.0 392 | OSBundleLibraries 393 | 394 | as.vit9696.Lilu 395 | 1.2.0 396 | com.apple.iokit.IOACPIFamily 397 | 1.0.0d1 398 | com.apple.kernel.6.0 399 | 7.9.9 400 | com.apple.kpi.bsd 401 | 8.0.0 402 | com.apple.kpi.iokit 403 | 8.0.0 404 | com.apple.kpi.libkern 405 | 8.0.0 406 | com.apple.kpi.mach 407 | 8.0.0 408 | com.apple.kpi.unsupported 409 | 8.0.0 410 | 411 | OSBundleLibraries_x86_64 412 | 413 | as.vit9696.Lilu 414 | 1.2.0 415 | com.apple.iokit.IOACPIFamily 416 | 1.0.0d1 417 | com.apple.kpi.bsd 418 | 10.0.0 419 | com.apple.kpi.iokit 420 | 10.0.0 421 | com.apple.kpi.libkern 422 | 10.0.0 423 | com.apple.kpi.mach 424 | 10.0.0 425 | com.apple.kpi.unsupported 426 | 10.0.0 427 | 428 | OSBundleRequired 429 | Root 430 | 431 | 432 | -------------------------------------------------------------------------------- /Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VirtualSMC.kext/Contents/MacOS/VirtualSMC -------------------------------------------------------------------------------- /Kexts/VoltageShift.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19G2021 7 | CFBundleDevelopmentRegion 8 | English 9 | CFBundleExecutable 10 | VoltageShift 11 | CFBundleGetInfoString 12 | VoltageShift 1.22, copyright © 2019 SC Lee. All rights reserved. 13 | CFBundleIdentifier 14 | com.sicreative.VoltageShift 15 | CFBundleInfoDictionaryVersion 16 | 6.0 17 | CFBundleName 18 | VoltageShift 19 | CFBundlePackageType 20 | KEXT 21 | CFBundleShortVersionString 22 | 1.21 23 | CFBundleSignature 24 | ???? 25 | CFBundleSupportedPlatforms 26 | 27 | MacOSX 28 | 29 | CFBundleVersion 30 | 1.21 31 | DTCompiler 32 | com.apple.compilers.llvm.clang.1_0 33 | DTPlatformBuild 34 | 12A7209 35 | DTPlatformName 36 | macosx 37 | DTPlatformVersion 38 | 10.15.6 39 | DTSDKBuild 40 | 19G68 41 | DTSDKName 42 | macosx10.15 43 | DTXcode 44 | 1200 45 | DTXcodeBuild 46 | 12A7209 47 | IOKitPersonalities 48 | 49 | VoltageShiftAnVMSR 50 | 51 | IOClass 52 | VoltageShiftAnVMSR 53 | IOMatchCategory 54 | VoltageShiftAnVMSR 55 | IOProviderClass 56 | IOResources 57 | IOResourceMatch 58 | IOKit 59 | IOUserClientClass 60 | AnVMSRClient 61 | 62 | 63 | LSMinimumSystemVersion 64 | 10.15 65 | NSHumanReadableCopyright 66 | Copyright © 2019 SC Lee. All rights reserved. 67 | OSBundleLibraries 68 | 69 | com.apple.kpi.iokit 70 | 8.0.0b1 71 | com.apple.kpi.libkern 72 | 8.0.0b1 73 | 74 | OSBundleRequired 75 | Root 76 | 77 | 78 | -------------------------------------------------------------------------------- /Kexts/VoltageShift.kext/Contents/MacOS/VoltageShift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoltageShift.kext/Contents/MacOS/VoltageShift -------------------------------------------------------------------------------- /Kexts/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoltageShift.kext/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Kexts/VoltageShift.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | Resources/en.lproj/InfoPlist.strings 8 | 9 | hash 10 | 11 | MiLKDDnrUKr4EmuvhS5VQwxHGK8= 12 | 13 | optional 14 | 15 | 16 | 17 | files2 18 | 19 | Resources/en.lproj/InfoPlist.strings 20 | 21 | hash 22 | 23 | MiLKDDnrUKr4EmuvhS5VQwxHGK8= 24 | 25 | hash2 26 | 27 | Oc8u4Ht7Mz58F50L9NeYpbcq9qTlhPUeZCcDu/pPyCg= 28 | 29 | optional 30 | 31 | 32 | 33 | rules 34 | 35 | ^Resources/ 36 | 37 | ^Resources/.*\.lproj/ 38 | 39 | optional 40 | 41 | weight 42 | 1000 43 | 44 | ^Resources/.*\.lproj/locversion.plist$ 45 | 46 | omit 47 | 48 | weight 49 | 1100 50 | 51 | ^Resources/Base\.lproj/ 52 | 53 | weight 54 | 1010 55 | 56 | ^version.plist$ 57 | 58 | 59 | rules2 60 | 61 | .*\.dSYM($|/) 62 | 63 | weight 64 | 11 65 | 66 | ^(.*/)?\.DS_Store$ 67 | 68 | omit 69 | 70 | weight 71 | 2000 72 | 73 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 74 | 75 | nested 76 | 77 | weight 78 | 10 79 | 80 | ^.* 81 | 82 | ^Info\.plist$ 83 | 84 | omit 85 | 86 | weight 87 | 20 88 | 89 | ^PkgInfo$ 90 | 91 | omit 92 | 93 | weight 94 | 20 95 | 96 | ^Resources/ 97 | 98 | weight 99 | 20 100 | 101 | ^Resources/.*\.lproj/ 102 | 103 | optional 104 | 105 | weight 106 | 1000 107 | 108 | ^Resources/.*\.lproj/locversion.plist$ 109 | 110 | omit 111 | 112 | weight 113 | 1100 114 | 115 | ^Resources/Base\.lproj/ 116 | 117 | weight 118 | 1010 119 | 120 | ^[^/]+$ 121 | 122 | nested 123 | 124 | weight 125 | 10 126 | 127 | ^embedded\.provisionprofile$ 128 | 129 | weight 130 | 20 131 | 132 | ^version\.plist$ 133 | 134 | weight 135 | 20 136 | 137 | 138 | 139 | 140 | -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2C 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2C 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2C 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.6.5 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 2.6.5 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | Custom MT2 Personality 44 | 45 | ApplePreferenceCapability 46 | 2 47 | ApplePreferenceIdentifier 48 | com.apple.AppleMultitouchTrackpad 49 | ApplePreferencesDefaultPreferences 50 | 51 | ActuateDetents 52 | 0 53 | Clicking 54 | 1 55 | DragLock 56 | 0 57 | Dragging 58 | 0 59 | FirstClickThreshold 60 | 1 61 | ForceSuppressed 62 | 63 | SecondClickThreshold 64 | 1 65 | TrackpadCornerSecondaryClick 66 | 0 67 | TrackpadFiveFingerPinchGesture 68 | 2 69 | TrackpadFourFingerHorizSwipeGesture 70 | 2 71 | TrackpadFourFingerPinchGesture 72 | 2 73 | TrackpadFourFingerVertSwipeGesture 74 | 2 75 | TrackpadHorizScroll 76 | 1 77 | TrackpadMomentumScroll 78 | 79 | TrackpadPinch 80 | 1 81 | TrackpadRightClick 82 | 83 | TrackpadRotate 84 | 1 85 | TrackpadScroll 86 | 87 | TrackpadThreeFingerDrag 88 | 89 | TrackpadThreeFingerHorizSwipeGesture 90 | 2 91 | TrackpadThreeFingerVertSwipeGesture 92 | 2 93 | 94 | CFBundleIdentifier 95 | com.apple.driver.AppleTopCaseHIDEventDriver 96 | DefaultMultitouchProperties 97 | 98 | ActuationSupported 99 | 100 | ExtractAndPostDeviceButtonState 101 | 102 | ForceSupported 103 | 104 | HIDServiceSupport 105 | 106 | IOCFPlugInTypes 107 | 108 | 0516B563-B15B-11DA-96EB-0014519758EF 109 | AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin 110 | 111 | MT Built-In 112 | 113 | MTHIDDevice 114 | 115 | MTPowerStatsDisable 116 | 117 | SupportsGestureScrolling 118 | 119 | TrackpadFourFingerGestures 120 | 121 | TrackpadMomentumScroll 122 | 123 | TrackpadSecondaryClickCorners 124 | 125 | TrackpadThreeFingerDrag 126 | 127 | parser-options 128 | 39 129 | parser-type 130 | 1000 131 | 132 | DeviceUsagePairs 133 | 134 | 135 | DeviceUsage 136 | 2 137 | DeviceUsagePage 138 | 1 139 | 140 | 141 | DoReportIntervalHack 142 | 143 | HIDAccelCurves 144 | 145 | 146 | HIDAccelGainLinear 147 | 65536 148 | HIDAccelIndex 149 | 0 150 | HIDAccelTangentSpeedLinear 151 | 484966 152 | HIDAccelTangentSpeedParabolicRoot 153 | 1376256 154 | 155 | 156 | HIDAccelGainCubic 157 | 5243 158 | HIDAccelGainLinear 159 | 64881 160 | HIDAccelGainParabolic 161 | 32768 162 | HIDAccelIndex 163 | 8192 164 | HIDAccelTangentSpeedLinear 165 | 478413 166 | HIDAccelTangentSpeedParabolicRoot 167 | 1310720 168 | 169 | 170 | HIDAccelGainCubic 171 | 6554 172 | HIDAccelGainLinear 173 | 64225 174 | HIDAccelGainParabolic 175 | 43254 176 | HIDAccelIndex 177 | 32768 178 | HIDAccelTangentSpeedLinear 179 | 471859 180 | HIDAccelTangentSpeedParabolicRoot 181 | 1245184 182 | 183 | 184 | HIDAccelGainCubic 185 | 7864 186 | HIDAccelGainLinear 187 | 62915 188 | HIDAccelGainParabolic 189 | 54395 190 | HIDAccelIndex 191 | 45056 192 | HIDAccelTangentSpeedLinear 193 | 465306 194 | HIDAccelTangentSpeedParabolicRoot 195 | 1179648 196 | 197 | 198 | HIDAccelGainCubic 199 | 9830 200 | HIDAccelGainLinear 201 | 61604 202 | HIDAccelGainParabolic 203 | 65536 204 | HIDAccelIndex 205 | 57344 206 | HIDAccelTangentSpeedLinear 207 | 458752 208 | HIDAccelTangentSpeedParabolicRoot 209 | 1114112 210 | 211 | 212 | HIDAccelGainCubic 213 | 11796 214 | HIDAccelGainLinear 215 | 60293 216 | HIDAccelGainParabolic 217 | 75366 218 | HIDAccelIndex 219 | 65536 220 | HIDAccelTangentSpeedLinear 221 | 458752 222 | HIDAccelTangentSpeedParabolicRoot 223 | 1048576 224 | 225 | 226 | HIDAccelGainCubic 227 | 13763 228 | HIDAccelGainLinear 229 | 58327 230 | HIDAccelGainParabolic 231 | 85197 232 | HIDAccelIndex 233 | 98304 234 | HIDAccelTangentSpeedLinear 235 | 458752 236 | HIDAccelTangentSpeedParabolicRoot 237 | 983040 238 | 239 | 240 | HIDAccelGainCubic 241 | 15729 242 | HIDAccelGainLinear 243 | 56361 244 | HIDAccelGainParabolic 245 | 95027 246 | HIDAccelIndex 247 | 131072 248 | HIDAccelTangentSpeedLinear 249 | 458752 250 | HIDAccelTangentSpeedParabolicRoot 251 | 917504 252 | 253 | 254 | HIDAccelGainCubic 255 | 18350 256 | HIDAccelGainLinear 257 | 54395 258 | HIDAccelGainParabolic 259 | 108790 260 | HIDAccelIndex 261 | 163840 262 | HIDAccelTangentSpeedLinear 263 | 458752 264 | HIDAccelTangentSpeedParabolicRoot 265 | 851968 266 | 267 | 268 | HIDAccelGainCubic 269 | 23593 270 | HIDAccelGainLinear 271 | 65536 272 | HIDAccelGainParabolic 273 | 123208 274 | HIDAccelIndex 275 | 196608 276 | HIDAccelTangentSpeedLinear 277 | 458752 278 | HIDAccelTangentSpeedParabolicRoot 279 | 786432 280 | 281 | 282 | HIDDisallowRemappingOfPrimaryClick 283 | 284 | HIDPointerAccelerationTable 285 | 286 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 287 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 288 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 289 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 290 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 291 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 292 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 293 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 294 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 295 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 296 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 297 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 298 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 299 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 300 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 301 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 302 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 303 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 304 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 305 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxA 306 | 307 | HIDPointerAccelerationType 308 | HIDTrackpadAcceleration 309 | HIDScrollAccelCurves 310 | 311 | 312 | HIDAccelGainLinear 313 | 65536 314 | HIDAccelIndex 315 | 0 316 | HIDAccelTangentSpeedLinear 317 | 393216 318 | HIDAccelTangentSpeedParabolicRoot 319 | 786432 320 | 321 | 322 | HIDAccelGainLinear 323 | 62259 324 | HIDAccelGainParabolic 325 | 39322 326 | HIDAccelIndex 327 | 8192 328 | HIDAccelTangentSpeedLinear 329 | 406323 330 | HIDAccelTangentSpeedParabolicRoot 331 | 786432 332 | 333 | 334 | HIDAccelGainLinear 335 | 58982 336 | HIDAccelGainParabolic 337 | 58982 338 | HIDAccelIndex 339 | 32768 340 | HIDAccelTangentSpeedLinear 341 | 419430 342 | HIDAccelTangentSpeedParabolicRoot 343 | 786432 344 | 345 | 346 | HIDAccelGainLinear 347 | 55706 348 | HIDAccelGainParabolic 349 | 78643 350 | HIDAccelIndex 351 | 45056 352 | HIDAccelTangentSpeedLinear 353 | 432538 354 | HIDAccelTangentSpeedParabolicRoot 355 | 786432 356 | 357 | 358 | HIDAccelGainLinear 359 | 52429 360 | HIDAccelGainParabolic 361 | 91750 362 | HIDAccelIndex 363 | 57344 364 | HIDAccelTangentSpeedLinear 365 | 445645 366 | HIDAccelTangentSpeedParabolicRoot 367 | 786432 368 | 369 | 370 | HIDAccelGainLinear 371 | 49152 372 | HIDAccelGainParabolic 373 | 104858 374 | HIDAccelIndex 375 | 65536 376 | HIDAccelTangentSpeedLinear 377 | 458752 378 | HIDAccelTangentSpeedParabolicRoot 379 | 786432 380 | 381 | 382 | HIDAccelGainLinear 383 | 45875 384 | HIDAccelGainParabolic 385 | 117965 386 | HIDAccelIndex 387 | 98304 388 | HIDAccelTangentSpeedLinear 389 | 471859 390 | HIDAccelTangentSpeedParabolicRoot 391 | 786432 392 | 393 | 394 | HIDAccelGainLinear 395 | 42598 396 | HIDAccelGainParabolic 397 | 131072 398 | HIDAccelIndex 399 | 131072 400 | HIDAccelTangentSpeedLinear 401 | 484966 402 | HIDAccelTangentSpeedParabolicRoot 403 | 786432 404 | 405 | 406 | HIDAccelGainLinear 407 | 39322 408 | HIDAccelGainParabolic 409 | 144179 410 | HIDAccelIndex 411 | 163840 412 | HIDAccelTangentSpeedLinear 413 | 498074 414 | HIDAccelTangentSpeedParabolicRoot 415 | 786432 416 | 417 | 418 | HIDAccelGainLinear 419 | 36045 420 | HIDAccelGainParabolic 421 | 157286 422 | HIDAccelIndex 423 | 196608 424 | HIDAccelTangentSpeedLinear 425 | 511181 426 | HIDAccelTangentSpeedParabolicRoot 427 | 786432 428 | 429 | 430 | HIDScrollAccelerationTable 431 | 432 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 433 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 434 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 435 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 436 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 437 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 438 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 439 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 440 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 441 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 442 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 443 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 444 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 445 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 446 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 447 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 448 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 449 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 450 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 451 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 452 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 453 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 454 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 455 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 456 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 457 | AAF8JGg= 458 | 459 | HIDScrollAccelerationType 460 | HIDTrackpadScrollAcceleration 461 | HIDScrollResolution 462 | 26214400 463 | IOCFPlugInTypes 464 | 465 | 0516B563-B15B-11DA-96EB-0014519758EF 466 | AppleMultitouchDriver.kext/Contents/PlugIns/MultitouchHID.plugin 467 | 468 | IOClass 469 | AppleMultitouchTrackpadHIDEventDriver 470 | IOProbeScore 471 | 9999 472 | IOProviderClass 473 | IOHIDInterface 474 | MTEventSource 475 | 476 | ProductIDArray 477 | 478 | 628 479 | 480 | TrackpadEmbedded 481 | 482 | VendorID 483 | 1452 484 | 485 | Native Multitouch Engine 486 | 487 | CFBundleIdentifier 488 | com.alexandred.VoodooI2C 489 | IOClass 490 | VoodooI2CNativeEngine 491 | IOMatchCategory 492 | VoodooI2CNativeEngine 493 | IOProviderClass 494 | VoodooI2CMultitouchInterface 495 | 496 | VoodooI2CACPIController 497 | 498 | CFBundleIdentifier 499 | com.alexandred.VoodooI2C 500 | IOClass 501 | VoodooI2CACPIController 502 | IONameMatch 503 | 504 | INT33C2 505 | INT33C3 506 | INT3432 507 | INT3433 508 | 509 | IOProbeScore 510 | 9999 511 | IOProviderClass 512 | IOService 513 | 514 | VoodooI2CControllerDriver 515 | 516 | CFBundleIdentifier 517 | com.alexandred.VoodooI2C 518 | IOClass 519 | VoodooI2CControllerDriver 520 | IOProbeScore 521 | 9999 522 | IOProviderClass 523 | VoodooI2CControllerNub 524 | 525 | VoodooI2CPCIController 526 | 527 | CFBundleIdentifier 528 | com.alexandred.VoodooI2C 529 | IOClass 530 | VoodooI2CPCIController 531 | IOPCIMatch 532 | 0x9d608086&0xFFFCFFFF 0xa1608086&0xFFFCFFFF 0x9de88086&0xFFFCFFFF 0xa3688086&0xFFFCFFFF 533 | IOProbeScore 534 | 9999 535 | IOProviderClass 536 | IOPCIDevice 537 | 538 | VoodooI2CPCILakeController 539 | 540 | CFBundleIdentifier 541 | com.alexandred.VoodooI2C 542 | IOClass 543 | VoodooI2CPCILakeController 544 | IOPCIMatch 545 | 0x06e88086&0xFFFCFFFF 0x02e88086&0xFFFCFFFF 0x34e88086&0xFFFCFFFF 546 | IOProbeScore 547 | 9999 548 | IOProviderClass 549 | IOPCIDevice 550 | 551 | 552 | LSMinimumSystemVersion 553 | 10.11 554 | NSHumanReadableCopyright 555 | Copyright © 2020 Alexandre Daoud. All rights reserved. 556 | OSBundleCompatibleVersion 557 | 2.0.0 558 | OSBundleLibraries 559 | 560 | com.alexandred.VoodooI2CServices 561 | 1.0 562 | com.apple.iokit.IOACPIFamily 563 | 1.4 564 | com.apple.iokit.IOHIDFamily 565 | 2.0 566 | com.apple.iokit.IOPCIFamily 567 | 2.9 568 | com.apple.kpi.bsd 569 | 8.0 570 | com.apple.kpi.iokit 571 | 14 572 | com.apple.kpi.libkern 573 | 14 574 | com.apple.kpi.mach 575 | 14 576 | org.coolstar.VoodooGPIO 577 | 1.1 578 | 579 | OSBundleRequired 580 | Root 581 | 582 | 583 | -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooI2C.kext/Contents/MacOS/VoodooI2C -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooGPIO 11 | CFBundleIdentifier 12 | org.coolstar.VoodooGPIO 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooGPIO 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | VoodooGPIOCannonLakeH 44 | 45 | CFBundleIdentifier 46 | org.coolstar.VoodooGPIO 47 | IOClass 48 | VoodooGPIOCannonLakeH 49 | IONameMatch 50 | 51 | INT3450 52 | 53 | IOProviderClass 54 | IOService 55 | 56 | VoodooGPIOCannonLakeLP 57 | 58 | CFBundleIdentifier 59 | org.coolstar.VoodooGPIO 60 | IOClass 61 | VoodooGPIOCannonLakeLP 62 | IONameMatch 63 | 64 | INT34BB 65 | 66 | IOProviderClass 67 | IOService 68 | 69 | VoodooGPIOIceLakeLP 70 | 71 | CFBundleIdentifier 72 | org.coolstar.VoodooGPIO 73 | IOClass 74 | VoodooGPIOIceLakeLP 75 | IONameMatch 76 | 77 | INT3455 78 | 79 | IOProviderClass 80 | IOService 81 | 82 | VoodooGPIOSunrisePointH 83 | 84 | CFBundleIdentifier 85 | org.coolstar.VoodooGPIO 86 | IOClass 87 | VoodooGPIOSunrisePointH 88 | IONameMatch 89 | 90 | INT345D 91 | 92 | IOProviderClass 93 | IOService 94 | 95 | VoodooGPIOSunrisePointLP 96 | 97 | CFBundleIdentifier 98 | org.coolstar.VoodooGPIO 99 | IOClass 100 | VoodooGPIOSunrisePointLP 101 | IONameMatch 102 | 103 | INT344B 104 | 105 | IOProviderClass 106 | IOService 107 | 108 | 109 | LSMinimumSystemVersion 110 | 10.12 111 | NSHumanReadableCopyright 112 | Copyright © 2017 CoolStar. All rights reserved. 113 | OSBundleCompatibleVersion 114 | 1.1 115 | OSBundleLibraries 116 | 117 | com.apple.iokit.IOACPIFamily 118 | 1.4 119 | com.apple.kpi.iokit 120 | 13.0 121 | com.apple.kpi.libkern 122 | 13.0 123 | com.apple.kpi.mach 124 | 13.0 125 | 126 | OSBundleRequired 127 | Root 128 | 129 | 130 | -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooGPIO.kext/Contents/MacOS/VoodooGPIO -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CServices 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CServices 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CServices 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | VoodooI2CLogger 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CServices 47 | IOClass 48 | VoodooI2CLogger 49 | IOMatchCategory 50 | VoodooI2CLogger 51 | IOProviderClass 52 | VoodooI2CServices 53 | 54 | VoodooI2CServices 55 | 56 | CFBundleIdentifier 57 | com.alexandred.VoodooI2CServices 58 | IOClass 59 | VoodooI2CServices 60 | IOMatchCategory 61 | VoodooI2CServices 62 | IOProviderClass 63 | IOResources 64 | 65 | 66 | LSMinimumSystemVersion 67 | 10.11 68 | NSHumanReadableCopyright 69 | Copyright © 2017 Alexandre Daoud. All rights reserved. 70 | OSBundleCompatibleVersion 71 | 1.0.0 72 | OSBundleLibraries 73 | 74 | com.apple.kpi.iokit 75 | 14 76 | com.apple.kpi.libkern 77 | 14 78 | 79 | OSBundleRequired 80 | Root 81 | 82 | 83 | -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooI2CServices.kext/Contents/MacOS/VoodooI2CServices -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.1 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | Voodoo Input 44 | 45 | CFBundleIdentifier 46 | me.kishorprins.VoodooInput 47 | IOClass 48 | VoodooInput 49 | IOProbeScore 50 | 200 51 | IOPropertyMatch 52 | 53 | VoodooInputSupported 54 | 55 | 56 | IOProviderClass 57 | IOService 58 | 59 | 60 | LSMinimumSystemVersion 61 | 10.11 62 | NSHumanReadableCopyright 63 | Copyright © 2019 Kishor Prins. All rights reserved. 64 | OSBundleLibraries 65 | 66 | com.apple.iokit.IOHIDFamily 67 | 2.0 68 | com.apple.kpi.iokit 69 | 14 70 | com.apple.kpi.libkern 71 | 14 72 | com.apple.kpi.mach 73 | 13.0 74 | 75 | OSBundleRequired 76 | Root 77 | 78 | 79 | -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /Kexts/VoodooI2C.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Kexts/VoodooI2CHID.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19F101 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooI2CHID 11 | CFBundleIdentifier 12 | com.alexandred.VoodooI2CHID 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooI2CHID 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.0 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 11E801a 31 | DTPlatformVersion 32 | GM 33 | DTSDKBuild 34 | 19G68 35 | DTSDKName 36 | macosx10.15 37 | DTXcode 38 | 1170 39 | DTXcodeBuild 40 | 11E801a 41 | IOKitPersonalities 42 | 43 | Intel ACPI Sensor Hub Enabler 44 | 45 | CFBundleIdentifier 46 | com.alexandred.VoodooI2CHID 47 | IOClass 48 | VoodooI2CSensorHubEnabler 49 | IONameMatch 50 | 51 | INT33D0 52 | 53 | IOProviderClass 54 | IOACPIPlatformDevice 55 | 56 | Sensor Hub Event Driver 57 | 58 | CFBundleIdentifier 59 | com.alexandred.VoodooI2CHID 60 | DeviceUsagePairs 61 | 62 | 63 | DeviceUsage 64 | 1 65 | DeviceUsagePage 66 | 32 67 | 68 | 69 | IOClass 70 | VoodooI2CSensorHubEventDriver 71 | IOProbeScore 72 | 100 73 | IOProviderClass 74 | IOHIDInterface 75 | 76 | VoodooI2CHIDDevice 77 | 78 | CFBundleIdentifier 79 | com.alexandred.VoodooI2CHID 80 | IOClass 81 | VoodooI2CHIDDevice 82 | IOProbeScore 83 | 100 84 | IOPropertyMatch 85 | 86 | compatible 87 | PNP0C50 88 | 89 | IOProviderClass 90 | VoodooI2CDeviceNub 91 | 92 | VoodooI2CHIDDevice Generic Mouse HID Event Driver 93 | 94 | CFBundleIdentifier 95 | com.alexandred.VoodooI2CHID 96 | DeviceUsagePairs 97 | 98 | 99 | DeviceUsage 100 | 2 101 | DeviceUsagePage 102 | 1 103 | 104 | 105 | HIDAccelCurves 106 | 107 | 108 | HIDAccelGainLinear 109 | 65536 110 | HIDAccelIndex 111 | 0 112 | HIDAccelTangentSpeedLinear 113 | 524288 114 | 115 | 116 | HIDAccelGainCubic 117 | 5243 118 | HIDAccelGainLinear 119 | 60293 120 | HIDAccelGainParabolic 121 | 26214 122 | HIDAccelIndex 123 | 8192 124 | HIDAccelTangentSpeedLinear 125 | 537395 126 | HIDAccelTangentSpeedParabolicRoot 127 | 1245184 128 | 129 | 130 | HIDAccelGainCubic 131 | 6554 132 | HIDAccelGainLinear 133 | 60948 134 | HIDAccelGainParabolic 135 | 36045 136 | HIDAccelIndex 137 | 32768 138 | HIDAccelTangentSpeedLinear 139 | 543949 140 | HIDAccelTangentSpeedParabolicRoot 141 | 1179648 142 | 143 | 144 | HIDAccelGainCubic 145 | 7864 146 | HIDAccelGainLinear 147 | 61604 148 | HIDAccelGainParabolic 149 | 46531 150 | HIDAccelIndex 151 | 45056 152 | HIDAccelTangentSpeedLinear 153 | 550502 154 | HIDAccelTangentSpeedParabolicRoot 155 | 1114112 156 | 157 | 158 | HIDAccelGainCubic 159 | 9830 160 | HIDAccelGainLinear 161 | 62259 162 | HIDAccelGainParabolic 163 | 57672 164 | HIDAccelIndex 165 | 57344 166 | HIDAccelTangentSpeedLinear 167 | 557056 168 | HIDAccelTangentSpeedParabolicRoot 169 | 1048576 170 | 171 | 172 | HIDAccelGainCubic 173 | 11796 174 | HIDAccelGainLinear 175 | 62915 176 | HIDAccelGainParabolic 177 | 69468 178 | HIDAccelIndex 179 | 65536 180 | HIDAccelTangentSpeedLinear 181 | 563610 182 | HIDAccelTangentSpeedParabolicRoot 183 | 983040 184 | 185 | 186 | HIDAccelGainCubic 187 | 14418 188 | HIDAccelGainLinear 189 | 63570 190 | HIDAccelGainParabolic 191 | 81920 192 | HIDAccelIndex 193 | 98304 194 | HIDAccelTangentSpeedLinear 195 | 570163 196 | HIDAccelTangentSpeedParabolicRoot 197 | 917504 198 | 199 | 200 | HIDAccelGainCubic 201 | 17695 202 | HIDAccelGainLinear 203 | 64225 204 | HIDAccelGainParabolic 205 | 95027 206 | HIDAccelIndex 207 | 131072 208 | HIDAccelTangentSpeedLinear 209 | 576717 210 | HIDAccelTangentSpeedParabolicRoot 211 | 851968 212 | 213 | 214 | HIDAccelGainCubic 215 | 21627 216 | HIDAccelGainLinear 217 | 64881 218 | HIDAccelGainParabolic 219 | 108790 220 | HIDAccelIndex 221 | 163840 222 | HIDAccelTangentSpeedLinear 223 | 583270 224 | HIDAccelTangentSpeedParabolicRoot 225 | 786432 226 | 227 | 228 | HIDAccelGainCubic 229 | 26214 230 | HIDAccelGainLinear 231 | 65536 232 | HIDAccelGainParabolic 233 | 123208 234 | HIDAccelIndex 235 | 196608 236 | HIDAccelTangentSpeedLinear 237 | 589824 238 | HIDAccelTangentSpeedParabolicRoot 239 | 786432 240 | 241 | 242 | IOClass 243 | IOHIDEventDriver 244 | IOProbeScore 245 | 100 246 | IOPropertyMatch 247 | 248 | Transport 249 | I2C 250 | 251 | IOProviderClass 252 | IOHIDInterface 253 | 254 | VoodooI2CHIDDevice Multitouch HID Event Driver 255 | 256 | CFBundleIdentifier 257 | com.alexandred.VoodooI2CHID 258 | DeviceUsagePairs 259 | 260 | 261 | DeviceUsage 262 | 4 263 | DeviceUsagePage 264 | 13 265 | 266 | 267 | DeviceUsage 268 | 5 269 | DeviceUsagePage 270 | 13 271 | 272 | 273 | DeviceUsage 274 | 2 275 | DeviceUsagePage 276 | 13 277 | 278 | 279 | IOClass 280 | VoodooI2CMultitouchHIDEventDriver 281 | IOProbeScore 282 | 200 283 | IOProviderClass 284 | IOHIDInterface 285 | 286 | VoodooI2CHIDDevice Precision Touchpad HID Event Driver 287 | 288 | CFBundleIdentifier 289 | com.alexandred.VoodooI2CHID 290 | DeviceUsagePairs 291 | 292 | 293 | DeviceUsage 294 | 5 295 | DeviceUsagePage 296 | 13 297 | 298 | 299 | IOClass 300 | VoodooI2CPrecisionTouchpadHIDEventDriver 301 | IOProbeScore 302 | 300 303 | IOPropertyMatch 304 | 305 | Transport 306 | I2C 307 | 308 | IOProviderClass 309 | IOHIDInterface 310 | ProcessBluetoothMouseStopsTrackpad 311 | 312 | ProcessUSBMouseStopsTrackpad 313 | 314 | QuietTimeAfterTyping 315 | 100 316 | RM,deliverNotifications 317 | 318 | 319 | VoodooI2CHIDDevice Stylus HID Event Driver 320 | 321 | CFBundleIdentifier 322 | com.alexandred.VoodooI2CHID 323 | DeviceUsagePairs 324 | 325 | 326 | DeviceUsage 327 | 2 328 | DeviceUsagePage 329 | 13 330 | 331 | 332 | IOClass 333 | VoodooI2CStylusHIDEventDriver 334 | IOProbeScore 335 | 300 336 | IOProviderClass 337 | IOHIDInterface 338 | 339 | VoodooI2CHIDDevice Touchscreen HID Event Driver 340 | 341 | CFBundleIdentifier 342 | com.alexandred.VoodooI2CHID 343 | DeviceUsagePairs 344 | 345 | 346 | DeviceUsage 347 | 4 348 | DeviceUsagePage 349 | 13 350 | 351 | 352 | IOClass 353 | VoodooI2CTouchscreenHIDEventDriver 354 | IOProbeScore 355 | 400 356 | IOProviderClass 357 | IOHIDInterface 358 | 359 | VoodooI2CHIDSYNA3602Device 360 | 361 | CFBundleIdentifier 362 | com.alexandred.VoodooI2CHID 363 | IOClass 364 | VoodooI2CHIDSYNA3602Device 365 | IOProbeScore 366 | 200 367 | IOPropertyMatch 368 | 369 | name 370 | SYNA3602 371 | 372 | IOProviderClass 373 | VoodooI2CDeviceNub 374 | 375 | 376 | LSMinimumSystemVersion 377 | 10.11 378 | NSHumanReadableCopyright 379 | Copyright © 2017 Alexandre Daoud. All rights reserved. 380 | OSBundleLibraries 381 | 382 | com.alexandred.VoodooI2C 383 | 2.0 384 | com.apple.iokit.IOACPIFamily 385 | 1.4 386 | com.apple.iokit.IOHIDFamily 387 | 2.0 388 | com.apple.kpi.iokit 389 | 14 390 | com.apple.kpi.libkern 391 | 14 392 | com.apple.kpi.mach 393 | 13.0 394 | 395 | OSBundleRequired 396 | Root 397 | 398 | 399 | -------------------------------------------------------------------------------- /Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooI2CHID.kext/Contents/MacOS/VoodooI2CHID -------------------------------------------------------------------------------- /Kexts/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H524 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.2 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.2 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | Voodoo Input 46 | 47 | CFBundleIdentifier 48 | me.kishorprins.VoodooInput 49 | IOClass 50 | VoodooInput 51 | IOProbeScore 52 | 200 53 | IOPropertyMatch 54 | 55 | VoodooInputSupported 56 | 57 | 58 | IOProviderClass 59 | IOService 60 | 61 | 62 | LSMinimumSystemVersion 63 | 10.11 64 | NSHumanReadableCopyright 65 | Copyright © 2019 Kishor Prins. All rights reserved. 66 | OSBundleLibraries 67 | 68 | com.apple.iokit.IOHIDFamily 69 | 2.0 70 | com.apple.kpi.iokit 71 | 14 72 | com.apple.kpi.libkern 73 | 14 74 | com.apple.kpi.mach 75 | 13.0 76 | 77 | OSBundleRequired 78 | Root 79 | 80 | 81 | -------------------------------------------------------------------------------- /Kexts/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1417 7 | CFBundleExecutable 8 | VoodooPS2Controller 9 | CFBundleGetInfoString 10 | 2.2.6, Copyright Apple Computer, Inc. 2000-2003, David Elliot 2007, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Controller 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Controller 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ACPI PS/2 Nub 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Controller 51 | FindMouseDelay 52 | 100 53 | IOClass 54 | AppleACPIPS2Nub 55 | IONameMatch 56 | 57 | PNP0303 58 | PNP030B 59 | PNP0320 60 | 61 | IOProviderClass 62 | IOACPIPlatformDevice 63 | MouseNameMatch 64 | 65 | PNP0F03 66 | PNP0F0B 67 | PNP0F0E 68 | PNP0F13 69 | 70 | 71 | ApplePS2Controller 72 | 73 | CFBundleIdentifier 74 | as.acidanthera.voodoo.driver.PS2Controller 75 | IOClass 76 | ApplePS2Controller 77 | IONameMatch 78 | ps2controller 79 | IOProviderClass 80 | IOPlatformDevice 81 | Platform Profile 82 | 83 | Default 84 | 85 | MouseWakeFirst 86 | 87 | WakeDelay 88 | 10 89 | 90 | HPQOEM 91 | 92 | 1411 93 | ProBook 94 | 1619 95 | ProBook 96 | 161C 97 | ProBook 98 | 164F 99 | ProBook 100 | 167C 101 | ProBook 102 | 167E 103 | ProBook 104 | 1680 105 | ProBook 106 | 179B 107 | ProBook 108 | 179C 109 | ProBook 110 | 17A9 111 | ProBook 112 | 17F0 113 | ProBook 114 | 17F3 115 | ProBook 116 | 17F6 117 | ProBook 118 | 1942 119 | ProBook 120 | 1949 121 | ProBook 122 | 198F 123 | ProBook 124 | ProBook 125 | 126 | WakeDelay 127 | 0 128 | 129 | ProBook-102 130 | ProBook 131 | ProBook-87 132 | ProBook 133 | 134 | 135 | RM,deliverNotifications 136 | 137 | 138 | 139 | LSMinimumSystemVersion 140 | 10.11 141 | OSBundleCompatibleVersion 142 | 2.2.6 143 | OSBundleLibraries 144 | 145 | com.apple.iokit.IOACPIFamily 146 | 1.0.0d1 147 | com.apple.kpi.bsd 148 | 8.0.0 149 | com.apple.kpi.iokit 150 | 8.0.0 151 | com.apple.kpi.libkern 152 | 8.0.0 153 | com.apple.kpi.mach 154 | 8.0.0 155 | com.apple.kpi.unsupported 156 | 8.0.0 157 | 158 | OSBundleRequired 159 | Console 160 | 161 | 162 | -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooPS2Controller.kext/Contents/MacOS/VoodooPS2Controller -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1417 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | VoodooInput 11 | CFBundleIdentifier 12 | me.kishorprins.VoodooInput 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | VoodooInput 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.1.3 21 | CFBundleSupportedPlatforms 22 | 23 | MacOSX 24 | 25 | CFBundleVersion 26 | 1.1.3 27 | DTCompiler 28 | com.apple.compilers.llvm.clang.1_0 29 | DTPlatformBuild 30 | 12B45b 31 | DTPlatformName 32 | macosx 33 | DTPlatformVersion 34 | 11.0 35 | DTSDKBuild 36 | 20A2408 37 | DTSDKName 38 | macosx11.0 39 | DTXcode 40 | 1220 41 | DTXcodeBuild 42 | 12B45b 43 | IOKitPersonalities 44 | 45 | Voodoo Input 46 | 47 | CFBundleIdentifier 48 | me.kishorprins.VoodooInput 49 | IOClass 50 | VoodooInput 51 | IOProbeScore 52 | 200 53 | IOPropertyMatch 54 | 55 | VoodooInputSupported 56 | 57 | 58 | IOProviderClass 59 | IOService 60 | 61 | 62 | LSMinimumSystemVersion 63 | 10.11 64 | NSHumanReadableCopyright 65 | Copyright © 2019 Kishor Prins. All rights reserved. 66 | OSBundleLibraries 67 | 68 | com.apple.iokit.IOHIDFamily 69 | 2.0 70 | com.apple.kpi.iokit 71 | 14 72 | com.apple.kpi.libkern 73 | 14 74 | com.apple.kpi.mach 75 | 13.0 76 | 77 | OSBundleRequired 78 | Root 79 | 80 | 81 | -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/MacOS/VoodooInput -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooInput.kext/Contents/_CodeSignature/CodeResources: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | files 6 | 7 | files2 8 | 9 | rules 10 | 11 | ^Resources/ 12 | 13 | ^Resources/.*\.lproj/ 14 | 15 | optional 16 | 17 | weight 18 | 1000 19 | 20 | ^Resources/.*\.lproj/locversion.plist$ 21 | 22 | omit 23 | 24 | weight 25 | 1100 26 | 27 | ^Resources/Base\.lproj/ 28 | 29 | weight 30 | 1010 31 | 32 | ^version.plist$ 33 | 34 | 35 | rules2 36 | 37 | .*\.dSYM($|/) 38 | 39 | weight 40 | 11 41 | 42 | ^(.*/)?\.DS_Store$ 43 | 44 | omit 45 | 46 | weight 47 | 2000 48 | 49 | ^(Frameworks|SharedFrameworks|PlugIns|Plug-ins|XPCServices|Helpers|MacOS|Library/(Automator|Spotlight|LoginItems))/ 50 | 51 | nested 52 | 53 | weight 54 | 10 55 | 56 | ^.* 57 | 58 | ^Info\.plist$ 59 | 60 | omit 61 | 62 | weight 63 | 20 64 | 65 | ^PkgInfo$ 66 | 67 | omit 68 | 69 | weight 70 | 20 71 | 72 | ^Resources/ 73 | 74 | weight 75 | 20 76 | 77 | ^Resources/.*\.lproj/ 78 | 79 | optional 80 | 81 | weight 82 | 1000 83 | 84 | ^Resources/.*\.lproj/locversion.plist$ 85 | 86 | omit 87 | 88 | weight 89 | 1100 90 | 91 | ^Resources/Base\.lproj/ 92 | 93 | weight 94 | 1010 95 | 96 | ^[^/]+$ 97 | 98 | nested 99 | 100 | weight 101 | 10 102 | 103 | ^embedded\.provisionprofile$ 104 | 105 | weight 106 | 20 107 | 108 | ^version\.plist$ 109 | 110 | weight 111 | 20 112 | 113 | 114 | 115 | 116 | -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Keyboard.kext/Contents/MacOS/VoodooPS2Keyboard -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1417 7 | CFBundleExecutable 8 | VoodooPS2Mouse 9 | CFBundleGetInfoString 10 | 2.2.6, Copyright Apple Computer, Inc. 2000-2004, Slice 2010, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Mouse 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Mouse 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ApplePS2Mouse 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Mouse 51 | HIDPointerAccelerationType 52 | HIDTrackpadAcceleration 53 | HIDScrollAccelerationType 54 | HIDTrackpadScrollAcceleration 55 | IOClass 56 | ApplePS2Mouse 57 | IOProviderClass 58 | ApplePS2MouseDevice 59 | Platform Profile 60 | 61 | Default 62 | 63 | ActLikeTrackpad 64 | 65 | ButtonCount 66 | 3 67 | Darwin 16+ 68 | 69 | ApplePreferenceCapability 70 | 71 | ApplePreferenceIdentifier 72 | com.apple.AppleMultitouchTrackpad 73 | MT Built-in 74 | 75 | MTHIDDevice 76 | 77 | SupportsGestureScrolling 78 | 79 | TrackpadEmbedded 80 | 81 | TrackpadFourFingerGestures 82 | 83 | TrackpadSecondaryClickCorners 84 | 85 | TrackpadThreeFingerDrag 86 | 87 | 88 | DefaultResolution 89 | 240 90 | DisableDevice 91 | 92 | DisableLEDUpdating 93 | 94 | FakeMiddleButton 95 | 96 | ForceDefaultResolution 97 | 98 | ForceSetResolution 99 | 100 | MiddleClickTime 101 | 100000000 102 | MouseCount 103 | 0 104 | MouseYInverter 105 | 1 106 | ProcessBluetoothMouseStopsTrackpad 107 | 108 | ProcessUSBMouseStopsTrackpad 109 | 110 | QuietTimeAfterTyping 111 | 500000000 112 | ResolutionMode 113 | 3 114 | ScrollResolution 115 | 5 116 | ScrollYInverter 117 | 1 118 | TrackpadScroll 119 | 120 | WakeDelay 121 | 1000 122 | 123 | HPQOEM 124 | 125 | 1411 126 | ProBook 127 | 1619 128 | ProBook 129 | 161C 130 | ProBook 131 | 164F 132 | ProBook 133 | 167C 134 | ProBook 135 | 167E 136 | ProBook 137 | 1680 138 | ProBook 139 | 179B 140 | ProBook 141 | 179C 142 | ProBook 143 | 17A9 144 | ProBook 145 | 17F0 146 | ProBook 147 | 17F3 148 | ProBook 149 | 17F6 150 | ProBook 151 | 1942 152 | ProBook 153 | 1949 154 | ProBook 155 | 198F 156 | ProBook 157 | ProBook 158 | 159 | ActLikeTrackpad 160 | 161 | DisableDevice 162 | 163 | 164 | ProBook-102 165 | ProBook 166 | ProBook-87 167 | ProBook 168 | 169 | 170 | ProductID 171 | 547 172 | RM,deliverNotifications 173 | 174 | USBMouseStopsTrackpad 175 | 0 176 | VendorID 177 | 1452 178 | 179 | 180 | LSMinimumSystemVersion 181 | 10.11 182 | OSBundleLibraries 183 | 184 | as.acidanthera.voodoo.driver.PS2Controller 185 | 2.2.6 186 | com.apple.iokit.IOHIDFamily 187 | 1.0.0b1 188 | com.apple.kpi.iokit 189 | 9.0.0 190 | com.apple.kpi.libkern 191 | 9.0.0 192 | com.apple.kpi.mach 193 | 9.0.0 194 | 195 | OSBundleRequired 196 | Console 197 | 198 | 199 | -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Mouse.kext/Contents/MacOS/VoodooPS2Mouse -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1417 7 | CFBundleExecutable 8 | VoodooPS2Trackpad 9 | CFBundleGetInfoString 10 | 2.2.6, Copyright Apple Computer, Inc. 2002-2003, mackerintel 2008, RehabMan 2012-2013 11 | CFBundleIdentifier 12 | as.acidanthera.voodoo.driver.PS2Trackpad 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | Voodoo PS/2 Trackpad 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 2.2.6 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 2.2.6 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | ALPS GlidePoint 48 | 49 | CFBundleIdentifier 50 | as.acidanthera.voodoo.driver.PS2Trackpad 51 | IOClass 52 | ApplePS2ALPSGlidePoint 53 | IOProbeScore 54 | 1500 55 | IOProviderClass 56 | ApplePS2MouseDevice 57 | Platform Profile 58 | 59 | Default 60 | 61 | DisableDevice 62 | 63 | 64 | HPQOEM 65 | 66 | 1411 67 | ProBook 68 | 1619 69 | ProBook 70 | 161C 71 | ProBook 72 | 164F 73 | ProBook 74 | 167C 75 | ProBook 76 | 167E 77 | ProBook 78 | 1680 79 | ProBook 80 | 179B 81 | ProBook 82 | 179C 83 | ProBook 84 | 17A9 85 | ProBook 86 | 17F0 87 | ProBook 88 | 17F3 89 | ProBook 90 | 17F6 91 | ProBook 92 | 1942 93 | ProBook 94 | 1949 95 | ProBook 96 | 198F 97 | ProBook 98 | ProBook 99 | 100 | DisableDevice 101 | 102 | 103 | ProBook-102 104 | ProBook 105 | ProBook-87 106 | ProBook 107 | 108 | 109 | 110 | Elantech TouchPad 111 | 112 | CFBundleIdentifier 113 | as.acidanthera.voodoo.driver.PS2Trackpad 114 | IOClass 115 | ApplePS2Elan 116 | IOProbeScore 117 | 7000 118 | IOProviderClass 119 | ApplePS2MouseDevice 120 | Platform Profile 121 | 122 | Default 123 | 124 | ButtonCount 125 | 3 126 | Darwin 16+ 127 | 128 | ApplePreferenceCapability 129 | 130 | ApplePreferenceIdentifier 131 | com.apple.AppleMultitouchTrackpad 132 | MT Built-in 133 | 134 | MTHIDDevice 135 | 136 | SupportsGestureScrolling 137 | 138 | TrackpadEmbedded 139 | 140 | TrackpadFourFingerGestures 141 | 142 | TrackpadSecondaryClickCorners 143 | 144 | TrackpadThreeFingerDrag 145 | 146 | 147 | DisableDevice 148 | 149 | ForceTouchMode 150 | 1 151 | MouseResolution 152 | 3 153 | MouseSampleRate 154 | 200 155 | ProcessBluetoothMouseStopsTrackpad 156 | 157 | ProcessUSBMouseStopsTrackpad 158 | 159 | QuietTimeAfterTyping 160 | 500000000 161 | ScrollResolution 162 | 400 163 | SetHwResolution 164 | 165 | TrackpointDividerX 166 | 120 167 | TrackpointDividerY 168 | 120 169 | TrackpointMultiplierX 170 | 120 171 | TrackpointMultiplierY 172 | 120 173 | USBMouseStopsTrackpad 174 | 0 175 | UseHighRate 176 | 177 | WakeDelay 178 | 1000 179 | 180 | 181 | RM,deliverNotifications 182 | 183 | 184 | Native Multitouch Engine 185 | 186 | CFBundleIdentifier 187 | as.acidanthera.voodoo.driver.PS2Trackpad 188 | IOClass 189 | VoodooPS2NativeEngine 190 | IOMatchCategory 191 | VoodooPS2NativeEngine 192 | IOProviderClass 193 | VoodooPS2MultitouchInterface 194 | 195 | Sentelic FSP 196 | 197 | CFBundleIdentifier 198 | as.acidanthera.voodoo.driver.PS2Trackpad 199 | IOClass 200 | ApplePS2SentelicFSP 201 | IOProbeScore 202 | 5500 203 | IOProviderClass 204 | ApplePS2MouseDevice 205 | Platform Profile 206 | 207 | Default 208 | 209 | DisableDevice 210 | 211 | 212 | HPQOEM 213 | 214 | 1411 215 | ProBook 216 | 1619 217 | ProBook 218 | 161C 219 | ProBook 220 | 164F 221 | ProBook 222 | 167C 223 | ProBook 224 | 167E 225 | ProBook 226 | 1680 227 | ProBook 228 | 179B 229 | ProBook 230 | 179C 231 | ProBook 232 | 17A9 233 | ProBook 234 | 17F0 235 | ProBook 236 | 17F3 237 | ProBook 238 | 17F6 239 | ProBook 240 | 1942 241 | ProBook 242 | 1949 243 | ProBook 244 | 198F 245 | ProBook 246 | ProBook 247 | 248 | DisableDevice 249 | 250 | 251 | ProBook-102 252 | ProBook 253 | ProBook-87 254 | ProBook 255 | 256 | 257 | 258 | Synaptics TouchPad 259 | 260 | CFBundleIdentifier 261 | as.acidanthera.voodoo.driver.PS2Trackpad 262 | HIDPointerAccelerationTable 263 | 264 | AACAAFVTQioABwAAAAAAAgAEAAAABAAAABAAAAAQAAAAACAAAA0A 265 | AIAAAACAAAABQAAAAYAAAAIAAAAC4AAAAwAAAATgAAAEAAAAB0AA 266 | AAUAAAAKAAAABgAAAA1AAAAIAAAAFgAAAArAAAAjAAAADQAAAC8A 267 | AAAOwAAAOMAAABBAAABBAAAAEcAAAEjAAAAAUAAADwAAgAAAAIAA 268 | AAEAAAABQAAAAYAAAAJAAAACAAAAA4AAAAKAAAAE4AAAAwAAAAZg 269 | AAAEAAAACgAAAAUAAAAOQAAABgAAABNAAAAIAAAAHsAAAArAAAAu 270 | wAAADQAAADyAAAAOwAAARwAAABBAAABPwAAAEcAAAFiAAAAAgAAA 271 | DwAAgAAAAIAAAAEAAAABYAAAAYAAAAKgAAACAAAABEAAAAKAAAAG 272 | AAAAAwAAAAgAAAAEAAAADQAAAAUAAAASwAAABgAAABkAAAAIAAAA 273 | KAAAAArAAAA7wAAADQAAAEuAAAAOwAAAV0AAABBAAABgQAAAEcAA 274 | AGkAAAAAsAAADwAAgAAAAIAAAAEAAAABoAAAAYAAAAMAAAACAAAA 275 | BQAAAAKAAAAHQAAAAwAAAAnAAAAEAAAAEEAAAAUAAAAXgAAABgAA 276 | AB/AAAAIAAAAMgAAAArAAABKAAAADQAAAFyAAAAOwAAAaQAAABBA 277 | AABywAAAEcAAAHrAAAAA4AAADwAAgAAAAKAAAAEAAAABwAAAAYAA 278 | AANgAAACAAAABeAAAAKAAAAIoAAAAwAAAAvAAAAEAAAAE8AAAAUA 279 | AAAdQAAABgAAACfAAAAIAAAAPcAAAArAAABZAAAADQAAAG3AAAAO 280 | wAAAe0AAABBAAACFQAAAEcAAAIxAAAABAAAADwAAgAAAAMAAAAEA 281 | AAACAAAAAYAAAAPgAAACAAAABsAAAAKAAAAKQAAAAwAAAA5gAAAE 282 | AAAAGMAAAAUAAAAkwAAABgAAADLAAAAIAAAATUAAAArAAABugAAA 283 | DQAAAIMAAAAOwAAAj0AAABBAAACXAAAAEcAAAJxAAA== 284 | 285 | HIDPointerAccelerationType 286 | HIDTrackpadAcceleration 287 | HIDScrollAccelerationTable 288 | 289 | AACAAFVTQioABwAAAAAAAQABAAAAAQAAAAAgAAAQAABxOwAATOMA 290 | AwAAAAdgAAAEwAAADoAAAAbxSgAX6V4ACVeCACMQWgALZ6EALBF7 291 | AA2N1AA03ToAD36aADvQuAASWKAARl01ABUAAABO2dgAF8AAAFXK 292 | 7QAas+UAW2FQAB2QAABe0qoAIL75AGEgywAkLXsAYnXvACewAABj 293 | Rl8AAIAAABMAAHE7AABWfwABAAAAAuAAAAIAAAAJYAAAAwAAABIA 294 | AAAEwAAAIMAAAAaAAAAwgAAACGp5AEH9tgAK7bUAV4ZuAA0B2ABr 295 | PTkADv1/AIEEcAAQy5gAkdRWABJouQCe3VAAE+c/AKikCgAXAucA 296 | tn2SABot3ADARE4AHVjQAMX4OgAg35IAytuYACQ4bgDO7mUAJ6CX 297 | ANIwowAAsAAAFAAAcTsAAGFOAADAAAABwAAAAQAAAANgAAACAAAA 298 | DCAAAAMAAAAW4AAABMAAACnAAAAGQAAAOsAAAAfOggBP7OcACgWA 299 | AGo8rgAL658AhMCkAA2RCwCfR+EADzjIALWDbwAQ/k8AxqbEABLN 300 | UQDUeCMAFepmAOTKxwAZoVYA8qFmAB1CvwD7fXwAIQuCAQFpdAAk 301 | S20BBVKIACegAAEIK4wAAOAAABQAAHE7AABtdwAAwAAAAeAAAAEA 302 | AAAD4AAAAgAAAA6AAAADAAAAHEAAAATAAAA0AAAABgAAAEdAAAAH 303 | N4wAXL7hAAkAAACAwAAACoAAAKGAAAALz7IAvU7UAA01yQDadikA 304 | DvtPAPKF4gARLu4BCSWiABUlDwEfV8QAGT9oASzRKgAdChkBNQrG 305 | ACDz5QE6cR4AJEARAT3XdgAnn1YBQMHWAABQAAATAABxOwAAS7AA 306 | AQAAAAJgAAACAAAABuAAAAMAAAAMYAAABMAAABcAAAAGwAAAJAAA 307 | AAkAAAAyAAAACz1uAEFngAANcE8AUMGhAA+sTQBgSTMAEagdAG5N 308 | TAATT9YAd9WQABTQfgB+26MAF3odAIbYXQAagocAjp+lAB2J6QCT 309 | vnkAIN/yAJdcWwAkO0IAmYu9ACegOACacdcAAQAAABUAAHE7AABW 310 | fwAAwAAAAiAAAAEAAAAEgAAAAYAAAAqAAAACAAAAEaAAAAMAAAAh 311 | gAAABMAAAD6AAAAFwAAAVEAAAAbAAABrAAAACAAAAIxAAAAJAAAA 312 | qYAAAApAAADKwAAAC8AAAPTAAAANwAABJAAAABAAAAFEn9IAFEAA 313 | AV49zAAZAAABbrsYABzQAAFz78AAIOAAAXhvwAAkIAABem/AACeg 314 | AAF8JGg= 315 | 316 | HIDScrollAccelerationType 317 | HIDTrackpadScrollAcceleration 318 | IOClass 319 | ApplePS2SynapticsTouchPad 320 | IOProbeScore 321 | 6000 322 | IOProviderClass 323 | ApplePS2MouseDevice 324 | Platform Profile 325 | 326 | Default 327 | 328 | ButtonCount 329 | 3 330 | Darwin 16+ 331 | 332 | ApplePreferenceCapability 333 | 334 | ApplePreferenceIdentifier 335 | com.apple.AppleMultitouchTrackpad 336 | MT Built-in 337 | 338 | MTHIDDevice 339 | 340 | SupportsGestureScrolling 341 | 342 | TrackpadEmbedded 343 | 344 | TrackpadFourFingerGestures 345 | 346 | TrackpadSecondaryClickCorners 347 | 348 | TrackpadThreeFingerDrag 349 | 350 | 351 | DisableDevice 352 | 353 | DisableLEDUpdating 354 | 355 | FakeMiddleButton 356 | 357 | ForceTouchCustomDownThreshold 358 | 90 359 | ForceTouchCustomPower 360 | 8 361 | ForceTouchCustomUpThreshold 362 | 20 363 | ForceTouchMode 364 | 1 365 | ForceTouchPressureThreshold 366 | 100 367 | MiddleClickTime 368 | 100000000 369 | MouseMiddleScroll 370 | 371 | ProcessBluetoothMouseStopsTrackpad 372 | 373 | ProcessUSBMouseStopsTrackpad 374 | 375 | QuietTimeAfterTyping 376 | 500000000 377 | Resolution 378 | 400 379 | ScrollResolution 380 | 400 381 | SkipPassThrough 382 | 383 | USBMouseStopsTrackpad 384 | 0 385 | UseHighRate 386 | 387 | WakeDelay 388 | 1000 389 | 390 | HPQOEM 391 | 392 | 1411 393 | ProBook 394 | 1619 395 | ProBook 396 | 161C 397 | ProBook 398 | 164F 399 | ProBook 400 | 167C 401 | ProBook 402 | 167E 403 | ProBook 404 | 1680 405 | ProBook 406 | 179B 407 | ProBook 408 | 179C 409 | ProBook 410 | 17A9 411 | ProBook 412 | 17F0 413 | ProBook 414 | 17F3 415 | ProBook 416 | 17F6 417 | ProBook 418 | 1942 419 | ProBook 420 | 1949 421 | ProBook 422 | 198F 423 | ProBook 424 | ProBook 425 | 426 | FingerZ 427 | 40 428 | 429 | ProBook-102 430 | ProBook 431 | ProBook-87 432 | ProBook 433 | 434 | LENOVO 435 | 436 | T420 437 | Thinkpad_TrackPad 438 | T460 439 | Thinkpad_ClickPad 440 | T560 441 | Thinkpad_ClickPad 442 | Thinkpad_ClickPad 443 | 444 | FakeMiddleButton 445 | 446 | FingerZ 447 | 30 448 | HWResetOnStart 449 | 450 | MouseMultiplierX 451 | 2 452 | MouseMultiplierY 453 | 2 454 | MouseScrollMultiplierX 455 | 2 456 | MouseScrollMultiplierY 457 | 2 458 | ScrollResolution 459 | 800 460 | Thinkpad 461 | 462 | 463 | Thinkpad_TrackPad 464 | 465 | FakeMiddleButton 466 | 467 | FingerZ 468 | 47 469 | HWResetOnStart 470 | 471 | Resolution 472 | 3200 473 | ScrollResolution 474 | 800 475 | Thinkpad 476 | 477 | 478 | X1CG3 479 | Thinkpad_ClickPad 480 | 481 | 482 | ProductID 483 | 547 484 | RM,deliverNotifications 485 | 486 | VendorID 487 | 1452 488 | 489 | 490 | LSMinimumSystemVersion 491 | 10.11 492 | OSBundleLibraries 493 | 494 | as.acidanthera.voodoo.driver.PS2Controller 495 | 2.2.6 496 | com.apple.iokit.IOHIDFamily 497 | 1.0.0b1 498 | com.apple.kpi.iokit 499 | 9.0.0 500 | com.apple.kpi.libkern 501 | 9.0.0 502 | com.apple.kpi.mach 503 | 9.0.0 504 | 505 | OSBundleRequired 506 | Console 507 | 508 | 509 | -------------------------------------------------------------------------------- /Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/VoodooPS2Controller.kext/Contents/PlugIns/VoodooPS2Trackpad.kext/Contents/MacOS/VoodooPS2Trackpad -------------------------------------------------------------------------------- /Kexts/WhateverGreen.kext/Contents/Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | BuildMachineOSBuild 6 | 19H1417 7 | CFBundleDevelopmentRegion 8 | en 9 | CFBundleExecutable 10 | WhateverGreen 11 | CFBundleIdentifier 12 | as.vit9696.WhateverGreen 13 | CFBundleInfoDictionaryVersion 14 | 6.0 15 | CFBundleName 16 | WhateverGreen 17 | CFBundlePackageType 18 | KEXT 19 | CFBundleShortVersionString 20 | 1.5.4 21 | CFBundleSignature 22 | ???? 23 | CFBundleSupportedPlatforms 24 | 25 | MacOSX 26 | 27 | CFBundleVersion 28 | 1.5.4 29 | DTCompiler 30 | com.apple.compilers.llvm.clang.1_0 31 | DTPlatformBuild 32 | 12B45b 33 | DTPlatformName 34 | macosx 35 | DTPlatformVersion 36 | 11.0 37 | DTSDKBuild 38 | 20A2408 39 | DTSDKName 40 | macosx11.0 41 | DTXcode 42 | 1220 43 | DTXcodeBuild 44 | 12B45b 45 | IOKitPersonalities 46 | 47 | NVHDAEnabler 48 | 49 | CFBundleIdentifier 50 | as.vit9696.WhateverGreen 51 | IOClass 52 | NVHDAEnabler 53 | IOMatchCategory 54 | IOFramebuffer 55 | IOPCIClassMatch 56 | 0x03000000&0xff000000 57 | IOPCIMatch 58 | 0x000010de&0x0000ffff 59 | IOProbeScore 60 | 300000 61 | IOProviderClass 62 | IOPCIDevice 63 | 64 | as.vit9696.WhateverGreen 65 | 66 | CFBundleIdentifier 67 | as.vit9696.WhateverGreen 68 | IOClass 69 | WhateverGreen 70 | IOMatchCategory 71 | WhateverGreen 72 | IOProviderClass 73 | IOResources 74 | IOResourceMatch 75 | IOKit 76 | 77 | 78 | LSMinimumSystemVersion 79 | 10.6 80 | NSHumanReadableCopyright 81 | Copyright © 2018 vit9696. All rights reserved. 82 | OSBundleCompatibleVersion 83 | 1.0 84 | OSBundleLibraries 85 | 86 | as.vit9696.Lilu 87 | 1.2.0 88 | com.apple.iokit.IOPCIFamily 89 | 1.0.0b1 90 | com.apple.kpi.bsd 91 | 10.0.0 92 | com.apple.kpi.dsep 93 | 10.0.0 94 | com.apple.kpi.iokit 95 | 10.0.0 96 | com.apple.kpi.libkern 97 | 10.0.0 98 | com.apple.kpi.mach 99 | 10.0.0 100 | com.apple.kpi.unsupported 101 | 10.0.0 102 | 103 | OSBundleRequired 104 | Root 105 | 106 | 107 | -------------------------------------------------------------------------------- /Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Kexts/WhateverGreen.kext/Contents/MacOS/WhateverGreen -------------------------------------------------------------------------------- /OpenCore.efi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/OpenCore.efi -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![](https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/main/Capture.png) 2 |

XPS9570 OpenCore

3 |

XPS 9570 Hackintosh with OpenCore 0.7.4
4 | Monterey (12.0.1), BigSur (11.6.1), Catalina (10.15.7) on a Dell XPS 9570 with Touch 4k Screen

5 |
6 |

Monterey (12.0.1)
BigSur (11.6.1)
Catalina (10.15.7)

7 |
8 | 9 |

Hardware configuration:

10 |

Dell XPS 9570
11 | CPU: Intel i7-8750H
12 | Memory: 32GB 2x SK Hynix HMA82GS6CJR8N-VK
13 | Display: Touch 4k Sharp
14 | SSD: Samsung 970 EVO Plus NVMe M.2 SSD 1TB
15 | Trackpad: Synaptics SYNA2393
16 | Touchscreen: Wacom WCOM488F
17 | Sound: Realtek ALC3266 (similar to ALC298)
18 | Wifi Card: replaced with DW 1560 - BCM94352Z
19 | Battery: Dell 6GTPY battery (11.4V, 8083mAh, 97Wh stated capacity, reports as 7488mAh)

20 |

Software environment:

21 |

macOS dual-booting with Windows 11
22 | DELL BIOS: 1.21

23 | Specical Thanks To @xxxzc 24 |
25 |
26 | For 1080p Screen need to modify your config.plist:
27 | - Find uiscale and change its value to AQ==
28 | - Find dpcd-max-link-rate and change its value to CgAAAA==
29 |
30 | 31 | 32 | 33 | -------------------------------------------------------------------------------- /Resources/Font/Font_1x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Font/Font_1x.bin -------------------------------------------------------------------------------- /Resources/Font/Font_1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Font/Font_1x.png -------------------------------------------------------------------------------- /Resources/Font/Font_2x.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Font/Font_2x.bin -------------------------------------------------------------------------------- /Resources/Font/Font_2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Font/Font_2x.png -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/AppleRecv.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/AppleTM.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/BtnFocus.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Cursor.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Dot.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Dot.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Enter.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Enter.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/ExtAppleRecv.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/ExtAppleTM.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/ExtHardDrive.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/HardDrive.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Left.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Left.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Lock.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Lock.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Password.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Password.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Restart.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Restart.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Right.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Right.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Selected.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Selector.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/SetDefault.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/SetDefault.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Shell.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/ShutDown.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/ShutDown.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Tool.icns -------------------------------------------------------------------------------- /Resources/Image/Acidanthera/GoldenGate/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Acidanthera/GoldenGate/Windows.icns -------------------------------------------------------------------------------- /Resources/Image/AppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/AppleRecv.icns -------------------------------------------------------------------------------- /Resources/Image/AppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/AppleTM.icns -------------------------------------------------------------------------------- /Resources/Image/Cursor.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Cursor.icns -------------------------------------------------------------------------------- /Resources/Image/ExtAppleRecv.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/ExtAppleRecv.icns -------------------------------------------------------------------------------- /Resources/Image/ExtAppleTM.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/ExtAppleTM.icns -------------------------------------------------------------------------------- /Resources/Image/ExtHardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/ExtHardDrive.icns -------------------------------------------------------------------------------- /Resources/Image/HardDrive.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/HardDrive.icns -------------------------------------------------------------------------------- /Resources/Image/Selected.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Selected.icns -------------------------------------------------------------------------------- /Resources/Image/Selector.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Selector.icns -------------------------------------------------------------------------------- /Resources/Image/Shell.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Shell.icns -------------------------------------------------------------------------------- /Resources/Image/Tool.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Tool.icns -------------------------------------------------------------------------------- /Resources/Image/Windows.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Image/Windows.icns -------------------------------------------------------------------------------- /Resources/Label/Apple.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Apple.l2x -------------------------------------------------------------------------------- /Resources/Label/Apple.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Apple.lbl -------------------------------------------------------------------------------- /Resources/Label/AppleRecv.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/AppleRecv.l2x -------------------------------------------------------------------------------- /Resources/Label/AppleRecv.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/AppleRecv.lbl -------------------------------------------------------------------------------- /Resources/Label/AppleTM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/AppleTM.l2x -------------------------------------------------------------------------------- /Resources/Label/AppleTM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/AppleTM.lbl -------------------------------------------------------------------------------- /Resources/Label/EFIBoot.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/EFIBoot.l2x -------------------------------------------------------------------------------- /Resources/Label/EFIBoot.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/EFIBoot.lbl -------------------------------------------------------------------------------- /Resources/Label/Other.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Other.l2x -------------------------------------------------------------------------------- /Resources/Label/Other.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Other.lbl -------------------------------------------------------------------------------- /Resources/Label/ResetNVRAM.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/ResetNVRAM.l2x -------------------------------------------------------------------------------- /Resources/Label/ResetNVRAM.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/ResetNVRAM.lbl -------------------------------------------------------------------------------- /Resources/Label/SIPDisabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/SIPDisabled.l2x -------------------------------------------------------------------------------- /Resources/Label/SIPDisabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/SIPDisabled.lbl -------------------------------------------------------------------------------- /Resources/Label/SIPEnabled.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/SIPEnabled.l2x -------------------------------------------------------------------------------- /Resources/Label/SIPEnabled.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/SIPEnabled.lbl -------------------------------------------------------------------------------- /Resources/Label/Shell.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Shell.l2x -------------------------------------------------------------------------------- /Resources/Label/Shell.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Shell.lbl -------------------------------------------------------------------------------- /Resources/Label/Tool.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Tool.l2x -------------------------------------------------------------------------------- /Resources/Label/Tool.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Tool.lbl -------------------------------------------------------------------------------- /Resources/Label/Windows.l2x: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Windows.l2x -------------------------------------------------------------------------------- /Resources/Label/Windows.lbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LinhNC/XPS9570-OpenCore/307fe3e0f3978f139ab07ae3cc0b2b0dfb4dea90/Resources/Label/Windows.lbl --------------------------------------------------------------------------------