Skip to content
Snippets Groups Projects
Commit f5feb5af authored by bhaskar upadhaya's avatar bhaskar upadhaya Committed by Kumar Gala
Browse files

powerpc/85xx: Update timer-frequency prop in ptp_timer node of device tree


Fix up the device tree property associated with the IEEE 1588 timer
source frequency.  Currently we only support the IEEE 1588 timer source
being the internal eTSEC system clock (for those SoCs with IEEE 1588
support).  The eTSEC clock is ccb_clk/2.

Signed-off-by: default avatarBhaskar Upadhaya <Bhaskar.Upadhaya@freescale.com>
Signed-off-by: default avatarKumar Gala <galak@kernel.crashing.org>
parent 939cdcdc
No related branches found
No related tags found
No related merge requests found
......@@ -486,4 +486,13 @@ void ft_cpu_setup(void *blob, bd_t *bd)
#ifdef CONFIG_SYS_SRIO
ft_srio_setup(blob);
#endif
/*
* system-clock = CCB clock/2
* Here gd->bus_clk = CCB clock
* We are using the system clock as 1588 Timer reference
* clock source select
*/
do_fixup_by_compat_u32(blob, "fsl,gianfar-ptp-timer",
"timer-frequency", gd->bus_clk/2, 1);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment