blob: 38e141a82849be3dab7f9130b919962853471a26 [file] [log] [blame]
Scott Woode4c09502008-06-30 14:13:28 -05001/*
2 * Copyright (C) 2004-2008 Freescale Semiconductor, Inc.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
20 * MA 02111-1307 USA
21 */
22
23#include <common.h>
24#include <mpc83xx.h>
25
26DECLARE_GLOBAL_DATA_PTR;
27
28/*
29 * Breathe some life into the CPU...
30 *
31 * Set up the memory map,
32 * initialize a bunch of registers,
33 * initialize the UPM's
34 */
35void cpu_init_f (volatile immap_t * im)
36{
37 int i;
38
39 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
Scott Woode4c09502008-06-30 14:13:28 -050041
42 /* Clear initial global data */
43 for (i = 0; i < sizeof(gd_t); i++)
44 ((char *)gd)[i] = 0;
45
46 /* system performance tweaking */
47
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#ifdef CONFIG_SYS_ACR_PIPE_DEP
Scott Woode4c09502008-06-30 14:13:28 -050049 /* Arbiter pipeline depth */
50 im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020051 (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT);
Scott Woode4c09502008-06-30 14:13:28 -050052#endif
53
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020054#ifdef CONFIG_SYS_ACR_RPTCNT
Scott Woode4c09502008-06-30 14:13:28 -050055 /* Arbiter repeat count */
56 im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020057 (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT);
Scott Woode4c09502008-06-30 14:13:28 -050058#endif
59
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020060#ifdef CONFIG_SYS_SPCR_OPT
Scott Woode4c09502008-06-30 14:13:28 -050061 /* Optimize transactions between CSB and other devices */
62 im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_OPT) |
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063 (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT);
Scott Woode4c09502008-06-30 14:13:28 -050064#endif
65
66 /* Enable Time Base & Decrimenter (so we will have udelay()) */
67 im->sysconf.spcr |= SPCR_TBEN;
68
69 /* DDR control driver register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#ifdef CONFIG_SYS_DDRCDR
71 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR;
Scott Woode4c09502008-06-30 14:13:28 -050072#endif
73 /* Output buffer impedance register */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020074#ifdef CONFIG_SYS_OBIR
75 im->sysconf.obir = CONFIG_SYS_OBIR;
Scott Woode4c09502008-06-30 14:13:28 -050076#endif
77
78 /*
79 * Memory Controller:
80 */
81
82 /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary
83 * addresses - these have to be modified later when FLASH size
84 * has been determined
85 */
86
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087#if defined(CONFIG_SYS_NAND_BR_PRELIM) \
88 && defined(CONFIG_SYS_NAND_OR_PRELIM) \
89 && defined(CONFIG_SYS_NAND_LBLAWBAR_PRELIM) \
90 && defined(CONFIG_SYS_NAND_LBLAWAR_PRELIM)
91 im->lbus.bank[0].br = CONFIG_SYS_NAND_BR_PRELIM;
92 im->lbus.bank[0].or = CONFIG_SYS_NAND_OR_PRELIM;
93 im->sysconf.lblaw[0].bar = CONFIG_SYS_NAND_LBLAWBAR_PRELIM;
94 im->sysconf.lblaw[0].ar = CONFIG_SYS_NAND_LBLAWAR_PRELIM;
Scott Woode4c09502008-06-30 14:13:28 -050095#else
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020096#error CONFIG_SYS_NAND_BR_PRELIM, CONFIG_SYS_NAND_OR_PRELIM, CONFIG_SYS_NAND_LBLAWBAR_PRELIM & CONFIG_SYS_NAND_LBLAWAR_PRELIM must be defined
Scott Woode4c09502008-06-30 14:13:28 -050097#endif
98}
99
100/*
101 * Get timebase clock frequency (like cpu_clk in Hz)
102 */
103unsigned long get_tbclk(void)
104{
105 return (gd->bus_clk + 3L) / 4L;
106}
107
108void puts(const char *str)
109{
110 while (*str)
111 putc(*str++);
112}