From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received-SPF: Pass (sender SPF authorized) identity=mailfrom; client-ip=2607:f8b0:400e:c05::241; helo=mail-pg0-x241.google.com; envelope-from=kalyankumar.nagabhirava@linaro.org; receiver=edk2-devel@lists.01.org Received: from mail-pg0-x241.google.com (mail-pg0-x241.google.com [IPv6:2607:f8b0:400e:c05::241]) (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 878C921CB87BF for ; Sun, 7 Jan 2018 21:40:39 -0800 (PST) Received: by mail-pg0-x241.google.com with SMTP id o13so4890332pgp.4 for ; Sun, 07 Jan 2018 21:45:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:subject:date:message-id; bh=qEiCHlpHLyTtiLAhcr+2LnhAOefsoe0hblFuuqr1Vsk=; b=j3gkENd8HgQFJskq1vHiORniDR6a46768Xk2mMKEDmkRo5F861Jg0A79sgeYkrhTpE /ewoqm0yMTOLbSHvoxredA7pBYKjI2enBTC7FQY9CLb2lNGJ58rmTv1ipAuUuvsyP52P GSn1d77Lg+g+e+w9DgAU92TfEWkBn5wbuMTiY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:subject:date:message-id; bh=qEiCHlpHLyTtiLAhcr+2LnhAOefsoe0hblFuuqr1Vsk=; b=mUgyy55kW5+QbDTKS3cDlAYWMfg8UzoO/7X2Vm7lQA3k/4wipUSDfDCA55QkC4DS0w xsosVEV+k6gJhD/RB/DKmPBO/PMOJ09jK+fU9RxZCXdm3ExBZNs+DhxMetjyxjZczGLC hASOZoHEGUEAOxTczWyAfSwhE2+ok8p743QbHFSzrvMBB6lwzC0/i2EJ7fCOEW+dvVqr cqbQ251HCAOvQYtNsVOmSnwfnt5ul1oc2Q/KMPYePDw59Xef5Z96WRO9Y73yACYusznD ndXCDbLtJs/MQrRcMenzMBtDjwXcEqqX4dSyS2jk6+QuGrnMLvfM0QJLtC/sHY5IsBpt cgiA== X-Gm-Message-State: AKGB3mKob0FvIN/fhSG5DYTEEoMHbRcCm5E3VToqToE24QAgI/SGtNWH DC0RNoz5qu8Ra/uY050ifBaCrN90FpE= X-Google-Smtp-Source: ACJfBovw+rzxzFZ6mJCLz+JGOZKt0ru25sI2/jfYayYrIfWded9dTD6y6mRv8mD2ScIUqcbDptjVLw== X-Received: by 10.98.17.7 with SMTP id z7mr9583118pfi.86.1515390348102; Sun, 07 Jan 2018 21:45:48 -0800 (PST) Received: from localhost.localdomain ([220.225.120.129]) by smtp.gmail.com with ESMTPSA id f188sm4348648pfc.22.2018.01.07.21.45.46 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Sun, 07 Jan 2018 21:45:46 -0800 (PST) From: kalyan-nagabhirava To: edk2-devel@lists.01.org Date: Mon, 8 Jan 2018 11:15:09 +0530 Message-Id: <20180108054513.2279-1-kalyankumar.nagabhirava@linaro.org> X-Mailer: git-send-email 2.15.0 Subject: [PATCH v1 0/4] edk2-platforms:Comcast:Rdk Qemu platform for RDK UEFI applications X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 08 Jan 2018 05:40:39 -0000 Linaro and RDK are working on standardizing the boot process for RDK STB boxes using Uefi. we implmented couple of RDK UEFI apllications(secure boot and DRI ) which are tested on RDK qemu platform. kalyan-nagabhirava (4): edk2-platforms: created Rdk Qemu platform for RDK UEFI applications edk2-platforms:comcast: RDK boot manger Library implementation edk2-platforms:comcast: RDK secure boot Application edk2-platforms:comcast: RDK DRI Application Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.dec | 50 ++ Platform/Comcast/RDKQemu/RDKQemu.dsc | 431 +++++++++++++++++ Platform/Comcast/RDKQemu/RDKQemu.fdf | 128 +++++ Platform/Comcast/Application/Dri/Dri.inf | 56 +++ Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.inf | 57 +++ Platform/Comcast/Application/SecureBoot/SecureBoot.inf | 57 +++ Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.inf | 79 +++ Platform/Comcast/Library/RdkBootManagerLib/Include/DiskIo.h | 20 + Platform/Comcast/Library/RdkBootManagerLib/Include/HttpBoot.h | 7 + Platform/Comcast/Library/RdkBootManagerLib/Include/List.h | 52 ++ Platform/Comcast/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h | 31 ++ Platform/Comcast/Library/RdkBootManagerLib/Include/RdkFile.h | 20 + Platform/Comcast/Library/RdkBootManagerLib/Include/SecureBoot.h | 40 ++ Platform/Comcast/Application/Dri/Dri.c | 26 + Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.c | 32 ++ Platform/Comcast/Application/SecureBoot/SecureBoot.c | 30 ++ Platform/Comcast/Library/RdkBootManagerLib/DiskIo.c | 358 ++++++++++++++ Platform/Comcast/Library/RdkBootManagerLib/HttpBoot.c | 323 +++++++++++++ Platform/Comcast/Library/RdkBootManagerLib/RdkFile.c | 345 +++++++++++++ Platform/Comcast/Library/RdkBootManagerLib/SecureBoot.c | 506 ++++++++++++++++++++ Platform/Comcast/RDKQemu/README | 77 +++ 21 files changed, 2725 insertions(+) create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.dec create mode 100644 Platform/Comcast/RDKQemu/RDKQemu.dsc create mode 100644 Platform/Comcast/RDKQemu/RDKQemu.fdf create mode 100644 Platform/Comcast/Application/Dri/Dri.inf create mode 100644 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.inf create mode 100644 Platform/Comcast/Application/SecureBoot/SecureBoot.inf create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkBootManagerLib.inf create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/DiskIo.h create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/HttpBoot.h create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/List.h create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkBootManagerLib.h create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/RdkFile.h create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/Include/SecureBoot.h create mode 100644 Platform/Comcast/Application/Dri/Dri.c create mode 100644 Platform/Comcast/Application/DriSecureBoot/DriSecureBoot.c create mode 100644 Platform/Comcast/Application/SecureBoot/SecureBoot.c create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/DiskIo.c create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/HttpBoot.c create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/RdkFile.c create mode 100644 Platform/Comcast/Library/RdkBootManagerLib/SecureBoot.c create mode 100644 Platform/Comcast/RDKQemu/README -- 2.15.0