基本介绍

网上有和多好的网站可以看比如下面这个,我写笔记是从嵌入式底层开始的学习记录不完整和成体系。
一篇很好的文章可以看看
PCI的EP和RC分别对应从模式和主模式,普通的PCI RC主模式可以用于连接PCI-E以太网芯片或PCI-E的硬盘等外设。RC模式使用外设一般都有LINUX 驱动程序,安装好驱动基本都能正常使用。但是对于SOC芯片本身能做EP有能做RC 两者如何互相通信可能就需要对PCIE的使用和基本原理有所了解才能较好的使用。TLP、BAR和PCIE Memory 内存访问和IO访问差别等一些定义进行了简单说明。

几个概念说明

PCIE 的通信数据包说明

PCIe存储器、配置、IO读写请求和原子操作、消息报文

TLP和DLLP发送的概况

TLP

TLP(Transaction Layer Packet)据包的描述被定义为事务层数据包 (TLP),它与 ​​PCIe 的最上层有关。数据链路层负责确保每个 TLP 正确到达其目的地。它用自己的报头和链路 CRC 包装 TLP,从而确保 TLP 的完整性。确认重传机制确保在途中不会丢失任何 TLP。流量控制机制确保仅当链路伙伴准备好接收数据包时才发送数据包。
用于访问四个地址空间的 TLP
当事务在 PCI Express 请求者和完成者之间执行时,使用了四个独立的地址空间:内存、IO、配置和消息。

地址空间 传输类型 描述
Memory 读写 将数据传入或传出系统内存映射中的某个位置(内存操作使用)
IO 读写 将数据传入或传出系统 IO 空间的某个位置(寄存器操作使用)
Configuration 读写 将数据传入或传出 PCI 兼容设备的配置空间中的某个位置。
Message 发送信息 一般带内消息传递和事件报告(不消耗内存或 IO 地址资源)

DLLP

数据链路层数据包 (DLLP)
Ack DLLP 用于确认成功接收到的 TLP。
Nack DLLP 用于指示到达的 TLP 已损坏,并且应进行重传。请注意,还有一个超时机制,以防看起来像 TLP 的任何东西都没有到达。
流控制 DLLP:InitFC1、InitFC2 和 UpdateFC,用于宣布信用,如下所述。
电源管理 DLLP。

PCIE 事务

数据包结构

详细说明链接
有了IP核之后,实际上我们最关心的就是事务层包的数据格式。
事务层数据包(TLP)主要由:一个或多个可选的前缀(TLP Prefixes)、一个帧头(TLP Header)、一个数据有效负载(Data Payload)和一个可选的摘要(TLP Dignest)组成,下面简单介绍一下各部分。

前缀(TLP Prefixes)
有PCIe V2.1总规范引入,主要起扩展帧头的作用。如果用不到,可以省去该字段。

帧头(TLP Header)
TLP Header是TLP中最重要的标志,不同的TLP其头的定义并不相同。TLP 头标长3 或者4 个DW(DW = double word——双字,32位),格式和内容随事物类型变化;

数据有效负载(Data Payload)
即主设备要传输的数据。数据的长度最小为0,最大为1024DW,视具体情况而定。该字段也是一个可选项,因为有些TLP并不需要传递数据,如存储器读请求、配置和I/O写完成TLP也不需要。

摘要(TLP Dignest)
摘要是一个可选项,长度为1DW。一个TLP是否需要Dignes是由Header中TD字段决定。如果接受设备支持ECRC校验的功能的话,则该字段用来防止TLP中的数据校验码ECRC。

事务的Non-posted和posted

有关事务非转发或转发的描述链接

Non-posted(非转发)事务和-posted(转发)事务都是PCIE TLP(事务层包)类型。Non-posted TLP有返回TLP,而posted事务没有返回。记忆技巧:非转发事务非要返回。本文中说的事务指的是PCIE事务层TLP。

1、两者有什么区别?

Non-posted事务分为两个部分,首先是发送端向接收端发送TLP请求,接收端接收到请求完成后向发送端发送完成(Completion)TLP。包含:发送–接收–反馈三个过程。Non-posted事务必须等待接收到完成TLP,PCIE总线才能结束当前的TLP。

Posted TLP不需要完成TLP返回,此种方式中,TLP还没达到最终目的地之前,PCIE总线就可以结束当前的事务。

PCIE 配置和空间访问空间

