P104-100 Driver | 2027 |

# Install standard driver sudo apt install nvidia-driver-535 # or newer sudo nvidia-xconfig --allow-empty-initial-configuration Enable NVENC (if supported on P104-100 - some revisions lack it) nvidia-smi -i 0 -pl 125 # optional power limit Check encoding support ffmpeg -encoders | grep nvenc

It sounds like you’re asking about a for a P104-100 GPU (likely an NVIDIA mining card), and you want to develop a feature for it. p104-100 driver

// In nv-pci.c or similar static const struct pci_device_id nv_device_tbl[] = ... PCI_DEVICE(0x10DE, 0x1B82), .driver_data = ... , // P104-100 ... ; // Override display detection if (dev->device == 0x1B82) nv->has_display = true; // force display class (may crash) # Install standard driver sudo apt install nvidia-driver-535