blob: b1e34796d0d1a7d59cb6d2d81200431ddf3fb835 [file] [log] [blame]
Michal Simek4b066a12018-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>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Simon Glassa9dc0682019-12-28 10:44:59 -07009#include <time.h>
Michal Simek4b066a12018-08-22 14:55:27 +020010
11DECLARE_GLOBAL_DATA_PTR;
12
13#ifdef CONFIG_CLOCKS
14/**
15 * set_cpu_clk_info - Initialize clock framework
16 *
17 * Return: 0 always.
18 *
19 * This function is called from common code after relocation and sets up the
20 * clock framework. The framework must not be used before this function had been
21 * called.
22 */
23int set_cpu_clk_info(void)
24{
25 gd->cpu_clk = get_tbclk();
26
27 gd->bd->bi_arm_freq = gd->cpu_clk / 1000000;
28 gd->bd->bi_dsp_freq = 0;
29
30 return 0;
31}
32#endif