PCIE RC主机可以通过配置空间对PCIE EP 进行信息读取和控制。
IO区对于PCIE来说有固定格式标准。
在Linux下使用lspci -xxx 可以查看内容的二进制和lspci -vvv 查看内容对应的信息说明。

本段配置空间详细说明链接

空间访问

Memory & IO 地址空间
早期的PC中,所有的IO设备(除了存储设备之外的设备)的内部存储或者寄存器都只能通过IO地址空间进行访问。但是这种方式局限性很大,而且效率低,于是乎,软件开发者和硬件厂商都不能忍了……然后一种新的东西就出来了——MMIO。
MMIO,即Memory Mapped IO,也就是说把这些IO设备中的内部存储和寄存器都映射到统一的存储地址空间(Memory Address Space)中。

P-MMIO,即可预取的MMIO(Prefetchable MMIO);

NP-MMIO,即不可预取的MMIO(Non-Prefetchable MMIO)。其中P-MMIO读取数据并不会改变数据的值。

在很多地方都没有找到PICE内存操作和IO操作的差异,有的人提到X86的IO空间但是其实和那个没有关系,ARM和X86的IO空间的问题。从最后找到资料来看其实主要差异是如下说明:
Memory space mapped cleanly to CPU semantics
1.32-bits of address space initially
2. 64-bits introduced via Dual-Address Cycles (DAC)
– Extra clock of address time on PCI/PCI-X
– 4 DWORD header in PCI Express
3 Burstable

I/O space mapped cleanly to CPU semantics
1.32-bits of address space
2 .Actually much larger than CPUs of the time
3 .Non-burstable
– Most PCI implementations didn’t support
– PCI-X codified
– Carries forward to PCI Expres

我认为主要是Non-burstable,Burstable的差异是内存访问和IO访问的最大的差异在32位处理器上。Burstable突发操作主要是正对内存的,一次突发可以同时操作多个连续地址的内存,突发可以让读写速度加快减少SOC内部总线占用,比如CPU的CACHE预取和刷新内存数据和指令时会除非突发访问,在SOC的设备寄存器操作一般是不能使用突发操作。从设置看来IO 空间可以和Memory内存空间重叠是可以的,只是不同的模式访问方式由一定差异,要注意对应使用合适的访问方式。

Message主要有九个类型:

  1. INTx Interrupt Signaling中断消息
  2. Power Management电源管理消息
  3. Error Signaling错误消息
  4. Locked Transaction Support锁定传输支持
  5. Slot Power Limit Support设置插槽功率限制消息
  6. Vendor‐Defined Messages厂家定义消息
  7. Ignored Messages (related to Hot‐Plug support in spec revision 1.1)忽略的消息
  8. Latency Tolerance Reporting (LTR)可选特性,延迟容忍信息消息
  9. Optimized Buffer Flush and Fill (OBFF)OBFF 给 PCIe 设备提供了一种获取系统电源状态的机制。利用 OBFF,PCIe 设备就可以选择与系统进行数据交互的最优时间。

PCIE 配置


其中10H-24H 可以根据设置体现两种格式。
Type0是Endpoint用,Type1主要是RC或PCIE桥使用。

设置两种不同类型的说明链接

PCI总线定义了两类配置请求,一个是Type 00h配置请求,另一个是Type 01h配置请求。PCI总线使用这些配置请求访问PCI总线树上的设备配置空间,包括PCI桥和PCI Agent设备的配置空间。

其中Type0 Header最多有6个BAR,而Type1 Header最多有两个BAR。
这就意味着,对于Endpoint来说,最多可以拥有6个不同的地址空间。但是实际应用中基本上不会用到6个,通常1~3个BAR比较常见。主要注意的是,如果某个设备的BAR没有被全部使用,则对应的BAR应被硬件全被设置为0,并且告知软件这些BAR是不可以操作的。而这些不可操作的低比特决定了当前BAR支持的操作类型和可申请的地址空间的大小。
一旦BAR的值确定了(Have been programmed),其指定范围内的当前设备中的内部寄存器(或内部存储空间)就可以被访问了。当该设备确认某一个请求(Request)中的地址在自己的BAR的范围内,便会接受这请求。

BAR和ATU

BAR和ATU的关系

BAR和ATU关系加LINUX的ATU驱动分析
我理解BAR 和ATU的关系: tlp中的地址就是atu转换后的地址,bar就是接受对应的转换后的地址。我先理解为ATU是发起端地址转换,bar是接收端的对应地址访问设置。我使用的IP ATU有个BAR match模式,使用BAR来控制ATU的输入范围。

