wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 1 | /* |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 2 | * (C) Copyright 2003 |
| 3 | * Josef Baumgartner <josef.baumgartner@telex.de> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 4 | * |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 5 | * Copyright (C) 2004-2007 Freescale Semiconductor, Inc. |
| 6 | * Hayden Fraser (Hayden.Fraser@freescale.com) |
| 7 | * |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 8 | * See file CREDITS for list of people who contributed to this |
| 9 | * project. |
| 10 | * |
| 11 | * This program is free software; you can redistribute it and/or |
| 12 | * modify it under the terms of the GNU General Public License as |
| 13 | * published by the Free Software Foundation; either version 2 of |
| 14 | * the License, or (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 24 | * MA 02111-1307 USA |
| 25 | */ |
| 26 | |
| 27 | #include <common.h> |
| 28 | #include <asm/processor.h> |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 29 | #include <asm/immap.h> |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 30 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 33 | /* |
| 34 | * get_clocks() fills in gd->cpu_clock and gd->bus_clk |
| 35 | */ |
| 36 | int get_clocks (void) |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 37 | { |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 38 | #if defined(CONFIG_M5249) || defined(CONFIG_M5253) |
| 39 | volatile unsigned long cpll = mbar2_readLong(MCFSIM_PLLCR); |
| 40 | unsigned long pllcr; |
| 41 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 42 | #ifndef CONFIG_SYS_PLL_BYPASS |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 43 | |
stroese | 8c725b9 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 44 | #ifdef CONFIG_M5249 |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 45 | /* Setup the PLL to run at the specified speed */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 46 | #ifdef CONFIG_SYS_FAST_CLK |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 47 | pllcr = 0x925a3100; /* ~140MHz clock (PLL bypass = 0) */ |
| 48 | #else |
| 49 | pllcr = 0x135a4140; /* ~72MHz clock (PLL bypass = 0) */ |
| 50 | #endif |
| 51 | #endif /* CONFIG_M5249 */ |
| 52 | |
| 53 | #ifdef CONFIG_M5253 |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 54 | pllcr = CONFIG_SYS_PLLCR; |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 55 | #endif /* CONFIG_M5253 */ |
| 56 | |
| 57 | cpll = cpll & 0xfffffffe; /* Set PLL bypass mode = 0 (PSTCLK = crystal) */ |
| 58 | mbar2_writeLong(MCFSIM_PLLCR, cpll); /* Set the PLL to bypass mode (PSTCLK = crystal) */ |
| 59 | mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* set the clock speed */ |
| 60 | pllcr ^= 0x00000001; /* Set pll bypass to 1 */ |
| 61 | mbar2_writeLong(MCFSIM_PLLCR, pllcr); /* Start locking (pll bypass = 1) */ |
| 62 | udelay(0x20); /* Wait for a lock ... */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 63 | #endif /* #ifndef CONFIG_SYS_PLL_BYPASS */ |
TsiChungLiew | a1436a8 | 2007-08-16 13:20:50 -0500 | [diff] [blame] | 64 | |
| 65 | #endif /* CONFIG_M5249 || CONFIG_M5253 */ |
| 66 | |
Matthew Fettke | f71d9d9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 67 | #if defined(CONFIG_M5275) |
| 68 | volatile pll_t *pll = (volatile pll_t *)(MMAP_PLL); |
| 69 | |
Wolfgang Denk | 1aeed8d | 2008-04-13 09:59:26 -0700 | [diff] [blame] | 70 | /* Setup PLL */ |
| 71 | pll->syncr = 0x01080000; |
TsiChung Liew | dd08e97 | 2008-06-18 19:19:07 -0500 | [diff] [blame] | 72 | while (!(pll->synsr & FMPLL_SYNSR_LOCK)) |
Wolfgang Denk | 1aeed8d | 2008-04-13 09:59:26 -0700 | [diff] [blame] | 73 | ; |
| 74 | pll->syncr = 0x01000000; |
| 75 | while (!(pll->synsr & FMPLL_SYNSR_LOCK)) |
| 76 | ; |
Matthew Fettke | f71d9d9 | 2008-02-04 15:38:20 -0600 | [diff] [blame] | 77 | #endif |
| 78 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 79 | gd->cpu_clk = CONFIG_SYS_CLK; |
Richard Retanubun | 4ffc390 | 2009-01-23 09:27:00 -0500 | [diff] [blame] | 80 | #if defined(CONFIG_M5249) || defined(CONFIG_M5253) || \ |
| 81 | defined(CONFIG_M5271) || defined(CONFIG_M5275) |
stroese | 8c725b9 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 82 | gd->bus_clk = gd->cpu_clk / 2; |
| 83 | #else |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 84 | gd->bus_clk = gd->cpu_clk; |
stroese | 8c725b9 | 2004-12-16 18:09:49 +0000 | [diff] [blame] | 85 | #endif |
TsiChung Liew | eec567a | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 86 | |
| 87 | #ifdef CONFIG_FSL_I2C |
| 88 | gd->i2c1_clk = gd->bus_clk; |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 89 | #ifdef CONFIG_SYS_I2C2_OFFSET |
TsiChung Liew | eec567a | 2008-08-19 03:01:19 +0600 | [diff] [blame] | 90 | gd->i2c2_clk = gd->bus_clk; |
| 91 | #endif |
| 92 | #endif |
| 93 | |
wdenk | bf9e3b3 | 2004-02-12 00:47:09 +0000 | [diff] [blame] | 94 | return (0); |
wdenk | 4e5ca3e | 2003-12-08 01:34:36 +0000 | [diff] [blame] | 95 | } |