blob: 3cf1986fc9cfeba35203d78cd349b3c438c4c7fc [file] [log] [blame]
angelo@sysam.ite77e65d2015-02-12 01:40:00 +01001/*
2 * (C) Copyright 2014 Angelo Dureghello <angelo@sysam.it>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 *
6 */
7
8#include <common.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 = CONFIG_SYS_CLK;
19 gd->cpu_clk = CONFIG_SYS_CPU_CLK;
20#endif
21
22 return 0;
23}