BAR的值确定了(Have been programmed),其指定范围内的当前设备中的内部寄存器(或内部存储空间)就可以被访问了。当该设备确认某一个请求(Request)中的地址在自己的BAR的范围内,便会接受这请求。

BAR地址不一定等于FPGA或CPU内部地址,他们是可以进行设置的ATU 的inband输入设置对应进行范围对应。

BAR

BAR是基地址寄存器在配置空间(Configuration Space),在PCIE的初始化步骤中就需要对BAR的范围进行配置。在SPARC处理器的设计中也有BAR的设置,类似与把SOC的地址空间分断。通过BAR的配置可以设置地址空间断有不同的属性,比如可否访问、CACHE的命中等,也直接影响到前面提到的Non-burstable不能突发访问,Burstable突发的差异。

BAR的设置的最终效果

下面这幅图能够很好的说明BAR的作用,实际上就是就是空间进行映射,最后达到访问从机的指定区域地址就像访问SOC处理器的内部地址空间一样。不需要软件做特殊的控制,从机的资源像是自身内部空间。

BAR的设置说明

以个人使用的一个PCIE控制器进行介绍该控制器为DWC_pice控制器
控制器为每个实现的功能提供三对 32 位 BAR。 每对(BAR 0 和 1,
BAR 2 和 3、BAR 4 和 5) 可以配置如下:
■ 一个64 位BAR:例如,BAR 0 和1 组合形成一个64 位BAR。
■ 两个32 位BAR:例如,BAR 0 和1 是两个独立的32 位BAR。
■ 一个 32 位 BAR:例如,BAR0 是一个 32 位 BAR,而 BAR1 被禁用或从

该控制器有6对BAR的设置寄存器,可以通过两个相邻的寄存器配置成支持64位空间,也可以每个单独的配置成32位的空间配置。上图就是一个简单说明,BAR的寄存器设置如下:
BIT0位配置IO/MEM选择:设置0为内存空间,设置1为IO空间;
BIT2:1位配置BAR类型:设置0位32BITBAR;
BIT3位配BAR设置为Memory空间的预取使能:把I/O寄存器实现成内存区间的PCI设备可以通过设定其配置空间寄存器的"内存为可预取"位(bit)来标明某地址区间是否可预取。如果内存区间被标记为可预取,那么CPU便会缓存其内容,访问时会进行各种优化方法;相反,访问不可预取内存时就不能进行优化,因为每次访问都伴随副作用,就和I/O端口一样。将其控制寄存器映射到内存地址范围的外设会把该范围置为不可预取,不过诸如PCI板卡上的显示内存(video memory)之类都是可预取的。(最简单的理解为,预先读取了你当前程序访问的地址的后几个值,当你程序访问后面紧接的地址值时,PCIE总线不再发起真正的读操作,你获取的实际是上一次访问获取的值。在有的时候后面的值在第一次访问后变了,你却不能获取最新状态。)

对于Memory BAR,BAR 位 [11:0] 总是被屏蔽。 控制器要求每个内存 BAR 在至少 4 KB。
对于 I/O BAR,BAR 位 [7:0] 总是被屏蔽。 控制器要求每个 I/O BAR 至少声明 256B。

一个简单的BAR操作例子

BAR操作步骤原文
对应DW的操作看《DW PCIE 的Register Module, LBC, and DBI章节学习笔记》和连接的有点差异。
32-bit Memory Address Space Request:
如下图所示,请求一个4KB的NP-MMIO一般需要以下三个步骤:

Step1:如图中(1)所示,未初始化的BAR的低比特(114)都是0,高比特(3112)都是不确定的值。所谓初始化,就是系统(软件)向整个BAR都写1,来确定BAR的可操作的最低位是哪一位。当前可操作的最低位为12,因此当前BAR可申请的(最小)地址空间大小为4KB(212)。如果可操作的最低位为20,则该BAR可申请的(最小)地址空间大小为1MB(220)。

Step2:完成初始化(写1操作)之后,软件便开始读取BAR的值,来确定每一个BAR对应的地址空间大小和类型。其中操作的类型一般由最低四位所决定,具体如上图右侧部分所示。

Step3:最后一步是,软件向BAR的高比特写入地址空间的起始地址(Start Address)。如图中所示,为0xF9000000。

EP模式中断

