From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by mx.groups.io with SMTP id smtpd.web10.6562.1634284800959319999 for ; Fri, 15 Oct 2021 01:00:01 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@kernel.org header.s=k20201202 header.b=j6VBqCin; spf=pass (domain: kernel.org, ip: 198.145.29.99, mailfrom: ardb@kernel.org) Received: by mail.kernel.org (Postfix) with ESMTPSA id 6547461037 for ; Fri, 15 Oct 2021 08:00:00 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1634284800; bh=OaJD0GQrUpP86JDen1Yx09Du4rGPDaQOBo6Tz1MXFQU=; h=References:In-Reply-To:From:Date:Subject:To:Cc:From; b=j6VBqCin7y/sih4I7jPyKJ6hdM3kKbN9aAU3nu9T6bhd5weWnsSwfJbJnGLYFSs+l OixUQIJ9x15OCHdDXLuC2hT8SliE6yujhc1gBHNi3n9YCxkTCo6ncVZj+15iZRzRT7 yAqu1i6CG3HYk5bvnSmpiUGzxdG+gSoFPXVu9hg/H7DQIGlSyw3m6pjWiC7/izqRu5 JuD4sCPqgAasQY3wkoiKJTtgGihxSeIcPj1mqrozC8QFloSMx5eI3KuvW5XfE5MnFe 9Fzviq31t6aTpS352Wd9mYoIRCXIcTXEh5v3OAqptvfzeU2nJ6af7FqjZ7m9qs4xQy c1pLmKMDN8P6A== Received: by mail-ot1-f41.google.com with SMTP id v2-20020a05683018c200b0054e3acddd91so11753139ote.8 for ; Fri, 15 Oct 2021 01:00:00 -0700 (PDT) X-Gm-Message-State: AOAM531F7ztwwmPh++0PzrY0AfamqEzWdwN1cqOoz/DHm7a/MiWsh0ZD 5e2RTm2/jAeazFiR7YnV1LzFZHVlNmw7hrkqVAg= X-Google-Smtp-Source: ABdhPJwfGDG4S8bo4VhD162Od3MxNbw7d+p+mkdKz4IQnEPpYvDOXAAqDr+oYTjeFXQA01BRWQRUt+VnClsToNeqP6Q= X-Received: by 2002:a05:6830:561:: with SMTP id f1mr6608769otc.30.1634284799698; Fri, 15 Oct 2021 00:59:59 -0700 (PDT) MIME-Version: 1.0 References: <20211015070008.28192-1-abner.chang@hpe.com> <20211015070008.28192-2-abner.chang@hpe.com> In-Reply-To: <20211015070008.28192-2-abner.chang@hpe.com> From: "Ard Biesheuvel" Date: Fri, 15 Oct 2021 09:59:48 +0200 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [edk2-platforms][PATCH 1/9] Platform/OverdriveBoard: Use PcdPciMmio(32)64Translation PCD from MdePkg To: Abner Chang Cc: edk2-devel-groups-io , Ard Biesheuvel , Leif Lindholm , Daniel Schaefer Content-Type: text/plain; charset="UTF-8" On Fri, 15 Oct 2021 at 09:58, Abner Chang wrote: > > Compliant with BZ: #3665 > https://bugzilla.tianocore.org/show_bug.cgi?id=3665 > > PcdPciMmio(32)64Translation PCD is relocated to MdePkg that leveraged > by both ARM and RISC-V arch. This patch uses the one from MdePkg > instead the one under ArmVirtPkg. > ArmVirtPkg?? > Signed-off-by: Abner Chang > Cc: Ard Biesheuvel > Cc: Leif Lindholm > Cc: Daniel Schaefer > --- > Platform/AMD/OverdriveBoard/OverdriveBoard.dsc | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) > > diff --git a/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc b/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc > index 91b8c7792e..af20739120 100644 > --- a/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc > +++ b/Platform/AMD/OverdriveBoard/OverdriveBoard.dsc > @@ -403,11 +403,11 @@ DEFINE X64EMU_ENABLE = FALSE > > gArmTokenSpaceGuid.PcdPciMmio32Base|0x40000000 > gArmTokenSpaceGuid.PcdPciMmio32Size|0x80000000 > - gArmTokenSpaceGuid.PcdPciMmio32Translation|0x0 > + gEfiMdePkgTokenSpaceGuid.PcdPciMmio32Translation|0x0 > > gArmTokenSpaceGuid.PcdPciMmio64Base|0x100000000 > gArmTokenSpaceGuid.PcdPciMmio64Size|0x7F00000000 > - gArmTokenSpaceGuid.PcdPciMmio64Translation|0x0 > + gEfiMdePkgTokenSpaceGuid.PcdPciMmio64Translation|0x0 > > ## Use PCI emulation for ATA PassThru > # gEfiMdeModulePkgTokenSpaceGuid.PcdAtaPassThruPciEmulation|TRUE > -- > 2.17.1 >