Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 2 | /* |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 3 | * (C) Copyright 2003 |
| 4 | * Josef Baumgartner <josef.baumgartner@telex.de> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 5 | * |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 6 | * Copyright (C) 2004-2007, 2012 Freescale Semiconductor, Inc. |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 7 | * Hayden Fraser (Hayden.Fraser@freescale.com) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | #include <asm/processor.h> |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 12 | #include <asm/immap.h> |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 13 | #include <asm/io.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 14 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 15 | DECLARE_GLOBAL_DATA_PTR; |
| 16 | |
TsiChung Liew | bf9a521 | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 17 | /* get_clocks() fills in gd->cpu_clock and gd->bus_clk */ |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 18 | int get_clocks (void) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 19 | { |
TsiChung Liew | bf9a521 | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 20 | #if defined(CONFIG_M5208) |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 21 | pll_t *pll = (pll_t *) MMAP_PLL; |
TsiChung Liew | bf9a521 | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 22 | |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 23 | out_8(&pll->odr, CONFIG_SYS_PLL_ODR); |
| 24 | out_8(&pll->fdr, CONFIG_SYS_PLL_FDR); |
TsiChung Liew | bf9a521 | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 25 | #endif |
| 26 | |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 27 | #if defined(CONFIG_M5249) || defined(CONFIG_M5253) |
| 28 | volatile unsigned long cpll = mbar2_readLong(MCFSIM_PLLCR); |
| 29 | unsigned long pllcr; |
| 30 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 31 | #ifndef CONFIG_SYS_PLL_BYPASS |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 32 | |
stroese | 8c725b9 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 33 | #ifdef CONFIG_M5249 |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 34 | /* Setup the PLL to run at the specified speed */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 35 | #ifdef CONFIG_SYS_FAST_CLK |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 36 | pllcr = 0x925a3100; /* ~140MHz clock (PLL bypass = 0) */ |
| 37 | #else |
| 38 | pllcr = 0x135a4140; /* ~72MHz clock (PLL bypass = 0) */ |
| 39 | #endif |
| 40 | #endif /* CONFIG_M5249 */ |
| 41 | |
| 42 | #ifdef CONFIG_M5253 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 43 | pllcr = CONFIG_SYS_PLLCR; |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 44 | #endif /* CONFIG_M5253 */ |
| 45 | |
| 46 | cpll = cpll & 0xfffffffe; /* Set PLL bypass mode = 0 (PSTCLK = crystal) */ |
| 47 | mbar2_writeLong(MCFSIM_PLLCR, cpll); /* Set the PLL to bypass mode (PSTCLK = crystal) */ |
| 48 | mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* set the clock speed */ |
| 49 | pllcr ^= 0x00000001; /* Set pll bypass to 1 */ |
| 50 | mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* Start locking (pll bypass = 1) */ |
| 51 | udelay(0x20); /* Wait for a lock ... */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 52 | #endif /* #ifndef CONFIG_SYS_PLL_BYPASS */ |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 53 | |
| 54 | #endif /* CONFIG_M5249 || CONFIG_M5253 */ |
| 55 | |
Matthew Fettke | f71d9d9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 56 | #if defined(CONFIG_M5275) |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 57 | pll_t *pll = (pll_t *)(MMAP_PLL); |
Matthew Fettke | f71d9d9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 58 | |
Wolfgang Denk | 1aeed8d | 2008-04-13 09:59:26 -0700 | [diff] [blame] | 59 | /* Setup PLL */ |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 60 | out_be32(&pll->syncr, 0x01080000); |
| 61 | while (!(in_be32(&pll->synsr) & FMPLL_SYNSR_LOCK)) |
Wolfgang Denk | 1aeed8d | 2008-04-13 09:59:26 -0700 | [diff] [blame] | 62 | ; |
Alison Wang | 32dbaaf | 2012-03-26 21:49:04 +0000 | [diff] [blame] | 63 | out_be32(&pll->syncr, 0x01000000); |
| 64 | while (!(in_be32(&pll->synsr) & FMPLL_SYNSR_LOCK)) |
Wolfgang Denk | 1aeed8d | 2008-04-13 09:59:26 -0700 | [diff] [blame] | 65 | ; |
Matthew Fettke | f71d9d9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 66 | #endif |
| 67 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 68 | gd->cpu_clk = CONFIG_SYS_CLK; |
TsiChung Liew | bf9a521 | 2009-06-12 11:29:00 +0000 | [diff] [blame] | 69 | #if defined(CONFIG_M5208) || defined(CONFIG_M5249) || defined(CONFIG_M5253) || \ |
Richard Retanubun | 4ffc390 | 2009-01-23 09:27:00 -0500 | [diff] [blame] | 70 | defined(CONFIG_M5271) || defined(CONFIG_M5275) |
stroese | 8c725b9 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 71 | gd->bus_clk = gd->cpu_clk / 2; |
| 72 | #else |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 73 | gd->bus_clk = gd->cpu_clk; |
stroese | 8c725b9 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 74 | #endif |
TsiChung Liew | eec567a | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 75 | |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 76 | #ifdef CONFIG_SYS_I2C_FSL |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 77 | gd->arch.i2c1_clk = gd->bus_clk; |
Heiko Schocher | 00f792e | 2012-10-24 13:48:22 +0200 | [diff] [blame] | 78 | #ifdef CONFIG_SYS_I2C2_FSL_OFFSET |
Simon Glass | 609e6ec | 2012-12-13 20:48:49 +0000 | [diff] [blame] | 79 | gd->arch.i2c2_clk = gd->bus_clk; |
TsiChung Liew | eec567a | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 80 | #endif |
| 81 | #endif |
| 82 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 83 | return (0); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 84 | } |