PCIe完全继承了PCI的所有的中断特性(包括INTx,MSI/MSIx)。但是与PCI不同的是,PCIe使用串行总线尽量减少pin的使用,所以对于INTX类型的中断,它没有使用sideband pin(单独使用中断管脚)的方式而是使用Message传递中断(前面消息中有介绍)。另外对于PCI, MSI/MSIX是可选的但是PCIe设备必须支持MSI/MSIx的中断请求机制,可以不支持INTx中断消息(我使用的SOC就不支持INTx中断)。

MSI 中断和MSI-X比较

PCIE 使用MSI

MSI: Message Signaled Interrupt
MSI-X: Message Signaled Interrupt eXtended

MSI和MSI-X的比较
MSI机制只允许每个PCI Function最多拥有32个中断向量,这对某些应用来说完全不够
MSI机制下每个PCI Function的所有中断向量都共用1个Message Address,无法将其分配到不同CPU以实现中断服务在CPU间均衡分配
MSI机制下每个PCI Function的所有中断向量都是连续的,在某些平台连续的中断向量意味着同样的中断优先级,无法满足区分中断优先级的需求

EP模式测试简单说明

一些细节的介绍可以去看看一个测试案例:http://software-dl.ti.com/jacinto7/esd/processor-sdk-linux-jacinto7/06_02_00_07/exports/docs/linux/Foundational_Components/Kernel/Kernel_Drivers/PCIe/PCIe_End_Point.html 查看使用和说明。

EP的配置

Linux 配置使能PIC 和对应IP的EP模式,在板的DTS上设置EP信息并使能。

CONFIG_PCI_ENDPOINT=y
CONFIG_PCI_ENDPOINT_CONFIGFS=y
CONFIG_PCI_EPF_TEST=y

在系统中查询到端点设设备

root:~# ls /sys/class/pci_epc/
d000000.pcie-ep

要在系统中查找端点功能驱动程序列表:

root:~# ls /sys/bus/pci-epf/drivers
pci_epf_test  pci_epf_ntb

RC的配置

Linux 配置使能PIC 和对应IP的RC模式,在板的DTS上设RC信息并使能。

CONFIG_PCI=y
CONFIG_PCI_ENDPOINT_TEST=y

查询PCIE从设置

root:~#lspci output
0000:00:00.0 PCI bridge: Texas Instruments Device b00d
0000:01:00.0 Unassigned class [ff00]: Texas Instruments Device b00d
0000:01:00.1 Unassigned class [ff00]: Texas Instruments Device b00d
0000:01:00.2 Unassigned class [ff00]: Texas Instruments Device b00d
0000:01:00.3 Unassigned class [ff00]: Texas Instruments Device b00d
0000:01:00.4 Unassigned class [ff00]: Texas Instruments Device b00d
0000:01:00.5 Unassigned class [ff00]: Texas Instruments Device b00d
0001:00:00.0 PCI bridge: Texas Instruments Device b00d
0002:00:00.0 PCI bridge: Texas Instruments Device b00d

一个比较好的网站
https://www.cnblogs.com/yi-mu-xi/p/10932432.html

ATU

控制器使用 ATU 实现本地地址转换方案,该方案替换当前 TLP 请求标头中的 TLP 地址和 TLP 标头字段。这是和总线对接的一个模块,除了地址转换之外,还根据配置产生tlp。一般是这样的,系统会为PCIe设备预留256MB空间,访问这256MB空间的时候就会触发产生一个mem request tlp,然后ATU根据配置(如果配置了cfg type)将其转换成cfg request,其中的target地址就写入了tlp中。然后PCIe网络就将这个tlp路由到对应地址的设备功能上了。举例如下:

系统ram空间地址基址为0x40000000,ATU配置source address为0x40000000,target address为0x00000000,ATU type = cfg 0,size=0x10000000(256MB),那么CPU读0x40000000地址的时候触发了一个mem read request,经过ATU之后产生了一个cfg type 0 rd的request;同样的,如果往0x40000000写一笔数据,就会触发mem write request,处理过程也是类似的。如果访问0x40100000,转换后的target地址就成了0x100000。

Generally speaking, if your card has SoC, the FW on the SoC will configure the iATU mapping with BAR match mode. And don’t let host side driver to configure it.> 是不是如果配置的和BAR相关就不用考虑配置该部分?

PCIE 正常信息查询

使用lspci -vvv 命令检查

