]> git.ipfire.org Git - people/ms/u-boot.git/blame - arch/powerpc/cpu/mpc83xx/nand_init.c
83xx/85xx/86xx: LBC register cleanup
[people/ms/u-boot.git] / arch / powerpc / cpu / mpc83xx / nand_init.c
CommitLineData
e4c09508
SW
1/*
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 */
6d0f6bcf 40 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
e4c09508
SW
41
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
6d0f6bcf 48#ifdef CONFIG_SYS_ACR_PIPE_DEP
e4c09508
SW
49 /* Arbiter pipeline depth */
50 im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) |
6d0f6bcf 51 (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT);
e4c09508
SW
52#endif
53
6d0f6bcf 54#ifdef CONFIG_SYS_ACR_RPTCNT
e4c09508
SW
55 /* Arbiter repeat count */
56 im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) |
6d0f6bcf 57 (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT);
e4c09508
SW
58#endif
59
6d0f6bcf 60#ifdef CONFIG_SYS_SPCR_OPT
e4c09508
SW
61 /* Optimize transactions between CSB and other devices */
62 im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_OPT) |
6d0f6bcf 63 (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT);
e4c09508
SW
64#endif
65
66 /* Enable Time Base & Decrimenter (so we will have udelay()) */
67 im->sysconf.spcr |= SPCR_TBEN;
68
69 /* DDR control driver register */
6d0f6bcf
JCPV
70#ifdef CONFIG_SYS_DDRCDR
71 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR;
e4c09508
SW
72#endif
73 /* Output buffer impedance register */
6d0f6bcf
JCPV
74#ifdef CONFIG_SYS_OBIR
75 im->sysconf.obir = CONFIG_SYS_OBIR;
e4c09508
SW
76#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
6d0f6bcf
JCPV
87#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)
f51cdaf1
BB
91 set_lbc_br(0, CONFIG_SYS_NAND_BR_PRELIM);
92 set_lbc_or(0, CONFIG_SYS_NAND_OR_PRELIM);
6d0f6bcf
JCPV
93 im->sysconf.lblaw[0].bar = CONFIG_SYS_NAND_LBLAWBAR_PRELIM;
94 im->sysconf.lblaw[0].ar = CONFIG_SYS_NAND_LBLAWAR_PRELIM;
e4c09508 95#else
6d0f6bcf 96#error CONFIG_SYS_NAND_BR_PRELIM, CONFIG_SYS_NAND_OR_PRELIM, CONFIG_SYS_NAND_LBLAWBAR_PRELIM & CONFIG_SYS_NAND_LBLAWAR_PRELIM must be defined
e4c09508
SW
97#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}