mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] ARM: at91: support sama5 low level clock setup with oscillator
@ 2020-09-28 10:08 Ahmad Fatoum
  2020-09-29  7:01 ` Sascha Hauer
  0 siblings, 1 reply; 2+ messages in thread
From: Ahmad Fatoum @ 2020-09-28 10:08 UTC (permalink / raw)
  To: barebox; +Cc: Ahmad Fatoum, Michael Grzeschik

AT91Bootstrap has a CONFIG_MCK_BYPASS option with following help text:

  "Use external 8 to 24 Mhz clock signal as source of main clock
  instead of an external crystal oscillator.
  This option disables the internal driving on the XOUT pin.
  The external source has to provide a stable clock on the XIN pin.
  If this option is disabled, the SoC expects a crystal oscillator
  that needs driving on both XIN and XOUT lines."

When the low level clock setup was ported over from AT91Bootstrap,
this config option was dropped. It wasn't necessary for the xplained
boards that have a crystal, but for ones with an oscillator, it's
required. Add the bit flag back.

Suggested-by: Michael Grzeschik <mgr@pengutronix.de>
Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
---
 arch/arm/mach-at91/at91_pmc_ll.c              | 2 ++
 arch/arm/mach-at91/include/mach/at91_pmc_ll.h | 5 +++++
 2 files changed, 7 insertions(+)

diff --git a/arch/arm/mach-at91/at91_pmc_ll.c b/arch/arm/mach-at91/at91_pmc_ll.c
index 9205322db972..e561f207551d 100644
--- a/arch/arm/mach-at91/at91_pmc_ll.c
+++ b/arch/arm/mach-at91/at91_pmc_ll.c
@@ -88,6 +88,8 @@ void at91_pmc_init(void __iomem *pmc_base, unsigned int flags)
 		tmp &= ~AT91_PMC_OSCBYPASS;
 		tmp &= ~AT91_PMC_KEY_MASK;
 		tmp |= AT91_PMC_KEY;
+		if (flags & AT91_PMC_LL_FLAG_MCK_BYPASS)
+			tmp |= AT91_PMC_OSCBYPASS;
 		at91_pmc_write(AT91_CKGR_MOR, tmp);
 
 		tmp = at91_pmc_read(AT91_CKGR_MOR);
diff --git a/arch/arm/mach-at91/include/mach/at91_pmc_ll.h b/arch/arm/mach-at91/include/mach/at91_pmc_ll.h
index 6ec3ae0852c6..85896a01d5b5 100644
--- a/arch/arm/mach-at91/include/mach/at91_pmc_ll.h
+++ b/arch/arm/mach-at91/include/mach/at91_pmc_ll.h
@@ -16,6 +16,7 @@
 #define AT91_PMC_LL_FLAG_H32MXDIV	(1 << 3)
 #define AT91_PMC_LL_FLAG_PMC_UTMI	(1 << 4)
 #define AT91_PMC_LL_FLAG_GCSR		(1 << 5)
+#define AT91_PMC_LL_FLAG_MCK_BYPASS	(1 << 6)
 
 #define AT91_PMC_LL_AT91RM9200	(0)
 #define AT91_PMC_LL_AT91SAM9260	(0)
@@ -30,6 +31,10 @@
 #define AT91_PMC_LL_SAMA5D2	(AT91_PMC_LL_FLAG_SAM9X5_PMC | \
 				 AT91_PMC_LL_FLAG_MEASURE_XTAL | \
 				 AT91_PMC_LL_FLAG_PMC_UTMI)
+/* This assumes a crystal on both XIN and XOUT. If your board
+ * instead has an extenal oscillator on XIN only,
+ * AT91_PMC_LL_FLAG_MCK_BYPASS needs to be OR`ed in as well
+ */
 #define AT91_PMC_LL_SAMA5D3	(AT91_PMC_LL_FLAG_SAM9X5_PMC | \
 				 AT91_PMC_LL_FLAG_DISABLE_RC | \
 				 AT91_PMC_LL_FLAG_PMC_UTMI)
-- 
2.28.0


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] ARM: at91: support sama5 low level clock setup with oscillator
  2020-09-28 10:08 [PATCH] ARM: at91: support sama5 low level clock setup with oscillator Ahmad Fatoum
@ 2020-09-29  7:01 ` Sascha Hauer
  0 siblings, 0 replies; 2+ messages in thread
From: Sascha Hauer @ 2020-09-29  7:01 UTC (permalink / raw)
  To: Ahmad Fatoum; +Cc: barebox, Michael Grzeschik

On Mon, Sep 28, 2020 at 12:08:09PM +0200, Ahmad Fatoum wrote:
> AT91Bootstrap has a CONFIG_MCK_BYPASS option with following help text:
> 
>   "Use external 8 to 24 Mhz clock signal as source of main clock
>   instead of an external crystal oscillator.
>   This option disables the internal driving on the XOUT pin.
>   The external source has to provide a stable clock on the XIN pin.
>   If this option is disabled, the SoC expects a crystal oscillator
>   that needs driving on both XIN and XOUT lines."
> 
> When the low level clock setup was ported over from AT91Bootstrap,
> this config option was dropped. It wasn't necessary for the xplained
> boards that have a crystal, but for ones with an oscillator, it's
> required. Add the bit flag back.
> 
> Suggested-by: Michael Grzeschik <mgr@pengutronix.de>
> Signed-off-by: Ahmad Fatoum <a.fatoum@pengutronix.de>
> ---
>  arch/arm/mach-at91/at91_pmc_ll.c              | 2 ++
>  arch/arm/mach-at91/include/mach/at91_pmc_ll.h | 5 +++++
>  2 files changed, 7 insertions(+)

Applied, thanks

Sascha


-- 
Pengutronix e.K.                           |                             |
Steuerwalder Str. 21                       | http://www.pengutronix.de/  |
31137 Hildesheim, Germany                  | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-09-29  7:01 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-09-28 10:08 [PATCH] ARM: at91: support sama5 low level clock setup with oscillator Ahmad Fatoum
2020-09-29  7:01 ` Sascha Hauer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox