search
HomeComputer TutorialsTroubleshootingIs there any source code for DMA Windows driver?

dma windows驱动源码吗?

The related operations of DMA are introduced on page 545 of "In-depth Understanding of the Linux Kernel". When talking about DMA, we have to mention the issue of Cache. The book cites the following example to describe the Cache consistency problem:

Assume that the device driver fills some data into the memory buffer, and then immediately instructs the hardware device to read the data using DMA transfer. If DMA accesses these physical RAM memory cells, and the contents of the corresponding hardware cache line have not yet been written to RAM, then the hardware device will only read the old value in the memory buffer.

There are now two ways to deal with DMA buffers:

Consistent DMA mapping:

The book is more abstract, and the popular term is any DMA buffer Any changes to the area will be directly updated into the memory, which is also called synchronized or consistent.

Streaming DMA mapping:

According to personal understanding, the stream here is the input and output stream. We need to specify the direction of the DMA buffer in advance, such as reading the buffer or writing. buffer zone. It is also called asynchronous or non-consistent. Please see below for details.

Because in the x86 architecture, the hardware device driver itself will snoop the accessed hardware cache, so there is no DMA consistency problem in the x86 architecture. For other architectures such as MIPS, SPARC and POWERPC (including ARM), it is necessary to ensure their DMA consistency in software.

Regarding how to choose between the above two, there is a suitable suggestion in the book. If the CPU and DMA processor access a buffer in an unpredictable way, then the consistent DMA mapping method must be forced to be used (here I Unpredictable (understood as not being able to determine when they will access the buffer). In other cases, a streaming DMA mapping approach is preferable because dealing with consistent DMA mapping is cumbersome on some architectures and can lead to more Low system performance.

Here is a detailed introduction to streaming DMA:

The buffer that needs to be accessed needs to be mapped before data transmission (the mapping here means that some functions need to be called to inform the kernel that the buffer is streamed mapped), which is unmapped after transfer.

Starting a streaming DMA data transfer is divided into the following steps:

1. Allocate a DMA buffer.

When the DMA device does not use S/G (scatter/gather) mode, it must be ensured that the buffer is physically continuous. The Linux kernel has two functions for allocating continuous memory: kmalloc() and __get_free_pages(). Both functions have the maximum value for allocating continuous memory. kmalloc allocates bytes as a unit, the maximum is about 64KB, __get_free_pages() allocates pages as a unit, and can allocate a maximum of 2^order number of pages. The maximum value of the order parameter Determined by the MAX_ORDER macro in the include/linux/Mmzone.h file (in the default 2.6.18 kernel version, this macro is defined as 10. That is to say, in theory, the __get_free_pages function can apply for up to 1

## at a time #2. Establish streaming mapping.

After reading and writing access to the DMA buffer, and before starting the DMA device transfer, enable the dma_map_single() function to establish a streaming DMA mapping. These two functions accept buffers The linear address of the area is used as its parameter and the corresponding bus address is returned.

3. Release the streaming mapping.

When the DMA transfer is completed, we need to release the mapping, then call dma_unmap_single() Function.

Note:

(1). To avoid cache coherency issues, the driver should call dma_sync_single_for_device(() if necessary before starting a DMA data transfer from RAM to the device ) function refreshes the cache line corresponding to the DMA buffer.

(2). The device driver cannot access the memory buffer before a DMA data transfer from the device to RAM is completed, but if necessary If so, the driver should call the dma_sync_single_for_cpu() function to invalidate the corresponding hardware cache line before reading the buffer.

(3). Although the bottom layer of kmalloc is also implemented using __get_free_pages, the corresponding release buffer of kmalloc The area function is kfree, and the release buffer function corresponding to __get_free_pages is free_pages. Several application and release functions specifically related to __get_free_pages are as follows:

Application function:

alloc_pages(gfp_mask ,order) returns the address of the first allocated page frame descriptor, or NULL if the allocation failed. __get_free_pages(gfp_mask,order) is similar to alloc_pages(), but it returns the linear address of the first allocated page. If If you need to obtain the page frame number corresponding to the linear address, you need to call the virt_to_page(addr) macro to generate the linear address. Release function: __free_pages(page, order) The main emphasis here is that page is the page frame number free_pages where the linear first address of the buffer is to be released. (page, order) This function is similar to __free_pages(page, order), but the parameter it receives is the linear address addr

of the first page frame to be released.

The above is the detailed content of Is there any source code for DMA Windows driver?. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:系统之家重装系统. If there is any infringement, please contact admin@php.cn delete
R.E.P.O. Save File Location: Where Is It & How to Protect It?R.E.P.O. Save File Location: Where Is It & How to Protect It?Mar 06, 2025 pm 10:41 PM

Are you hooked on R.E.P.O.? Curious where your game progress is stored? This guide reveals the location of your R.E.P.O. save files and shows you how to protect them. Losing your game progress is frustrating, so let's ensure your hard work is safe

Easily Fixed - Monster Hunter Wilds Keeps Compiling ShadersEasily Fixed - Monster Hunter Wilds Keeps Compiling ShadersMar 04, 2025 pm 08:05 PM

Monster Hunter Wilds Shader Compilation Fix: A Comprehensive Guide Many players are encountering an issue where Monster Hunter Wilds gets stuck endlessly compiling shaders. This guide provides effective solutions to resolve this frustrating problem a

How to fix Microsoft Teams error 9hehw in Windows?How to fix Microsoft Teams error 9hehw in Windows?Mar 07, 2025 am 12:00 AM

Understanding Microsoft Teams error tag 9hehw on Windows Microsoft Teams is a crucial communication and collaboration application by which users are able to joi

Spotlight on KB5053606 Not Installing for Windows 10, Exact StepsSpotlight on KB5053606 Not Installing for Windows 10, Exact StepsMar 13, 2025 pm 08:02 PM

Windows 10 KB5053606 Update installation failed? This guide provides effective solutions! Many users are having problems trying to install the Windows 10 KB5053606 update released on Tuesday of Microsoft's March 2025 patch, such as SSH connection interruption, Dwm.exe unresponsiveness, or input method editor (IME) issues. Updates may be stuck during downloading or installation, or error codes may appear, such as 0x800f0922, 0xd000034, 0x80070437 and 0x80072efe. KB5053606 installation failure is usually caused by a variety of reasons, including Windows update component failure, system file corruption, and disk

How to fix KB5053602 fails to install in Windows 11?How to fix KB5053602 fails to install in Windows 11?Mar 13, 2025 am 10:00 AM

The KB5053602 patch, released on March 11, 2025, targets Windows 11 editions 22H2 and 23H2, elevating the OS to OS Builds 22621.5039 and 22631.5039, respectivel

All Fixes for Monster Hunter Wilds Fatal D3D Error on PCAll Fixes for Monster Hunter Wilds Fatal D3D Error on PCMar 05, 2025 pm 06:01 PM

Monster Hunter Wilds players are encountering frustrating crashes due to Fatal D3D or RE Engine Aborted errors. This guide provides solutions to resolve these issues and get you back to hunting. Understanding the Problem Monster Hunter Wilds uses Cap

R.E.P.O. Crashing & Freezing on PC? Result-Driven FixesR.E.P.O. Crashing & Freezing on PC? Result-Driven FixesMar 07, 2025 pm 08:02 PM

Troubleshooting R.E.P.O. Game Crashes: A Comprehensive Guide Experiencing frustrating game crashes, especially in a team-based game like R.E.P.O., can be incredibly disruptive. This guide offers several solutions to resolve R.E.P.O. crashes, freezes

Monster Hunter Wilds Audio Not Working Fix Guide, Essential TipsMonster Hunter Wilds Audio Not Working Fix Guide, Essential TipsMar 04, 2025 pm 08:17 PM

Troubleshooting Monster Hunter World's Audio Issues on PC Experiencing audio problems in Monster Hunter World (MHW) on your PC can significantly impact gameplay. This guide provides several solutions to fix MHW audio issues, ranging from simple adjus

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Repo: How To Revive Teammates
1 months agoBy尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks agoBy尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months agoBy尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

PhpStorm Mac version

PhpStorm Mac version

The latest (2018.2.1) professional PHP integrated development tool

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

mPDF

mPDF

mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),