mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-01-27 10:19:49 +00:00
559 lines
34 KiB
Python
559 lines
34 KiB
Python
from Scripts.datasets import chipset_data
|
|
from Scripts.datasets import cpu_data
|
|
from Scripts.datasets import mac_model_data
|
|
from Scripts.datasets import os_data
|
|
from Scripts.datasets import pci_data
|
|
from Scripts import codec_layouts
|
|
from Scripts import gathering_files
|
|
from Scripts import smbios
|
|
from Scripts import utils
|
|
import random
|
|
|
|
class ConfigProdigy:
|
|
def __init__(self):
|
|
self.g = gathering_files.gatheringFiles()
|
|
self.smbios = smbios.SMBIOS()
|
|
self.utils = utils.Utils()
|
|
self.cpuids = {
|
|
"Ivy Bridge": "A9060300",
|
|
"Haswell": "C3060300",
|
|
"Broadwell": "D4060300",
|
|
"Coffee Lake": "EB060800",
|
|
"Comet Lake": "55060A00"
|
|
}
|
|
|
|
def mmio_whitelist(self, motherboard_chipset):
|
|
booter_mmiowhitelist = []
|
|
|
|
if "Ice Lake" in motherboard_chipset:
|
|
booter_mmiowhitelist.append({
|
|
"Address": 4284481536,
|
|
"Comment": "MMIO 0xFF600000",
|
|
"Enable": True
|
|
})
|
|
elif "B650" in motherboard_chipset or "X670" in motherboard_chipset:
|
|
booter_mmiowhitelist.append({
|
|
"Address": 4244635648,
|
|
"Comment": "MMIO 0xFD000000",
|
|
"Enable": True
|
|
})
|
|
|
|
return booter_mmiowhitelist
|
|
|
|
def add_booter_patch(self, smbios_model, macos_version):
|
|
booter_patch = []
|
|
|
|
mac_device = mac_model_data.get_mac_device_by_name(smbios_model)
|
|
if not self.utils.parse_darwin_version(mac_device.initial_support) <= self.utils.parse_darwin_version(macos_version) <= self.utils.parse_darwin_version(mac_device.last_supported_version):
|
|
booter_patch.append({
|
|
"Arch": "x86_64",
|
|
"Comment": "Skip Board ID check",
|
|
"Count": 0,
|
|
"Enabled": True,
|
|
"Find": self.utils.hex_to_bytes("0050006C006100740066006F0072006D0053007500700070006F00720074002E0070006C006900730074"),
|
|
"Identifier": "Apple",
|
|
"Limit": 0,
|
|
"Mask": self.utils.hex_to_bytes(""),
|
|
"Replace": self.utils.hex_to_bytes("002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E002E"),
|
|
"ReplaceMask": self.utils.hex_to_bytes(""),
|
|
"Skip": 0
|
|
})
|
|
|
|
return booter_patch
|
|
|
|
def check_mats_support(self, cpu_manufacturer, motherboard_chipset):
|
|
return "AMD" in cpu_manufacturer or \
|
|
not self.utils.contains_any(chipset_data.IntelChipsets, motherboard_chipset, start=101) is None or \
|
|
not self.utils.contains_any(chipset_data.IntelChipsets, motherboard_chipset, start=79, end=89) is None
|
|
|
|
def is_low_end_intel_cpu(self, processor_name):
|
|
return any(cpu_branding in processor_name for cpu_branding in ("Celeron", "Pentium"))
|
|
|
|
def igpu_properties(self, platform, integrated_gpu, monitor, macos_version):
|
|
igpu_properties = {}
|
|
|
|
device_id = integrated_gpu[1].get("Device ID")[5:]
|
|
|
|
if device_id.startswith("01") and not device_id[-2] in ("5", "6"):
|
|
native_supported_ids = ("0106", "1106", "1601", "0116", "0126", "0102")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "26010000"
|
|
igpu_properties["AAPL,snb-platform-id"] = "10000300"
|
|
if platform == "Desktop":
|
|
if not any(monitor_info.get("Connected GPU") == integrated_gpu[0] for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,snb-platform-id"] = "00000500"
|
|
igpu_properties["device-id"] = "02010000"
|
|
elif platform == "Laptop":
|
|
if any(tuple(map(int, "1600x900".split("x"))) <= tuple(map(int, monitor_info.get("Resolution").split("x"))) for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL00,DualLink"] = "01000000"
|
|
igpu_properties["AAPL,snb-platform-id"] = "00000100"
|
|
elif device_id.startswith("01"):
|
|
native_supported_ids = ("0152", "0156", "0162", "0166")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "62010000"
|
|
if platform == "Desktop":
|
|
if not any(monitor_info.get("Connected GPU") == integrated_gpu[0] for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,ig-platform-id"] = "07006201"
|
|
igpu_properties["AAPL,ig-platform-id"] = "0A006601"
|
|
elif platform == "NUC":
|
|
igpu_properties["AAPL,ig-platform-id"] = "0B006601"
|
|
elif platform == "Laptop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "03006601"
|
|
if any(tuple(map(int, "1600x900".split("x"))) <= tuple(map(int, monitor_info.get("Resolution").split("x"))) for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,ig-platform-id"] = "04006601"
|
|
igpu_properties["framebuffer-memorycount"] = "02000000"
|
|
igpu_properties["framebuffer-pipecount"] = "02000000"
|
|
igpu_properties["framebuffer-portcount"] = "04000000"
|
|
igpu_properties["framebuffer-stolenmem"] = "00000004"
|
|
igpu_properties["framebuffer-con1-enable"] = "01000000"
|
|
igpu_properties["framebuffer-con1-alldata"] = "020500000004000007040000030400000004000081000000040600000004000081000000"
|
|
elif device_id.startswith(("04", "0A", "0C", "0D")):
|
|
native_supported_ids = ("0D26", "0A26", "0A2E", "0D22", "0412")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "12040000"
|
|
if platform == "Desktop":
|
|
if not any(monitor_info.get("Connected GPU") == integrated_gpu[0] for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,ig-platform-id"] = "04001204"
|
|
return igpu_properties
|
|
igpu_properties["AAPL,ig-platform-id"] = "0300220D"
|
|
igpu_properties["framebuffer-stolenmem"] = "00003001"
|
|
igpu_properties["framebuffer-fbmem"] = "00009000"
|
|
elif platform == "NUC":
|
|
igpu_properties["AAPL,ig-platform-id"] = "0300220D"
|
|
igpu_properties["framebuffer-cursormem"] = "00009000"
|
|
elif platform == "Laptop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "0600260A"
|
|
if device_id.startswith(("0A2", "0D2")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "0500260A"
|
|
igpu_properties["framebuffer-cursormem"] = "00009000"
|
|
elif device_id.startswith(("0B", "16")):
|
|
native_supported_ids = ("0BD1", "0BD2", "0BD3", "1606", "160E", "1616", "161E", "1626", "1622", "1612", "162B")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "26160000"
|
|
if platform == "Desktop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "07002216"
|
|
elif platform == "NUC":
|
|
igpu_properties["AAPL,ig-platform-id"] = "02001616"
|
|
elif platform == "Laptop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "06002616"
|
|
igpu_properties["framebuffer-stolenmem"] = "00003001"
|
|
igpu_properties["framebuffer-fbmem"] = "00009000"
|
|
elif device_id.startswith(("09", "19")) and self.utils.parse_darwin_version(macos_version) < self.utils.parse_darwin_version("22.0.0"):
|
|
native_supported_ids = ("1916", "191E", "1926", "1927", "1912", "1932", "1902", "1917", "193B", "191B")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "1B190000"
|
|
if device_id in ("1906", "190B"):
|
|
igpu_properties["device-id"] = "02190000"
|
|
if device_id.startswith("191E"):
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001E19"
|
|
if platform == "Desktop":
|
|
if not any(monitor_info.get("Connected GPU") == integrated_gpu[0] for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,ig-platform-id"] = "01001219"
|
|
return igpu_properties
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001219"
|
|
elif platform == "NUC":
|
|
igpu_properties["AAPL,ig-platform-id"] = "02001619"
|
|
if device_id.startswith(("1926", "1927")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "02002619"
|
|
elif device_id.startswith(("1932", "193B", "193A", "193D")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "05003B19"
|
|
elif platform == "Laptop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001619"
|
|
if device_id.startswith(("1902", "1906", "190B")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001B19"
|
|
igpu_properties["framebuffer-stolenmem"] = "00003001"
|
|
igpu_properties["framebuffer-fbmem"] = "00009000"
|
|
elif device_id.startswith(("09", "19", "59", "87C0")):
|
|
native_supported_ids = ("5912", "5916", "591B", "591C", "591E", "5926", "5927", "5923", "87C0")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "16590000"
|
|
if device_id.startswith(("5917", "5916", "5921")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001659"
|
|
if platform == "Desktop":
|
|
if not any(monitor_info.get("Connected GPU") == integrated_gpu[0] for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,ig-platform-id"] = "03001259"
|
|
return igpu_properties
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001259"
|
|
elif platform == "NUC":
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001E59"
|
|
if device_id.startswith(("5912", "591B", "591A", "591D")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001B59"
|
|
elif device_id.startswith(("5926", "5927")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "02002659"
|
|
elif platform == "Laptop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001B59"
|
|
if device_id.startswith(("5917", "87C0")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "00001659"
|
|
else:
|
|
igpu_properties["framebuffer-con1-alldata"] = "01050A00000800008701000002040A000008000087010000"
|
|
igpu_properties["framebuffer-con1-enable"] = "01000000"
|
|
igpu_properties["#framebuffer-con1-alldata"] = "01050A00000800008701000003060A000004000087010000"
|
|
igpu_properties["#framebuffer-con1-enable"] = "01000000"
|
|
igpu_properties["framebuffer-stolenmem"] = "00003001"
|
|
igpu_properties["framebuffer-fbmem"] = "00009000"
|
|
elif device_id.startswith(("3E", "87", "9B")):
|
|
native_supported_ids = ("3E9B", "3EA5", "3EA6", "3E92", "3E91", "3E98", "9BC8", "9BC5", "9BC4")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "9B3E0000"
|
|
if platform == "Desktop":
|
|
if not any(monitor_info.get("Connected GPU") == integrated_gpu[0] for monitor_name, monitor_info in monitor.items()):
|
|
igpu_properties["AAPL,ig-platform-id"] = "0300913E" if not device_id.startswith("9B") else "0300C89B"
|
|
return igpu_properties
|
|
igpu_properties["AAPL,ig-platform-id"] = "07009B3E" if self.utils.parse_darwin_version(macos_version) < self.utils.parse_darwin_version("19.5.0") else "00009B3E"
|
|
elif platform == "NUC":
|
|
igpu_properties["AAPL,ig-platform-id"] = "07009B3E"
|
|
if device_id.startswith(("3EA5", "3EA8")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "0000A53E"
|
|
elif platform == "Laptop":
|
|
igpu_properties["AAPL,ig-platform-id"] = "0900A53E"
|
|
if device_id.startswith(("3EA9", "3EA0")):
|
|
igpu_properties["AAPL,ig-platform-id"] = "00009B3E"
|
|
igpu_properties["framebuffer-stolenmem"] = "00003001"
|
|
igpu_properties["framebuffer-fbmem"] = "00009000"
|
|
elif device_id.startswith("8A"):
|
|
native_supported_ids = ("FF05", "8A70", "8A71", "8A51", "8A5C", "8A5D", "8A52", "8A53", "8A5A", "8A5B")
|
|
if not device_id in native_supported_ids:
|
|
igpu_properties["device-id"] = "528A0000"
|
|
igpu_properties["AAPL,ig-platform-id"] = "0000528A"
|
|
igpu_properties["framebuffer-stolenmem"] = "00003001"
|
|
igpu_properties["framebuffer-fbmem"] = "00009000"
|
|
|
|
if any(tuple(map(int, "3840x2160".split("x"))) <= tuple(map(int, monitor_info.get("Resolution").split("x"))) for monitor_name, monitor_info in monitor.items()):
|
|
if platform == "Laptop":
|
|
igpu_properties["enable-max-pixel-clock-override"] = "01000000"
|
|
del igpu_properties["framebuffer-stolenmem"]
|
|
del igpu_properties["framebuffer-fbmem"]
|
|
|
|
for key in igpu_properties.keys():
|
|
if key not in ("AAPL,ig-platform-id", "device-id"):
|
|
igpu_properties["framebuffer-patch-enable"] = "01000000"
|
|
break
|
|
|
|
return dict(sorted(igpu_properties.items(), key=lambda item: item[0]))
|
|
|
|
def deviceproperties(self, hardware_report, macos_version, kexts):
|
|
deviceproperties_add = {}
|
|
|
|
for kext in kexts:
|
|
if kext.checked:
|
|
if kext.name == "WhateverGreen":
|
|
discrete_gpu = None
|
|
for gpu_name, gpu_info in hardware_report.get("GPU", {}).items():
|
|
if gpu_info.get("Device Type") == "Integrated GPU":
|
|
if "Intel" in gpu_info.get("Manufacturer"):
|
|
igpu_properties = self.igpu_properties(
|
|
"NUC" if "NUC" in hardware_report.get("Motherboard").get("Name") else hardware_report.get("Motherboard").get("Platform"),
|
|
(gpu_name, gpu_info),
|
|
hardware_report.get("Monitor", {}),
|
|
macos_version
|
|
)
|
|
if igpu_properties:
|
|
deviceproperties_add[gpu_info.get("PCI Path", "PciRoot(0x0)/Pci(0x2,0x0)")] = igpu_properties
|
|
if gpu_info.get("Codename") in ("Sandy Bridge", "Ivy Bridge"):
|
|
intel_mei = next((device_props for device_name, device_props in hardware_report.get("System Devices").items() if "HECI" in device_name or "Management Engine Interface" in device_name), None)
|
|
if intel_mei:
|
|
if "Sandy Bridge" in gpu_info.get("Codename") and intel_mei.get("Device ID") in "8086-1E3A":
|
|
deviceproperties_add[intel_mei.get("PCI Path", "PciRoot(0x0)/Pci(0x16,0x0)")] = {
|
|
"device-id": "3A1C0000"
|
|
}
|
|
elif "Ivy Bridge" in gpu_info.get("Codename") and intel_mei.get("Device ID") in "8086-1C3A":
|
|
deviceproperties_add[intel_mei.get("PCI Path", "PciRoot(0x0)/Pci(0x16,0x0)")] = {
|
|
"device-id": "3A1E0000"
|
|
}
|
|
elif gpu_info.get("Device Type") == "Discrete GPU":
|
|
discrete_gpu = gpu_info
|
|
|
|
if not discrete_gpu.get("PCI Path") or not discrete_gpu.get("Device ID") in pci_data.SpoofGPUIDs:
|
|
continue
|
|
|
|
deviceproperties_add[discrete_gpu.get("PCI Path")] = {
|
|
"device-id": self.utils.to_little_endian_hex(pci_data.SpoofGPUIDs.get(discrete_gpu.get("Device ID")).split("-")[-1]),
|
|
"model": gpu_name
|
|
}
|
|
break
|
|
|
|
for key, value in deviceproperties_add.items():
|
|
for key_child, value_child in value.items():
|
|
if isinstance(value_child, str):
|
|
deviceproperties_add[key][key_child] = self.utils.hex_to_bytes(deviceproperties_add[key][key_child])
|
|
|
|
return deviceproperties_add
|
|
|
|
def block_kext_bundle(self, kexts):
|
|
kernel_block = []
|
|
|
|
for kext in kexts:
|
|
if kext.checked:
|
|
if kext.name == "IOSkywalkFamily":
|
|
kernel_block.append({
|
|
"Arch": "x86_64",
|
|
"Comment": "Allow IOSkywalk Downgrade",
|
|
"Enabled": True,
|
|
"Identifier": "com.apple.iokit.IOSkywalkFamily",
|
|
"MaxKernel": "",
|
|
"MinKernel": "",
|
|
"Strategy": "Exclude"
|
|
})
|
|
|
|
return kernel_block
|
|
|
|
def is_low_end_haswell_plus(self, processor_name, cpu_codename):
|
|
return self.is_low_end_intel_cpu(processor_name) and not self.utils.contains_any(cpu_data.IntelCPUGenerations, cpu_codename, end=38) is None
|
|
|
|
def is_intel_hedt_cpu(self, cpu_codename):
|
|
return not self.utils.contains_any(cpu_data.IntelCPUGenerations, cpu_codename, start=21) is None and cpu_codename.endswith(("-X", "-P", "-W", "-E", "-EP", "-EX"))
|
|
|
|
def spoof_cpuid(self, processor_name, cpu_codename, macos_version):
|
|
if self.is_low_end_haswell_plus(processor_name, cpu_codename):
|
|
return self.cpuids.get("Ivy Bridge")
|
|
elif "Haswell" in cpu_codename and self.is_intel_hedt_cpu(cpu_codename):
|
|
return self.cpuids.get("Haswell")
|
|
elif "Broadwell" in cpu_codename and self.is_intel_hedt_cpu(cpu_codename):
|
|
return self.cpuids.get("Broadwell")
|
|
elif "Ice Lake" not in cpu_codename and self.utils.contains_any(cpu_data.IntelCPUGenerations, cpu_codename, end=10):
|
|
if not "Comet Lake" in cpu_codename:
|
|
return self.cpuids.get("Comet Lake")
|
|
if self.utils.parse_darwin_version(macos_version) < self.utils.parse_darwin_version("19.0.0"):
|
|
return self.cpuids.get("Coffee Lake")
|
|
|
|
return None
|
|
|
|
def load_kernel_patch(self, motherboard_chipset, cpu_manufacturer, cpu_cores, gpu_manufacturer, kexts):
|
|
kernel_patch = []
|
|
|
|
if "AMD" in cpu_manufacturer:
|
|
kernel_patch.extend(self.g.get_amd_kernel_patches())
|
|
|
|
for kext in kexts:
|
|
if kext.checked:
|
|
if kext.name == "CpuTopologyRebuild":
|
|
kernel_patch.append({
|
|
"Arch": "Any",
|
|
"Base": "_cpu_thread_alloc",
|
|
"Comment": "Force enable Hyper Threading for macOS Mojave or later",
|
|
"Count": 1,
|
|
"Enabled": True,
|
|
"Find": self.utils.hex_to_bytes("8B8894010000"),
|
|
"Identifier": "kernel",
|
|
"Limit": 0,
|
|
"Mask": self.utils.hex_to_bytes(""),
|
|
"MaxKernel": "",
|
|
"MinKernel": "18.0.0",
|
|
"Replace": self.utils.hex_to_bytes("B9FF00000090"),
|
|
"ReplaceMask": self.utils.hex_to_bytes(""),
|
|
"Skip": 0
|
|
})
|
|
elif kext.name == "ForgedInvariant":
|
|
if not "AMD" in cpu_manufacturer:
|
|
kernel_patch.extend(self.g.get_amd_kernel_patches()[-6:-4])
|
|
|
|
for patch in kernel_patch:
|
|
if "cpuid_cores_per_package" in patch["Comment"]:
|
|
patch["Replace"] = patch["Replace"].hex()
|
|
patch["Replace"] = self.utils.hex_to_bytes(patch["Replace"][:2] + self.utils.int_to_hex(int(cpu_cores)) + patch["Replace"][4:])
|
|
elif "IOPCIIsHotplugPort" in patch["Comment"]:
|
|
if self.utils.contains_any(chipset_data.AMDChipsets, motherboard_chipset, start=17):
|
|
patch["Enabled"] = True
|
|
if "_mtrr_update_action" in patch["Comment"]:
|
|
if "TRX" in motherboard_chipset.upper():
|
|
patch["Enabled"] = False
|
|
elif "AMD" in gpu_manufacturer:
|
|
if "algrey" in patch["Comment"].lower():
|
|
patch["Enabled"] = False
|
|
elif "shaneee" in patch["Comment"].lower():
|
|
patch["Enabled"] = True
|
|
|
|
return kernel_patch
|
|
|
|
def boot_args(self, hardware_report, macos_version, kexts, resize_bar):
|
|
boot_args = [
|
|
"-v",
|
|
"debug=0x100",
|
|
"keepsyms=1"
|
|
]
|
|
|
|
if not resize_bar and ("AMD" in hardware_report.get("CPU").get("Manufacturer") or self.is_intel_hedt_cpu(hardware_report.get("CPU").get("Codename"))):
|
|
boot_args.append("npci=0x2000")
|
|
|
|
for kext in kexts:
|
|
if not kext.checked:
|
|
continue
|
|
|
|
if "Lilu" in kext.requires_kexts and not self.utils.parse_darwin_version(kext.min_darwin_version) <= self.utils.parse_darwin_version(macos_version) <= self.utils.parse_darwin_version(kext.max_darwin_version):
|
|
if not "-lilubetaall" in boot_args:
|
|
boot_args.append("-lilubetaall")
|
|
|
|
if kext.name == "WhateverGreen":
|
|
if any(tuple(map(int, "3840x2160".split("x"))) <= tuple(map(int, monitor_info.get("Resolution").split("x"))) for monitor_name, monitor_info in hardware_report.get("Monitor", {}).items()) and \
|
|
self.utils.parse_darwin_version(macos_version) < self.utils.parse_darwin_version("20.0.0"):
|
|
boot_args.append("-cdfon")
|
|
|
|
if "Intel" in hardware_report.get("CPU").get("Manufacturer"):
|
|
intergrated_gpu = list(hardware_report.get("GPU").items())[-1][-1]
|
|
if intergrated_gpu.get("Device ID")[5:].startswith(("3E", "87", "9B")) and \
|
|
self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("19.4.0"):
|
|
boot_args.append("igfxonln=1")
|
|
|
|
if "Ice Lake" in intergrated_gpu.get("Codename"):
|
|
boot_args.extend(("-noDC9", "-igfxcdc", "-igfxdvmt", "-igfxdbeo"))
|
|
|
|
if "Laptop" in hardware_report.get("Motherboard").get("Platform"):
|
|
if intergrated_gpu.get("Device ID")[5:].startswith(("09", "19", "59", "8C", "3E", "87", "9B", "8A")) and not intergrated_gpu.get("Device ID").endswith("5917"):
|
|
boot_args.append("-igfxbl{}".format("t" if self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("23.0.0") else "r"))
|
|
|
|
discrete_gpu = list(hardware_report.get("GPU").items())[0][-1]
|
|
if discrete_gpu.get("Device Type") == "Discrete GPU":
|
|
if "Navi" in discrete_gpu.get("Codename"):
|
|
boot_args.append("agdpmod=pikera")
|
|
|
|
if discrete_gpu.get("Device ID") in pci_data.SpoofGPUIDs:
|
|
boot_args.append("-radcodec")
|
|
|
|
if discrete_gpu.get("Device ID") in ("1002-6610", "1002-682B", "1002-6837", "1002-683D", "1002-683F"):
|
|
boot_args.append("radpg=15")
|
|
|
|
if discrete_gpu.get("Device ID") in ("1002-67B0", "1002-67B1", "1002-67B8", "1002-6810", "1002-6811"):
|
|
boot_args.append("-raddvi")
|
|
elif kext.name == "AppleALC":
|
|
if hardware_report.get("Sound"):
|
|
codec_id = list(hardware_report.get("Sound").items())[0][-1].get("Device ID")
|
|
if codec_id in codec_layouts.data:
|
|
boot_args.append("alcid={}".format(random.choice(codec_layouts.data.get(codec_id))))
|
|
elif kext.name == "VoodooI2C":
|
|
boot_args.append("-vi2c-force-polling")
|
|
elif kext.name == "CpuTopologyRebuild":
|
|
boot_args.append("-ctrsmt")
|
|
elif kext.name == "RestrictEvents":
|
|
if self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("23.0.0"):
|
|
boot_args.append("revpatch=sbvmm{}".format(",cpuname" if not (" Core" in hardware_report.get("CPU").get("Processor Name") and \
|
|
self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), start=4)) else ""))
|
|
|
|
return " ".join(boot_args)
|
|
|
|
def csr_active_config(self, macos_version):
|
|
if self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("20.0.0"):
|
|
return "03080000"
|
|
elif self.utils.parse_darwin_version(macos_version) >= self.utils.parse_darwin_version("18.0.0"):
|
|
return "FF070000"
|
|
else:
|
|
return "FF030000"
|
|
|
|
def load_drivers(self):
|
|
uefi_drivers = []
|
|
|
|
for driver_path in ("OpenCanopy.efi", "OpenHfsPlus.efi", "OpenRuntime.efi", "ResetNvramEntry.efi"):
|
|
uefi_drivers.append({
|
|
"Arguments": "",
|
|
"Comment": "",
|
|
"Enabled": True,
|
|
"LoadEarly": False,
|
|
"Path": driver_path
|
|
})
|
|
|
|
return uefi_drivers
|
|
|
|
def genarate(self, hardware_report, smbios_model, macos_version, kexts, config):
|
|
del config["#WARNING - 1"]
|
|
del config["#WARNING - 2"]
|
|
del config["#WARNING - 3"]
|
|
del config["#WARNING - 4"]
|
|
|
|
config["ACPI"]["Add"] = []
|
|
config["ACPI"]["Delete"] = []
|
|
config["ACPI"]["Patch"] = []
|
|
|
|
config["Booter"]["MmioWhitelist"] = self.mmio_whitelist(hardware_report.get("Motherboard").get("Chipset"))
|
|
config["Booter"]["Patch"] = self.add_booter_patch(smbios_model, macos_version)
|
|
config["Booter"]["Quirks"]["DevirtualiseMmio"] = self.check_mats_support(hardware_report.get("CPU").get("Manufacturer"), hardware_report.get("Motherboard").get("Chipset"))
|
|
if "AMD" in hardware_report.get("CPU").get("Manufacturer") and not "TRX40" in hardware_report.get("Motherboard").get("Chipset"):
|
|
config["Booter"]["Quirks"]["DevirtualiseMmio"] = False
|
|
config["Booter"]["Quirks"]["DevirtualiseMmio"] = len(config["Booter"]["MmioWhitelist"]) != 0 or config["Booter"]["Quirks"]["DevirtualiseMmio"]
|
|
config["Booter"]["Quirks"]["EnableWriteUnprotector"] = False if "AMD" in hardware_report.get("CPU").get("Manufacturer") else not config["Booter"]["Quirks"]["DevirtualiseMmio"]
|
|
config["Booter"]["Quirks"]["ProtectUefiServices"] = "Z390" in hardware_report.get("Motherboard").get("Chipset") or \
|
|
not self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), end=14) is None
|
|
config["Booter"]["Quirks"]["RebuildAppleMemoryMap"] = not config["Booter"]["Quirks"]["EnableWriteUnprotector"]
|
|
config["Booter"]["Quirks"]["ResizeAppleGpuBars"] = 0 if any(gpu_props.get("Resizable BAR", "Disabled") == "Enabled" for gpu_name, gpu_props in hardware_report.get("GPU", {}).items()) else -1
|
|
config["Booter"]["Quirks"]["SetupVirtualMap"] = not (not self.utils.contains_any(chipset_data.AMDChipsets, hardware_report.get("Motherboard").get("Chipset"), start=11, end=17) is None or \
|
|
"ASUS" in hardware_report.get("Motherboard").get("Name") and self.is_intel_hedt_cpu(hardware_report.get("CPU").get("Codename")) and config["Booter"]["Quirks"]["DevirtualiseMmio"])
|
|
config["Booter"]["Quirks"]["SyncRuntimePermissions"] = config["Booter"]["Quirks"]["RebuildAppleMemoryMap"]
|
|
|
|
config["DeviceProperties"]["Add"] = self.deviceproperties(hardware_report, macos_version, kexts)
|
|
|
|
config["Kernel"]["Add"] = []
|
|
config["Kernel"]["Block"] = self.block_kext_bundle(kexts)
|
|
spoof_cpuid = self.spoof_cpuid(
|
|
hardware_report.get("CPU").get("Processor Name"),
|
|
hardware_report.get("CPU").get("Codename"),
|
|
macos_version
|
|
)
|
|
if spoof_cpuid:
|
|
config["Kernel"]["Emulate"]["Cpuid1Data"] = self.utils.hex_to_bytes("{}{}".format(spoof_cpuid, "0"*8*3))
|
|
config["Kernel"]["Emulate"]["Cpuid1Mask"] = self.utils.hex_to_bytes("{}{}".format("F"*8, "0"*8*3))
|
|
config["Kernel"]["Emulate"]["DummyPowerManagement"] = "AMD" in hardware_report.get("CPU").get("Manufacturer") or \
|
|
self.is_low_end_intel_cpu(hardware_report.get("CPU").get("Processor Name"))
|
|
config["Kernel"]["Force"] = []
|
|
config["Kernel"]["Patch"] = self.load_kernel_patch(
|
|
hardware_report.get("Motherboard").get("Chipset"),
|
|
hardware_report.get("CPU").get("Manufacturer"),
|
|
hardware_report.get("CPU").get("Core Count"),
|
|
list(hardware_report.get("GPU").items())[0][-1].get("Manufacturer"),
|
|
kexts
|
|
)
|
|
config["Kernel"]["Quirks"]["AppleCpuPmCfgLock"] = not self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), start=38) is None
|
|
config["Kernel"]["Quirks"]["AppleXcpmCfgLock"] = False if "AMD" in hardware_report.get("CPU").get("Manufacturer") else not config["Kernel"]["Quirks"]["AppleCpuPmCfgLock"]
|
|
config["Kernel"]["Quirks"]["AppleXcpmExtraMsrs"] = "-E" in hardware_report.get("CPU").get("Codename") and not self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), start=26) is None
|
|
config["Kernel"]["Quirks"]["CustomSMBIOSGuid"] = True
|
|
config["Kernel"]["Quirks"]["DisableIoMapper"] = not "AMD" in hardware_report.get("CPU").get("Manufacturer")
|
|
config["Kernel"]["Quirks"]["DisableRtcChecksum"] = "ASUS" in hardware_report.get("Motherboard").get("Name") or "HP " in hardware_report.get("Motherboard").get("Name")
|
|
config["Kernel"]["Quirks"]["LapicKernelPanic"] = "HP " in hardware_report.get("Motherboard").get("Name")
|
|
config["Kernel"]["Quirks"]["PanicNoKextDump"] = config["Kernel"]["Quirks"]["PowerTimeoutKernelPanic"] = True
|
|
config["Kernel"]["Quirks"]["ProvideCurrentCpuInfo"] = "AMD" in hardware_report.get("CPU").get("Manufacturer") or \
|
|
not self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), end=2) is None
|
|
|
|
config["Misc"]["BlessOverride"] = []
|
|
config["Misc"]["Boot"]["HideAuxiliary"] = False
|
|
config["Misc"]["Boot"]["LauncherOption"] = "Full"
|
|
config["Misc"]["Boot"]["PickerMode"] = "External"
|
|
config["Misc"]["Boot"]["Timeout"] = 10
|
|
config["Misc"]["Debug"]["AppleDebug"] = config["Misc"]["Debug"]["ApplePanic"] = False
|
|
config["Misc"]["Debug"]["DisableWatchDog"] = True
|
|
config["Misc"]["Debug"]["Target"] = 0
|
|
config["Misc"]["Entries"] = []
|
|
config["Misc"]["Security"]["AllowSetDefault"] = True
|
|
config["Misc"]["Security"]["ScanPolicy"] = 0
|
|
config["Misc"]["Security"]["SecureBootModel"] = "Default" if self.utils.parse_darwin_version("20.0.0") <= self.utils.parse_darwin_version(macos_version) < self.utils.parse_darwin_version("23.0.0") else "Disabled"
|
|
config["Misc"]["Security"]["Vault"] = "Optional"
|
|
config["Misc"]["Tools"] = []
|
|
|
|
del config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["#INFO (prev-lang:kbd)"]
|
|
config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["boot-args"] = self.boot_args(hardware_report, macos_version, kexts, config["Booter"]["Quirks"]["ResizeAppleGpuBars"] == 0)
|
|
config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["csr-active-config"] = self.utils.hex_to_bytes(self.csr_active_config(macos_version))
|
|
config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["prev-lang:kbd"] = "en:252"
|
|
config["NVRAM"]["Delete"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"].append("csr-active-config")
|
|
|
|
config["PlatformInfo"]["Generic"].update(self.smbios.generate_smbios(smbios_model))
|
|
config["PlatformInfo"]["Generic"]["ROM"] = self.utils.hex_to_bytes(config["PlatformInfo"]["Generic"]["ROM"])
|
|
config["PlatformInfo"]["UpdateSMBIOSMode"] = "Custom"
|
|
|
|
config["UEFI"]["APFS"]["MinDate"] = config["UEFI"]["APFS"]["MinVersion"] = -1
|
|
config["UEFI"]["Drivers"] = self.load_drivers()
|
|
config["UEFI"]["Quirks"]["IgnoreInvalidFlexRatio"] = not self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), start=26) is None
|
|
config["UEFI"]["Quirks"]["ReleaseUsbOwnership"] = True
|
|
config["UEFI"]["Quirks"]["UnblockFsConnect"] = "HP " in hardware_report.get("Motherboard").get("Name")
|
|
config["UEFI"]["ReservedMemory"] = []
|
|
|
|
for kext in kexts:
|
|
if kext.checked:
|
|
if kext.name == "BlueToolFixup":
|
|
config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["bluetoothExternalDongleFailed"] = self.utils.hex_to_bytes("00")
|
|
config["NVRAM"]["Add"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"]["bluetoothInternalControllerInfo"] = self.utils.hex_to_bytes("0000000000000000000000000000")
|
|
config["NVRAM"]["Delete"]["7C436110-AB2A-4BBB-A880-FE41995C9F82"].extend(["bluetoothExternalDongleFailed", "bluetoothInternalControllerInfo"])
|
|
elif kext.name == "RestrictEvents":
|
|
if not (" Core" in hardware_report.get("CPU").get("Processor Name") and \
|
|
self.utils.contains_any(cpu_data.IntelCPUGenerations, hardware_report.get("CPU").get("Codename"), start=4)):
|
|
config["NVRAM"]["Add"]["4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102"]["revcpu"] = 1
|
|
config["NVRAM"]["Add"]["4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102"]["revcpuname"] = hardware_report.get("CPU").get("Processor Name")
|
|
config["NVRAM"]["Delete"]["4D1FDA02-38C7-4A6A-9CC6-4BCCA8B30102"].extend(["revcpu", "revcpuname"])
|
|
config["PlatformInfo"]["Generic"]["ProcessorType"] = 1537 if int(hardware_report.get("CPU").get("Core Count")) < 8 else 3841
|
|
|
|
return config |