Skip to content
Snippets Groups Projects
Commit 71074abb authored by Paul Gortmaker's avatar Paul Gortmaker Committed by Andrew Fleming-AFLEMING
Browse files

8xxx-fdt: set ns16550 clock from CFG_NS16550_CLK, not bi_busfreq


Some boards that have external 16550 UARTs don't have a direct
tie between bi_busfreq and the clock used for the UARTs.  Boards
that do have such a tie should set CFG_NS16550_CLK to be
get_bus_freq(0) -- which most of them do already.

Signed-off-by: default avatarPaul Gortmaker <paul.gortmaker@windriver.com>
Acked-by: default avatarKim Phillips <kim.phillips@freescale.com>
parent 24ef76f3
No related branches found
No related tags found
No related merge requests found
...@@ -78,7 +78,7 @@ void ft_cpu_setup(void *blob, bd_t *bd) ...@@ -78,7 +78,7 @@ void ft_cpu_setup(void *blob, bd_t *bd)
#ifdef CFG_NS16550 #ifdef CFG_NS16550
do_fixup_by_compat_u32(blob, "ns16550", do_fixup_by_compat_u32(blob, "ns16550",
"clock-frequency", bd->bi_busfreq, 1); "clock-frequency", CFG_NS16550_CLK, 1);
#endif #endif
fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize); fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
......
...@@ -229,7 +229,7 @@ void ft_cpu_setup(void *blob, bd_t *bd) ...@@ -229,7 +229,7 @@ void ft_cpu_setup(void *blob, bd_t *bd)
#ifdef CFG_NS16550 #ifdef CFG_NS16550
do_fixup_by_compat_u32(blob, "ns16550", do_fixup_by_compat_u32(blob, "ns16550",
"clock-frequency", bd->bi_busfreq, 1); "clock-frequency", CFG_NS16550_CLK, 1);
#endif #endif
#ifdef CONFIG_CPM2 #ifdef CONFIG_CPM2
......
...@@ -30,6 +30,6 @@ void ft_cpu_setup(void *blob, bd_t *bd) ...@@ -30,6 +30,6 @@ void ft_cpu_setup(void *blob, bd_t *bd)
#ifdef CFG_NS16550 #ifdef CFG_NS16550
do_fixup_by_compat_u32(blob, "ns16550", do_fixup_by_compat_u32(blob, "ns16550",
"clock-frequency", bd->bi_busfreq, 1); "clock-frequency", CFG_NS16550_CLK, 1);
#endif #endif
} }
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