mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 06:04:34 +00:00
049f8d6f4a
This function related to timer and most of the timer functions are in time.h, so move this function there. Signed-off-by: Simon Glass <sjg@chromium.org>
29 lines
858 B
C
29 lines
858 B
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2008 (C) Bryan O'Donoghue
|
|
*
|
|
* Code copied & edited from Freescale mpc85xx stuff.
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <time.h>
|
|
#include <linux/libfdt.h>
|
|
#include <fdt_support.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
void ft_cpu_setup(void *blob, bd_t *bd)
|
|
{
|
|
do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
|
|
"timebase-frequency", get_tbclk(), 1);
|
|
do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
|
|
"bus-frequency", bd->bi_busfreq, 1);
|
|
do_fixup_by_prop_u32(blob, "device_type", "cpu", 4,
|
|
"clock-frequency", bd->bi_intfreq, 1);
|
|
do_fixup_by_compat_u32(blob, "fsl,pq1-soc", "clock-frequency",
|
|
bd->bi_intfreq, 1);
|
|
do_fixup_by_compat_u32(blob, "fsl,cpm-brg", "clock-frequency",
|
|
gd->arch.brg_clk, 1);
|
|
|
|
fdt_fixup_memory(blob, (u64)bd->bi_memstart, (u64)bd->bi_memsize);
|
|
}
|