Objective

To understand PCI Express(PCIe) from the perspective of software engigneering.

Concepts

PCIe

PCIe, or peripheral component interconnect express, is an interface standard for connecting high-speed I/O components such as GPUs, TPUs, RAID/HBA cards, Ethernet NICs , SSD add-on cards or WiFi cards.

PCIe is point to point serial connection.

Each PCIe lane utilizes two SerDes(Serializer/Deserializer)pairs, one for transmitting and one for receiving data, resulting in a total of four physical wires or signal traces.

PCIes slots come in different physical configurations: x1, x4, x8 and x16. The number after x tells how many lanes that the PCIe slot has.

PCIe link is point to point communication channel between two PCIe devices.

PCIe is a packet based protocol.

PCIe versions and transfer rates

The following is half Duplex speed table from Gen1 to Gen6.

SPECX1X2X4X8X16
PCIe 1.x (2.5 GT/s)250 MB/s500 MB/s1 GB/s2 GB/s4 GB/s
PCIe 2.x (5.0 GT/s)500 MB/s1 GB/s2 GB/s4 GB/s8 GB/s
PCIe 3.x (8.0 GT/s)984.6 MB/s1.97 GB/s3.94 GB/s7.88 GB/s15.75 GB/s
PCIe 4.x (16 GT/s)1.97 GB/s3.94 GB/s7.88 GB/s15.75 GB/s31.51 GB/s
PCIe 5.x (32 GT/s)3.94 GB/s7.88 GB/s15.75 GB/s31.51 GB/s63.02 GB/s
PCIe 6.x (64 GT/s)7.88 GB/s15.75 GB/s31.51 GB/s63.02 GB/s126.03 GB/s

PCIe 1.x and PCIe 2.x utilize 8b/10b encoding; With PCIe 3, the coding was changed to 128b/130b encoding, which increased the effective data rate from around 80% to more than 98%.

GT/s standas for Gigatransfers per second. Here is how to convert GT/s to Gbit/s, Gbps or Gigabits per second.

One PCI 1.x lane can transfer 2.5GT/s * 8/10=2.0Gbps or 250MB/s. X16 means 4GB/s.

One PCI 5.x lane transfer 32GT/s * 128/132= 31.5Gbps or 3.938GB/s. X16 means 63.01GB/s.

Keep in mind, the above speed is half duplex. In networking, people always use half duplex speed; while in PCIe world, people intends to use full duplex, which is cofusing.

This article uses half duplex speed for the sake of simplicity.

Reference