blob: 2f65ac23182ca65bcaa509d5288185a6f5b85b09 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
TsiChungLiew4a442d32007-08-16 19:23:50 -05002/*
3 *
4 * (C) Copyright 2000-2003
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
Alison Wangc6d88632012-03-26 21:49:06 +00007 * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc.
TsiChungLiew4a442d32007-08-16 19:23:50 -05008 * TsiChung Liew (Tsi-Chung.Liew@freescale.com)
TsiChungLiew4a442d32007-08-16 19:23:50 -05009 */
10
11#include <common.h>
Simon Glassd96c2602019-12-28 10:44:58 -070012#include <clock_legacy.h>
TsiChungLiew4a442d32007-08-16 19:23:50 -050013#include <asm/processor.h>
14
15#include <asm/immap.h>
Alison Wangc6d88632012-03-26 21:49:06 +000016#include <asm/io.h>
TsiChungLiew4a442d32007-08-16 19:23:50 -050017
18DECLARE_GLOBAL_DATA_PTR;
19/*
20 * get_clocks() fills in gd->cpu_clock and gd->bus_clk
21 */
22int get_clocks(void)
23{
Alison Wangc6d88632012-03-26 21:49:06 +000024 pll_t *pll = (pll_t *)(MMAP_PLL);
TsiChungLiew4a442d32007-08-16 19:23:50 -050025
Alison Wangc6d88632012-03-26 21:49:06 +000026 out_be32(&pll->syncr, PLL_SYNCR_MFD(1));
TsiChungLiew4a442d32007-08-16 19:23:50 -050027
Alison Wangc6d88632012-03-26 21:49:06 +000028 while (!(in_be32(&pll->synsr) & PLL_SYNSR_LOCK))
29 ;
Stefan Roese8280f6a2007-08-18 14:33:02 +020030
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020031 gd->bus_clk = CONFIG_SYS_CLK;
TsiChungLiew4a442d32007-08-16 19:23:50 -050032 gd->cpu_clk = (gd->bus_clk * 2);
Stefan Roese8280f6a2007-08-18 14:33:02 +020033
Heiko Schocher00f792e2012-10-24 13:48:22 +020034#ifdef CONFIG_SYS_I2C_FSL
Simon Glass609e6ec2012-12-13 20:48:49 +000035 gd->arch.i2c1_clk = gd->bus_clk;
TsiChung Lieweec567a2008-08-19 03:01:19 +060036#endif
37
TsiChungLiew4a442d32007-08-16 19:23:50 -050038 return (0);
39}