blob: b82cea4ccb6d643f5558fad1647bffca4f5dbb77 [file] [log] [blame]
Michal Simekec48b6c2018-08-22 14:55:27 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2016 - 2018 Xilinx, Inc.
4 * Michal Simek <michal.simek@xilinx.com>
5 */
6
7#include <common.h>
8
9DECLARE_GLOBAL_DATA_PTR;
10
11#ifdef CONFIG_CLOCKS
12/**
13 * set_cpu_clk_info - Initialize clock framework
14 *
15 * Return: 0 always.
16 *
17 * This function is called from common code after relocation and sets up the
18 * clock framework. The framework must not be used before this function had been
19 * called.
20 */
21int set_cpu_clk_info(void)
22{
23 gd->cpu_clk = get_tbclk();
24
25 gd->bd->bi_arm_freq = gd->cpu_clk / 1000000;
26 gd->bd->bi_dsp_freq = 0;
27
28 return 0;
29}
30#endif