From nobody Wed Mar 5 18:19:38 2025 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (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 D8DD71D86FF for ; Sun, 2 Mar 2025 08:22:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740903737; cv=none; b=oMwPqUNcRHMegpsfEdmYfhEwDaSkUC3519dqeTSwiZ7CZYaApAJ/e6TWU5gN5rjFKPtE51erL82/vKAbn49iQSPWimEanzS+blc0Xs/q37iRHEN9O9D+526C1gkjplNlBOtgTsNeEfAx1Rqkkwr/TM+eww24XRSJeClInDzqxLM= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1740903737; c=relaxed/simple; bh=WNgUSU0OrqFnvTXh8PzzTv6ghTQeysRMH1deXYrrJ9Y=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=khA108w9vds9/acxH5jhLX+lW5SHrg/YsD3dgeiMmaYjZvwgLP0yQzMtHmbjFTX8OoJJmkiKRYXL7GZpselq7eBTxqrp2NU2ViTVQcqFL4ZUIUO3PWRaaRhjd8Vc4cYI2cr1awNcXmq8vrTf1OO+9qaifBXZAQB/VduuzC7UpQQ= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=mtXGPFJ9; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="mtXGPFJ9" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 215C5C4AF10; Sun, 2 Mar 2025 08:22:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1740903737; bh=WNgUSU0OrqFnvTXh8PzzTv6ghTQeysRMH1deXYrrJ9Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=mtXGPFJ9nB5fOvdDm8k2a5HGVzMy0xq0J6Rf03+7XEQPe8SRDth2SfgjXg/uGal+x hD8NfCxo9pyEDIH2doqP8evFGxpvNFOOok3xHYKfqgQ/WMMBzCbZesddR5iFcs76ld yZWGMMdEaWoqg19OKENrwW2FWQ7O84MgLEcYfiqvtkvepKFJjnzDdaGDx1a6vOzzmz NhsuBSY16Y/ZWjiXFxWC+GZstt66mMSzubKyDlluvQUKQQK6/fyejww8YQhpIzVWfn VW86Z81s4MYyyfTrkSPjmUws2EMH0PQ0pfQrLuBUyzc896JmbKn0UCGyyNdSnMJMQw IBw1+rH7Dn8pQ== Received: from mchehab by mail.kernel.org with local (Exim 4.98) (envelope-from ) id 1toeaU-000000043S8-34gI; Sun, 02 Mar 2025 09:22:14 +0100 From: Mauro Carvalho Chehab To: Igor Mammedov , "Michael S . Tsirkin" Cc: Jonathan Cameron , Shiju Jose , qemu-arm@nongnu.org, qemu-devel@nongnu.org, Mauro Carvalho Chehab , Ani Sinha , linux-kernel@vger.kernel.org Subject: [PATCH v7 10/19] acpi/generic_event_device: Update GHES migration to cover hest addr Date: Sun, 2 Mar 2025 09:21:57 +0100 Message-ID: X-Mailer: git-send-email 2.48.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Sender: Mauro Carvalho Chehab Content-Type: text/plain; charset="utf-8" The GHES migration logic should now support HEST table location too. Signed-off-by: Mauro Carvalho Chehab Reviewed-by: Jonathan Cameron Reviewed-by: Igor Mammedov --- hw/acpi/generic_event_device.c | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/hw/acpi/generic_event_device.c b/hw/acpi/generic_event_device.c index c85d97ca3776..5346cae573b7 100644 --- a/hw/acpi/generic_event_device.c +++ b/hw/acpi/generic_event_device.c @@ -386,6 +386,34 @@ static const VMStateDescription vmstate_ghes_state =3D= { } }; =20 +static const VMStateDescription vmstate_hest =3D { + .name =3D "acpi-hest", + .version_id =3D 1, + .minimum_version_id =3D 1, + .fields =3D (const VMStateField[]) { + VMSTATE_UINT64(hest_addr_le, AcpiGhesState), + VMSTATE_END_OF_LIST() + }, +}; + +static bool hest_needed(void *opaque) +{ + AcpiGedState *s =3D opaque; + return s->ghes_state.hest_addr_le; +} + +static const VMStateDescription vmstate_hest_state =3D { + .name =3D "acpi-ged/hest", + .version_id =3D 1, + .minimum_version_id =3D 1, + .needed =3D hest_needed, + .fields =3D (const VMStateField[]) { + VMSTATE_STRUCT(ghes_state, AcpiGedState, 1, + vmstate_hest, AcpiGhesState), + VMSTATE_END_OF_LIST() + } +}; + static const VMStateDescription vmstate_acpi_ged =3D { .name =3D "acpi-ged", .version_id =3D 1, @@ -398,6 +426,7 @@ static const VMStateDescription vmstate_acpi_ged =3D { &vmstate_memhp_state, &vmstate_cpuhp_state, &vmstate_ghes_state, + &vmstate_hest_state, NULL } }; --=20 2.48.1