Barramento PCI: PDF Generated At: Mon, 29 Apr 2013 11:40:35 UTC
Barramento PCI: PDF Generated At: Mon, 29 Apr 2013 11:40:35 UTC
PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information.
PDF generated at: Mon, 29 Apr 2013 11:40:35 UTC
Contents
Articles
Conventional PCI 1
PCI-X 25
PCI Express 29
References
Article Sources and Contributors 46
Image Sources, Licenses and Contributors 47
Article Licenses
License 48
Conventional PCI 1
Conventional PCI
Conventional PCI
PCI Local Bus
Three 5-volt 32-bit PCI expansion slots on a motherboard (PC bracket on left side)
Year created July 1993
Created by Intel
Width in bits 32 or 64
Style Parallel
Conventional PCI (PCI is an initialism formed from Peripheral Component Interconnect,[1] part of the PCI
Local Bus standard and often shortened to just PCI) is a local computer bus for attaching hardware devices in a
computer. The PCI bus supports the functions found on a processor bus, but in a standardized format that is
independent of any particular processor. Devices connected to the bus appear to the processor to be connected
directly to the processor bus, and are assigned addresses in the processor's address space.[2]
Attached devices can take either the form of an integrated circuit fitted onto the motherboard itself, called a planar
device in the PCI specification, or an expansion card that fits into a slot. The PCI Local Bus was first implemented in
IBM PC compatibles, where it displaced the combination of ISA plus one VESA Local Bus as the bus configuration.
It has subsequently been adopted for other computer types. PCI and PCI-X are being replaced by PCI Express,[citation
needed]
but as of 2011[3], most motherboards are still made with one or more PCI slots, which are sufficient for many
uses.
The PCI specification covers the physical size of the bus (including the size and spacing of the circuit board edge
electrical contacts), electrical characteristics, bus timing, and protocols. The specification can be purchased from the
PCI Special Interest Group (PCI-SIG).
Typical PCI cards used in PCs include: network cards, sound cards, modems, extra ports such as USB or serial, TV
tuner cards and disk controllers. PCI video cards replaced ISA and VESA cards, until growing bandwidth
requirements outgrew the capabilities of PCI; the preferred interface for video cards became AGP, and then PCI
Express. PCI video cards remain available for use with old PCs without AGP or PCI Express slots.[4]
Many devices previously provided on PCI expansion cards are now commonly integrated onto motherboards or
available in universal serial bus and PCI Express versions.
Conventional PCI 2
History
Work on PCI began at Intel's Architecture Development Lab circa
1990.
A team of Intel engineers (composed primarily of ADL engineers)
defined the architecture and developed a proof of concept chipset
and platform (Saturn) partnering with teams in the company's
desktop PC systems and core logic product organizations. The
original PCI architecture team included, among others, Dave
Carson, Norm Rasmussen, Brad Hosler, Ed Solari, Bruce Young,
Gary Solomon, Ali Oztaskin, Tom Sakoda, Rich Haslam, Jeff
Rabe, and Steve Fischer.
PCI (Peripheral Component Interconnect) was immediately put to A typical 32-bit, 5 V-only PCI card, in this case, a
SCSI adapter from Adaptec.
use in servers, replacing MCA and EISA as the server expansion
bus of choice. In mainstream PCs, PCI was slower to replace
VESA Local Bus (VLB), and did not gain significant market
penetration until late 1994 in second-generation Pentium PCs. By
1996, VLB was all but extinct, and manufacturers had adopted
PCI even for 486 computers.[5] EISA continued to be used
alongside PCI through 2000. Apple Computer adopted PCI for
professional Power Macintosh computers (replacing NuBus) in
mid-1995, and the consumer Performa product line (replacing LC
PDS) in mid-1996.
PCI History[6]
Spec Year [7]
Change Summary
PCI 2.3 2002 Incorporated ECNs, errata, and deleted 5 volt only keyed add-in cards
PCI 3.0 2002 Removed support for the 5.0 volt keyed system board connector
Conventional PCI 3
Auto configuration
PCI provides separate memory and I/O port address spaces for the x86 processor family, 64 and 32 bits, respectively.
Addresses in these address spaces are assigned by software. A third address space, called the PCI Configuration
Space, which uses a fixed addressing scheme, allows software to determine the amount of memory and I/O address
space needed by each device. Each device can request up to six areas of memory space or I/O port space via its
configuration space registers.
In a typical system, the firmware (or operating system) queries all PCI buses at startup time (via PCI Configuration
Space) to find out what devices are present and what system resources (memory space, I/O space, interrupt lines,
etc.) each needs. It then allocates the resources and tells each device what its allocation is.
The PCI configuration space also contains a small amount of device type information, which helps an operating
system choose device drivers for it, or at least to have a dialogue with a user about the system configuration.
Devices may have an on-board ROM containing executable code for x86 or PA-RISC processors, an Open Firmware
driver, or an EFI driver. These are typically necessary for devices used during system startup, before device drivers
are loaded by the operating system.
In addition, there are PCI Latency Timers that are a mechanism for PCI Bus-Mastering devices to share the PCI
bus fairly. "Fair" in this case means that devices will not use such a large portion of the available PCI bus bandwidth
that other devices are not able to get needed work done. Note, this does not apply to PCI Express.
How this works is that each PCI device that can operate in bus-master mode is required to implement a timer,
called the Latency Timer, that limits the time that device can hold the PCI bus. The timer starts when the
device gains bus ownership, and counts down at the rate of the PCI clock. When the counter reaches zero, the
device is required to release the bus. If no other devices are waiting for bus ownership, it may simply grab the
bus again and transfer more data.[8]
Interrupts
Devices are required to follow a protocol so that the interrupt lines can be shared. The PCI bus includes four
interrupt lines, all of which are available to each device. However, they are not wired in parallel as are the other PCI
bus lines. The positions of the interrupt lines rotate between slots, so what appears to one device as the INTA# line is
INTB# to the next and INTC# to the one after that. Single-function devices use their INTA# for interrupt signaling,
so the device load is spread fairly evenly across the four available interrupt lines. This alleviates a common problem
with sharing interrupts.
PCI bridges (between two PCI buses) map the four interrupt traces on each of their sides in varying ways. Some
bridges use a fixed mapping, and in others it is configurable. In the general case, software cannot determine which
interrupt line a device's INTA# pin is connected to across a bridge. The mapping of PCI interrupt lines onto system
interrupt lines, through the PCI host bridge, is similarly implementation-dependent. The result is that it can be
impossible to determine how a PCI device's interrupts will appear to software. Platform-specific BIOS code is meant
to know this, and set a field in each device's configuration space indicating which IRQ it is connected to, but this
process is unreliable.
PCI interrupt lines are level-triggered. This was chosen over edge-triggering in order to gain an advantage when
servicing a shared interrupt line, and for robustness: edge triggered interrupts are easy to miss.
Later revisions of the PCI specification add support for message-signaled interrupts. In this system, a device signals
its need for service by performing a memory write, rather than by asserting a dedicated line. This alleviates the
problem of scarcity of interrupt lines. Even if interrupt vectors are still shared, it does not suffer the sharing problems
of level-triggered interrupts. It also resolves the routing problem, because the memory write is not unpredictably
modified between device and host. Finally, because the message signaling is in-band, it resolves some
synchronization problems that can occur with posted writes and out-of-band interrupt lines.
Conventional PCI 4
PCI Express does not have physical interrupt lines at all. It uses message-signaled interrupts exclusively.
Connector pinout
The PCI connector is defined as having 62 contacts on each side of A PCI-X Gigabit Ethernet expansion card with both
the edge connector, but two or four of them are replaced by key 5 V and 3.3 V support notches.
2 TCK +12 V
3 Ground TMS
4 TDO TDI
5 +5 V +5 V
7 INTB# INTC#
8 INTD# +5 V
13 Ground Ground
21 AD[29] +3.3 V
22 Ground AD[28]
23 AD[27] AD[26]
24 AD[25] Ground
25 +3.3 V AD[24]
26 C/BE[3]# IDSEL
27 AD[23] +3.3 V
28 Ground AD[22]
29 AD[21] AD[20]
30 AD[19] Ground
31 +3.3 V AD[18]
32 AD[17] AD[16]
33 C/BE[2]# +3.3 V
40 PERR# SMBCLK SDONE Parity error; SMBus clock or Snoop done (obsolete)
45 AD[14] +3.3 V
46 Ground AD[13]
47 AD[12] AD[11]
48 AD[10] Ground
51 Ground Ground
53 AD[07] +3.3 V
54 +3.3 V AD[06]
55 AD[05] AD[04]
56 AD[03] Ground
57 Ground AD[02]
58 AD[01] AD[00]
59 IOPWR IOPWR
61 +5 V +5 V
62 +5 V +5 V
64-bit PCI extends this by an additional 32 contacts on each side which provide AD[63:32], C/BE[7:4]#, the PAR64
parity signal, and a number of power and ground pins.
Legend
Ground pin Zero volt reference
Most lines are connected to each slot in parallel. The exceptions are:
Conventional PCI 7
• Each slot has its own REQ# output to, and GNT# input from the motherboard arbiter.
• Each slot has its own IDSEL line, usually connected to a specific AD line.
• TDO is daisy-chained to the following slot's TDI. Cards without JTAG support must connect TDI to TDO so as
not to break the chain.
• PRSNT1# and PRSNT2# for each slot have their own pull-up resistors on the motherboard. The motherboard may
(but does not have to) sense these pins to determine the presence of PCI cards and their power requirements.
• REQ64# and ACK64# are individually pulled up on 32-bit only slots.
• The interrupt lines INTA# through INTD# are connected to all slots in different orders. (INTA# on one slot is
INTB# on the next and INTC# on the one after that.)
Notes:
• IOPWR is +3.3 V or +5 V, depending on the backplane. The slots also have a ridge in one of two places which
prevents insertion of cards that do not have the corresponding key notch, indicating support for that voltage
standard. Universal cards have both key notches and use IOPWR to determine their I/O signal levels.
• The PCI SIG strongly encourages 3.3 V PCI signaling,[7] requiring support for it since standard revision 2.3,[9]
but most PC motherboards use the 5 V variant. Thus, while many currently available PCI cards support both, and
have two key notches to indicate that, there are still a large number of 5 V-only cards on the market.
• The M66EN pin is an additional ground on 5 V PCI buses found in most PC motherboards. Cards and
motherboards that do not support 66 MHz operation also ground this pin. If all participants support 66 MHz
operation, a pull-up resistor on the motherboard raises this signal high and 66 MHz operation is enabled.
• At least one of PRSNT1# and PRSNT2# must be grounded by the card. The combination chosen indicates the
total power requirements of the card (25 W, 15 W, or 7.5 W).
• SBO# and SDONE are signals from a cache controller to the current target. They are not initiator outputs, but are
colored that way because they are target inputs.
• PME# (19A) - Power management event (optional) which is supported in PCI version 2.2 and higher. It's a 3.3 V,
open drain, active low signal.[11] PCI cards may use this signal to send and receive PME via the PCI socket
directly, which eliminates the need for a special Wake-on-LAN cable.[12]
Full-size card
The original "full-size" PCI card is specified as a height of 107 mm (4.2 inches) and a depth of 312 mm
(12.283 inches). The height includes the edge card connector. However, most modern PCI cards are half-length or
smaller (see below) and many modern PCs cannot fit a full-size card.
Card backplate
In addition to these dimensions the physical size and location of a card's backplate are also standardized. The
backplate is the part that fastens to the card cage to stabilize the card and also contains external connectors, so it
usually attaches in a window so it is accessible from outside the computer case. The backplate is typically fixed to
the cage by either a 6-32 or M3 screw, or with a separate hold-down bracket.
The card itself can be a smaller size, but the backplate must still be full-size and properly located so that the card fits
in any standard PCI slot.
Mini PCI
Mini PCI was added to PCI version 2.2 for use in laptops; it uses
a 32-bit, 33 MHz bus with powered connections (3.3 V only; 5 V
is limited to 100 mA) and support for bus mastering and DMA.
The standard size for Mini PCI cards is approximately a quarter of
their full-sized counterparts. As there is no access to the card from
outside the case, unlike desktop PCI cards with brackets carrying
connectors, there are limitations on the functions they may
perform.
Mini PCI Wi-Fi card Type IIIB
Conventional PCI 9
Many Mini PCI devices were developed such as Wi-Fi, Fast Ethernet,
Bluetooth, modems (often Winmodems), sound cards, cryptographic
accelerators, SCSI, IDE–ATA, SATA controllers and combination
cards. Mini PCI cards can be used with regular PCI-equipped
hardware, using Mini PCI-to-PCI converters. Mini PCI has been
superseded by the much narrower PCI Express Mini Card.
IIIA No 124-Pin Card Edge 2.4 × 59.6 × 50.95 mm Larger Y dimension (50.95 mm)
IIIB No 124-Pin Card Edge 2.4 × 59.6 × 44.6 mm Smaller Y dimension (44.6 mm)
the data phases at any point. (One common example is a low-performance PCI device that does not support burst
transactions, and always halts a transaction after the first data phase.)
Any PCI device may initiate a transaction. First, it must request permission from a PCI bus arbiter on the
motherboard. The arbiter grants permission to one of the requesting devices. The initiator begins the address phase
by broadcasting a 32-bit address plus a 4-bit command code, then waits for a target to respond. All other devices
examine this address and one of them responds a few cycles later.
64-bit addressing is done using a two-stage address phase. The initiator broadcasts the low 32 address bits,
accompanied by a special "dual address cycle" command code. Devices which do not support 64-bit addressing can
simply not respond to that command code. The next cycle, the initiator transmits the high 32 address bits, plus the
real command code. The transaction operates identically from that point on. To ensure compatibility with 32-bit PCI
devices, it is forbidden to use a dual address cycle if not necessary, i.e. if the high-order address bits are all zero.
While the PCI bus transfers 32 bits per data phase, the initiator transmits 4 active-low byte enable signals indicating
which 8-bit bytes are to be considered significant. In particular, a write must affect only the enabled bytes in the
target PCI device. They are of little importance for memory reads, but I/O reads might have side effects. The PCI
standard explicitly allows a data phase with no bytes enabled, which must behave as a no-op.
there is no Intel 8259 style interrupt controller on the PCI bus, this cycle need never be used.
0001
Special Cycle
This cycle is a special broadcast write of system events that PCI card may be interested in. The address field of
a special cycle is ignored, but it is followed by a data phase containing a payload message. The currently
defined messages announce that the processor is stopping for some reason (e.g. to save power). No device ever
responds to this cycle; it is always terminated with a master abort after leaving the data on the bus for at least 4
cycles.
0010
I/O Read
This performs a read from I/O space. All 32 bits of the read address are provided, so that a device can (for
compatibility reasons) implement less than 4 bytes worth of I/O registers. If the byte enables request data not
within the address range supported by the PCI device (e.g. a 4-byte read from a device which only supports 2
bytes of I/O address space), it must be terminated with a target abort. Multiple data cycles are permitted, using
linear (simple incrementing) burst ordering.
The PCI standard is discouraging the use of I/O space in new devices, preferring that as much as possible be
done through main memory mapping.
0011
I/O Write
This performs a write to I/O space.
010x
Reserved
A PCI device must not respond to an address cycle with these command codes.
0110
Memory Read
This performs a read cycle from memory space. Because the smallest memory space a PCI device is permitted
to implement is 16 bits, the two least significant bits of the address are not needed; equivalent information will
arrive in the form of byte select signals. They instead specify the order in which burst data must be returned. If
a device does not support the requested order, it must provide the first word and then disconnect.
If a memory space is marked as "prefetchable", then the target device must ignore the byte select signals on a
memory read and always return 32 valid bits.
0111
Memory Write
This operates similarly to a memory read. The byte select signals are more important in a write, as unselected
bytes must not be written to memory.
Generally, PCI writes are faster than PCI reads, because a device can buffer the incoming write data and
release the bus faster. For a read, it must delay the data phase until the data has been fetched.
100x
Reserved
A PCI device must not respond to an address cycle with these command codes.
1010
Configuration Read
Conventional PCI 12
This is similar to an I/O read, but reads from PCI configuration space. A device must respond only if the low
11 bits of the address specify a function and register that it implements, and if the special IDSEL signal is
asserted. It must ignore the high 21 bits. Burst reads (using linear incrementing) are permitted in PCI
configuration space.
Unlike I/O space, standard PCI configuration registers are defined so that reads never disturb the state of the
device. It is possible for a device to have configuration space registers beyond the standard 64 bytes which
have read side effects, but this is rare.[20]
Configuration space accesses often have a few cycles of delay in order to allow the IDSEL lines to stabilize,
which makes them slower than other forms of access. Also, a configuration space access requires a multi-step
operation rather than a single machine instruction. Thus, it is best to avoid them during routine operation of a
PCI device.
1011
Configuration Write
This operates analogously to a configuration read.
1100
Memory Read Multiple
This command is identical to a generic memory read, but includes the hint that a long read burst will continue
beyond the end of the current cache line, and the target should internally prefetch a large amount of data. A
target is always permitted to consider this a synonym for a generic memory read.
1101
Dual Address Cycle
When accessing a memory address that requires more than 32 bits to represent, the address phase begins with
this command and the low 32 bits of the address, followed by a second cycle with the actual command and the
high 32 bits of the address. PCI targets that do not support 64-bit addressing can simply treat this as another
reserved command code and not respond to it. This command code can only be used with a non-zero
high-order address word; it is forbidden to use this cycle if not necessary.
1110
Memory Read Line
This command is identical to a generic memory read, but includes the hint that the read will continue to the
end of the cache line. A target is always permitted to consider this a synonym for a generic memory read.
1111
Memory Write and Invalidate
This command is identical to a generic memory write, but comes with the guarantee that one or more whole
cache lines will be written, with all byte selects enabled. This is an optimization for write-back caches
snooping the bus. Normally, a write-back cache holding dirty data must interrupt the write operation long
enough write its own dirty data first. If the write is performed using this command, the data to be written back
is guaranteed to be irrelevant, and can simply be invalidated in the write-back cache.
This optimization only affects the snooping cache, and makes no difference to the target, which may treat this
as a synonym for the memory write command.
Conventional PCI 13
Delayed transactions
Devices unable to meet those timing restrictions must use a combination of posted writes (for memory writes) and
delayed transactions (for other writes and all reads). In a delayed transaction, the target records the transaction
(including the write data) internally and aborts (asserts STOP# rather than TRDY#) the first data phase. The initiator
must retry exactly the same transaction later. In the interim, the target internally performs the transaction, and waits
for the retried transaction. When the retried transaction is seen, the buffered result is delivered.
A device may be the target of other transactions while completing one delayed transaction; it must remember the
transaction type, address, byte selects and (if a write) data value, and only complete the correct transaction.
If the target has a limit on the number of delayed transactions that it can record internally (simple targets may impose
a limit of 1), it will force those transactions to retry without recording them. They will be dealt with when the current
delayed transaction is completed. If two initiators attempt the same transaction, a delayed transaction begun by one
may have its result delivered to the other; this is harmless.
A target abandons a delayed transaction when a retry succeeds in delivering the buffered result, the bus is reset, or
when 215=32768 clock cycles (approximately 1 ms) elapse without seeing a retry. The latter should never happen in
normal operation, but it prevents a deadlock of the whole bus if one initiator is reset or malfunctions.
Posted writes
Generally, when a bus bridge sees a transaction on one bus that must be forwarded to the other, the original
transaction must wait until the forwarded transaction completes before a result is ready. One notable exception
occurs in the case of memory writes. Here, the bridge may record the write data internally (if it has room) and signal
completion of the write before the forwarded write has completed. Or, indeed, before it has begun. Such "sent but not
yet arrived" writes are referred to as "posted writes", by analogy with a postal mail message. Although they offer
great opportunity for performance gains, the rules governing what is permissible are somewhat intricate.[21]
Conventional PCI 14
Signal timing
All PCI bus signals are sampled on the rising edge of the clock. Signals nominally change on the falling edge of the
clock, giving each PCI device approximately one half a clock cycle to decide how to respond to the signals it
observed on the rising edge, and one half a clock cycle to transmit its response to the other device.
The PCI bus requires that every time the device driving a PCI bus signal changes, one turnaround cycle must elapse
between the time the one device stops driving the signal and the other device starts. Without this, there might be a
period when both devices were driving the signal, which would interfere with bus operation.
The combination of this turnaround cycle and the requirement to drive a control line high for one cycle before
ceasing to drive it means that each of the main control lines must be high for a minimum of two cycles when
changing owners. The PCI bus protocol is designed so this is rarely a limitation; only in a few special cases (notably
fast back-to-back transactions) is it necessary to insert additional delay to meet this requirement.
Conventional PCI 15
Arbitration
Any device on a PCI bus that is capable of acting as a bus master may initiate a transaction with any other device. To
ensure that only one transaction is initiated at a time, each master must first wait for a bus grant signal, GNT#, from
an arbiter located on the motherboard. Each device has a separate request line REQ# that requests the bus, but the
arbiter may "park" the bus grant signal at any device if there are no current requests.
The arbiter may remove GNT# at any time. A device which loses GNT# may complete its current transaction, but
may not start one (by asserting FRAME#) unless it observes GNT# asserted the cycle before it begins.
The arbiter may also provide GNT# at any time, including during another master's transaction. During a transaction,
either FRAME# or IRDY# or both are asserted; when both are deasserted, the bus is idle. A device may initiate a
transaction at any time that GNT# is asserted and the bus is idle.
Address phase
A PCI bus transaction begins with an address phase. The initiator, seeing that it has GNT# and the bus is idle, drives
the target address onto the AD[31:0] lines, the associated command (e.g. memory read, or I/O write) on the
C/BE[3:0]# lines, and pulls FRAME# low.
Each other device examines the address and command and decides whether to respond as the target by asserting
DEVSEL#. A device must respond by asserting DEVSEL# within 3 cycles. Devices which promise to respond
within 1 or 2 cycles are said to have "fast DEVSEL" or "medium DEVSEL", respectively. (Actually, the time to
respond is 2.5 cycles, since PCI devices must transmit all signals half a cycle early so that they can be received three
cycles later.)
Note that a device must latch the address on the first cycle; the initiator is required to remove the address and
command from the bus on the following cycle, even before receiving a DEVSEL# response. The additional time is
available only for interpreting the address and command after it is captured.
On the fifth cycle of the address phase (or earlier if all other devices have medium DEVSEL or faster), a catch-all
"subtractive decoding" is allowed for some address ranges. This is commonly used by an ISA bus bridge for
addresses within its range (24 bits for memory and 16 bits for I/O).
On the sixth cycle, if there has been no response, the initiator may abort the transaction by deasserting FRAME#.
This is known as master abort termination and it is customary for PCI bus bridges to return all-ones data
(0xFFFFFFFF) in this case. PCI devices therefore are generally designed to avoid using the all-ones value in
important status registers, so that such an error can be easily detected by software.
_ _ _ _ _ _ _
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/
0 1 2 3 4 5
On the rising edge of clock 0, the initiator observes FRAME# and IRDY# both high, and GNT# low, so it drives the
address, command, and asserts FRAME# in time for the rising edge of clock 1. Targets latch the address and begin
decoding it. They may respond with DEVSEL# in time for clock 2 (fast DEVSEL), 3 (medium) or 4 (slow).
Subtractive decode devices, seeing no other response by clock 4, may respond on clock 5. If the master does not see
a response by clock 5, it will terminate the transaction and remove FRAME# on clock 6.
TRDY# and STOP# are deasserted (high) during the address phase. The initiator may assert IRDY# as soon as it is
ready to transfer data, which could theoretically be as soon as clock 2.
Dual-cycle address
To allow 64-bit addressing, a master will present the address over two consecutive cycles. First, it sends the
low-order address bits with a special "dual-cycle address" command on the C/BE[3:0]#. On the following cycle, it
sends the high-order address bits and the actual command. Dual-address cycles are forbidden if the high-order
address bits are zero, so devices which do not support 64-bit addressing can simply not respond to dual cycle
commands.
_0_ 1_ 2_ 3_ 4_ 5_ 6_
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
___
GNT# \___/XXXXXXXXXXXXXXXXXXXXXXX
_______
FRAME# \_______________________
___ ___
AD[31:0] -------<___X___>--------------- (Low, then high bits)
___ ___ _______________
C/BE[3:0]# -------<___X___X_______________ (DAC, then actual command)
___________________________
DEVSEL# \___\___\___\___
Fast Med Slow
_ _ _ _ _ _ _ _
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
0 1 2 3 4 5 6
Configuration access
Addresses for PCI configuration space access are decoded specially. For these, the low-order address lines specify
the offset of the desired PCI configuration register, and the high-order address lines are ignored. Instead, an
additional address signal, the IDSEL input, must be high before a device may assert DEVSEL#. Each slot connects a
different high-order address line to the IDSEL pin, and is selected using one-hot encoding on the upper address lines.
Data phases
After the address phase (specifically, beginning with the cycle that DEVSEL# goes low) comes a burst of one or
more data phases. In all cases, the initiator drives active-low byte select signals on the C/BE[3:0]# lines, but the data
on the AD[31:0] may be driven by the initiator (in case of writes) or target (in case of reads).
During data phases, the C/BE[3:0]# lines are interpreted as active-low byte enables. In case of a write, the asserted
signals indicate which of the four bytes on the AD bus are to be written to the addressed location. In the case of a
Conventional PCI 17
read, they indicate which bytes the initiator is interested in. For reads, it is always legal to ignore the byte enable
signals and simply return all 32 bits; cacheable memory resources are required to always return 32 valid bits. The
byte enables are mainly useful for I/O space accesses where reads have side effects.
A data phase with all four C/BE# lines deasserted is explicitly permitted by the PCI standard, and must have no
effect on the target (other than to advance the address in the burst access in progress).
The data phase continues until both parties are ready to complete the transfer and continue to the next data phase.
The initiator asserts IRDY# (initiator ready) when it no longer needs to wait, while the target asserts TRDY# (target
ready). Whichever side is providing the data must drive it on the AD bus before asserting its ready signal.
Once one of the participants asserts its ready signal, it may not become un-ready or otherwise alter its control signals
until the end of the data phase. The data recipient must latch the AD bus each cycle until it sees both IRDY# and
TRDY# asserted, which marks the end of the current data phase and indicates that the just-latched data is the word to
be transferred.
To maintain full burst speed, the data sender then has half a clock cycle after seeing both IRDY# and TRDY#
asserted to drive the next word onto the AD bus.
0_ 1_2_ 3_ 4_ 5_ 6_ 7_ 8_ 9_
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
___ _______ ___ ___ ___
AD[31:0] ---<___XXXXXXXXX_______XXXXX___X___X___ (If a write)
___ ___ _______ ___ ___
AD[31:0] ---<___>~~~<XXXXXXXX___X_______X___X___ (If a read)
___ _______________ _______ ___ ___
C/BE[3:0]# ---<___X_______________X_______X___X___ (Must always be valid)
_______________ | ___ | | |
IRDY# x \_______/ x \___________
___________________ | | | |
TRDY# x x \___________________
___________ | | | |
DEVSEL# \___________________________
___ | | | |
FRAME# \___________________________________
_ _ _ _ _ |_ _ |_ |_ |_
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/
0 1 2 3 4 5 6 7 8 9
This continues the address cycle illustrated above, assuming a single address cycle with medium DEVSEL, so the
target responds in time for clock 3. However, at that time, neither side is ready to transfer data. For clock 4, the
initiator is ready, but the target is not. On clock 5, both are ready, and a data transfer takes place (as indicated by the
vertical lines). For clock 6, the target is ready to transfer, but the initator is not. On clock 7, the initiator becomes
ready, and data is transferred. For clocks 8 and 9, both sides remain ready to transfer data, and data is transferred at
the maximum possible rate (32 bits per clock cycle).
In case of a read, clock 2 is reserved for turning around the AD bus, so the target is not permitted to drive data on the
bus even if it is capable of fast DEVSEL.
Conventional PCI 18
Ending transactions
Either side may request that a burst end after the current data phase. Simple PCI devices that do not support
multi-word bursts will always request this immediately. Even devices that do support bursts will have some limit on
the maximum length they can support, such as the end of their addressable memory.
If the initiator observes STOP# before asserting its own IRDY#, then it can end the burst by deasserting
FRAME# at the end of the current data phase.
Disconnect-B
If the initiator has already asserted IRDY# (without deasserting FRAME#) by the time it observes the target's
STOP#, it is already committed to an additional data phase. The target must wait through an additional data
phase, holding STOP# asserted without TRDY#, before the transaction can end.
If the initiator ends the burst at the same time as the target requests disconnection, there is no additional bus cycle.
Burst addressing
For memory space accesses, the words in a burst may be accessed in several orders. The unnecessary low-order
address bits AD[1:0] are used to convey the initiator's requested order. A target which does not support a particular
order must terminate the burst after the first word. Some of these orders depend on the cache line size, which is
configurable on all PCI devices.
If the starting offset within the cache line is zero, all of these modes reduce to the same order.
Cache line toggle and cache line wrap modes are two forms of critical-word-first cache line fetching. Toggle mode
XORs the supplied address with an incrementing counter. This is the native order for Intel 486 and Pentium
processors. It has the advantage that it is not necessary to know the cache line size to implement it.
PCI version 2.1 obsoleted toggle mode and added the cache line wrap mode,[22] where fetching proceeds linearly,
wrapping around at the end of each cache line. When one cache line is completely fetched, fetching jumps to the
starting offset in the next cache line.
Note that most PCI devices only support a limited range of typical cache line sizes; if the cache line size is
programmed to an unexpected value, they force single-word access.
PCI also supports burst access to I/O and configuration space, but only linear mode is supported. (This is rarely used,
and may be buggy in some devices; they may not support it, but not properly force single-word access either.)
Transaction examples
This is the highest-possible speed four-word write burst, terminated by the master:
0_ 1_2_ 3_ 4_ 5_ 6_ 7_
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \
___ ___ ___ ___ ___
AD[31:0] ---<___X___X___X___X___>---<___>
___ ___ ___ ___ ___
C/BE[3:0]# ---<___X___X___X___X___>---<___>
| | | | ___
IRDY# ^^^^^^^^\______________/ ^^^^^
| | | | ___
Conventional PCI 20
On clock edge 1, the initiator starts a transaction by driving an address, command, and asserting FRAME# The other
signals are idle (indicated by ^^^), pulled high by the motherboard's pull-up resistors. That might be their turnaround
cycle. On cycle 2, the target asserts both DEVSEL# and TRDY#. As the initiator is also ready, a data transfer occurs.
This repeats for three more cycles, but before the last one (clock edge 5), the master deasserts FRAME#, indicating
that this is the end. On clock edge 6, the AD bus and FRAME# are undriven (turnaround cycle) and the other control
lines are driven high for 1 cycle. On clock edge 7, another initiator can start a different transaction. This is also the
turnaround cycle for the other control lines.
The equivalent read burst takes one more cycle, because the target must wait 1 cycle for the AD bus to turn around
before it may assert TRDY#:
0_ 1_ 2_ 3_ 4_ 5_ 6_ 7_ 8_
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \
___ ___ ___ ___ ___
AD[31:0] ---<___>---<___X___X___X___>---<___>
___ _______ ___ ___ ___
C/BE[3:0]# ---<___X_______X___X___X___>---<___>
___ | | | | ___
IRDY# ^^^^\___________________/ ^^^^^
___ _____ | | | | ___
TRDY# ^^^^ \______________/ ^^^^^
___ | | | | ___
DEVSEL# ^^^^\___________________/ ^^^^^
___ | | | ___
FRAME# \___________________/ | ^^^^\____
_ _ _ |_ |_ |_ |_ _ _
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \
0 1 2 3 4 5 6 7 8
A high-speed burst terminated by the target will have an extra cycle at the end:
0_ 1_ 2_ 3_ 4_ 5_ 6_ 7_ 8_
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \
___ ___ ___ ___ ___
AD[31:0] ---<___>---<___X___X___X___XXXX>----
___ _______ ___ ___ ___ ___
C/BE[3:0]# ---<___X_______X___X___X___X___>----
| | | | ___
IRDY# ^^^^^^^\_______________________/
_____ | | | | _______
TRDY# ^^^^^^^ \______________/
Conventional PCI 21
________________ | ___
STOP# ^^^^^^^ | | | \_______/
| | | | ___
DEVSEL# ^^^^^^^\_______________________/
___ | | | | ___
FRAME# \_______________________/ ^^^^
_ _ _ |_ |_ |_ |_ _ _
CLK _/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \_/ \
0 1 2 3 4 5 6 7 8
On clock edge 6, the target indicates that it wants to stop (with data), but the initiator is already holding IRDY# low,
so there is a fifth data phase (clock edge 7), during which no data is transferred.
Parity
The PCI bus detects parity errors, but does not attempt to correct them by retrying operations; it is purely a failure
indication. Because of this, there is no need to detect the parity error before it has happened, and the PCI bus actually
detects it a few cycles later. During a data phase, whichever device is driving the AD[31:0] lines computes even
parity over them and the C/BE[3:0]# lines, and sends that out the PAR line one cycle later. All access rules and
turnaround cycles for the AD bus apply to the PAR line, just one cycle later. The device listening on the AD bus
checks the received parity and asserts the PERR# (parity error) line one cycle after that. This generally generates a
processor interrupt, and the processor can search the PCI bus for the device which detected the error.
The PERR# line is only used during data phases, once a target has been selected. If a parity error is detected during
an address phase (or the data phase of a Special Cycle), the devices which observe it assert the SERR# (System
error) line.
Even when some bytes are masked by the C/BE# lines and not in use, they must still have some defined value, and
this value must be used to compute the parity.
• the current transaction was preceded by an idle cycle (is not back-to-back), or
• the previous transaction was to the same target, or
• the current transaction began with a double address cycle.
Targets which have this capability indicate it by a special bit in a PCI configuration register, and if all targets on a
bus have it, all initiators may use back-to-back transfers freely.
A subtractive decoding bus bridge must know to expect this extra delay in the event of back-to-back cycles in order
to advertise back-to-back support.
64-bit PCI
The PCI specification includes optional 64-bit support. This is provided via an extended connector which provides
the 64-bit bus extensions AD[63:32], C/BE[7:4]#, and PAR64, and a number of additional power and ground pins.
The 64-bit PCI connector can be distinguished from a 32-bit connector by the additional 64-bit segment.
Memory transactions between 64-bit devices may use all 64 bits to double the data transfer rate. Non-memory
transactions (including configuration and I/O space accesses) may not use the 64-bit extension. During a 64-bit burst,
burst addressing works just as in a 32-bit transfer, but the address is incremented twice per data phase. The starting
address must be 64-bit aligned; i.e. AD2 must be 0. The data corresponding to the intervening addresses (with AD2
= 1) is carried on the upper half of the AD bus.
To initiate a 64-bit transaction, the initiator drives the starting address on the AD bus and asserts REQ64# at the
same time as FRAME#. If the selected target can support a 64-bit transfer for this transaction, it replies by asserting
ACK64# at the same time as DEVSEL#. Note that a target may decide on a per-transaction basis whether to allow a
64-bit transfer.
If REQ64# is asserted during the address phase, the initiator also drives the high 32 bits of the address and a copy of
the bus command on the high half of the bus. If the address requires 64 bits, a dual address cycle is still required, but
the high half of the bus carries the upper half of the address and the final command code during both address phase
cycles; this allows a 64-bit target to see the entire address and begin responding earlier.
If the initiator sees DEVSEL# asserted without ACK64#, it performs 32-bit data phases. The data which would have
been transferred on the upper half of the bus during the first data phase is instead transferred during the second data
phase. Typically, the initiator drives all 64 bits of data before seeing DEVSEL#. If ACK64# is missing, it may cease
driving the upper half of the data bus.
The REQ64# and ACK64# lines are held asserted for the entire transaction save the last data phase, and deasserted at
the same time as FRAME# and DEVSEL#, respectively.
The PAR64 line operates just like the PAR line, but provides even parity over AD[63:32] and C/BE[7:4]#. It is only
valid for address phases if REQ64# is asserted. PAR64 is only valid for data phases if both REQ64# and ACK64#
are asserted.
Conventional PCI 23
Development tools
When developing and/or troubleshooting the PCI bus, examination of
hardware signals can be very important. Logic analyzers and bus
analyzers are tools which collect, analyze, and decode signals for users
to view in useful ways.
References
[1] http:/ / www. webopedia. com/ TERM/ P/ PCI. html
[2] Hamacher et al, Computer Organization, Fifth Edition, McGraw-Hill, 2002
[3] http:/ / en. wikipedia. org/ w/ index. php?title=Conventional_PCI& action=edit A PCI card that displays POST numbers during
[5] VLB was designed for 486-based systems, yet even the more generic PCI was to BIOS startup.
gain prominence on that platform.
[6] PCI Family History (http:/ / www. pcisig. com/ specifications/ PCI_Family_History.
pdf)
[7] PCI Local Bus Specification, revision 3.0
[9] PCI Local Bus Specification, revision 2.3
[10] PCI Connector Pinout (http:/ / www. allpinouts. org/ index. php/ PCI)
[11] PCI Power Management Interface Specification v1.2
[12] archive.org/zuavra.net - Using Wake-On-LAN WOL/PME to power up your computer remotely (http:/ / web. archive. org/ web/
20070308143030/ http:/ / xlife. zuavra. net/ index. php/ 60/ )
[17] http:/ / www. pcisig. com/ news_room/ faqs/ #low_profile_pci
[18] http:/ / www. pcisig. com/ specifications/ conventional/ conventional_pci/ lowp_ecn. pdf
[19] Micro PCI, Micro AGP FAQ at iBASE (http:/ / www. ibase. com. tw/ FAQ. htm)
[21] PCI-to-PCI Bridge Architecture Specification, revision 1.1
[22] http:/ / download. intel. com/ design/ chipsets/ applnots/ 27301101. pdf
[23] PCI Local Bus Specification, revision 2.1
[24] PCI Local Bus Specification, revision 2.2
Conventional PCI 24
Further reading
Official Technical Specifications
• PCI-SIG (March 29, 2002). PCI Local Bus Specification: Revision 2.3 (http://www.pcisig.com/specifications/
conventional/conventional_pci_23/). ($1000 for non-members or $50 for members. PCI-SIG membership is
$3000 per year.)
• PCI-SIG (August 12, 2002). PCI Local Bus Specification: Revision 3.0 (http://www.pcisig.com/specifications/
conventional/pci_30/). ($1000 for non-members or $50 for members. PCI-SIG membership is $3000 per year.)
Books
• PCI Bus Demystified; 2nd Ed; Doug Abbott; 250 pages; 2004; ISBN 978-0-7506-7739-4.
• PCI System Architecture; 4th Ed; Tom Shanley; 832 pages; 1999; ISBN 978-0-201-30974-4.
• PCI-X System Architecture; 1st Ed; Tom Shanley; 752 pages; 2000; ISBN 978-0-201-72682-4.
• PCI & PCI-X Hardware and Software Architecture & Design; 5th Ed; Ed Solari; 1140 pages; 2001; ISBN
978-0-929392-63-9.
• PCI HotPlug Application and Design; 1st Ed; Alan Goodrum; 162 pages; 1998; ISBN 978-0-929392-60-8.
External links
• PCI Special Interest Group (PCI-SIG) (http://www.pcisig.com/home)
Technical Details
• Introduction to PCI protocol (http://electrofriends.com/articles/computer-science/protocol/
introduction-to-pci-protocol/), electrofriends.com
• PCI bus pin-out and signals (http://pinouts.ru/Slots/PCI_pinout.shtml), pinouts.ru
• PCI card dimensions (http://www.interfacebus.com/Design_Connector_PCI.html#b), interfacebus.com
Lists of Vendors / Devices / IDs
• PCI Vendor and Device Lists (http://www.pcidatabase.com/index.php), pcidatabase.com
• PCI ID Repository (http://pciids.sourceforge.net), sourceforge.net
Tips
• Brief overview of PCI power requirements and compatibility with a nice diagram. (http://www.4crawler.com/
Developer/VisualWorkstation/PCI/index.shtml)
• Good diagrams and text on how to recognize the difference between 5 volt and 3.3 volt slots. (http://www94.
web.cern.ch/hsi/s-link/devices/s32pci64/slottypes.html)
• Installing a PCI card (http://www.pchardwaretutor.com/tutor/?p=54)
Linux
• Linux with miniPCI cards (http://tuxmobil.org/minipci_linux.html)
• GNU/Linux PCI device driver check page (http://kmuto.jp/debian/hcl/index.cgi)
• Decoding PCI data and lspci output on Linux hosts (http://prefetch.net/articles/linuxpci.html)
Development Tools
• Active PCI Bus Extender (http://www.dinigroup.com/product/data/pciextender/files/PCIExtender_brief_lo.
pdf), dinigroup.com
FPGA Cores
• PCI Interface Core (http://www.latticesemi.com/products/intellectualproperty/referencedesigns/
pcitarget32bit33mhz.cfm), Lattice Semiconductor
• PCI Bridge Core (http://opencores.org/websvn,listing?repname=pci), OpenCore.org
Conventional PCI 25
PCI-X
PCI-X
PCI Local Bus
Width in bits 64
Style Parallel
PCI-X, short for Peripheral Component Interconnect eXtended, is a computer bus and expansion card standard that
enhances the 32-bit PCI Local Bus for higher bandwidth demanded by servers. It is a double-wide version of PCI,
running at up to four times the clock speed, but is otherwise similar in electrical implementation and uses the same
protocol.[] It has been replaced in modern designs[citation needed] by the similar-sounding PCI Express (officially
abbreviated as PCIe), with a completely different connector and a very different logical design, being a single narrow
but fast serial connection instead of a number of slower connections in parallel.
Background
PCI-X was developed jointly by IBM, HP, and Compaq and submitted for approval in 1998. It was an effort to
codify proprietary server extensions to the PCI local bus to address several shortcomings in PCI, and increase
performance of high bandwidth devices, such as Gigabit Ethernet, Fibre Channel, and Ultra3 SCSI cards, and allow
processors to be interconnected in clusters.
In PCI, a transaction that cannot be completed immediately is postponed by either the target or the initiator issuing
retry-cycles, during which no other agents can use the PCI bus. Since PCI lacks a split-response mechanism to
permit the target to return data at a later time, the bus remains occupied by the target issuing retry-cycles until the
read data is ready. In PCI-X, after the master issues the request, it disconnects from the PCI bus, allowing other
agents to use the bus. The split-response containing the requested data is generated only when the target is ready to
return all of the requested data. Split-responses increase bus efficiency by eliminating retry-cycles, during which no
data can be transferred across the bus.
PCI also suffered from the relative scarcity of unique interrupt lines. With only 4 interrupt lines (INTA/B/C/D),
systems with many PCI devices require multiple functions to share an interrupt line, complicating host-side
PCI-X 26
interrupt-handling. PCI-X added Message Signaled Interrupts, an interrupt system using writes to host-memory. In
MSI-mode, the function's interrupt is not signaled by asserting an INTx line. Instead, the function performs a
memory-write to a system-configured region in host-memory. Since the content and address are configured on a
per-function basis, MSI-mode interrupts are dedicated instead of shared. A PCI-X system allows both MSI-mode
interrupts and legacy INTx interrupts to be used simultaneously (though not by the same function.)
The lack of registered I/Os limited PCI to a maximum frequency of 66 MHz. PCI-X I/Os are registered to the PCI
clock, usually through means of a PLL to actively control I/O delay the bus pins. The improvement in setup time
allows an increase in frequency to 133 MHz.
Some devices, most notably Gigabit Ethernet cards, SCSI controllers (Fibre Channel and Ultra320), and cluster
interconnects could by themselves saturate the PCI bus's 133 MB/s bandwidth. Ports using a bus speed doubled to
66 MHz and a bus width doubled to 64 bits (with the pin count increased to 184 from 124), in combination or not,
have been implemented. These extensions were loosely supported as optional parts of the PCI 2.x standards, but
device compatibility beyond the basic 133 MB/s continued to be difficult.
Developers eventually used the combined 64-bit and 66-MHz extension as a foundation, and, anticipating future
needs, established 66-MHz and 133-MHz variants with a maximum bandwidth of 532 MB/s and 1064 MB/s
respectively. The joint result was submitted as PCI-X to the PCI Special Interest Group (Special Interest Group of
the Association for Computing Machinery). Subsequent approval made it an open standard adoptable by all
computer developers. The PCI SIG controls technical support, training, and compliance testing for PCI-X. IBM,
Intel, Microelectronics, and Mylex were to develop supporting chipsets. 3Com and Adaptec were to develop
compatible peripherals. To accelerate PCI-X adoption by the industry, Compaq offered PCI-X development tools at
their Web site. All major chip makers generally now have or have had some variant of PCI-X in their product lines.
Technical description
PCI-X revised the conventional PCI standard by doubling
the maximum clock speed (from 66 MHz to 133 MHz)[]
and hence the amount of data exchanged between the
computer processor and peripherals. Conventional PCI
supports up to 64 bits at 66 MHz (though anything above
32 bits at 33 MHz is seen only in high-end systems) and
additional bus standards move 32 bits at 66 MHz or 64
bits at 33 MHz. The theoretical maximum amount of data
exchanged between the processor and peripherals with
PCI-X is 1.06 GB/s, compared to 133 MB/s with standard
PCI. PCI-X also improves the fault tolerance of PCI, Dual Port Network Card for Single PCI-X slot to save on PCI-X
allowing, for example, faulty cards to be reinitialized or slots and use the full potential of the PCI-X 64-bit bus
taken offline.
• Likewise, the length of a burst is decided before it begins; it may not be halted on an arbitrary cycle using the
FRAME# and STOP# signals.
• Subtractive decode DEVSEL# takes place two cycles after the "slow DEVSEL#" cycle rather than on the next
cycle.
• After the address phase (and before any device has responded with DEVSEL#), there is an additional 1-cycle
"attribute phase", during which 36 additional bits (both AD and C/BE# lines are used) of information about the
operation are transmitted. These include 16 bits of requester identification (PCI bus, device and function number),
12 bits of burst length, 5 bits of tag (for associating split transactions), and 3 bits of additional status.
Versions
All PCI-X cards or slots have a 64-bit
implementation and vary as follows:
• Cards
• 66 MHz (added in Rev. 1.0)[]
• 100 MHz (implemented by a
133 MHz adapter on some
servers)[1]
• 133 MHz (added in Rev. 1.0)[]
• 266 MHz (added in Rev. 2.0)[]
• 533 MHz (added in Rev. 2.0)[]
• Slots
• 66 MHz (can be found on older
3.3v and 5v keying of 64-bit PCI cards (both PCI and PCI-X). While most 64-bit PCI-X
servers)
slots are 5v and are backward compatible with common 32-bit 5v PCI cards, a number of
• 133 MHz (most common on 64-bit PCI-X slots are 3.3v and will not accept 5v cards, by far the most common voltage
modern servers) for 32-bit PCI cards
• 266 MHz (rare, being replaced
by PCI-e)
• 533 MHz (rare, being replaced by PCI-e)
PCI-X 2.0
In 2003, the PCI SIG ratified PCI-X 2.0. It adds 266-MHz and 533-MHz variants, yielding roughly 2.15 GB/s and
4.3 GB/s throughput, respectively. PCI-X 2.0 makes additional protocol revisions that are designed to help system
reliability and add Error-correcting codes to the bus to avoid re-sends.[] To deal with one of the most common
complaints of the PCI-X form factor, the 184-pin connector, 16-bit ports were developed to allow PCI-X to be used
in devices with tight space constraints. Similar to PCI-Express, PtP functions were added to allow for devices on the
bus to talk to each other without burdening the CPU or bus controller.
Despite the various theoretical advantages of PCI-X 2.0 and its backward compatibility with PCI-X and PCI devices,
it has not been implemented on a large scale (as of 2008). This lack of implementation primarily is because hardware
vendors have chosen to integrate PCI Express instead.
References
Further reading
• PCI Bus Demystified; 2nd Ed; Doug Abbott; 250 pages; 2004; ISBN 978-0-7506-7739-4.
• PCI-X System Architecture; 1st Ed; Tom Shanley; 752 pages; 2000; ISBN 978-0-201-72682-4.
• PCI & PCI-X Hardware and Software Architecture & Design; 5th Ed; Ed Solari; 1140 pages; 2001; ISBN
978-0-929392-63-9.
External links
• Good diagrams and text on how to recognize the difference between 5 volt and 3.3 volt PCI (and PCI-X) slots.
(http://hsi.web.cern.ch/HSI/s-link/devices/s32pci64/slottypes.html)
PCI Express 29
PCI Express
PCI Express
Number of devices One device each on each endpoint of each connection. PCI Express switches can create multiple endpoints out of one
endpoint to allow sharing one endpoint with multiple devices.
Style Serial
External interface Yes, with PCI Express External Cabling, such as Thunderbolt
PCI Express (Peripheral Component Interconnect Express), officially abbreviated as PCIe, is a high-speed serial
computer expansion bus standard designed to replace the older PCI, PCI-X, and AGP bus standards. PCIe has
numerous improvements over the aforementioned bus standards, including higher maximum system bus throughput,
lower I/O pin count and smaller physical footprint, better performance-scaling for bus devices, a more detailed error
detection and reporting mechanism (Advanced Error Reporting (AER) [1]), and native hot-plug functionality. More
recent revisions of the PCIe standard support hardware I/O virtualization.
The PCIe electrical interface is also used in a variety of other standards, most notably ExpressCard, a laptop
expansion card interface.
Format specifications are maintained and developed by the PCI-SIG (PCI Special Interest Group), a group of more
than 900 companies that also maintain the conventional PCI specifications. PCIe 3.0 is the latest standard for
expansion cards that is in production and available on mainstream personal computers.[2][3]
PCI Express 30
Applications
PCI Express operates in consumer, server, and industrial applications, as a motherboard-level interconnect (to link
motherboard-mounted peripherals), a passive backplane interconnect and as an expansion card interface for add-in
boards.
In virtually all modern (as of 2012[4]) PCs, from consumer laptops and desktops to enterprise data servers, the PCIe
bus serves as the primary motherboard-level interconnect, connecting the host system-processor with both
integrated-peripherals (surface-mounted ICs) and add-on peripherals (expansion cards.) In most of these systems, the
PCIe bus co-exists with one or more legacy PCI buses, for backward compatibility with the large body of legacy PCI
peripherals.
Architecture
Conceptually, the PCIe bus is like a high-speed serial replacement of the older PCI/PCI-X bus,[] an interconnect bus
using shared address/data lines.
A key difference between PCIe bus and the older PCI is the bus topology. PCI uses a shared parallel bus
architecture, where the PCI host and all devices share a common set of address/data/control lines. In contrast, PCIe is
based on point-to-point topology, with separate serial links connecting every device to the root complex (host). Due
to its shared bus topology, access to the older PCI bus is arbitrated (in the case of multiple masters), and limited to
one master at a time, in a single direction. Furthermore, the older PCI's clocking scheme limits the bus clock to the
slowest peripheral on the bus (regardless of the devices involved in the bus transaction). In contrast, a PCIe bus link
supports full-duplex communication between any two endpoints, with no inherent limitation on concurrent access
across multiple endpoints.
In terms of bus protocol, PCIe communication is encapsulated in packets. The work of packetizing and
de-packetizing data and status-message traffic is handled by the transaction layer of the PCIe port (described later).
Radical differences in electrical signaling and bus protocol require the use of a different mechanical form factor and
expansion connectors (and thus, new motherboards and new adapter boards); PCI slots and PCIe slots are not
interchangeable. At the software level, PCIe preserves backward compatibility with PCI; legacy PCI system software
can detect and configure newer PCIe devices without explicit support for the PCIe standard, though PCIe's new
features are inaccessible.
The PCIe link between two devices can consist of anywhere from 1 to 32 lanes. In a multi-lane link, the packet data
is striped across lanes, and peak data-throughput scales with the overall link width. The lane count is automatically
negotiated during device initialization, and can be restricted by either endpoint. For example, a single-lane PCIe (×1)
card can be inserted into a multi-lane slot (×4, ×8, etc.), and the initialization cycle auto-negotiates the highest
mutually supported lane count. The link can dynamically down-configure the link to use fewer lanes, thus providing
some measure of failure tolerance in the presence of bad or unreliable lanes. The PCIe standard defines slots and
connectors for multiple widths: ×1, ×4, ×8, ×16, ×32. This allows PCIe bus to serve both cost-sensitive applications
where high throughput is not needed, as well as performance-critical applications such as 3D graphics, network (10
Gigabit Ethernet, multiport Gigabit Ethernet), and enterprise storage (SAS, Fibre Channel.)
As a point of reference, a PCI-X (133 MHz 64-bit) device and PCIe device at 4-lanes (×4), Gen1 speed have roughly
the same peak transfer rate in a single-direction: 1064 MB/sec. The PCIe bus has the potential to perform better than
the PCI-X bus in cases where multiple devices are transferring data communicating simultaneously, or if
communication with the PCIe peripheral is bidirectional.
PCI Express 31
Interconnect
PCIe devices communicate via a logical connection called an interconnect[] or link. A link is a point-to-point
communication channel between two PCIe ports, allowing both to send/receive ordinary PCI-requests (configuration
read/write, I/O read/write, memory read/write) and interrupts (INTx, MSI, MSI-X). At the physical level, a link is
composed of 1 or more lanes.[] Low-speed peripherals (such as an 802.11 Wi-Fi card) use a single-lane (×1) link,
while a graphics adapter typically uses a much wider (and thus, faster) 16-lane link.
Lane
A lane is composed of two differential signaling pairs: one pair for receiving data, the other for transmitting . Thus,
each lane is composed of four wires or signal traces. Conceptually, each lane is used as a full-duplex byte stream,
transporting data packets in eight-bit 'byte' format, between endpoints of a link, in both directions simultaneously.[5]
Physical PCIe slots may contain from one to thirty-two lanes, in powers of two (1, 2, 4, 8, 16 and 32).[] Lane counts
are written with an × prefix (e.g., ×16 represents a sixteen-lane card or slot), with ×16 being the largest size in
common use.[6]
Serial bus
The bonded serial format was chosen over a traditional parallel bus format due to the latter's inherent limitations,
including single-duplex operation, excess signal count and an inherently lower bandwidth due to timing skew.
Timing skew results from separate electrical signals within a parallel interface traveling down different-length
conductors, on potentially different printed circuit board layers, at possibly different signal velocities. Despite being
transmitted simultaneously as a single word, signals on a parallel interface experience different travel times and
arrive at their destinations at different moments. When the interface clock rate is increased to a point where its
inverse (i.e., its clock period) is shorter than the largest possible time between signal arrivals, the signals no longer
arrive with sufficient coincidence to make recovery of the transmitted word possible. Since timing skew over a
parallel bus can amount to a few nanoseconds, the resulting bandwidth limitation is in the range of hundreds of
megahertz.
A serial interface does not exhibit timing skew because there is only one differential signal in each direction within
each lane, and there is no external clock signal since clocking information is embedded within the serial signal. As
such, typical bandwidth limitations on serial signals are in the multi-gigahertz range. PCIe is just one example of a
general trend away from parallel buses to serial interconnects. Other examples include Serial ATA, USB, SAS,
FireWire (1394) and RapidIO.
Multichannel serial design increases flexibility by allocating slow devices to fewer lanes than fast devices.
PCI Express 32
Form factors
Pinout
The following table identifies the conductors on each side of the edge connector on a PCI Express card. The solder
side of the printed circuit board (PCB) is the A side, and the component side is the B side.[7] PRSNT1# and
PRSNT2# pins must be slightly shorter than the rest, to ensure that a hot-plugged card is fully inserted. The WAKE#
pin uses full voltage to wake the computer, but must be pulled high from the standby power to indicate that the card
is wake capable.[8]
2 +12 V +12 V
3 +12 V +12 V
4 Ground Ground
6 SMDAT TDI
7 Ground TDO
8 +3.3 V TMS
9 TRST# +3.3 V
Key notch
12 Reserved Ground
15 HSOn(0) Ground
17 PRSNT2# HSIn(0)
18 Ground Ground
20 HSOn(1) Ground
22 Ground HSIn(1)
24 HSOn(2) Ground
26 Ground HSIn(2)
28 HSOn(3) Ground
30 Reserved HSIn(3)
31 PRSNT2# Ground
32 Ground Reserved
34 HSOn(4) Ground
36 Ground HSIn(4)
38 HSOn(5) Ground
40 Ground HSIn(5)
42 HSOn(6) Ground
44 Ground HSIn(6)
46 HSOn(7) Ground
48 PRSNT2# HSIn(7)
49 Ground Ground
51 HSOn(8) Ground
53 Ground HSIn(8)
55 HSOn(9) Ground
57 Ground HSIn(9)
59 HSOn(10) Ground
61 Ground HSIn(10)
63 HSOn(11) Ground
65 Ground HSIn(11)
67 HSOn(12) Ground
69 Ground HSIn(12)
71 HSOn(13) Ground
73 Ground HSIn(13)
75 HSOn(14) Ground
77 Ground HSIn(14)
79 HSOn(15) Ground
81 PRSNT2# HSIn(15)
82 Reserved Ground
PCI Express 35
Legend
Ground pin Zero volt reference
Power
All sizes of ×4 and ×8 PCI Express cards are allowed a maximum power consumption of 25 W. All ×1 cards are
initially 10 W; full-height cards may configure themselves as 'high-power' to reach 25 W, while half-height ×1 cards
are fixed at 10 W. All sizes of ×16 cards are initially 25 W; like ×1 cards, half-height cards are limited to this number
while full-height cards may increase their power after configuration. They can use up to 75 W (3.3 V/3 A +
12 V/5.5 A), though the specification demands that the higher-power configuration be used for graphics cards only,
while cards of other purposes are to remain at 25 W.[9][10] Optional connectors add 75 W (6-pin) and/or 150 W
(8-pin) power for up to 525 W total (75 W + 3×150 W).[11]
Physical dimensions
A WLAN PCI Express Mini Card and its connector.
PCI Express Mini Cards are 30×50.95 mm. There is a
52-pin edge connector, consisting of two staggered rows on a 0.8 mm pitch. Each row has eight contacts, a gap
equivalent to four contacts, then a further 18 contacts. A half-length card is also specified 30×26.8 mm. Cards have a
thickness of 1.0 mm (excluding components).
Electrical interface
PCI Express Mini Card edge connectors provide multiple connections and buses:
• PCIe ×1
• USB 2.0
• SMBus
PCI Express 36
• SIM card for GSM and WCDMA applications. (UIM signals on spec)
• Future extension for another PCIe lane
• 1.5 and 3.3 volt power
Derivative forms
There are several other expansion card types derived from PCIe. These include:
• Low height card
• ExpressCard: successor to the PC Card form factor (with ×1 PCIe and USB 2.0; hot-pluggable)
• PCI Express ExpressModule: a hot-pluggable modular form factor defined for servers and workstations
• XQD card: a PCI Express-based flash card standard by the CompactFlash Association
• XMC: similar to the CMC/PMC form factor (VITA 42.3)
• AdvancedTCA: a complement to CompactPCI for larger applications; supports serial based backplane topologies
• AMC: a complement to the AdvancedTCA specification; supports processor and I/O modules on ATCA boards
(×1, ×2, ×4 or ×8 PCIe).
• FeaturePak: a tiny expansion card format (43 × 65 mm) for embedded and small form factor applications; it
implements two ×1 PCIe links on a high-density connector along with USB, I2C, and up to 100 points of I/O.
• Universal IO: A variant from Super Micro Computer Inc designed for use in low profile rack mounted chassis. It
has the connector bracket reversed so it cannot fit in a normal PCI Express socket, but is pin compatible and may
be inserted if the bracket is removed.
• Thunderbolt: A variant from Intel and Apple that combines DisplayPort and PCIe protocols in a form factor
compatible with Mini DisplayPort.
• Serial Digital Video Out: some 9xx series Intel chipsets allow for adding an additional output for the integrated
video into a PCIe slot (mostly dedicated and 16 lanes)
PCIe 3.0 upgrades the encoding scheme to 128b/130b from the previous 8b/10b, reducing the overhead to
approximately 1.54% ((130-128)/130), as opposed to the 20% of PCIe 2.0. This is achieved by a technique called
"scrambling" that applies a known binary polynomial to a data stream in a feedback topology. Because the
scrambling polynomial is known, the data can be recovered by running it through a feedback topology using the
inverse polynomial.[] PCIe 3.0's 8 GT/s bit rate effectively delivers 985 MB/s per lane, double PCIe 2.0 bandwidth.
PCI-SIG expects the PCIe 3.0 specifications to undergo rigorous technical vetting and validation before being
released to the industry. This process, which was followed in the development of prior generations of the PCIe Base
and various form factor specifications, includes the corroboration of the final electrical parameters with data derived
from test silicon and other simulations conducted by multiple members of the PCI-SIG.
On November 18, 2010, the PCI Special Interest Group officially published the finalized PCI Express 3.0
specification to its members to build devices based on this new version of PCI Express.[24]
AMD latest flagship graphic card, the Radeon HD 7970, launched on January 9, 2012, was the world's first PCIe 3.0
graphic card.[25] Initial reviews suggest that the new interface would not improve graphic performance compared to
earlier PCIe 2.0, which, at the time of writing, is still under-utilized. However, the new interface would prove
advantageous when used for general purpose computing with technologies like OpenCL, CUDA and C++ AMP.[26]
Current status
As of 2013[4] PCI Express has replaced AGP as the default interface for graphics cards on new systems. Almost all
models of graphics cards released since 2010 by AMD (ATI) and NVIDIA use PCI Express. NVIDIA uses the
high-bandwidth data transfer of PCIe for its Scalable Link Interface (SLI) technology, which allows multiple
graphics cards of the same chipset and model number to run in tandem, allowing increased performance. AMD has
also developed a multi-GPU system based on PCIe called CrossFire. AMD and NVIDIA have released motherboard
chipsets that support as many as four PCIe ×16 slots, allowing tri-GPU and quad-GPU card configurations.
featuring Thunderbolt.
Physical layer
The PCIe Physical Layer (PHY, PCIEPHY, PCI Express PHY, or PCIe PHY) specification is divided into two
sub-layers, corresponding to electrical and logical specifications. The logical sublayer is sometimes further divided
into a MAC sublayer and a PCS, although this division is not formally part of the PCIe specification. A specification
published by Intel, the PHY Interface for PCI Express (PIPE),[] defines the MAC/PCS functional partitioning and the
interface between these two sub-layers. The PIPE specification also identifies the physical media attachment (PMA)
layer, which includes the serializer/deserializer (SerDes) and other analog circuitry; however, since SerDes
implementations vary greatly among ASIC vendors, PIPE does not specify an interface between the PCS and PMA.
At the electrical level, each lane consists of two unidirectional LVDS or PCML pairs at 2.525 Gbit/s. Transmit and
receive are separate differential pairs, for a total of four data wires per lane.
A connection between any two PCIe devices is known as a link, and is built up from a collection of one or more
lanes. All devices must minimally support single-lane (×1) link. Devices may optionally support wider links
composed of 2, 4, 8, 12, 16, or 32 lanes. This allows for very good compatibility in two ways:
• A PCIe card physically fits (and works correctly) in any slot that is at least as large as it is (e.g., an ×1 sized card
will work in any sized slot);
• A slot of a large physical size (e.g., ×16) can be wired electrically with fewer lanes (e.g., ×1, ×4, ×8, or ×12) as
long as it provides the ground connections required by the larger physical slot size.
In both cases, PCIe negotiates the highest mutually supported number of lanes. Many graphics cards, motherboards
and bios versions are verified to support ×1, ×4, ×8 and ×16 connectivity on the same connection.
Even though the two would be signal-compatible, it is not usually possible to place a physically larger PCIe card
(e.g., a ×16 sized card) into a smaller slot —though if the PCIe slots are altered or a riser is used most motherboards
will allow this. Typically the technique is used for displaying to multiple monitors in a simulator configuration.
The width of a PCIe connector is 8.8 mm, while the height is 11.25 mm, and the length is variable. The fixed section
of the connector is 11.65 mm in length and contains two rows of 11 (22 pins total), while the length of the other
section is variable depending on the number of lanes. The pins are spaced at 1 mm intervals, and the thickness of the
card going into the connector is 1.8 mm.[][]
PCI Express 41
Data transmission
PCIe sends all control messages, including interrupts, over the same links used for data. The serial protocol can
never be blocked, so latency is still comparable to conventional PCI, which has dedicated interrupt lines.
Data transmitted on multiple-lane links is interleaved, meaning that each successive byte is sent down successive
lanes. The PCIe specification refers to this interleaving as data striping. While requiring significant hardware
complexity to synchronize (or deskew) the incoming striped data, striping can significantly reduce the latency of the
nth byte on a link. Due to padding requirements, striping may not necessarily reduce the latency of small data packets
on a link.
As with other high data rate serial transmission protocols, the clock is embedded in the signal. At the physical level,
PCI Express 2.0 utilizes the 8b/10b encoding scheme[] to ensure that strings of consecutive ones or consecutive zeros
are limited in length. This coding was used to prevent the receiver from losing track of where the bit edges are. In
this coding scheme every eight (uncoded) payload bits of data are replaced with 10 (encoded) bits of transmit data,
causing a 20% overhead in the electrical bandwidth. To improve the available bandwidth, PCI Express version 3.0
employs 128b/130b encoding instead: similar but with much lower overhead.
Many other protocols (such as SONET) use a different form of encoding known as scrambling to embed clock
information into data streams. The PCIe specification also defines a scrambling algorithm, but it is used to reduce
electromagnetic interference (EMI) by preventing repeating data patterns in the transmitted data stream.
past sequence-numbers.)
If the transmitter receives a NAK message, or no acknowledgement (NAK or ACK) is received until a timeout
period expires, the transmitter must retransmit all TLPs that lack a positive acknowledgement (ACK). Barring a
persistent malfunction of the device or transmission medium, the link-layer presents a reliable connection to the
transaction layer, since the transmission protocol ensures delivery of TLPs over an unreliable medium.
In addition to sending and receiving TLPs generated by the transaction layer, the data-link layer also generates and
consumes DLLPs, data link layer packets. ACK and NAK signals are communicated via (DLLP), as are flow control
credit information, some power management messages and flow control credit information (on behalf of the
transaction layer.)
In practice, the number of in-flight, unacknowledged TLPs on the link is limited by two factors: the size of the
transmitter's replay buffer (which must store a copy of all transmitted TLPs until the remote receiver ACKs them),
and the flow control credits issued by the receiver to a transmitter. PCI Express requires all receivers to issue a
minimum number of credits, to guarantee a link allows sending PCIConfig TLPs and message TLPs.
Transaction layer
PCI Express implements split transactions (transactions with request and response separated by time), allowing the
link to carry other traffic while the target device gathers data for the response.
PCI Express uses credit-based flow control. In this scheme, a device advertises an initial amount of credit for each
received buffer in its transaction layer. The device at the opposite end of the link, when sending transactions to this
device, counts the number of credits each TLP consumes from its account. The sending device may only transmit a
TLP when doing so does not make its consumed credit count exceed its credit limit. When the receiving device
finishes processing the TLP from its buffer, it signals a return of credits to the sending device, which increases the
credit limit by the restored amount. The credit counters are modular counters, and the comparison of consumed
credits to credit limit requires modular arithmetic. The advantage of this scheme (compared to other methods such as
wait states or handshake-based transfer protocols) is that the latency of credit return does not affect performance,
provided that the credit limit is not encountered. This assumption is generally met if each device is designed with
adequate buffer sizes.
PCIe 1.x is often quoted to support a data rate of 250 MB/s in each direction, per lane. This figure is a calculation
from the physical signaling rate (2.5 Gbaud) divided by the encoding overhead (10 bits per byte.) This means a
sixteen lane (×16) PCIe card would then be theoretically capable of 16×250 MB/s = 4 GB/s in each direction. While
this is correct in terms of data bytes, more meaningful calculations are based on the usable data payload rate, which
depends on the profile of the traffic, which is a function of the high-level (software) application and intermediate
protocol levels.
Like other high data rate serial interconnect systems, PCIe has a protocol and processing overhead due to the
additional transfer robustness (CRC and acknowledgements). Long continuous unidirectional transfers (such as those
typical in high-performance storage controllers) can approach >95% of PCIe's raw (lane) data rate. These transfers
also benefit the most from increased number of lanes (×2, ×4, etc.) But in more typical applications (such as a USB
or Ethernet controller), the traffic profile is characterized as short data packets with frequent enforced
acknowledgements.[] This type of traffic reduces the efficiency of the link, due to overhead from packet parsing and
forced interrupts (either in the device's host interface or the PC's CPU.) Being a protocol for devices connected to the
same printed circuit board, it does not require the same tolerance for transmission errors as a protocol for
communication over longer distances, and thus, this loss of efficiency is not particular to PCIe.
PCI Express 43
Uses
IBM/Lenovo has also included a PCI-Express slot in their Advanced Docking Station 250310U. It provides a
half-sized slot with an ×16 length socket, but only ×1 connectivity.[38] However, docking stations with expansion
slots are becoming less common as the laptops are getting more advanced video cards and either DVI-D interfaces,
or DVI-D pass through for port replicators and docking stations.
Additionally, Nvidia has developed Quadro Plex external PCIe video cards that can be used for advanced graphic
applications. These video cards require a PCI Express ×8 or ×16 slot for the interconnection cable.[39] In 2008, AMD
announced the ATI XGP technology, based on a proprietary cabling solution that is compatible with PCIe ×8 signal
transmissions.[40] This connector is available on the Fujitsu Amilo and the Acer Ferrari One notebooks. Only Fujitsu
has an actual external box available, which also works on the Ferrari One. Recently Acer launched the Dynavivid
graphics dock for XGP.
There are now card hubs in development that one can connect to a laptop through an ExpressCard slot, though they
are currently rare, obscure, or unavailable on the open market. These hubs can have full-sized cards placed in them.
Magma and ViDock also make use of ExpressCard and implement the usage of external graphic solutions. ViDock
are expansion chassis tailored specifically for adapting PCI Express graphics cards for use with ExpressCard
equipped laptop PCs. This enables user to make use of connecting PCIe cards externally. Although, the
developments in these technologies are still ongoing. Other examples that underwent are - MSI GUS, Asus XG
Station.
Recently, Intel and Apple introduced Thunderbolt, which allows for external PCI(e) devices to transfer at double the
speeds of the ExpressCard interface. However a mid-range external video card would still be severely throttled by
the slow connection.
Thunderbolt has given innovation to companies to release new and faster products to connect with a PCIe card
externally. Magma has release the ExpressBox 3T, which can hold up to three PCIe cards (two at 8x and one at 4x);
this allows for a better workstation when a notebook lacks many ports. MSI also release their new product with
Thunderbolt, the GUS II, which is a PCIe chassis dedicated for video cards.[41] Other products such as the Sonnet’s
Echo Express and mLogic’s mLink are Thunderbolt PCIe chassis in a smaller form factor; these allow connectivity
to low-profile video cards, sound cards, network cards, memory, storage, etc.[42] However, all these products require
the use of a Thunderbolt port (Thunderbolt devices); which makes it incompatible with a vast majority of computers.
PCI Express 44
External memory
PCI Express protocol can be used as data interface to flash memory devices, such as memory cards and solid state
drives. One such format is XQD card developed by the CompactFlash Association, SATA Express[43] and SCSI
Express.[44]
Many high-performance, enterprise-class solid state drives are designed as PCI Express RAID controller cards with
flash memory chips placed directly on the circuit board; this allows much higher transfer rates (over 1 Gbyte/s) and
IOPS (I/O operations per second) (over 1 million) comparing to Serial ATA or SAS drives.
OCZ and Marvell co-developed the native PCIe solid state drive controller Kilimanjaro that is utilized in OCZ's
Z-Drive 5. The Z-Drive 5 is designed for a PCIe 3.0 x16 slot and when the highest capacity (12 TB) version is
installed in such a slot it can run up to 7.2 Gigabytes per second sequential transfers and up to 2.52 million IOPS in
random transfers.[45]
Competing protocols
Several communications standards have emerged based on high bandwidth serial architectures. These include
InfiniBand, RapidIO, HyperTransport, QPI and StarFabric. The differences are based on the tradeoffs between
flexibility and extensibility vs latency and overhead. An example of such a tradeoff is adding complex header
information to a transmitted packet to allow for complex routing (PCI Express is not capable of this). The additional
overhead reduces the effective bandwidth of the interface and complicates bus discovery and initialization software.
Also making the system hot-pluggable requires that software track network topology changes. Examples of buses
suited for this purpose are InfiniBand and StarFabric.
Another example is making the packets shorter to decrease latency (as is required if a bus must operate as a memory
interface). Smaller packets mean packet headers consume a higher percentage of the packet, thus decreasing the
effective bandwidth. Examples of bus protocols designed for this purpose are RapidIO and HyperTransport.
PCI Express falls somewhere in the middle, targeted by design as a system interconnect (local bus) rather than a
device interconnect or routed network protocol. Additionally, its design goal of software transparency constrains the
protocol and raises its latency somewhat.
Development tools
When developing and/or troubleshooting the PCI Express bus, examination of hardware signals can be very
important to find the problems. Oscilloscopes, logic analyzers and bus analyzers are tools that collect, analyze,
decode, store signals so people can view the high-speed waveforms at their leisure.
References
[4] http:/ / en. wikipedia. org/ w/ index. php?title=PCI_Express& action=edit
[8] PCI Express Card Electromechanical Specification Revision 2.0
[9] PCI-SIG: Board Design Guidelines for PCI Express Architecture 2004 p. 19
[10] PCI Express Card Electromechanical Specification Revision 2.0
[11] http:/ / www. gamestar. de/ hardware/ grafikkarten/ powercolor-radeon-hd-7990-devil-13/ test/
powercolor_radeon_hd_7990_devil_13,603,3007615,6. html
[15] http:/ / www. pcisig. com
[18] — note that in this press release the term aggregate bandwidth refers to the sum of incoming and outgoing bandwidth; using this
terminology the aggregate bandwidth of full duplex 100BASE-TX is 200 Mbit/s
PCI Express 45
Further reading
• PCI Express System Architecture; 1st Ed; Ravi Budruk / Don Anderson / Tom Shanley; 1120 pages; 2003; ISBN
978-0-321-15630-3.
• Introduction to PCI Express : A Hardware and Software Developer's Guide; 1st Ed; 325 pages; 2003; ISBN
978-0-9702846-9-3.
• Complete PCI Express Reference : Design Implications for Hardware and Software Developers; 1st Ed; 1056
pages; 2003; ISBN 978-0-9717861-9-6.
External links
• PCI-SIG: | PCI-Express Specification Info (http://www.pcisig.com/specifications/pciexpress/)
• Introduction to PCI Protocol (http://electrofriends.com/articles/computer-science/protocol/
introduction-to-pci-protocol/)
• PCI Express Base Specification Revision 1.0 (http://www.pcisig.com/specifications/pciexpress/base).
PCI-SIG. 29 April 2002. (Requires PCI-SIG membership)
• PCI-SIG, the industry organization that maintains and develops the various PCI standards (http://www.pcisig.
com/)
• An introduction to how PCIe works at the TLP level (http://xillybus.com/tutorials/
pci-express-tlp-pcie-primer-tutorial-guide-1)
• Intel Developer Network for PCI Express Architecture (http://www.intel.com/technology/pciexpress/devnet/
)
• IDT + PCI Express solutions -> http://www.idt.com/go/pcie (http://www.idt.com/?catID=6264187)
• PCI-E Graphics Cards and Specs (http://www.gpubench.com/)
• Everything You Need to Know About the PCI Express (http://www.hardwaresecrets.com/article/
Everything-You-Need-to-Know-About-the-PCI-Express/190)
Article Sources and Contributors 46
PCI-X Source: http://en.wikipedia.org/w/index.php?oldid=551560475 Contributors: 2001:388:F000:0:0:0:0:233D, A876, ABF, AVRS, Alistair1978, Apyule, Arteitle, Bezenek, Bobo192,
Bobprime, Ceros, ChrisGualtieri, Cwolfsheep, Cybercobra, DaveHolland, Diblidabliduu, DoriSmith, Drutt, Dynamitecow, Eemullis, Ehn, Elangorajm, Electron9, Engineerism, Eptin, Evice,
Feneeth of Borg, Flightsoffancy, Frap, Frogamic, From, GermanX, Gimpyestrada, Glrx, Hellbus, Husond, Imroy, Intgr, JForget, Jackfork, Jimmi Hugh, Jludwig, JohnyDog, Jona, Jonverve,
KelleyCook, KnowManiac, Kvng, Kyng, Lavenderbunny, Lkinkade, Lopsidedman, Mabdul, Maury Markowitz, Nicolas Melay, Numbo3, Onceler, Pearle, Peyre, Phatom87, Plugwash, Pol098,
Qaywsxedc, QuietObserver720, RichardMathews, Riesz, Rilak, Roberta F., Rogerdpack, Sbmeirow, Spc01, Strolls, Szumyk, THEN WHO WAS PHONE?, The Wild Falcon, TheDrew, Tillin9,
Tobias Bergemann, Todd Vierling, Tothwolf, Wiki alf, Wrightju, 124 anonymous edits
PCI Express Source: http://en.wikipedia.org/w/index.php?oldid=551990611 Contributors: 1ForTheMoney, 5lithy, A876, Aaron mcd, Acerperi, Ad88110, Adoniscik, Aethandor, Agoode,
Ahoerstemeier, Aidoor, AirDjurdan, Ajoyka100, Aknorals, Aldie, Alereon, Aleshik, Alison, AlistairMcMillan, Alobodig, Aluvus, Alvin-cs, Amfar018, Amor001, AndreKR, Andrew sh,
Andromeda451, Andy Dingley, Angrytoast, Antonio92, Apoorv480, Arch dude, Arkrishna, Armando, Arnero, ArnoldReinhold, Ascidian, Asestar, Aspects, Atracht, Audriusa, Avb, Avoided,
Azuris, Balabiot, Bart.vanassche, Ben Ben, Bender2k14, Berkut, Bgat, Bidgee, Bilepie66, Billauer, Binaryguru, Blakegripling ph, Blazingluke, BlueDevil, Bmicomp, Bobblewik, Bogey97,
Borgx, Bovineone, Brian Patrie, Briancarlton, Brianski, Bthetford, Btilm, Bubba73, BubblesFromBelow, BwuXEc, Bytre, C chekay, Captain-tucker, Cbreaker, Celtechm, Ceros, CesarB, Cf. Hay,
Chovain, Chowbok, ChrisGualtieri, Ciphergoth, Ckmac97, ClockworkSoul, Closedmouth, Cncxbox, Coffee4binky, Cometstyles, CommonsDelinker, Compellingelegance, Cootiequits, Cristan,
Cryogenius, Cwolfsheep, Cybercobra, Cybermaus0, Cynix, DARTH SIDIOUS 2, DMahalko, DOSGuy, DaProx, Darin-0, Darkhorse, Darxus, Davewho2, David Latapie, DavidDouthitt,
DeathHamster, Defunctzombie, Deineka, Dennis Schmitz, Denniss, Dewritech, Dgies, DhurdPLX, Diablo-D3, Diblidabliduu, Discospinster, DmitryKo, Don't give an Ameriflag, DoriSmith,
Dpark, DragonHawk, Drjt87, Drrll, Dsalt, Dsf7183, Dsm, Dubious Irony, Dwvisser, E rulez, Eatcacti, Ebikeofacookbook, Editore99, Efeinberg, Electron9, EoGuy, Epbr123, Epiteo, Eptin,
ErisDiscord, Etchesketch, Evice, Evil Monkey, ExpatEgghead, FIGATT, Falcon8765, Fatka, Fdrake, Ferret141, FerrousTigrus, Fethers, Firefox, Foobaz, FracJackMac, Francs2000,
Frankenpuppy, Frap, Frediloc, Fredrik, Freewol, Froskoy, Fsiler, Fudoreaper, Furrykef, Gdo01, Geek94, Geekosaurus, Gerixau, GermanX, Gimmetrow, Glaesisvellir, Glome83, Glrx, Gluo88,
GoingBatty, Goodone121, GraemeL, Graham1428, GrandDrake, Grblomerth, Gt4kill3r, Gurch, Halframed, Haris Akkool, HarisM, Hcberkowitz, Hellbus, Heron, Hideyuki, Hopp, Hotdogger125,
Hpcanswers, Iain.mcclatchie, Imroy, J.delanoy, Jack74661, Jacob Poon, Jasper Deng, Jcolbyk, Jdwinx, Jebinece, Jeffq, Jel, Jesse Viviano, Jflins, Jgui, Jimdavis4u, Jk050902, Jlundell, Joebishpie,
JogyB, JohnnySolc, Johnnydc, Jonverve, Joshuakh, Jsmethers, Juux, K20, Kalman5, Karam.Anthony.K, Kate, KatherinePankratz, Kbh3rd, Kbolino, Kd300, Keelec, KelleyCook, Kenyon, Kestral
fire, Kiko3d, Kinema, Kingboyk, Kingvashy, Klemen Kocjancic, Kotek20, Ksiddique, KuSh, La Parka Your Car, Leandrod, Lee Pavelich, Leo soundhar, LilHelpa, Ling.Nut, Lkesteloot, Lotje,
Lpolyak, LukeShu, Luna Santin, Lywongc, M7, MER-C, MSTCrow, Madmaxx, Mahumphrey, Marc Kupper, Materialscientist, Mathias-S, Matneh, Mattgirling, Matthiaspaul, Mattventura,
Maury Markowitz, Maverick2091, MaxVT, Maxis ftw, Mdoc7, Meco, Metageek, Mgdunn, Mgolden, MightyWarrior, Mike Rosoft, Mikepelley, Mikiemike, Mild Bill Hiccup, Mjaxon, Modster,
Monty845, Moreati, MorganHaggis, Mortense, Moxfyre, Mr. Mentor, Mr. Wheely Guy, MrBurns, MrDolomite, Mrand, Msaunier, Mulad, Music Sorter, MySchizoBuddy, NAHID, Nageh,
Nalorcs, NeOak, Neckername, Neelix, Nextop, Nicknomo, Nikpapag, Nil Einne, Nisselua, Nixdorf, Nosforit, NuclearWizard, Nz17, OSP Editor, Omicronpersei8, Oneiros, Orphan Wiki, OwenX,
PCI-SIG Administration, Pabouk, Pale blue dot, Paranoidmage, Park Flier, Pauli133, Pc-world, Pedantic of Purley, Peyre, Phatom87, Philip Trueman, Placi1982, Plasticup, Plonk420, Plugwash,
Pol098, Poompt, ProtocolOH, Psrgchx, Qdotdot, Qwe, R!SC, RBBrittain, Randall Fisher, Ph.D., Ranunculoid, Rayisthechosenone, Rbo159, Rchandra, Reedy, Rennie3915, RevRagnarok,
RexNL, Riana, Rich Farmbrough, Ricky07652, Riluve, Rjwilmsi, Rl, Rlcantwell, Rmallins, Robertwharvey, Rockstone35, Rogerdpack, Ronark, RoyBoy, Rsduhamel, Rsmoore, Rsrikanth05,
Ruggedsys, RuineR, SNEST2, Sahrin, Salam32, Samhuang1999, Samrawlins, Sarahstirland, Sarenne, SatsukiMikata, Sbmeirow, Schodge, Scohoust, Scott 110, Scottclayton, Sct72, Selket,
Shaddack, Shafran, Shandris, Shane32Wiki, Shawnc, Shnout, Silveroblivion, Sleigh, Sloverlord, Smathw, Smoove Z, Snickerdo, Spartan, SpeedyGonsales, Spinlock55, Spinningspark,
Spyd3r0us, Ssri1983, Stasdm, SteveSims, Strandist, Strom, StuffOfInterest, Supaplex, Sweetness46, SystemBuilder, Szlevi, Szzuk, Tabledhote, Tansm, Tarquin, Tektronix, The Belgain, The
Thing That Should Not Be, The Wild Falcon, The1physicist, TheDJ, TheJosh, TheNightFly, Thingg, Thinkingatoms, ThreeBlindMice, Thue, Thunderbird2, Tide rolls, Timc, Timharwoodx, Todd
Vierling, Tom.Reding, Towel401, Tpbradbury, Trevyn, TruPepitoM, Turionaltec, Tverbeek, Undeference, Vicarage, Vmaldia, Voidxor, Vorondil, Vrenator, Vsood 007, Wadsworth, Warpozio,
Warren, Wasted Sapience, WegianWarrior, Welguisz, WhosAsking, Widefox, WikHead, Wikipelli, Winterst, Wislam, Wkafig, Wolrahnaes, Wuhwuzdat, Xaje, Zac67, ZeroOne, Милан
Јелисавчић, 1085 anonymous edits
Image Sources, Licenses and Contributors 47
License
Creative Commons Attribution-Share Alike 3.0 Unported
//creativecommons.org/licenses/by-sa/3.0/