pci 设备使用pci_alloc_consistent 来申请dma可以简化code

本文介绍在Linux内核中PCI设备如何使用dma_alloc_coherent进行内存分配,并提供了pci_alloc_consistent等方便函数的具体实现细节。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

pci 设备使用struct pci_dev来表示的,因此pci设备使用dma的时候需要通过pci_dev->dev 得到struct device *dev之后才能使用dma_alloc_coherent等的接口
但是其实kernel 已经有提供给pci device准备的dma接口,其都定义在include/linux/pci-dma-compat.h 中
例如:
static inline void *
pci_alloc_consistent(struct pci_dev *hwdev, size_t size,
             dma_addr_t *dma_handle)
{
    return dma_alloc_coherent(hwdev == NULL ? NULL : &hwdev->dev, size, dma_handle, GFP_ATOMIC);
}

这样pci设备就能直接使用pci_alloc_consistent 来申请dma内存
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值