From mboxrd@z Thu Jan 1 00:00:00 1970 From: Simon Goldschmidt Date: Tue, 22 Oct 2019 20:26:52 +0200 Subject: [U-Boot] [PATCH v5 04/19] arm: socfpga: agilex: Add reset manager support In-Reply-To: <1570787542-40896-5-git-send-email-ley.foon.tan@intel.com> References: <1570787542-40896-1-git-send-email-ley.foon.tan@intel.com> <1570787542-40896-5-git-send-email-ley.foon.tan@intel.com> Message-ID: <43fc6132-1689-67ba-2885-35a11bd2a8b7@gmail.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 11.10.2019 um 11:52 schrieb Ley Foon Tan: > Add reset manager support for Agilex. > > Signed-off-by: Ley Foon Tan Reviewed-by: Simon Goldschmidt > > --- > v5: > - Remove reset_reset_manager_agilex.h and use reset_manager_soc64.h. > > v3: > - Add reset_manager_soc64.h > - Convert to use defines instead of struct. > --- > arch/arm/mach-socfpga/include/mach/reset_manager.h | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/arch/arm/mach-socfpga/include/mach/reset_manager.h b/arch/arm/mach-socfpga/include/mach/reset_manager.h > index b077b077f8..2c83563d5e 100644 > --- a/arch/arm/mach-socfpga/include/mach/reset_manager.h > +++ b/arch/arm/mach-socfpga/include/mach/reset_manager.h > @@ -43,7 +43,8 @@ void socfpga_per_reset_all(void); > #include > #elif defined(CONFIG_TARGET_SOCFPGA_ARRIA10) > #include > -#elif defined(CONFIG_TARGET_SOCFPGA_STRATIX10) > +#elif defined(CONFIG_TARGET_SOCFPGA_STRATIX10) || \ > + defined(CONFIG_TARGET_SOCFPGA_AGILEX) > #include > #endif > >