2018-05-06 17:58:06 -04:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2006-04-26 17:58:56 -05:00
|
|
|
/*
|
2011-01-04 17:07:54 -06:00
|
|
|
* Copyright 2004,2009-2011 Freescale Semiconductor, Inc.
|
2006-05-31 13:55:35 -05:00
|
|
|
* Jeff Brown
|
2006-04-26 17:58:56 -05:00
|
|
|
* Srikanth Srinivasan (srikanth.srinivasan@freescale.com)
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpu_init.c - low level cpu init
|
|
|
|
*/
|
|
|
|
|
2008-08-04 14:02:26 -05:00
|
|
|
#include <config.h>
|
2006-04-26 17:58:56 -05:00
|
|
|
#include <common.h>
|
2020-05-10 11:40:02 -06:00
|
|
|
#include <init.h>
|
2006-04-26 17:58:56 -05:00
|
|
|
#include <mpc86xx.h>
|
2008-08-04 14:02:26 -05:00
|
|
|
#include <asm/mmu.h>
|
2008-02-17 23:03:36 +01:00
|
|
|
#include <asm/fsl_law.h>
|
2010-12-15 04:52:48 -06:00
|
|
|
#include <asm/fsl_serdes.h>
|
2009-03-31 23:02:38 -05:00
|
|
|
#include <asm/mp.h>
|
2006-04-26 17:58:56 -05:00
|
|
|
|
2011-01-04 17:07:54 -06:00
|
|
|
extern void srio_init(void);
|
2008-11-05 14:55:30 -06:00
|
|
|
|
2007-09-15 20:48:41 +02:00
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
2006-04-26 17:58:56 -05:00
|
|
|
/*
|
|
|
|
* Breathe some life into the CPU...
|
|
|
|
*
|
|
|
|
* Set up the memory map
|
|
|
|
* initialize a bunch of registers
|
|
|
|
*/
|
|
|
|
|
2006-04-27 10:15:16 -05:00
|
|
|
void cpu_init_f(void)
|
2006-04-26 17:58:56 -05:00
|
|
|
{
|
2006-08-22 12:06:18 -05:00
|
|
|
/* Pointer is writable since we allocated a register for it */
|
2008-10-16 15:01:15 +02:00
|
|
|
gd = (gd_t *) (CONFIG_SYS_INIT_RAM_ADDR + CONFIG_SYS_GBL_DATA_OFFSET);
|
2006-04-26 17:58:56 -05:00
|
|
|
|
|
|
|
/* Clear initial global data */
|
|
|
|
memset ((void *) gd, 0, sizeof (gd_t));
|
|
|
|
|
2008-01-23 16:31:01 -06:00
|
|
|
#ifdef CONFIG_FSL_LAW
|
|
|
|
init_laws();
|
|
|
|
#endif
|
|
|
|
|
2008-11-05 14:55:30 -06:00
|
|
|
setup_bats();
|
|
|
|
|
2010-06-17 11:37:20 -05:00
|
|
|
init_early_memctl_regs();
|
2006-04-27 10:15:16 -05:00
|
|
|
|
2009-06-30 17:15:47 -05:00
|
|
|
#if defined(CONFIG_FSL_DMA)
|
|
|
|
dma_init();
|
|
|
|
#endif
|
2006-04-26 17:58:56 -05:00
|
|
|
|
|
|
|
/* enable the timebase bit in HID0 */
|
|
|
|
set_hid0(get_hid0() | 0x4000000);
|
|
|
|
|
2007-08-02 14:42:20 -05:00
|
|
|
/* enable EMCP, SYNCBE | ABE bits in HID1 */
|
|
|
|
set_hid1(get_hid1() | 0x80000C00);
|
2006-04-26 17:58:56 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* initialize higher level parts of CPU like timers
|
|
|
|
*/
|
2006-04-27 10:15:16 -05:00
|
|
|
int cpu_init_r(void)
|
2006-04-26 17:58:56 -05:00
|
|
|
{
|
2010-12-15 04:52:48 -06:00
|
|
|
/* needs to be in ram since code uses global static vars */
|
|
|
|
fsl_serdes_init();
|
|
|
|
|
2011-01-04 17:07:54 -06:00
|
|
|
#ifdef CONFIG_SYS_SRIO
|
|
|
|
srio_init();
|
|
|
|
#endif
|
|
|
|
|
2009-07-31 12:08:14 +05:30
|
|
|
#if defined(CONFIG_MP)
|
2008-11-03 15:44:01 -06:00
|
|
|
setup_mp();
|
|
|
|
#endif
|
2006-04-27 10:15:16 -05:00
|
|
|
return 0;
|
2006-04-26 17:58:56 -05:00
|
|
|
}
|
2008-08-04 14:02:26 -05:00
|
|
|
|
2009-02-03 18:10:52 -06:00
|
|
|
#ifdef CONFIG_ADDR_MAP
|
|
|
|
/* Initialize address mapping array */
|
|
|
|
void init_addr_map(void)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
ppc_bat_t bat = DBAT0;
|
|
|
|
phys_size_t size;
|
|
|
|
unsigned long upper, lower;
|
|
|
|
|
|
|
|
for (i = 0; i < CONFIG_SYS_NUM_ADDR_MAP; i++, bat++) {
|
|
|
|
if (read_bat(bat, &upper, &lower) != -1) {
|
|
|
|
if (!BATU_VALID(upper))
|
|
|
|
size = 0;
|
|
|
|
else
|
|
|
|
size = BATU_SIZE(upper);
|
|
|
|
addrmap_set_entry(BATU_VADDR(upper), BATL_PADDR(lower),
|
|
|
|
size, i);
|
|
|
|
}
|
|
|
|
#ifdef CONFIG_HIGH_BATS
|
|
|
|
/* High bats are not contiguous with low BAT numbers */
|
|
|
|
if (bat == DBAT3)
|
|
|
|
bat = DBAT4 - 1;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|