mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
02fbdc6a47
Newer RPi 4 Rev 6 (8 GB models and recent 2 GB / 4 GB models) ship with the so-called C0 processor which can run turbo mode at 1.8 GHz max rather than 1.5 GHz gracefully. Add 'arm_boost=1' to pi4 section of to enable. Note that this setting has no effect on older chips; they continue with their 1.5 GHz max unless users overclock them. Ref: https://www.raspberrypi.com/news/bullseye-bonus-1-8ghz-raspberry-pi-4 Signed-off-by: John Audia <graysky@archlinux.us>
17 lines
638 B
Plaintext
17 lines
638 B
Plaintext
################################################################################
|
|
# Bootloader configuration - distroconfig.txt
|
|
################################################################################
|
|
|
|
# Restore PL011 (ttyAMA0) to GPIOs 14 & 15, instead of Mini UART (ttyS0).
|
|
# Mini UART is disabled by default unless "enable_uart=1" is specified,
|
|
# which changes the core frequency to a fixed value and impacts performance.
|
|
# See https://www.raspberrypi.org/documentation/configuration/uart.md
|
|
[pi0w]
|
|
dtoverlay=disable-bt
|
|
[pi3]
|
|
dtoverlay=disable-bt
|
|
[pi4]
|
|
dtoverlay=disable-bt
|
|
# Run as fast as firmware / board allows
|
|
arm_boost=1
|