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 E8D4674003E for ; Tue, 30 Jul 2024 15:08:08 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=qbExo7JgKIlJ1IHnyZg08Rd908jr6wlD5B+5zWQpUKI=; 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=1722352088; v=1; b=oF8YcXOJ72Ba4aTY/5sokACbF6mcBOw1YOrGeqQY/Wnz2V4qbwZpSPUIupX0mG2pIz6PeTFg 4M0jQ724nlyftuCvTvhX2xFHI4EQN56CKv+cVlaCy0UR3PzuT6kTgdjXPfXq5Wzwiq6Fj5sVxNX kBwfY6sQkrC2JfNYqt58pVTp+lpKH1GCAyXAkMvwI0dD5Gn0ZF6SARhgUFJxuQ1lhAz3aYXuDoL kfVHbNuWLSXkKnoLOxoIWuU9EUIFzDAFmVknWSqmcIQAGG8pnilUQ/YzhIzW/K90R8kLZOTAVk+ fTsjszRhLWK+0ihPXfFQb4Ex1zYO2hd8+Q76EA/pQhRJQ== X-Received: by 127.0.0.2 with SMTP id sHudYY7687511x34N2Sbc6la; Tue, 30 Jul 2024 08:08:07 -0700 X-Received: from mail-ej1-f74.google.com (mail-ej1-f74.google.com [209.85.218.74]) by mx.groups.io with SMTP id smtpd.web11.31687.1721895934449600557 for ; Thu, 25 Jul 2024 01:25:34 -0700 X-Received: by mail-ej1-f74.google.com with SMTP id a640c23a62f3a-a7ab4817f34so24195866b.2 for ; Thu, 25 Jul 2024 01:25:34 -0700 (PDT) X-Gm-Message-State: EM4mfkz4Vh4ruxABzKDfN5Xyx7686176AA= X-Google-Smtp-Source: AGHT+IE5lw1coaJ9o3SgRSySp1RIhoPePI07OgqDUQr+PzrC2wO70g2TXBZg3U5X6OAmqAh/xFaKBTxp X-Received: from palermo.c.googlers.com ([fda3:e722:ac3:cc00:28:9cb1:c0a8:118a]) (user=ardb job=sendgmr) by 2002:a17:906:3686:b0:a7a:83f0:ef00 with SMTP id a640c23a62f3a-a7ac52ccd3cmr111066b.11.1721895932575; Thu, 25 Jul 2024 01:25:32 -0700 (PDT) Date: Thu, 25 Jul 2024 10:25:01 +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-11-ardb+git@google.com> Subject: [edk2-devel] [PATCH edk2-platforms 10/11] Silicon/NxpQoriqLs: Switch to generic ArmPsciResetSystemLib From: "Ard Biesheuvel via groups.io" To: devel@edk2.groups.io Cc: Ard Biesheuvel , Leif Lindholm , Meenakshi Aggarwal 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=oF8YcXOJ; 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: Leif Lindholm Cc: Meenakshi Aggarwal Signed-off-by: Ard Biesheuvel --- Silicon/NXP/NxpQoriqLs.dsc.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Silicon/NXP/NxpQoriqLs.dsc.inc b/Silicon/NXP/NxpQoriqLs.dsc.inc index 21549dc20aa7..eef0ffa9a9a6 100644 --- a/Silicon/NXP/NxpQoriqLs.dsc.inc +++ b/Silicon/NXP/NxpQoriqLs.dsc.inc @@ -101,7 +101,8 @@ [LibraryClasses.common] ImagePropertiesRecordLib|MdeModulePkg/Library/ImagePropertiesRecordLib/ImagePropertiesRecordLib.inf I2cLib|Silicon/NXP/Library/I2cLib/I2cLib.inf - ResetSystemLib|ArmPkg/Library/ArmSmcPsciResetSystemLib/ArmSmcPsciResetSystemLib.inf + ResetSystemLib|ArmPkg/Library/ArmPsciResetSystemLib/ArmPsciResetSystemLib.inf + ArmMonitorLib|ArmPkg/Library/ArmMonitorLib/ArmMonitorLib.inf IoAccessLib|Silicon/NXP/Library/IoAccessLib/IoAccessLib.inf PlatformPeiLib|ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf -- 2.46.0.rc1.232.g9752f9e123-goog -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#120092): https://edk2.groups.io/g/devel/message/120092 Mute This Topic: https://groups.io/mt/107628956/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io] -=-=-=-=-=-=-=-=-=-=-=-