mirror of
https://codeberg.org/libreboot/lbmk.git
synced 2026-07-24 12:12:59 +02:00
99a88ebfa2
Use patchset 15 instead of 14:
config/coreboot/default/patches/0061-WIP-OptiPlex-3050-Micro-port.patch
Rebase the verb patch; patchset 15 modified the Makefile:
config/coreboot/default/patches/0064-dell-optiplex_3050-add-hda_verb.c.patch
We were using patchset 14 for the 3050 micro:
https://review.coreboot.org/c/coreboot/+/82053/14
Now we use patchset 15:
https://review.coreboot.org/c/coreboot/+/82053/15
Without this patch, the fans are always on a low setting, on
the Dell OptiPlex 3050 Micro, even under stress conditions. With
this patch, the fans change speed according to CPU temperature.
I had to rebase my verb patch, because Mate modified the Makefile
to add his sch5555 handler, on the same line where I add hda_verb.
Mate tells me he will merge my verb and vbt patches into a further
patchset later on. For now, I've simply rebased these patches on
top of Mate's newer work; I've told him he can use them in his port.
I'm probably going to now issue a new revision ROM image for
Libreboot 20241008, so that users can get this fix sooner.
Signed-off-by: Leah Rowe <leah@libreboot.org>
35 lines
1.2 KiB
Diff
35 lines
1.2 KiB
Diff
From 15003992f57b62ce59dc282cd089987306126cc9 Mon Sep 17 00:00:00 2001
|
|
From: persmule <persmule@gmail.com>
|
|
Date: Sun, 31 Oct 2021 23:33:26 +0000
|
|
Subject: [PATCH 09/65] lenovo/t400: Enable all SATA ports
|
|
|
|
There are 2 SATA ports on the chassis of t400(s), but at least one dock for
|
|
t400 contains a port for (P/S)ATA device, and t400s has a eSATA port on its
|
|
chassis, and another one on its dock.
|
|
|
|
They have to be unmasked via device tree to use.
|
|
|
|
This patch unmasked all SATA ports found within t400s with factory firmware.
|
|
---
|
|
src/mainboard/lenovo/t400/devicetree.cb | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/src/mainboard/lenovo/t400/devicetree.cb b/src/mainboard/lenovo/t400/devicetree.cb
|
|
index 259c3e1b21..3d007533a4 100644
|
|
--- a/src/mainboard/lenovo/t400/devicetree.cb
|
|
+++ b/src/mainboard/lenovo/t400/devicetree.cb
|
|
@@ -46,8 +46,8 @@ chip northbridge/intel/gm45
|
|
register "gpe0_en" = "0x01000000"
|
|
register "gpi1_routing" = "2"
|
|
|
|
- # Set AHCI mode, enable ports 1 and 2.
|
|
- register "sata_port_map" = "0x03"
|
|
+ # Set AHCI mode, enable ports 1, 2, 5 and 6.
|
|
+ register "sata_port_map" = "0x33"
|
|
register "sata_clock_request" = "0"
|
|
register "sata_traffic_monitor" = "0"
|
|
|
|
--
|
|
2.39.5
|
|
|