Riku Viitanen has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85823?usp=email )
Change subject: util/autoport/bd82x6x: Output the correct PCH version comment ......................................................................
util/autoport/bd82x6x: Output the correct PCH version comment
Change-Id: I5cd99be965b41b49845a9a1072868ba43b445a79 Signed-off-by: Riku Viitanen riku.viitanen@protonmail.com --- M util/autoport/bd82x6x.go 1 file changed, 8 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/23/85823/1
diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go index bd80901..fefddbc 100644 --- a/util/autoport/bd82x6x.go +++ b/util/autoport/bd82x6x.go @@ -104,9 +104,16 @@ pcieHotplugMap += "0 }" }
+ pchComment := "Intel Series " + if b.variant == "BD82X6X" { + pchComment += "6 Cougar Point PCH" + } else { + pchComment += "7 Panther Point PCH" + } + cur := DevTreeNode{ Chip: "southbridge/intel/bd82x6x", - Comment: "Intel Series 6 Cougar Point PCH", + Comment: pchComment,
Registers: map[string]string{ "sata_interface_speed_support": "0x3",