aboutsummaryrefslogtreecommitdiff
path: root/src/arch/ppc/init/ppc_main.c
blob: 4dd4487ae8b70cc7e5d6587ccd1077362636800b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
/* 
 * Copyright (C) 2003 by Greg Watson, Los Alamos National Laboratory
 * gwatson@lanl.gov
 */

#include <board.h>
#include <sdram.h>

extern unsigned _iseg[];
extern unsigned _liseg[];
extern unsigned _eliseg[];

void (*payload)(void) = (void (*)(void))_iseg;

/*
 * At this point we're running out of flash with our
 * stack in cache ram. We need to do the following:
 *
 * - turn on real memory
 * - relocate our payload into real memory
 * - start hardwaremain() which does remainder of setup
 */

extern void flush_dcache(void);

void ppc_main(void)
{
	unsigned *from;
	unsigned *to;

	/*
 	 * very early board initialization
	 */
	board_init();

	/*
	 * turn on memory
	 */
	memory_init();

	/*
	 * final initialization before jumping to payload
	 */
	board_init2();

	/*
	 * Flush cache now that memory is enabled.
	 */
	flush_dcache();

	/*
	 * Relocate payload (text & data) if necessary
	 */
	if (_liseg != _iseg) {	
		from = _liseg;
		to = _iseg;
		while (from < _eliseg)
			*to++ = *from++;
	}

	payload();

	/* NOT REACHED */
}