From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-qt0-x22c.google.com (mail-qt0-x22c.google.com [IPv6:2607:f8b0:400d:c0d::22c]) (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 D136821A04811 for ; Wed, 5 Apr 2017 07:10:22 -0700 (PDT) Received: by mail-qt0-x22c.google.com with SMTP id r45so11353723qte.3 for ; Wed, 05 Apr 2017 07:10:22 -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=6aA9NTYVCvdAXWvvc56hxp0oENDwVi1Gr+HvoI2AWdI=; b=aSFHgSiX5Yx+lLOP+XkYZUXjgycxYhsb0AFNlSXWvtMCWRrhJ2+AEjMDaGOWG7uTnH sSLD5Nm6NEB1R3zodeL6rYL5nY4TOc52fSzF3YzACBIcUV1NMM2jwSqDUh4nxp0NqfyS URj02LK+Y/PpeG3UaLQ/KHdAnIjJCkOiqGCrk= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:in-reply-to:references:from:date :message-id:subject:to:cc; bh=6aA9NTYVCvdAXWvvc56hxp0oENDwVi1Gr+HvoI2AWdI=; b=qiKYpLhY8MambocsirZLMw9RhWY4d/SWk+Y0kqUAABxA/m2ElfEPHdnkfBiXLes41+ SmLhurUOoE8lazHdFpuXXw+STwFZxSsD+xsTqNogTVHYFR90oq6WJQlspygnqtNEqnu6 puKMi6gIF+9Nab5D6olHqfPija1Fb4et77ufp9mUMLS4vH2HXHtjAnkTAb1WgnrfLJVg 0i9fIpdXV7ey9Tf3i0L8iHRPr1FSafNH8+GKthxrLGrKDW9HfnRndmrmu2/710HhERMy uP8Fj9z6Du47BqwbvU7D2tN9F1AgWaq8r5Kkf3EWwsihXciO16EiqsqD5vv9xRePe1O4 xBFw== X-Gm-Message-State: AFeK/H0UHH0MJq2rWgMpKAEYDSm85sIgC4/A5mIpkfZCDp7pyXtvGW+2n1gGf64DFs+41I3r6vnB2O85tQTBSIH9 X-Received: by 10.237.62.28 with SMTP id l28mr28052553qtf.89.1491401421769; Wed, 05 Apr 2017 07:10:21 -0700 (PDT) MIME-Version: 1.0 Received: by 10.140.36.138 with HTTP; Wed, 5 Apr 2017 07:10:21 -0700 (PDT) In-Reply-To: <20170405140055.28937-1-ard.biesheuvel@linaro.org> References: <20170405140055.28937-1-ard.biesheuvel@linaro.org> From: Ryan Harkin Date: Wed, 5 Apr 2017 15:10:21 +0100 Message-ID: To: Ard Biesheuvel Cc: "edk2-devel@lists.01.org" , Leif Lindholm Subject: Re: [PATCH v4 0/4] Juno cleanup -- OpenPlatformPkg edition X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Apr 2017 14:10:23 -0000 Content-Type: text/plain; charset=UTF-8 On 5 April 2017 at 15:00, Ard Biesheuvel wrote: > Counterpart to the EDK2 series switching Juno to the generic non-discoverable > device driver and generic PCI host bridge driver. > > v4: fixed a number of non-functional issues -- include ordering, incorrect > BASE_NAME, commit log clarifications > add RBs and TBs I don't see my TBs in there, is gmail messing me about or are they not there? > > Ard Biesheuvel (4): > Platforms/Juno: add non-discoverable device driver and library > Platforms/Juno: add PciHostBridgeLib implementation > Platforms/Juno: switch to generic PCI host bridge driver > Platforms/Juno: remove BdsLib dependency > > Platforms/ARM/Juno/ArmJuno.dsc | 24 ++- > Platforms/ARM/Juno/ArmJuno.fdf | 11 +- > Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.c | 199 ++++++++++++++++++++ > Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf | 77 ++++++++ > Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.c | 182 ++++++++++++++++++ > Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.h | 107 +++++++++++ > 6 files changed, 585 insertions(+), 15 deletions(-) > create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.c > create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/JunoPciHostBridgeLib.inf > create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.c > create mode 100644 Platforms/ARM/Juno/Library/JunoPciHostBridgeLib/XPressRich3.h > > -- > 2.9.3 >