From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-io0-x22d.google.com (mail-io0-x22d.google.com [IPv6:2607:f8b0:4001:c06::22d]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id DD8C01A1E05 for ; Fri, 7 Oct 2016 08:15:37 -0700 (PDT) Received: by mail-io0-x22d.google.com with SMTP id j37so50280412ioo.3 for ; Fri, 07 Oct 2016 08:15:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :cc; bh=nusKaqwiu/aCrKvfz3xnNNIVFXxWezvO10I3RYqQJWo=; b=JsBYN7jsUgeVJwyEF5wVDsYKW5Iyd23vc4Iui4RxTL1itEJbBvu4CpsIH6N/9lE6us zaZr1Hk9spgJtXyu1qwFo7pE9wbPs8/s25pngwZiqAyvDjZReNXH+aPtvJYRa/radUeQ RMgfElxqqAFvYWIQD5hCnC6oEv6/4JjC0waFM= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=nusKaqwiu/aCrKvfz3xnNNIVFXxWezvO10I3RYqQJWo=; b=mGQ2t82PqptZLI489G2irK8oZcxiTeBUP3JKwAjoHbqHJLPOglV2uOXEJpQ2MCK1St 2dtePacVYG8jCDsgY9d9LuglSTp/Ifa5mrAySHOSqCUL5QOCG7f7YJTp2kPSLe2Mf15H XB4C27GCx5mZXnzF6VqObUFrOhqA/TgGnLor70knqlzmJBeLG+2ipwdkZSBEtOq36Q5i smxUl0PVed+OWWJQ0le+jxQRLCVbgv18n0CT96krSoV341jXyTVnvcS66/WE34xN8ZmS raqOyHqTNZ1wRTibfobDyD/BuED5XqvxXF6vilgvAEyi4HfhwxYgjiX78tPhfWVRcCbr 80Iw== X-Gm-Message-State: AA6/9Rlo/ljyABgvq7DtvEGrdHzEYkS+Ku43SE6JX62ipNUFmSwW3NJqAvxpPwa9dP1Ak4j/mc2uZfMO90MNHcxZ X-Received: by 10.107.28.148 with SMTP id c142mr20105734ioc.45.1475853337124; Fri, 07 Oct 2016 08:15:37 -0700 (PDT) MIME-Version: 1.0 Received: by 10.107.5.139 with HTTP; Fri, 7 Oct 2016 08:15:36 -0700 (PDT) In-Reply-To: <1475853298-28327-1-git-send-email-ard.biesheuvel@linaro.org> References: <1475853298-28327-1-git-send-email-ard.biesheuvel@linaro.org> From: Ard Biesheuvel Date: Fri, 7 Oct 2016 16:15:36 +0100 Message-ID: To: edk2-devel-01 Cc: Leif Lindholm , Ard Biesheuvel Subject: Re: [PATCH] ArmPlatformPkg/PlatformPeiLib: allow patch PCDs for FV base address/size X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Oct 2016 15:15:38 -0000 Content-Type: text/plain; charset=UTF-8 On 7 October 2016 at 16:14, Ard Biesheuvel wrote: > Allow patchable or dynamic PCDs to be used for PcdFvBaseAddress and > PcdFvBaseSize, so that platforms whose UEFI image may be loaded anywhere > in memory can use PlatformPeiLib. > ... and also, drop some references to PCDs that are in fact not used. > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Ard Biesheuvel > --- > ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf | 11 +---------- > 1 file changed, 1 insertion(+), 10 deletions(-) > > diff --git a/ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf b/ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf > index 314789d0a990..2363d9aa966e 100644 > --- a/ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf > +++ b/ArmPlatformPkg/PlatformPei/PlatformPeiLib.inf > @@ -39,15 +39,6 @@ [Ppis] > gEfiPeiMasterBootModePpiGuid # PPI ALWAYS_PRODUCED > gEfiPeiBootInRecoveryModePpiGuid # PPI SOMETIMES_PRODUCED > > -[FixedPcd] > - gArmTokenSpaceGuid.PcdFdBaseAddress > - gArmTokenSpaceGuid.PcdFdSize > - > +[Pcd] > gArmTokenSpaceGuid.PcdFvBaseAddress > gArmTokenSpaceGuid.PcdFvSize > - > - gEmbeddedTokenSpaceGuid.PcdPrePiCpuMemorySize > - gEmbeddedTokenSpaceGuid.PcdPrePiCpuIoSize > - > -[depex] > - TRUE > -- > 2.7.4 >