From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stefan Agner Date: Fri, 05 Jan 2018 15:01:47 +0100 Subject: [U-Boot] [PATCH 3/3] imx: initialize and use generic timer on i.MX 6UL/ULL In-Reply-To: References: <20180102004328.26325-1-stefan@agner.ch> <20180102004328.26325-3-stefan@agner.ch> Message-ID: <212955dd6b729fda125bd75fbdf2023c@agner.ch> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On 2018-01-05 13:40, Fabio Estevam wrote: > On Mon, Jan 1, 2018 at 10:43 PM, Stefan Agner wrote: > >> --- a/arch/arm/mach-imx/mx6/Kconfig >> +++ b/arch/arm/mach-imx/mx6/Kconfig >> @@ -9,7 +9,7 @@ config MX6_SMP >> >> config MX6 >> select ARM_ERRATA_743622 if !MX6UL && !MX6ULL >> - select GPT_TIMER >> + select GPT_TIMER if !MX6UL && !MX6ULL >> bool >> default y >> imply CMD_FUSE >> @@ -54,6 +54,7 @@ config MX6UL >> select HAS_CAAM >> select SYS_L2CACHE_OFF >> select ROM_UNIFIED_SECTIONS >> + select SYSCOUNTER_TIMER >> bool >> >> config MX6UL_LITESOM >> @@ -76,6 +77,7 @@ config MX6UL_OPOS6UL >> config MX6ULL >> select SYS_L2CACHE_OFF >> select ROM_UNIFIED_SECTIONS >> + select SYSCOUNTER_TIMER > > This is not needed as MX6UL_LITESOM already selects MX6UL. This does not add it to MX6UL_LITESOM, it adds it to "config MX6ULL". diff is somewhat confusing here. -- Stefan > > Other than that: > > Reviewed-by: Fabio Estevam