root@arm:~/ngbe# lspci -vvv
00:00.0 PCI bridge: Synopsys, Inc. Device abcd (rev 01) (prog-if 00 [Normal decode])Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx-Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin A routed to IRQ 255Bus: primary=00, secondary=01, subordinate=ff, sec-latency=0I/O behind bridge: 0000f000-00000fffMemory behind bridge: f9100000-f93fffffPrefetchable memory behind bridge: 00000000fff00000-00000000000fffffSecondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ <SERR- <PERR-BridgeCtl: Parity+ SERR- NoISA- VGA- MAbort- >Reset- FastB2B-PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1+ D2- AuxCurrent=375mA PME(D0+,D1+,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/32 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Root Port (Slot-), MSI 00DevCap: MaxPayload 256 bytes, PhantFunc 0ExtTag+ RBE+DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop-MaxPayload 128 bytes, MaxReadReq 512 bytesDevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L1, Exit Latency L0s <1us, L1 <64usClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp+LnkC[  206.685783] pci 0000:00:00.0: VPD access failed.  This is likely a firmware bug on this device.  Contact the card vendor for a firmware update
tl:     ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-RootCap: CRSVisible-RootSta: PME ReqID 0000, PMEStatus- PMEPending-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-Compliance De-emphasis: -6dBLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [d0] Vital Product Data
pcilib: sysfs_read_vpd: read failed: Input/output errorNot readableCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr-CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] #21Capabilities: [158 v1] Vendor Specific Information: ID=0002 Rev=4 Len=100 <?>Capabilities: [258 v1] Vendor Specific Information: ID=0006 Rev=0 Len=018 <?>01:00.0 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin A routed to IRQ 0Region 0: Memory at f9300000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f9380000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9100000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-Compliance De-emphasis: -6dBLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 1ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 00VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe01:00.1 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin B routed to IRQ 0Region 0: Memory at f9320000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f9384000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9180000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 2ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 01VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe01:00.2 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin C routed to IRQ 0Region 0: Memory at f9340000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f9388000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9200000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 3ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 02VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe01:00.3 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin D routed to IRQ 0Region 0: Memory at f9360000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f938c000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9280000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr+ UncorrErr- FatalErr- UnsuppReq+ AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 0ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 03VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe

使用lspci -xxx 命令检查底层寄存器信息

root@arm:~/ngbe# lspci -xxx
00:00.0 PCI bridge: Synopsys, Inc. Device abcd (rev 01)
00: c3 16 cd ab 47 01 10 00 01 00 04 06 10 00 01 00
10: 00 00 00 00 00 00 00 00 00 01 ff 00 f0 00 00 20
20: 10 f9 30 f9 f1 ff 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 01 00
40: 01 50 c3 5b 08 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 8a 03 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 d0 42 00 21 80 00 00 10 21 00 00 42 48 53 00
80: 00 00 42 30 7f 00 06 00 c0 03 40 00 00 00 00 00
90: 00 00 00 00 10 04 00 80 00 00 00 00 06 00 00 80
a0: 02 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.0 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 30 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 00 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 01 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 09 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.1 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 32 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 40 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 02 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 09 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.2 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 34 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 80 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 03 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 09 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.3 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 36 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 c0 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 04 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 09 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

PCIE 异常排查

使用lspci -vvv 命令检查

比如我们的设备出现了一些异常,从下面可以看出
能纠正的错误: CorrErr+
不能纠正的错误: UncorrErr-
错误相关信息保持: AERCap: First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn- (有错误并记录了下来了)

