Improve GPU compatibility handling and kext selection

This commit is contained in:
Hoang Hong Quan
2025-06-05 18:58:12 +07:00
parent 6d00654a29
commit dc3d9eecae
2 changed files with 214 additions and 58 deletions
+164 -52
View File
@@ -57,11 +57,9 @@ class HardwareCustomizer:
print("Type Device Device ID")
print("------------------------------------------------------------------")
for device_type, device_dict in self.selected_devices.items():
device_name = list(device_dict.keys())[0]
device_props = list(device_dict.values())[0]
device_id = device_props.get("Device ID", "Unknown")
print("{:<13} {:<42} {}".format(device_type, device_name[:38], device_id))
for device_name, device_props in device_dict.items():
device_id = device_props.get("Device ID", "Unknown")
print("{:<13} {:<42} {}".format(device_type, device_name[:38], device_id))
print("")
print("All other devices of the same type have been disabled.")
print("")
@@ -69,36 +67,81 @@ class HardwareCustomizer:
return self.customized_hardware, self.disabled_devices, needs_oclp
def _get_device_combinations(self, device_indices):
devices = sorted(list(device_indices))
n = len(devices)
all_combinations = []
if n == 0:
return []
for i in range(1, 1 << n):
current_combination = []
for j in range(n):
if (i >> j) & 1:
current_combination.append(devices[j])
if 1 <= len(current_combination) <= n:
all_combinations.append(current_combination)
all_combinations.sort(key=lambda combo: (len(combo), combo))
return all_combinations
def _handle_device_selection(self, device_type):
devices = self._get_compatible_devices(device_type)
device_groups = None
if len(devices) > 1:
print("\n*** Multiple {} Devices Detected".format(device_type))
if device_type == "WiFi" or device_type == "Bluetooth":
print(f"macOS works best with only one {device_type} device enabled.")
elif device_type == "GPU":
_has_multiple_compatible_devices = False
_apu_index = None
_navi_22_indices = set()
_navi_indices = set()
_intel_gpu_indices = set()
_other_indices = set()
for gpu_name, gpu_props in devices.items():
for index, (gpu_name, gpu_props) in enumerate(devices.items()):
gpu_manufacturer = gpu_props.get("Manufacturer")
gpu_codename = gpu_props.get("Codename")
gpu_type = gpu_props.get("Device Type")
if gpu_manufacturer == "AMD":
if gpu_props.get("Device Type") == "Integrated GPU":
_has_multiple_compatible_devices = True
elif gpu_props.get("Device Type") == "Discrete GPU" and gpu_codename == "Navi 22":
_has_multiple_compatible_devices = True
if gpu_type == "Integrated GPU":
_apu_index = index
continue
elif gpu_type == "Discrete GPU":
if gpu_codename.startswith("Navi"):
_navi_indices.add(index)
if gpu_codename == "Navi 22":
_navi_22_indices.add(index)
continue
elif gpu_manufacturer == "Intel":
_intel_gpu_indices.add(index)
continue
if _has_multiple_compatible_devices:
_other_indices.add(index)
if _apu_index or _navi_22_indices:
print("Multiple active GPUs can cause kext conflicts in macOS.")
print("It's recommended to use only one GPU at a time.")
else:
return
selected_device = self._select_device(device_type, devices)
if selected_device:
self.selected_devices[device_type] = {
selected_device: devices[selected_device]
}
device_groups = []
if _apu_index:
device_groups.append({_apu_index} | _other_indices)
if _navi_22_indices:
device_groups.append(_navi_22_indices | _other_indices)
if _navi_indices or _intel_gpu_indices or _other_indices:
device_groups.append(_navi_indices | _intel_gpu_indices | _other_indices)
selected_devices = self._select_device(device_type, devices, device_groups)
if selected_devices:
for selected_device in selected_devices:
if not device_type in self.selected_devices:
self.selected_devices[device_type] = {}
self.selected_devices[device_type][selected_device] = devices[selected_device]
def _get_compatible_devices(self, device_type):
compatible_devices = {}
@@ -119,43 +162,112 @@ class HardwareCustomizer:
return compatible_devices
def _select_device(self, device_type, devices):
def _select_device(self, device_type, devices, device_groups=None):
print("")
print("Please select which {} device you want to use:".format(device_type))
if device_groups:
print("Please select a {} combination configuration:".format(device_type))
else:
print("Please select which {} device you want to use:".format(device_type))
print("")
for index, device_name in enumerate(devices, start=1):
device_props = devices[device_name]
compatibility = device_props.get("Compatibility")
print("{}. {}".format(index, device_name))
print(" Device ID: {}".format(device_props.get("Device ID", "Unknown")))
print(" Compatibility: {}".format(self.compatibility_checker.show_macos_compatibility(compatibility)))
if device_props.get("OCLP Compatibility"):
oclp_compatibility = device_props.get("OCLP Compatibility")
if device_groups:
valid_combinations = []
if self.utils.parse_darwin_version(oclp_compatibility[0]) > self.utils.parse_darwin_version(compatibility[0]):
print(" OCLP Compatibility: {}".format(self.compatibility_checker.show_macos_compatibility((oclp_compatibility[0], os_data.get_lowest_darwin_version()))))
print()
while True:
choice = self.utils.request_input(f"Select a {device_type} device (1-{len(devices)}): ")
for group in device_groups:
device_combinations = self._get_device_combinations(group)
for device_combination in device_combinations:
group_devices = []
group_compatibility = None
group_indices = set()
has_oclp_required = False
for index in device_combination:
device_name = list(devices.keys())[index]
device_props = devices[device_name]
group_devices.append(device_name)
group_indices.add(index)
compatibility = device_props.get("Compatibility")
if compatibility:
if group_compatibility is None:
group_compatibility = compatibility
else:
if self.utils.parse_darwin_version(compatibility[0]) < self.utils.parse_darwin_version(group_compatibility[0]):
group_compatibility = (compatibility[0], group_compatibility[1])
if self.utils.parse_darwin_version(compatibility[1]) > self.utils.parse_darwin_version(group_compatibility[1]):
group_compatibility = (group_compatibility[0], compatibility[1])
if device_props.get("OCLP Compatibility"):
has_oclp_required = True
if has_oclp_required and len(device_combination) > 1:
continue
if group_devices and (group_devices, group_indices, group_compatibility) not in valid_combinations:
valid_combinations.append((group_devices, group_indices, group_compatibility))
valid_combinations.sort(key=lambda x: (len(x[0]), x[2][0]))
try:
choice_num = int(choice)
if 1 <= choice_num <= len(devices):
selected_device = list(devices)[choice_num - 1]
for device in devices:
if device != selected_device:
self._disable_device(device_type, device, devices[device])
return selected_device
else:
print("Invalid option. Please try again.")
except:
print("Please enter a number.")
for idx, (group_devices, _, group_compatibility) in enumerate(valid_combinations, start=1):
print("{}. {}".format(idx, " + ".join(group_devices)))
if group_compatibility:
print(" Compatibility: {}".format(self.compatibility_checker.show_macos_compatibility(group_compatibility)))
if len(group_devices) == 1:
device_props = devices[group_devices[0]]
if device_props.get("OCLP Compatibility"):
oclp_compatibility = device_props.get("OCLP Compatibility")
if self.utils.parse_darwin_version(oclp_compatibility[0]) > self.utils.parse_darwin_version(group_compatibility[0]):
print(" OCLP Compatibility: {}".format(self.compatibility_checker.show_macos_compatibility((oclp_compatibility[0], os_data.get_lowest_darwin_version()))))
print("")
while True:
choice = self.utils.request_input(f"Select a {device_type} combination (1-{len(valid_combinations)}): ")
try:
choice_num = int(choice)
if 1 <= choice_num <= len(valid_combinations):
selected_devices, _, _ = valid_combinations[choice_num - 1]
for device in devices:
if device not in selected_devices:
self._disable_device(device_type, device, devices[device])
return selected_devices
else:
print("Invalid option. Please try again.")
except ValueError:
print("Please enter a valid number.")
else:
for index, device_name in enumerate(devices, start=1):
device_props = devices[device_name]
compatibility = device_props.get("Compatibility")
print("{}. {}".format(index, device_name))
print(" Device ID: {}".format(device_props.get("Device ID", "Unknown")))
print(" Compatibility: {}".format(self.compatibility_checker.show_macos_compatibility(compatibility)))
if device_props.get("OCLP Compatibility"):
oclp_compatibility = device_props.get("OCLP Compatibility")
if self.utils.parse_darwin_version(oclp_compatibility[0]) > self.utils.parse_darwin_version(compatibility[0]):
print(" OCLP Compatibility: {}".format(self.compatibility_checker.show_macos_compatibility((oclp_compatibility[0], os_data.get_lowest_darwin_version()))))
print()
while True:
choice = self.utils.request_input(f"Select a {device_type} device (1-{len(devices)}): ")
try:
choice_num = int(choice)
if 1 <= choice_num <= len(devices):
selected_device = list(devices)[choice_num - 1]
for device in devices:
if device != selected_device:
self._disable_device(device_type, device, devices[device])
return [selected_device]
else:
print("Invalid option. Please try again.")
except ValueError:
print("Please enter a valid number.")
def _disable_device(self, device_type, device_name, device_props):
if device_type == "WiFi":