From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from hall.aurel32.net (hall.aurel32.net [195.154.119.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 90DE53A7F73; Tue, 23 Jun 2026 20:44:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.154.119.183 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782247480; cv=none; b=MEM3XNI/xu55BmLw25Y4aUUndz1HN3CNY1F9uO28pg4J5XgEJA6gGfH/9G1lvUHLSsaFYvk0N5mSwEYQ9Aq3dOi9ckxT9bb6H65wEkpBrbVBD4zJ4DvFIM8IxCc/pagKA2RkYimIRsxxXUZEIfyCqBkio2db1jqhelTiCfFTqRk= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782247480; c=relaxed/simple; bh=brawEI/Y6TtQReA4AIKBJwo4tftfE21A/x6hGDbFJyQ=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=DnbIXYLare1XL0xqTWeD1k8AoWkbjiI8GLHXBHna5qFVYlauU+HkOq+gYhEBUr8EH3PqmjCtE+pyzRuGpS90FT62qspWd6pichZIJ1uX6/bkhZ0rIkqmSzT5WpKYmw6ihBlKS4FQJ8fMgh2dcO4+bIYnt2TYc8TOeeJvi1Ds48A= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=aurel32.net; spf=pass smtp.mailfrom=aurel32.net; dkim=pass (2048-bit key) header.d=aurel32.net header.i=@aurel32.net header.b=eswx+hgw; arc=none smtp.client-ip=195.154.119.183 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=aurel32.net Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=aurel32.net Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=aurel32.net header.i=@aurel32.net header.b="eswx+hgw" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=aurel32.net ; s=202004.hall; h=Content-Transfer-Encoding:MIME-Version:References: In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Content-Type:From:Reply-To: Subject:Content-ID:Content-Description:X-Debbugs-Cc; bh=K8Um6chS07RcT1AxSNR2JFP0bdhN9kdWn5kHp1JUdc4=; b=eswx+hgwWbYYespRNnWNBRxIk4 bTREzbTzbRijvp+SerPcsoKoOPFJeGl3eekkDZQNw2csmyHZmQ0pNzMedMv23fghs+Tdeu7hQBPkd jx9AD2khSUIpqx7ORiAegy2vrg/HsLTLoYQ7fy2rZTnLO+LbLunK5XSGBqsM5MWgogJnAiA7w582W wKzVApTyuJVEDfkI3ZWoHhFsbg8sZPRBQ82qTie4Qq/zrT9X5n4ZXf5B8M/JC77V2OWIlsPsp+ECj yDCCiHJH5FPjDZoujG5Wj77Ebmftl2dL9tDJ+xQNgOYZEXZFSWs3mZy16cIKzk76RJXIVOSS0wyDr xQhI4lLw==; Received: from authenticated user by hall.aurel32.net with esmtpsa (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.98.2) (envelope-from ) id 1wc7z3-00000004gOS-0fXk; Tue, 23 Jun 2026 22:44:37 +0200 From: Aurelien Jarno To: linux-kernel@vger.kernel.org, Rob Herring , Krzysztof Kozlowski , Conor Dooley , Yixun Lan , Paul Walmsley , Palmer Dabbelt , Albert Ou , Alexandre Ghiti , Guodong Xu Cc: Aurelien Jarno , Guodong Xu , devicetree@vger.kernel.org (open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS), linux-riscv@lists.infradead.org (open list:RISC-V SPACEMIT SoC Support), spacemit@lists.linux.dev (open list:RISC-V SPACEMIT SoC Support) Subject: [PATCH v2 1/5] riscv: dts: spacemit: set console baud rate on K3 Pico-ITX board Date: Tue, 23 Jun 2026 22:43:45 +0200 Message-ID: <20260623204431.498700-2-aurelien@aurel32.net> X-Mailer: git-send-email 2.53.0 In-Reply-To: <20260623204431.498700-1-aurelien@aurel32.net> References: <20260623204431.498700-1-aurelien@aurel32.net> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Because the default console's baud rate is not set, defconfig kernels do not have any serial output on this platform. Set the baud rate to 115200, matching what is used by U-Boot etc on this platform. Fixes: 7a6131804986 ("riscv: dts: spacemit: add K3 Pico-ITX board support") Signed-off-by: Aurelien Jarno Reviewed-by: Guodong Xu --- arch/riscv/boot/dts/spacemit/k3-pico-itx.dts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) v2: - Collect Reviewed-by tag diff --git a/arch/riscv/boot/dts/spacemit/k3-pico-itx.dts b/arch/riscv/boot/dts/spacemit/k3-pico-itx.dts index b89c1521e6649..509cebc0c9568 100644 --- a/arch/riscv/boot/dts/spacemit/k3-pico-itx.dts +++ b/arch/riscv/boot/dts/spacemit/k3-pico-itx.dts @@ -18,7 +18,7 @@ aliases { }; chosen { - stdout-path = "serial0"; + stdout-path = "serial0:115200n8"; }; memory@100000000 { -- 2.53.0