diff --git a/documentation/asciidoc/accessories/bumper/images/bumper.jpg b/documentation/asciidoc/accessories/bumper/images/bumper.jpg index 7de6383a2..14682676a 100644 Binary files a/documentation/asciidoc/accessories/bumper/images/bumper.jpg and b/documentation/asciidoc/accessories/bumper/images/bumper.jpg differ diff --git a/documentation/asciidoc/accessories/sd-cards/about.adoc b/documentation/asciidoc/accessories/sd-cards/about.adoc index b9588bab0..99b94199d 100644 --- a/documentation/asciidoc/accessories/sd-cards/about.adoc +++ b/documentation/asciidoc/accessories/sd-cards/about.adoc @@ -26,7 +26,7 @@ Random 4KB read performance: * 3,200 IOPS on Raspberry Pi 4 (DDR50) * 5,000 IOPS on Raspberry Pi 5 (SDR104) -Random 4K write performance: +Random 4KB write performance: * 1,200 IOPS on Raspberry Pi 4 (DDR50) * 2,000 IOPS on Raspberry Pi 5 (SDR104) diff --git a/documentation/asciidoc/computers/raspberry-pi/pcie.adoc b/documentation/asciidoc/computers/raspberry-pi/pcie.adoc index e78972ff4..7caa71d65 100644 --- a/documentation/asciidoc/computers/raspberry-pi/pcie.adoc +++ b/documentation/asciidoc/computers/raspberry-pi/pcie.adoc @@ -53,32 +53,36 @@ After saving your changes, reboot your Raspberry Pi with `sudo reboot` to update WARNING: The Raspberry Pi 5 is not certified for Gen 3.0 speeds. PCIe Gen 3.0 connections may be unstable. -==== via `config.txt` - -The connection is certified for Gen 2.0 speeds (5 GT/s), but you can force Gen 3.0 (8 GT/s) speeds. To enable PCIe Gen 3.0 speeds, add the following line to `/boot/firmware/config.txt`: - +By default, Raspberry Pi 5 uses Gen 2.0 speeds (5 GT/s). Use one of the following approaches to force Gen 3.0 (8 GT/s) speeds: + +[tabs%sync] +====== +via `config.txt`:: ++ +To enable PCIe Gen 3.0 speeds, add the following line to `/boot/firmware/config.txt`: ++ [source,ini] ---- dtparam=pciex1_gen=3 ---- - ++ Reboot your Raspberry Pi with `sudo reboot` for these settings to take effect. -==== via `raspi-config` - +via `raspi-config`:: ++ Run the following command to open the Raspberry Pi Configuration CLI: - ++ [source,console] ---- $ sudo raspi-config ---- - ++ Complete the following steps to enable PCIe Gen 3.0 speeds: - ++ . Select `Advanced Options`. . Select `PCIe Speed`. . Choose `Yes` to enable PCIe Gen 3 mode. . Select `Finish` to exit. +. Reboot your Raspberry Pi with `sudo reboot` for your changes to take effect. -Reboot your Raspberry Pi with `sudo reboot` for these settings to take effect. - +======