我需要通过/dev/mem
与内存PCI设备进行通信。为什么?有很多原因,其中一个原因是因为我的老板告诉了我。
我想我有答案here。然而,我无法弄清楚答案中的MMIO_ADDR
。如果我想与特定的内存区域通信,我会将BAR
寄存器中存储的值用作MMIO_ADDR
吗?如果否,那么我该如何与我的PCI设备通信?
答案 0 :(得分:2)
您的BAR将由BIOS /内核分配一个地址。在系统启动时,该地址应该已经写入PCI配置头中的BAR地址寄存器。
例如,在我这里的虚拟机上,e1000设备如下(来自lspci -v
):
02:03.0 Ethernet controller: Intel Corporation 82545EM Gigabit Ethernet Controller (Copper) (rev 01)
Subsystem: VMware PRO/1000 MT Single Port Adapter
Physical Slot: 35
Flags: bus master, 66MHz, medium devsel, latency 0, IRQ 17
=> Memory at fd560000 (64-bit, non-prefetchable) [size=128K]
Memory at fdfd0000 (64-bit, non-prefetchable) [size=64K]
I/O ports at 2080 [size=64]
[virtual] Expansion ROM at fd520000 [disabled] [size=64K]
Capabilities: <access denied>
Kernel driver in use: e1000
您需要阅读该信息(您可以通过/proc/bus/pci/<Bus>/<DevFn>
或/sys/bus/pci/devices/
以二进制形式查看)以查找MMIO地址。
例如,转储上述设备的PCI配置空间的二进制文件显示:
od -tx1z -Ax /proc/bus/pci/02/03.0
000000 86 80 0f 10 17 01 30 02 01 00 00 02 10 00 00 00 >......0.........<
000010 04 00 56 fd 00 00 00 00 04 00 fd fd 00 00 00 00 >..V.............<
000020 81 20 00 00 00 00 00 00 00 00 00 00 ad 15 50 07 >. ............P.<
000030 00 00 00 00 dc 00 00 00 00 00 00 00 0b 01 ff 00 >................<
000040
第一个BAR(条形区域#0)位于偏移量0x10处,第二个条形区域(条形区域#2)位于偏移量0x18处。
有关布局和解释的说明,请参阅https://en.wikipedia.org/wiki/PCI_configuration_space。