blob: 89add62dc1b4a5419561b5938d52ddac149833a0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Jon Loeliger5c8aa972006-04-26 17:58:56 -05002/*
Kumar Gala3cdbd002011-01-04 17:07:54 -06003 * Copyright 2004,2009-2011 Freescale Semiconductor, Inc.
Jon Loeliger8827a732006-05-31 13:55:35 -05004 * Jeff Brown
Jon Loeliger5c8aa972006-04-26 17:58:56 -05005 * Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
Jon Loeliger5c8aa972006-04-26 17:58:56 -05006 */
7
8/*
9 * cpu_init.c - low level cpu init
10 */
11
Becky Brucea8a77de2008-08-04 14:02:26 -050012#include <config.h>
Jon Loeliger5c8aa972006-04-26 17:58:56 -050013#include <common.h>
14#include <mpc86xx.h>
Becky Brucea8a77de2008-08-04 14:02:26 -050015#include <asm/mmu.h>
Jean-Christophe PLAGNIOL-VILLARD4b76a4f2008-02-17 23:03:36 +010016#include <asm/fsl_law.h>
Kumar Gala6bf7e462010-12-15 04:52:48 -060017#include <asm/fsl_serdes.h>
Kumar Gala56d150e2009-03-31 23:02:38 -050018#include <asm/mp.h>
Jon Loeliger5c8aa972006-04-26 17:58:56 -050019
Kumar Gala3cdbd002011-01-04 17:07:54 -060020extern void srio_init(void);
Becky Brucefa9e7c52008-11-05 14:55:30 -060021
Wolfgang Denkd112a2c2007-09-15 20:48:41 +020022DECLARE_GLOBAL_DATA_PTR;
23
Jon Loeliger5c8aa972006-04-26 17:58:56 -050024/*
25 * Breathe some life into the CPU...
26 *
27 * Set up the memory map
28 * initialize a bunch of registers
29 */
30
Jon Loeliger465b9d82006-04-27 10:15:16 -050031void cpu_init_f(void)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050032{
Jon Loeligera1295442006-08-22 12:06:18 -050033 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020034 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
Jon Loeliger5c8aa972006-04-26 17:58:56 -050035
36 /* Clear initial global data */
37 memset ((void *) gd, 0, sizeof (gd_t));
38
Becky Bruceb415b562008-01-23 16:31:01 -060039#ifdef CONFIG_FSL_LAW
40 init_laws();
41#endif
42
Becky Brucefa9e7c52008-11-05 14:55:30 -060043 setup_bats();
44
Becky Bruce0d4cee12010-06-17 11:37:20 -050045 init_early_memctl_regs();
Jon Loeliger465b9d82006-04-27 10:15:16 -050046
Peter Tysera9af1dc2009-06-30 17:15:47 -050047#if defined(CONFIG_FSL_DMA)
48 dma_init();
49#endif
Jon Loeliger5c8aa972006-04-26 17:58:56 -050050
51 /* enable the timebase bit in HID0 */
52 set_hid0(get_hid0() | 0x4000000);
53
Jon Loeliger11c99582007-08-02 14:42:20 -050054 /* enable EMCP, SYNCBE | ABE bits in HID1 */
55 set_hid1(get_hid1() | 0x80000C00);
Jon Loeliger5c8aa972006-04-26 17:58:56 -050056}
57
58/*
59 * initialize higher level parts of CPU like timers
60 */
Jon Loeliger465b9d82006-04-27 10:15:16 -050061int cpu_init_r(void)
Jon Loeliger5c8aa972006-04-26 17:58:56 -050062{
Kumar Gala6bf7e462010-12-15 04:52:48 -060063 /* needs to be in ram since code uses global static vars */
64 fsl_serdes_init();
65
Kumar Gala3cdbd002011-01-04 17:07:54 -060066#ifdef CONFIG_SYS_SRIO
67 srio_init();
68#endif
69
Poonam Aggrwal4baef822009-07-31 12:08:14 +053070#if defined(CONFIG_MP)
Becky Bruced1cb6cb2008-11-03 15:44:01 -060071 setup_mp();
72#endif
Jon Loeliger465b9d82006-04-27 10:15:16 -050073 return 0;
Jon Loeliger5c8aa972006-04-26 17:58:56 -050074}
Becky Brucea8a77de2008-08-04 14:02:26 -050075
Becky Brucef93e1cb2009-02-03 18:10:52 -060076#ifdef CONFIG_ADDR_MAP
77/* Initialize address mapping array */
78void init_addr_map(void)
79{
80 int i;
81 ppc_bat_t bat = DBAT0;
82 phys_size_t size;
83 unsigned long upper, lower;
84
85 for (i = 0; i < CONFIG_SYS_NUM_ADDR_MAP; i++, bat++) {
86 if (read_bat(bat, &upper, &lower) != -1) {
87 if (!BATU_VALID(upper))
88 size = 0;
89 else
90 size = BATU_SIZE(upper);
91 addrmap_set_entry(BATU_VADDR(upper), BATL_PADDR(lower),
92 size, i);
93 }
94#ifdef CONFIG_HIGH_BATS
95 /* High bats are not contiguous with low BAT numbers */
96 if (bat == DBAT3)
97 bat = DBAT4 - 1;
98#endif
99 }
100}
101#endif