Initial commit

This commit is contained in:
Felipe Cardoso
2026-03-25 20:13:15 +01:00
commit c596e38e9e
26 changed files with 2345 additions and 0 deletions

17
configs/grub-cmdline.conf Normal file
View File

@@ -0,0 +1,17 @@
# Recommended kernel boot parameters for AMD Strix Halo
# Add to GRUB_CMDLINE_LINUX in /etc/default/grub
#
# After editing, regenerate GRUB:
# sudo grub2-mkconfig -o /boot/grub2/grub.cfg
# Then reboot.
#
# For 64GB system (HP ZBook Ultra G1a):
iommu=pt amdgpu.gttsize=60416 ttm.pages_limit=15466496
#
# For 128GB system (Framework Desktop, GMKtec EVO X2):
# iommu=pt amdgpu.gttsize=126976 ttm.pages_limit=32505856
#
# Parameter explanation:
# iommu=pt - IOMMU passthrough, reduces memory access latency
# amdgpu.gttsize=N - Max GPU-addressable system RAM in MiB (total - 4GB reserve)
# ttm.pages_limit=N - Max pinnable 4K pages (gttsize_MiB * 256)