blob: 7527515889244e0c24f76553629657ecf68862af [file] [log] [blame]
Jon Loeligerdebb7352006-04-26 17:58:56 -05001/*
Kumar Gala56551362011-01-04 17:07:54 -06002 * Copyright 2004,2009-2011 Freescale Semiconductor, Inc.
Jon Loeligerc934f652006-05-31 13:55:35 -05003 * Jeff Brown
Jon Loeligerdebb7352006-04-26 17:58:56 -05004 * Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
5 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02006 * SPDX-License-Identifier: GPL-2.0+
Jon Loeligerdebb7352006-04-26 17:58:56 -05007 */
8
9/*
10 * cpu_init.c - low level cpu init
11 */
12
Becky Bruce2d0daa02008-08-04 14:02:26 -050013#include <config.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050014#include <common.h>
15#include <mpc86xx.h>
Becky Bruce2d0daa02008-08-04 14:02:26 -050016#include <asm/mmu.h>
Jean-Christophe PLAGNIOL-VILLARD83d1b382008-02-17 23:03:36 +010017#include <asm/fsl_law.h>
Kumar Galaaf042472010-12-15 04:52:48 -060018#include <asm/fsl_serdes.h>
Kumar Gala7649a592009-03-31 23:02:38 -050019#include <asm/mp.h>
Jon Loeligerdebb7352006-04-26 17:58:56 -050020
Kumar Gala56551362011-01-04 17:07:54 -060021extern void srio_init(void);
Becky Bruce24bfb482008-11-05 14:55:30 -060022
Wolfgang Denk1218abf2007-09-15 20:48:41 +020023DECLARE_GLOBAL_DATA_PTR;
24
Jon Loeligerdebb7352006-04-26 17:58:56 -050025/*
26 * Breathe some life into the CPU...
27 *
28 * Set up the memory map
29 * initialize a bunch of registers
30 */
31
Jon Loeliger5c9efb32006-04-27 10:15:16 -050032void cpu_init_f(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050033{
Jon Loeligerffff3ae2006-08-22 12:06:18 -050034 /* Pointer is writable since we allocated a register for it */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020035 gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
Jon Loeligerdebb7352006-04-26 17:58:56 -050036
37 /* Clear initial global data */
38 memset ((void *) gd, 0, sizeof (gd_t));
39
Becky Bruce4933b912008-01-23 16:31:01 -060040#ifdef CONFIG_FSL_LAW
41 init_laws();
42#endif
43
Becky Bruce24bfb482008-11-05 14:55:30 -060044 setup_bats();
45
Becky Brucef51cdaf2010-06-17 11:37:20 -050046 init_early_memctl_regs();
Jon Loeligerdebb7352006-04-26 17:58:56 -050047
Peter Tyser79f43332009-06-30 17:15:47 -050048#if defined(CONFIG_FSL_DMA)
49 dma_init();
50#endif
Jon Loeligerdebb7352006-04-26 17:58:56 -050051
52 /* enable the timebase bit in HID0 */
53 set_hid0(get_hid0() | 0x4000000);
54
Jon Loeligercfc7a7f2007-08-02 14:42:20 -050055 /* enable EMCP, SYNCBE | ABE bits in HID1 */
56 set_hid1(get_hid1() | 0x80000C00);
Jon Loeligerdebb7352006-04-26 17:58:56 -050057}
58
59/*
60 * initialize higher level parts of CPU like timers
61 */
Jon Loeliger5c9efb32006-04-27 10:15:16 -050062int cpu_init_r(void)
Jon Loeligerdebb7352006-04-26 17:58:56 -050063{
Kumar Galaaf042472010-12-15 04:52:48 -060064 /* needs to be in ram since code uses global static vars */
65 fsl_serdes_init();
66
Kumar Gala56551362011-01-04 17:07:54 -060067#ifdef CONFIG_SYS_SRIO
68 srio_init();
69#endif
70
Poonam Aggrwal0e870982009-07-31 12:08:14 +053071#if defined(CONFIG_MP)
Becky Bruce1266df82008-11-03 15:44:01 -060072 setup_mp();
73#endif
Jon Loeliger5c9efb32006-04-27 10:15:16 -050074 return 0;
Jon Loeligerdebb7352006-04-26 17:58:56 -050075}
Becky Bruce2d0daa02008-08-04 14:02:26 -050076
Becky Brucec9315e62009-02-03 18:10:52 -060077#ifdef CONFIG_ADDR_MAP
78/* Initialize address mapping array */
79void init_addr_map(void)
80{
81 int i;
82 ppc_bat_t bat = DBAT0;
83 phys_size_t size;
84 unsigned long upper, lower;
85
86 for (i = 0; i < CONFIG_SYS_NUM_ADDR_MAP; i++, bat++) {
87 if (read_bat(bat, &upper, &lower) != -1) {
88 if (!BATU_VALID(upper))
89 size = 0;
90 else
91 size = BATU_SIZE(upper);
92 addrmap_set_entry(BATU_VADDR(upper), BATL_PADDR(lower),
93 size, i);
94 }
95#ifdef CONFIG_HIGH_BATS
96 /* High bats are not contiguous with low BAT numbers */
97 if (bat == DBAT3)
98 bat = DBAT4 - 1;
99#endif
100 }
101}
102#endif