From eee3ea0346bdf711ea776fc1c502c6620c87b5eb Mon Sep 17 00:00:00 2001 From: Hari L Date: Sun, 20 Jul 2025 20:16:48 +0530 Subject: [PATCH] mb/google/bluey: Enable PCIE Feature for bluey Enable PCIE init for bluey board and update device pci node. Remove unused pci 4.0 node(WLAN). TEST= Verified that link is enumerated and NVMe is accessible via PCIE. Change-Id: I7ad4a9409ff0465b45b8bb1f3e005bf9f83f2c42 Signed-off-by: Hari L Reviewed-on: https://review.coreboot.org/c/coreboot/+/88535 Reviewed-by: Subrata Banik Tested-by: build bot (Jenkins) --- src/mainboard/google/bluey/devicetree.cb | 3 +-- src/mainboard/google/bluey/mainboard.c | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/src/mainboard/google/bluey/devicetree.cb b/src/mainboard/google/bluey/devicetree.cb index 69d0533e0e..a0e753792f 100644 --- a/src/mainboard/google/bluey/devicetree.cb +++ b/src/mainboard/google/bluey/devicetree.cb @@ -3,7 +3,6 @@ chip soc/qualcomm/x1p42100 device cpu_cluster 0 on end device domain 0 on - device pci 04.0 on end # WLAN - device pci 06.0 on end # SSD + device pci 00.0 on end # Root Bridge end end diff --git a/src/mainboard/google/bluey/mainboard.c b/src/mainboard/google/bluey/mainboard.c index db44fe7972..9950f88545 100644 --- a/src/mainboard/google/bluey/mainboard.c +++ b/src/mainboard/google/bluey/mainboard.c @@ -11,8 +11,7 @@ bool mainboard_needs_pcie_init(void) { - /* Placeholder */ - return false; + return true; } static void display_startup(void)