blob: cf53dfeb150af2fda519509aed5661144406125d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
angelo@sysam.ite77e65d2015-02-12 01:40:00 +01002/*
3 * (C) Copyright 2014 Angelo Dureghello <angelo@sysam.it>
4 *
angelo@sysam.ite77e65d2015-02-12 01:40:00 +01005 */
6
7#include <common.h>
Simon Glassd96c2602019-12-28 10:44:58 -07008#include <clock_legacy.h>
angelo@sysam.ite77e65d2015-02-12 01:40:00 +01009#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 = CONFIG_SYS_CLK;
19 gd->cpu_clk = CONFIG_SYS_CPU_CLK;
20#endif
21
22 return 0;
23}