root@arm:~/ngbe# lspci -vvv
[  367.766277] ngbe 0000:01:00.0 eth1: NIC Link is Up 1 Gbps, Flow Control: RX/TX
[  367.773609] IPv6: ADDRCONF(NETDEV_CHANGE): eth1: link becomes ready00:00.0 PCI bridge: Synopsys, Inc. Device abcd (rev 01) (prog-if 00 [Normal decode])Control: I/O- Mem- BusMaster- SpecCycle- MemWINV- VGASnoop- ParErr- Stepping- SERR- FastB2B- DisINTx-Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Interrupt: pin A routed to IRQ 255Bus: primary=00, secondary=00, subordinate=00, sec-latency=0I/O behind bridge: 00000000-00000fffMemory behind bridge: 00000000-000fffffPrefetchable memory behind bridge: 0000000000000000-00000000000fffffSecondary status: 66MHz- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- <SERR- <PERR-BridgeCtl: Parity- SERR- NoISA- VGA- MAbort- >Reset- FastB2B-PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1+ D2- AuxCurrent=375mA PME(D0+,D1+,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst+ PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/32 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Root Port (Slot-), MSI 00DevCap: MaxPayload 256 bytes, PhantFunc 0ExtTag+ RBE+DevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag+ PhantFunc- AuxPwr- NoSnoop-MaxPayload 128 bytes, MaxReadReq 512 bytesDevSta: CorrErr+ UncorrErr+ FatalErr- UnsuppReq+ AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L1, Exit Latency L0s <1us, L1 <64usClockPM- Surprise- LLActRep+ BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive+ BWMgmt- ABWMgmt-RootCtl: ErrCorrectable- ErrNon-Fatal- ErrFatal- PMEIntEna- CRSVisible-RootCap: CRSVisible-RootSta: PME ReqID 0000, PMEStatus- PMEPending-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not Supported ARIFwd-DevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF Disabled ARIFwd-LnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-Compliance De-emphasis: -6dBLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [d0] Vital Product Data
pcilib: sysfs_read_vpd: read failed: Input/output errorNot readableCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq+ ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 14, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] #21Capabilities: [158 v1] Vendor Specific Information: ID=0002 Rev=4 Len=100 <?>Capabilities: [258 v1] Vendor Specific Information: ID=0006 Rev=0 Len=018 <?>01:00.0 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort+ >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin A routed to IRQ 0Region 0: Memory at f9300000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f9380000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9100000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkCtl2: Target Link Speed: 5GT/s, EnterCompliance- SpeedDis-Transmit Margin: Normal Operating Range, EnterModifiedCompliance- ComplianceSOS-Compliance De-emphasis: -6dBLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 1ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 00VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe01:00.1 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin B routed to IRQ 0Region 0: Memory at f9320000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f9384000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9180000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 2ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 01VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe01:00.2 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin C routed to IRQ 0Region 0: Memory at f9340000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f9388000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9200000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 3ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 02VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe01:00.3 Ethernet controller: Device 8088:0107 (rev 01)Subsystem: Device 8088:0402Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr+ Stepping- SERR+ FastB2B- DisINTx+Status: Cap+ 66MHz- UDF- FastB2B- ParErr- DEVSEL=fast >TAbort- <TAbort- <MAbort- >SERR- <PERR- INTx-Latency: 0, Cache Line Size: 64 bytesInterrupt: pin D routed to IRQ 0Region 0: Memory at f9360000 (64-bit, non-prefetchable) [size=128K]Region 4: Memory at f938c000 (64-bit, non-prefetchable) [size=16K][virtual] Expansion ROM at f9280000 [disabled] [size=512K]Capabilities: [40] Power Management version 3Flags: PMEClk- DSI- D1- D2- AuxCurrent=375mA PME(D0+,D1-,D2-,D3hot+,D3cold-)Status: D0 NoSoftRst- PME-Enable- DSel=0 DScale=0 PME-Capabilities: [50] MSI: Enable- Count=1/1 Maskable+ 64bit+Address: 0000000000000000  Data: 0000Masking: 00000000  Pending: 00000000Capabilities: [70] Express (v2) Endpoint, MSI 00DevCap: MaxPayload 128 bytes, PhantFunc 0, Latency L0s unlimited, L1 unlimitedExtTag- AttnBtn- AttnInd- PwrInd- RBE+ FLReset+ SlotPowerLimit 0.000WDevCtl: Report errors: Correctable- Non-Fatal- Fatal- Unsupported-RlxdOrd+ ExtTag- PhantFunc- AuxPwr- NoSnoop+ FLReset-MaxPayload 128 bytes, MaxReadReq 256 bytesDevSta: CorrErr- UncorrErr- FatalErr- UnsuppReq- AuxPwr- TransPend-LnkCap: Port #0, Speed 5GT/s, Width x4, ASPM L0s L1, Exit Latency L0s <1us, L1 <2usClockPM- Surprise- LLActRep- BwNot- ASPMOptComp+LnkCtl: ASPM Disabled; RCB 64 bytes Disabled- CommClk-ExtSynch- ClockPM- AutWidDis- BWInt- AutBWInt-LnkSta: Speed 5GT/s, Width x4, TrErr- Train- SlotClk+ DLActive- BWMgmt- ABWMgmt-DevCap2: Completion Timeout: Not Supported, TimeoutDis+, LTR-, OBFF Not SupportedDevCtl2: Completion Timeout: 50us to 50ms, TimeoutDis-, LTR-, OBFF DisabledLnkSta2: Current De-emphasis Level: -6dB, EqualizationComplete-, EqualizationPhase1-EqualizationPhase2-, EqualizationPhase3-, LinkEqualizationRequest-Capabilities: [b0] MSI-X: Enable+ Count=9 Masked-Vector table: BAR=4 offset=00000000PBA: BAR=4 offset=00002000Capabilities: [d0] Vital Product DataProduct Name: Shan Xun GbE Family ControllerRead-only fields:[PN] Part number: 1860[RV] Reserved: checksum good, 4 byte(s) reservedEndCapabilities: [100 v2] Advanced Error ReportingUESta:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UEMsk:  DLP- SDES- TLP- FCP- CmpltTO- CmpltAbrt- UnxCmplt- RxOF- MalfTLP- ECRC- UnsupReq- ACSViol-UESvrt: DLP+ SDES+ TLP- FCP+ CmpltTO- CmpltAbrt- UnxCmplt- RxOF+ MalfTLP+ ECRC- UnsupReq- ACSViol-CESta:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+CEMsk:  RxErr- BadTLP- BadDLLP- Rollover- Timeout- NonFatalErr+AERCap: First Error Pointer: 00, GenCap+ CGenEn- ChkCap+ ChkEn-Capabilities: [148 v1] Alternative Routing-ID Interpretation (ARI)ARICap: MFVC- ACS-, Next Function: 0ARICtl: MFVC- ACS-, Function Group: 0Capabilities: [158 v1] Single Root I/O Virtualization (SR-IOV)IOVCap: Migration-, Interrupt Message Number: 000IOVCtl: Enable- Migration- Interrupt- MSE- ARIHierarchy-IOVSta: Migration-Initial VFs: 8, Total VFs: 8, Number of VFs: 0, Function Dependency Link: 03VF offset: 256, stride: 4, Device ID: 0117Supported Page Size: 00000553, System Page Size: 00000001Region 0: Memory at 0000000000000000 (64-bit, non-prefetchable)Region 4: Memory at 0000000000000000 (64-bit, non-prefetchable)VF Migration: offset: 00000000, BIR: 0Capabilities: [198 v1] Transaction Processing HintsDevice specific mode supportedNo steering table availableCapabilities: [224 v1] Vendor Specific Information: ID=0001 Rev=1 Len=038 <?>Kernel driver in use: ngbe

