From mboxrd@z Thu Jan 1 00:00:00 1970 From: Heinrich Schuchardt Date: Sat, 28 Dec 2019 07:25:47 +0100 Subject: [PATCH v6 6/8] configs: sandbox: Enable random number generator(rng) device In-Reply-To: <1577456594-22884-7-git-send-email-sughosh.ganu@linaro.org> References: <1577456594-22884-1-git-send-email-sughosh.ganu@linaro.org> <1577456594-22884-7-git-send-email-sughosh.ganu@linaro.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 12/27/19 3:23 PM, Sughosh Ganu wrote: > Enable support for random number generator on sandbox configs. This is > aimed primarily at adding unit test support for rng uclass. > > Signed-off-by: Sughosh Ganu > Reviewed-by: Patrice Chotard > Reviewed-by: Patrick Delaunay Why do you exclude: * configs/sandbox_flattree_defconfig, * configs/sandbox_spl_defconfig? Best regards Heinrich > --- > configs/sandbox64_defconfig | 2 ++ > configs/sandbox_defconfig | 2 ++ > 2 files changed, 4 insertions(+) > > diff --git a/configs/sandbox64_defconfig b/configs/sandbox64_defconfig > index cc536ff..a21d832 100644 > --- a/configs/sandbox64_defconfig > +++ b/configs/sandbox64_defconfig > @@ -158,6 +158,8 @@ CONFIG_REGULATOR_RK8XX=y > CONFIG_REGULATOR_S5M8767=y > CONFIG_DM_REGULATOR_SANDBOX=y > CONFIG_REGULATOR_TPS65090=y > +CONFIG_DM_RNG=y > +CONFIG_RNG_SANDBOX=y > CONFIG_DM_PWM=y > CONFIG_PWM_SANDBOX=y > CONFIG_RAM=y > diff --git a/configs/sandbox_defconfig b/configs/sandbox_defconfig > index 64245f7..9bdc0f5 100644 > --- a/configs/sandbox_defconfig > +++ b/configs/sandbox_defconfig > @@ -179,6 +179,8 @@ CONFIG_REGULATOR_RK8XX=y > CONFIG_REGULATOR_S5M8767=y > CONFIG_DM_REGULATOR_SANDBOX=y > CONFIG_REGULATOR_TPS65090=y > +CONFIG_DM_RNG=y > +CONFIG_RNG_SANDBOX=y > CONFIG_DM_PWM=y > CONFIG_PWM_SANDBOX=y > CONFIG_RAM=y >