]> git.ipfire.org Git - thirdparty/u-boot.git/blob - arch/powerpc/cpu/mpc83xx/spl_minimal.c
SPDX: Convert all of our single license tags to Linux Kernel style
[thirdparty/u-boot.git] / arch / powerpc / cpu / mpc83xx / spl_minimal.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * Copyright (C) 2004-2008 Freescale Semiconductor, Inc.
4 */
5
6 #include <common.h>
7 #include <mpc83xx.h>
8
9 DECLARE_GLOBAL_DATA_PTR;
10
11 /*
12 * Breathe some life into the CPU...
13 *
14 * Set up the memory map,
15 * initialize a bunch of registers,
16 * initialize the UPM's
17 */
18 void cpu_init_f (volatile immap_t * im)
19 {
20 /* Pointer is writable since we allocated a register for it */
21 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
22
23 /* global data region was cleared in start.S */
24
25 /* system performance tweaking */
26
27 #ifdef CONFIG_SYS_ACR_PIPE_DEP
28 /* Arbiter pipeline depth */
29 im->arbiter.acr = (im->arbiter.acr & ~ACR_PIPE_DEP) |
30 (CONFIG_SYS_ACR_PIPE_DEP << ACR_PIPE_DEP_SHIFT);
31 #endif
32
33 #ifdef CONFIG_SYS_ACR_RPTCNT
34 /* Arbiter repeat count */
35 im->arbiter.acr = (im->arbiter.acr & ~(ACR_RPTCNT)) |
36 (CONFIG_SYS_ACR_RPTCNT << ACR_RPTCNT_SHIFT);
37 #endif
38
39 #ifdef CONFIG_SYS_SPCR_OPT
40 /* Optimize transactions between CSB and other devices */
41 im->sysconf.spcr = (im->sysconf.spcr & ~SPCR_OPT) |
42 (CONFIG_SYS_SPCR_OPT << SPCR_OPT_SHIFT);
43 #endif
44
45 /* Enable Time Base & Decrementer (so we will have udelay()) */
46 im->sysconf.spcr |= SPCR_TBEN;
47
48 /* DDR control driver register */
49 #ifdef CONFIG_SYS_DDRCDR
50 im->sysconf.ddrcdr = CONFIG_SYS_DDRCDR;
51 #endif
52 /* Output buffer impedance register */
53 #ifdef CONFIG_SYS_OBIR
54 im->sysconf.obir = CONFIG_SYS_OBIR;
55 #endif
56
57 /*
58 * Memory Controller:
59 */
60
61 /* Map banks 0 and 1 to the FLASH banks 0 and 1 at preliminary
62 * addresses - these have to be modified later when FLASH size
63 * has been determined
64 */
65
66 #if defined(CONFIG_SYS_NAND_BR_PRELIM) \
67 && defined(CONFIG_SYS_NAND_OR_PRELIM) \
68 && defined(CONFIG_SYS_NAND_LBLAWBAR_PRELIM) \
69 && defined(CONFIG_SYS_NAND_LBLAWAR_PRELIM)
70 set_lbc_br(0, CONFIG_SYS_NAND_BR_PRELIM);
71 set_lbc_or(0, CONFIG_SYS_NAND_OR_PRELIM);
72 im->sysconf.lblaw[0].bar = CONFIG_SYS_NAND_LBLAWBAR_PRELIM;
73 im->sysconf.lblaw[0].ar = CONFIG_SYS_NAND_LBLAWAR_PRELIM;
74 #else
75 #error CONFIG_SYS_NAND_BR_PRELIM, CONFIG_SYS_NAND_OR_PRELIM, CONFIG_SYS_NAND_LBLAWBAR_PRELIM & CONFIG_SYS_NAND_LBLAWAR_PRELIM must be defined
76 #endif
77 }
78
79 /*
80 * Get timebase clock frequency (like cpu_clk in Hz)
81 */
82 unsigned long get_tbclk(void)
83 {
84 return (gd->bus_clk + 3L) / 4L;
85 }
86
87 void puts(const char *str)
88 {
89 while (*str)
90 putc(*str++);
91 }