From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by mx.groups.io with SMTP id smtpd.web09.28.1575287722006411687 for ; Mon, 02 Dec 2019 03:55:22 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@akeo-ie.20150623.gappssmtp.com header.s=20150623 header.b=Qq4o9TUd; spf=none, err=permanent DNS error (domain: akeo.ie, ip: 209.85.221.66, mailfrom: pete@akeo.ie) Received: by mail-wr1-f66.google.com with SMTP id z3so43851996wru.3 for ; Mon, 02 Dec 2019 03:55:21 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akeo-ie.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=wCjcGVt94stpuPbWYqhC5MQfGNqV36NowLwTIHn3EKI=; b=Qq4o9TUdxpvE1SZf9ontcZvlCTe0/WSNHlTu3Wbd8/fF1msgKi9Vwcp1zXUAMKNvBx rVN4KR2mROILwP9Pq3QtIFWUNU0h5j/QWb1H5Ki7hD54yHxvjihvEEJQ81BIBw1cInAd HTOVS4fmMyaWdpgK0n0STL0c7GMHmMZc3CrbuJTTq1yPVHyGt662jOP8JqS4BN8PxEQ9 FoWQkQK7phWQbOAYJqwkHjGQ3sgCp5xNHOnH9I5mrj1CsGEhJ8sYUlTvtIUd3Qd7jxIZ XO4e76/Bm6iAzwRpnpvXWATy+JoW3nZDvcDwR57MS0UwkxVG3jBDlQkDfUHUO8KDCaAv OQ7Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:mime-version :content-transfer-encoding; bh=wCjcGVt94stpuPbWYqhC5MQfGNqV36NowLwTIHn3EKI=; b=omXPEvGMlNn1HANeZZryEDkN8HQbmd7krD/N0ZSvt1j8hDYLtpB7si1nkLNvQBuVvw EAeb5+uOXqRCqd8MWW6kUkonbQMXY4Mtoptiihfcq6NqYTI+/v426UTcQA1mlLRlqlhi oPdGRDea0cStiZi+NGAQA7qbZyaI2DR2nKi9Bnnx9UeXLt0ekIEMENBJ2aK3Q/4I4Cck B+T48jI0343AwZugf7o+3GA5rSCNy9wmXK62z2qmdKvbdbE8QUFK4NtPfLexKOqUf/3E YqtPccCSz/8W/hRwvpkvRI4QUFi6XRWwRcNZ1hb3RmZQMxoWUtiEjUfe9GIRBdQ1foZu 9bRw== X-Gm-Message-State: APjAAAVZ++/Zx9W6CG/wjdFcnJXFFicSN+t7SzzeqUFoWnqCWtWbuPAX gd+fd+1XGJV6GjM1Zon2O22wmgdqarA= X-Google-Smtp-Source: APXvYqwFVtRSkbdot+LIDHeFijdn8hIV/SSxdo5j2G/84X9Mk5HItDk1cyF5GIkriQmyLF1z8BaIwA== X-Received: by 2002:adf:93c5:: with SMTP id 63mr9260137wrp.236.1575287720204; Mon, 02 Dec 2019 03:55:20 -0800 (PST) Return-Path: Received: from localhost.localdomain ([84.203.45.230]) by smtp.gmail.com with ESMTPSA id p10sm8500291wmi.15.2019.12.02.03.55.18 (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 02 Dec 2019 03:55:18 -0800 (PST) From: "Pete Batard" To: devel@edk2.groups.io Cc: ard.biesheuvel@linaro.org, leif.lindholm@linaro.org, philmd@redhat.com Subject: [edk2-platforms][PATCH 0/3] Silicon/Broadcom/Bcm283x: RNG improvements Date: Mon, 2 Dec 2019 11:55:03 +0000 Message-Id: <20191202115506.4068-1-pete@akeo.ie> X-Mailer: git-send-email 2.21.0.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit This patch series is targetted at adding support for the Bcm2838 Random Generator Driver, so that it can be used on the Raspberry Pi 4. Pete Batard (3): Silicon/Broadcom/Bcm283x: Rename Bcm2835 RNG driver Silicon/Broadcom/Bcm283x: Move Bcm2835 RNG defines to their own header Silicon/Broadcom/Bcm283x: Add Bcm2838 RNG driver Platform/RaspberryPi/RPi3/RPi3.dsc | 2 +- Platform/RaspberryPi/RPi3/RPi3.fdf | 2 +- Silicon/Broadcom/Bcm283x/Drivers/{RngDxe/RngDxe.c => Bcm2835RngDxe/Bcm2835RngDxe.c} | 18 +- Silicon/Broadcom/Bcm283x/Drivers/{RngDxe/RngDxe.inf => Bcm2835RngDxe/Bcm2835RngDxe.inf} | 6 +- Silicon/Broadcom/Bcm283x/Drivers/Bcm2838RngDxe/Bcm2838RngDxe.c | 285 ++++++++++++++++++++ Silicon/Broadcom/Bcm283x/Drivers/Bcm2838RngDxe/Bcm2838RngDxe.inf | 46 ++++ Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2835Rng.h | 22 ++ Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2836.h | 9 - Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2838Rng.h | 30 +++ 9 files changed, 397 insertions(+), 23 deletions(-) rename Silicon/Broadcom/Bcm283x/Drivers/{RngDxe/RngDxe.c => Bcm2835RngDxe/Bcm2835RngDxe.c} (93%) rename Silicon/Broadcom/Bcm283x/Drivers/{RngDxe/RngDxe.inf => Bcm2835RngDxe/Bcm2835RngDxe.inf} (82%) create mode 100644 Silicon/Broadcom/Bcm283x/Drivers/Bcm2838RngDxe/Bcm2838RngDxe.c create mode 100644 Silicon/Broadcom/Bcm283x/Drivers/Bcm2838RngDxe/Bcm2838RngDxe.inf create mode 100644 Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2835Rng.h create mode 100644 Silicon/Broadcom/Bcm283x/Include/IndustryStandard/Bcm2838Rng.h -- 2.21.0.windows.1