惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
N
Netflix TechBlog - Medium
Martin Fowler
Martin Fowler
A
About on SuperTechFans
腾讯CDC
B
Blog RSS Feed
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
D
Docker
Y
Y Combinator Blog
Microsoft Security Blog
Microsoft Security Blog
F
Fortinet All Blogs
I
InfoQ
博客园 - 【当耐特】
美团技术团队
GbyAI
GbyAI
量子位
宝玉的分享
宝玉的分享
爱范儿
爱范儿
有赞技术团队
有赞技术团队
博客园 - Franky
L
LangChain Blog
阮一峰的网络日志
阮一峰的网络日志

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Part 4: Driver Implementation — How Developers Adapt to G...
Deleon Karen · 2026-06-02 · via DEV Community

After understanding the architecture and isolation mechanisms of GPU-P, the most pressing question for a driver developer is: How do I implement and enable these features in my driver? This chapter will analyze the GPU-P development and adaptation process in detail from three dimensions: capability declaration, configuration files, and key DDIs (Device Driver Interfaces).

1. Capability Declaration: Telling the System "I'm Ready"

To let Windows know that your driver supports GPU partitioning, you first need to set specific capability bits in the host driver.

DXGK_VIDMMCAPS

When the KMD responds to the DxgkDdiQueryAdapterInfo call, it must populate the DXGK_DRIVERCAPS structure. Within it, MemoryManagementCaps.ParavirtualizationSupported is the "master switch" for enabling GPU-P:

// In the host KMD implementation
pDriverCaps->MemoryManagementCaps.ParavirtualizationSupported = TRUE;

Enter fullscreen mode Exit fullscreen mode

Note: The situation is slightly different for MCDM (Microsoft Compute Driver Model) drivers. The host driver should set this bit to TRUE, while the guest driver running inside the virtual machine should adjust it based on whether it is in a virtualized environment.

2. INF File Configuration: The "Mover" of Resources

Since there is no KMD inside the virtual machine, the DLL images and registry settings required by the guest-side UMD must be provided in advance by the host.

Driver Store Mapping

In the INF file, you need to declare which files should be copied to the virtual machine. Commonly used registry entries include:

  • CopyToVmOverwrite: Always overwrites the file with the same name in the virtual machine.
  • CopyToVmWhenNewer: Only overwrites when the host file version is newer.
[DDInstall]
; Copies the host's driver files to the virtual machine's HostDriverStore directory
HKR,"CopyToVmOverwrite",SoftGpuFiles,%REG_MULTI_SZ%,"umd_binary.dll","umd_binary.dll"

Enter fullscreen mode Exit fullscreen mode

These files are automatically placed in the virtual machine's %windir%\system32\HostDriverStore directory.

3. Key DDI Implementation: The Host's "Art of Management"

To manage numerous virtual machine instances, the host KMD needs to implement several key new DDIs:

DxgkDdiSetVirtualMachineData

This is the core interface through which Dxgkrnl communicates VM context to the KMD. When a new virtual machine instance starts or its configuration changes, the OS calls this interface to synchronize key metadata with the driver.

  • Purpose: Passes virtual machine data, including the VM's unique identifier (LUID), video memory quota, compute resource limits, etc.
  • Security Flag: Through the SecureVirtualMachine flag in DXGK_VIRTUALMACHINEDATAFLAGS, the OS tells the KMD whether the VM is in "secure mode" (e.g., Windows Sandbox).
  • Developer Action: The driver should initialize or update its internal virtual machine tracking structures based on this data. For example, in secure mode, the driver must disable non-standard Escape calls and ensure that IOMMU isolation is fully effective. Furthermore, the driver can use this interface to associate the VM's guest space mapping with the host-side physical resources.

DxgkDdiQueryAdapterInfo (Extended)

This interface is one of the most functionally complex in WDDM. In a GPU-P environment, it is extended to support finer-grained cross-boundary queries.

  • Key Flags:
    • VirtualMachineData: If this bit is TRUE, it indicates that the current query request originates from a virtual machine.
    • SecureVirtualMachine: Indicates whether the current execution is within a stricter security isolation environment (like a sandbox).
  • Context Identification: The new hKmdProcessHandle member allows the driver, when processing queries from a virtual machine, to accurately identify and use the corresponding host-side process context.
  • Common Query Types:
    • DXGKQAITYPE_GPUPCAPS: Queries the driver's partitioning capabilities, such as whether it supports Live Migration.
    • DXGKQAITYPE_GPUMMUCAPS: Queries the support status for GPU virtual addresses (GpuVA).
    • DXGKQAITYPE_PAGETABLELEVELDESC: Defines the page table hierarchy structure, which is crucial for the GpuMMU model.

DxgkDdiCreateProcess

In a virtualized environment, the host creates a "mirror process" object for each VM's drawing operations. The driver needs to recognize new flags in DXGK_CREATEPROCESSFLAGS to distinguish different execution contexts:

  • VirtualMachineWorkerProcess: Corresponds to the host-side VM worker process (vmwp.exe). This process is responsible for managing the VM's virtual hardware (including vGPU emulation) but does not perform rendering itself. The driver can use this flag to skip the allocation of certain rendering resources.
  • VirtualMachineProcess: Corresponds to the actual process inside the Guest that initiates drawing requests. Whenever an application within the virtual machine tries to use the GPU, a call is triggered on the host side via this flag.
  • Process Association: Through the hKmdVmWorkerProcess handle, the driver can associate multiple guest-side processes with the same VM instance on the host, which is crucial for resource accounting, debugging, and performance monitoring (e.g., GPUView).
  • Debugging Support: The pProcessName member provides a human-readable name for the process, greatly facilitating troubleshooting for developers in multi-VM concurrent scenarios.

4. Special Handling for MCDM Drivers

For compute cards without display output capabilities (like data center GPUs), adaptation to GPU-P must follow MCDM (Microsoft Compute Driver Model):

  • Class Definition: The INF must specify Class=ComputeAccelerator.
  • Capability Reduction: Display-related interfaces like DxgkDdiPresent do not need to be implemented, but GPU Virtual Address (GpuVA) and IOMMU isolation must be supported.
  • Isolation Requirements: If an MCDM driver wants to run in a secure container, it must set IoMmuSecureModeSupported to TRUE.

5. Development Advice: The "Forbidden Zone" for Private Data

When writing a driver that supports GPU-P, developers must always keep the "cross-boundary" principle in mind:

  1. Strictly Prohibited from Passing Pointers: The UMD is in the guest space, and the KMD is in the host space. Absolute physical memory addresses are invalid between the two.
  2. Handle Translation: Utilize the DriverKnownEscape mechanism to let the OS translate resource handles from the guest side into handles recognizable on the host side.
  3. Message Size Limit: The maximum size for a single VMBus message is typically 128KB. Avoid passing excessively large private data in a single AllocateCb call.

Conclusion

Adapting to GPU-P is not just about flipping a switch; it is a meticulous reconstruction of the driver architecture. Through standardized capability declarations and rigorous DDI implementation, developers can give their hardware a new lease on life in the cloud and virtualized environments.

In the next chapter, we will tackle the toughest nut to crack in the field of GPU virtualization: Live Migration.