blob: 61b8fe71b1aefaf26885038a12f2b82b4a9ece61 [file] [log] [blame]
Michal Simek2e53eb22022-09-19 14:21:02 +02001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2016 - 2022, Xilinx, Inc.
4 * Copyright (C) 2022, Advanced Micro Devices, Inc.
5 *
6 * Michal Simek <michal.simek@amd.com>
7 */
8
Michal Simek2e53eb22022-09-19 14:21:02 +02009#include <init.h>
10#include <time.h>
11#include <asm/global_data.h>
Michal Simek2e53eb22022-09-19 14:21:02 +020012
13DECLARE_GLOBAL_DATA_PTR;
14
15#ifdef CONFIG_CLOCKS
16/**
17 * set_cpu_clk_info - Initialize clock framework
18 *
19 * Return: 0 always.
20 *
21 * This function is called from common code after relocation and sets up the
22 * clock framework. The framework must not be used before this function had been
23 * called.
24 */
25int set_cpu_clk_info(void)
26{
27 gd->cpu_clk = get_tbclk();
28
29 gd->bd->bi_arm_freq = gd->cpu_clk / 1000000;
30 gd->bd->bi_dsp_freq = 0;
31
32 return 0;
33}
34#endif