jalavoui Posted March 30, 2024 Share Posted March 30, 2024 (edited) https://elixir.bootlin.com/linux/latest/source/drivers/pci/controller/vmd.c Trying to start a new project static const struct pci_device_id vmd_ids[] = { {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_201D), .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW_VSCAP,}, {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_28C0), .driver_data = VMD_FEAT_HAS_MEMBAR_SHADOW | VMD_FEAT_HAS_BUS_RESTRICTIONS | VMD_FEAT_CAN_BYPASS_MSI_REMAP,}, {PCI_VDEVICE(INTEL, 0x467f), .driver_data = VMD_FEATS_CLIENT,}, {PCI_VDEVICE(INTEL, 0x4c3d), .driver_data = VMD_FEATS_CLIENT,}, {PCI_VDEVICE(INTEL, 0xa77f), .driver_data = VMD_FEATS_CLIENT,}, {PCI_VDEVICE(INTEL, 0x7d0b), .driver_data = VMD_FEATS_CLIENT,}, {PCI_VDEVICE(INTEL, 0xad0b), .driver_data = VMD_FEATS_CLIENT,}, {PCI_VDEVICE(INTEL, PCI_DEVICE_ID_INTEL_VMD_9A0B), .driver_data = VMD_FEATS_CLIENT,}, {0,} }; https://github.com/Artoria2e5/SatSmartDriver_kext https://cgit.freebsd.org/src/tree/sys/dev/vmd/vmd.c Edited March 30, 2024 by jalavoui Link to comment https://www.insanelymac.com/forum/topic/359084-intel-volume-management-device/ Share on other sites More sharing options...
jalavoui Posted April 13, 2024 Author Share Posted April 13, 2024 meanwhile the workaround is disable it in bios and the disk will be available as sata device on macos Link to comment https://www.insanelymac.com/forum/topic/359084-intel-volume-management-device/#findComment-2819091 Share on other sites More sharing options...
jalavoui Posted July 29, 2024 Author Share Posted July 29, 2024 (edited) starting code from freebsd/linux todo: a lot Edited August 5, 2024 by jalavoui Link to comment https://www.insanelymac.com/forum/topic/359084-intel-volume-management-device/#findComment-2823445 Share on other sites More sharing options...
jalavoui Posted March 16 Author Share Posted March 16 (edited) this is why the device as bugged 32 bits memory bars... guess this afects many other devices that require BAR0 tobe 64 bits on linux this is reg 0x10: [mem 0x6000000000-0x6001ffffff 64bit] on os x... gonna try hack this with some variables using ssdt injection think might be a opencore option to solve this... Edited March 16 by jalavoui Link to comment https://www.insanelymac.com/forum/topic/359084-intel-volume-management-device/#findComment-2830929 Share on other sites More sharing options...
jalavoui Posted March 23 Author Share Posted March 23 (edited) this looks like it is working (detection only) guess a small but important step the mac os "conversion" of bars to 32 bits makes this impossible so injecting linux/windows addresses allows driver to detect devices. check ioregistry for values Edited April 10 by jalavoui 2 Link to comment https://www.insanelymac.com/forum/topic/359084-intel-volume-management-device/#findComment-2831066 Share on other sites More sharing options...
jalavoui Posted April 10 Author Share Posted April 10 (edited) mac os now as accepted the new devices in the pci table. buses start at 0xe0 todo: correct interrupts and bridge setup IntelVMD.zip Edited Tuesday at 09:54 PM by jalavoui 1 Link to comment https://www.insanelymac.com/forum/topic/359084-intel-volume-management-device/#findComment-2831424 Share on other sites More sharing options...
Recommended Posts