1// SPDX-License-Identifier: GPL-2.0+
2/*
3 * (C) Copyright 2014  Angelo Dureghello <angelo@sysam.it>
4 *
5 */
6
7#include <clock_legacy.h>
8#include <asm/global_data.h>
9#include <asm/processor.h>
10#include <asm/immap.h>
11
12DECLARE_GLOBAL_DATA_PTR;
13
14/* get_clocks() fills in gd->cpu_clock and gd->bus_clk */
15int get_clocks(void)
16{
17#if defined(CONFIG_M5307)
18	gd->bus_clk = CFG_SYS_CLK;
19	gd->cpu_clk = CFG_SYS_CPU_CLK;
20#endif
21
22	return 0;
23}
24