使用lspci -xxx 命令检查底层寄存器信息

root@arm:~/ngbe# lspci -xxx
00:00.0 PCI bridge: Synopsys, Inc. Device abcd (rev 01)
00: c3 16 cd ab 00 00 10 00 01 00 04 06 00 00 01 00
10: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
20: 00 00 00 00 01 00 01 00 00 00 00 00 00 00 00 00
30: 00 00 00 00 40 00 00 00 00 00 00 00 ff 01 00 00
40: 01 50 c3 5b 08 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 8a 03 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 d0 42 00 21 80 00 00 10 21 0b 00 42 48 53 00
80: 00 00 42 30 7f 00 06 00 c0 03 40 00 00 00 00 00
90: 00 00 00 00 10 04 00 80 00 00 00 00 06 00 00 80
a0: 02 00 00 40 00 00 00 00 00 00 00 00 00 00 00 00
b0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.0 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 20 01 00 00 02 10 00 80 00
10: 04 00 30 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 00 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 01 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 00 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 02 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.1 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 32 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 40 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 02 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 00 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.2 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 34 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 80 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 03 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 00 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 0001:00.3 Ethernet controller: Device 8088:0107 (rev 01)
00: 88 80 07 01 46 05 10 00 01 00 00 02 10 00 80 00
10: 04 00 36 f9 00 00 00 00 00 00 00 00 00 00 00 00
20: 04 c0 38 f9 00 00 00 00 00 00 00 00 88 80 02 04
30: 00 00 00 00 40 00 00 00 00 00 00 00 00 04 00 00
40: 01 50 c3 49 00 00 00 00 00 00 00 00 00 00 00 00
50: 05 70 80 01 00 00 00 00 00 00 00 00 00 00 00 00
60: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
70: 10 b0 02 00 c0 8f 00 10 10 18 00 00 42 cc 40 00
80: 00 00 42 10 00 00 00 00 00 00 00 00 00 00 00 00
90: 00 00 00 00 10 10 00 00 00 00 00 00 06 00 00 00
a0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
b0: 11 d0 08 80 04 00 00 00 04 20 00 00 00 00 00 00
c0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
d0: 03 00 30 80 00 00 00 78 00 00 00 00 00 00 00 00
e0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
f0: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

