From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail05.groups.io (mail05.groups.io [45.79.224.7]) by spool.mail.gandi.net (Postfix) with ESMTPS id BF3CB7803E1 for ; Tue, 30 Jul 2024 15:08:11 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=iCn1udd1JfKUHMCouUnpN8gLPPMhTOl2wZkFDSWByN4=; c=relaxed/simple; d=groups.io; h=Date:In-Reply-To:Mime-Version:References:Message-ID:Subject:From:To:Cc:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Resent-Date:Resent-From:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Type; s=20240206; t=1722352091; v=1; b=K4Z9SZijSqWzmJPeoP332Zs+xQZLyp4k/WAS4TcF2zBueiAftqzCGQu7OU1hHUMiHZC9+qnD rA+HQL3pGNevUawHYgmeXFIrLKU3YKp86LveOaqUiYJl0iP8nZFLXAUHFk28RWWOINd0Zk+zoC6 HoMegM5WA4+NgGYxK8NQhYz/WxkEI2yuk3MYmyFkMJO61hmMDbeaSHYREfn689gnp28rY75XcRC oW2gmlFJx/X7DQ36e6UhJmcjCHcT+dcGkrlN2ypkts1rETbvflCNV38qJSCKZJ4I9ef1KBnozp0 WxsflAFdEoUKfXu0ZMcvD/24GbhlWd02x8fq/2D4lC1Dw== X-Received: by 127.0.0.2 with SMTP id b2EJYY7687511xcYtLzbG8Vw; Tue, 30 Jul 2024 08:08:09 -0700 X-Received: from mail-wr1-f73.google.com (mail-wr1-f73.google.com [209.85.221.73]) by mx.groups.io with SMTP id smtpd.web10.31650.1721895922366043342 for ; Thu, 25 Jul 2024 01:25:22 -0700 X-Received: by mail-wr1-f73.google.com with SMTP id ffacd0b85a97d-368442fef36so457268f8f.0 for ; Thu, 25 Jul 2024 01:25:22 -0700 (PDT) X-Gm-Message-State: dPSH26qIYOtG18T0XWwg7qWqx7686176AA= X-Google-Smtp-Source: AGHT+IGdzTyEYSYEEptkV8Xi7KuRSDjmyOkNXD/dQOm8gZpJtLw5u5qhCZq26fYRv0VjHMi/j5yEnOeW X-Received: from palermo.c.googlers.com ([fda3:e722:ac3:cc00:28:9cb1:c0a8:118a]) (user=ardb job=sendgmr) by 2002:adf:fe90:0:b0:367:9103:d1fb with SMTP id ffacd0b85a97d-36b36434ca0mr1889f8f.10.1721895920362; Thu, 25 Jul 2024 01:25:20 -0700 (PDT) Date: Thu, 25 Jul 2024 10:24:56 +0200 In-Reply-To: <20240725082502.1566409-1-ardb+git@google.com> Mime-Version: 1.0 References: <20240725082502.1566409-1-ardb+git@google.com> Message-ID: <20240725082502.1566409-6-ardb+git@google.com> Subject: [edk2-devel] [PATCH edk2-platforms 05/11] Platform/SbsaQemu: Switch to generic ArmPsciResetSystemLib From: "Ard Biesheuvel via groups.io" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Marcin Juszkiewicz , Graeme Gregory Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Resent-Date: Tue, 30 Jul 2024 08:07:57 -0700 Resent-From: ardb+git@google.com Reply-To: devel@edk2.groups.io,ardb+git@google.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: Content-Type: text/plain; charset="UTF-8" X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20240206 header.b=K4Z9SZij; dmarc=pass (policy=none) header.from=groups.io; spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 45.79.224.7 as permitted sender) smtp.mailfrom=bounce@groups.io From: Ard Biesheuvel The PSCI reset libraries in ArmPkg are being consolidated into a single one to reduce the maintenance burden of having multiple libraries doing the same thing in a slightly different way. Move this platform to the generic ArmPsciResetSystemLib, and drop the dependency on ArmSmcPsciResetSystemLib, which is deprecated and will be removed. Cc: Marcin Juszkiewicz Cc: Graeme Gregory Signed-off-by: Ard Biesheuvel --- Platform/Qemu/SbsaQemu/SbsaQemu.dsc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Platform/Qemu/SbsaQemu/SbsaQemu.dsc b/Platform/Qemu/SbsaQemu/SbsaQemu.dsc index e78f1d71998a..089a639184e3 100644 --- a/Platform/Qemu/SbsaQemu/SbsaQemu.dsc +++ b/Platform/Qemu/SbsaQemu/SbsaQemu.dsc @@ -117,7 +117,8 @@ [LibraryClasses.common] PlatformPeiLib|ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf MemoryInitPeiLib|ArmPlatformPkg/MemoryInitPei/MemoryInitPeiLib.inf - ResetSystemLib|ArmPkg/Library/ArmSmcPsciResetSystemLib/ArmSmcPsciResetSystemLib.inf + ResetSystemLib|ArmPkg/Library/ArmPsciResetSystemLib/ArmPsciResetSystemLib.inf + ArmMonitorLib|ArmPkg/Library/ArmMonitorLib/ArmMonitorLib.inf # ARM PL031 RTC Driver RealTimeClockLib|ArmPlatformPkg/Library/PL031RealTimeClockLib/PL031RealTimeClockLib.inf -- 2.46.0.rc1.232.g9752f9e123-goog -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#120087): https://edk2.groups.io/g/devel/message/120087 Mute This Topic: https://groups.io/mt/107628951/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-