From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 96C68CCF9EA for ; Mon, 27 Oct 2025 21:18:35 +0000 (UTC) Received: from localhost ([::1] helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1vDUab-0002Zx-Dz; Mon, 27 Oct 2025 17:17:18 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1vDUa0-0002Uy-LK for qemu-devel@nongnu.org; Mon, 27 Oct 2025 17:16:48 -0400 Received: from sea.source.kernel.org ([172.234.252.31]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1vDUZs-00051J-At for qemu-devel@nongnu.org; Mon, 27 Oct 2025 17:16:39 -0400 Received: from smtp.kernel.org (transwarp.subspace.kernel.org [100.75.92.58]) by sea.source.kernel.org (Postfix) with ESMTP id 576EC48C40; Mon, 27 Oct 2025 21:16:30 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 7B12EC4CEFD; Mon, 27 Oct 2025 21:16:28 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1761599790; bh=GPTk92lJwbojCe8hBLFK6GeymG8+vX2OkUA6Ug6fO/c=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=pL98/tdLjoOohxauf9qHkXuwmiHuIH7pBNNJm/Nu8RIZdSL3A8ceed7bNsGE3V2C8 BNpy5LZeSVCiGgJUamvORtOydIdCNh+cSY/jgOEKsw7Uxgzb00bo2elooxLPQwgiqR Gum0acjzcgrHvvmJNrDxJ/DOt2K2/5sflxuLnF1I57Fy1Wb4+MY5Ks7shq8T5+TNKE 3tBfllaPVYb8Wti/VG/yLVk0we+qnwr3JHM4/vgy2L8NE0mNIpTs8BFoI765PGBPTI 8j5RLoPUcGl0dVtXga9jd1TN09mjQwNCTpKN6hx1ZxDvDiaJQPcyhj+3rTpecjfKPt nSqBgP1JMzP6g== From: deller@kernel.org To: Richard Henderson , qemu-devel@nongnu.org, Peter Maydell Cc: =?UTF-8?q?Philippe=20Mathieu-Daud=C3=A9?= , Fam Zheng , Soumyajyotii Ssarkar , Paolo Bonzini , deller@gmx.de Subject: [PULL 10/11] hw/hppa: Require SeaBIOS version 19 for 715 machine Date: Mon, 27 Oct 2025 22:16:02 +0100 Message-ID: <20251027211603.7141-11-deller@kernel.org> X-Mailer: git-send-email 2.51.0 In-Reply-To: <20251027211603.7141-1-deller@kernel.org> References: <20251027211603.7141-1-deller@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Received-SPF: pass client-ip=172.234.252.31; envelope-from=deller@kernel.org; helo=sea.source.kernel.org X-Spam_score_int: -20 X-Spam_score: -2.1 X-Spam_bar: -- X-Spam_report: (-2.1 / 5.0 requ) BAYES_00=-1.9, DKIMWL_WL_HIGH=-0.001, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_VALIDITY_RPBL_BLOCKED=0.001, RCVD_IN_VALIDITY_SAFE_BLOCKED=0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001 autolearn=ham autolearn_force=no X-Spam_action: no action X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org Sender: qemu-devel-bounces+qemu-devel=archiver.kernel.org@nongnu.org From: Helge Deller Require at least SeaBIOS version 19 before adding the 715 machine. This is required, because the machine inventory of the 715 is provided by the SeaBIOS firmware. Signed-off-by: Helge Deller Acked-by: Richard Henderson --- hw/hppa/machine.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/hppa/machine.c b/hw/hppa/machine.c index 31eeba72b4..81ed050b5e 100644 --- a/hw/hppa/machine.c +++ b/hw/hppa/machine.c @@ -43,7 +43,7 @@ struct HppaMachineState { MachineState parent_obj; }; -#define MIN_SEABIOS_HPPA_VERSION 12 /* require at least this fw version */ +#define MIN_SEABIOS_HPPA_VERSION 19 /* require at least this fw version */ #define HPA_POWER_BUTTON (FIRMWARE_END - 0x10) static hwaddr soft_power_reg; -- 2.51.0