PCIE总线理解笔记相关推荐

  1. PCIE学习笔记(二)PCIe总线的拓扑结构,协议层,数据传输流程

    目录 PCIe总线的拓扑结构 PCI Express协议分层 物理层(Physical Layer) 数据链路层(Link Layer) 处理层(Transaction Layer) 软件层(Soft ...

  2. PCIE总线驱动学习笔记1

    创建PCIE根总线 pci_scan_root_bus_msi:创建根总线,ops是root bus 的函数操作集合,sysdata是pcie控制器的管理的数据结构指针,resource指针是拥有的资 ...

  3. PCIE总线-PCI、PCIE关系及信号定义

    PCI(Peripheral Component Interconnect)总线规范在上世纪九十年代由Intel提出.在处理器体系结构中,PCI总线属于局部总线(Local Bus).局部总线作为系统 ...

  4. PCIe总线基本概念

    PCIe总线的提出可以算是代表着传统并行总线向高速串行总线发展的时代的到来.实际上,不仅是PCI总线到PCIe总线,高速串行总线取代传统并行总线是一个大的趋势.如ATA到SATA,SCSI到USB等- ...

  5. 7、PCIE总线-PCI、PCIE关系及信号定义

    PCI(Peripheral Component Interconnect)总线规范在上世纪九十年代由Intel提出.在处理器体系结构中,PCI总线属于局部总线(Local Bus).局部总线作为系统 ...

  6. 硬盘接口 PCI-E接口 PCI-E总线 MiniPCIe接口

    固态硬盘的出现,彻底打破了机械硬盘多年来在电脑硬件领域的统治地位.相比于机械硬盘,固态硬盘更高的传输性能,让普通用户和发烧玩家的使用体验均得到了成倍的提升. 在这场存储的革命中,为了实现更快的速度.更 ...

  7. PCIE总线硬件设计篇

    PCIe总线概述 随着现代处理器技术的发展,在互连领域中,使用高速差分总线替代并行总线是大势所趋.与单端并行信号相比,高速差分信号可以使用更高的时钟频率,从而使用更少的信号线,完成之前需要许多单端并行 ...

  8. PCIE——第 8 章——PCIe 总线的链路训练与电源管理

    摘要:PCIE--第 8 章--PCIe 总线的链路训练与电源管理 目录 第 8 章 PCIe 总线的链路训练与电源管理 8. 1 PCIe 链路训练简介 8. 1. 1 链路训练使用的字符序列 8. ...

  9. pcie总线基础知识

    PCIe总线概述 随着现代处理器技术的发展,在互连领域中,使用高速差分总线替代并行总线是大势所趋.与单端并行信号相比,高速差分信号可以使用更高的时钟频率,从而使用更少的信号线,完成之前需要许多单端并行 ...

最新文章

  1. kickstart自动化安装
  2. VJ 1033 整数分解(版本2)
  3. 房产企业数字化转型如何快速落地?
  4. 微信小程序长按图片,实现保存、转发、识别图中二维码
  5. Eclipse+pydev+手动安装
  6. 企业即时通讯规模将达7亿
  7. LeetCode之Find Eventual Safe States(Kotlin)
  8. [转] 面向对象编程 - 获取对象信息
  9. java中获取链表的第一个节点,两个链表中的第一个公共节点(java)
  10. mysql 直接删表空间文件_oracle删除(释放)数据文件/表空间流程
  11. PHP+HTML简单实现BBS论坛与回帖
  12. Java基础知识面试题(2021年最新版,持续更新...)整理
  13. 在Azure上搭建SQL云数据库
  14. 漫画 | 揭密微信诞生记之民间传说
  15. JavaWeb-16 (E家园项目案例1)
  16. 人形机器人视觉处理——走迷宫
  17. 荣之学:跨境电商和淘宝哪个好?
  18. Redis 自动过期 使用 EXPIRE、PEXPIRE:设置生存时间
  19. macbook pro window蓝牙驱动 下载
  20. C. Keshi Is Throwing a Party(二分答案),最/佳牛围栏,average。

热门文章

  1. 基于simulink使用混合波束成形对射频毫米波发射器进行建模(附源码)
  2. 唐诗三百首-免费无广告版-iPhone,iPad通用
  3. 点击图片碎裂碎屏破碎爆炸效果
  4. 操作系统 _CDIO之路
  5. 辅助工具_米家全景相机如何拍全景图
  6. IOS:Warning: Attempt to dismiss from view controller xxxxxxxxxController: 0x13f6840e0
  7. bash下变量PS1的完整理解
  8. 如何从英特尔® INDE测试版过渡到英特尔® INDE 2015版?
  9. 创建Maven项目报错
  10. 嘉云数据电话面试详解