summaryrefslogtreecommitdiffstats
path: root/arch/mips/boot/start.S
blob: 7e2ae5ebe33dc078ff9e90ad59df9d1ffdae179d (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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
/*
 * Startup Code for MIPS CPU
 *
 * Copyright (C) 2011 Antony Pavlov <antonynpavlov@gmail.com>
 * Used code copyrighted (C) 2009 by Shinya Kuribayashi <skuribay@pobox.com>
 *
 * This file is part of barebox.
 * See file CREDITS for list of people who contributed to this project.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2
 * as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

#include <asm/regdef.h>
#include <asm/mipsregs.h>
#include <asm/asm.h>
#include <asm-generic/memory_layout.h>
#include <generated/compile.h>
#include <generated/utsrelease.h>

	/*
	 * ADR macro instruction (inspired by ARM)
	 *
	 * ARM architecture doesn't have PC-relative jump instruction
	 * like MIPS' B/BAL insns.  When ARM makes PC-relative jumps,
	 * it uses ADR insn.  ADR is used to get a destination address
	 * of 'label' against current PC.  With this, ARM can safely
	 * make PC-relative jumps.
	 */
	.macro	ADR rd label temp
	.set	push
	.set	noreorder
	move	\temp, ra			# preserve ra beforehand
	bal	_pc
	 nop
_pc:	addiu	\rd, ra, \label - _pc		# label is assumed to be
	move	ra, \temp			# within pc +/- 32KB
	.set	pop
	.endm

	.set noreorder
	.text
	.section ".text_bare_init"
	.align 4

EXPORT(_start)

	b	__start
	 nop

	.org	0x10
	.ascii	"barebox " UTS_RELEASE " " UTS_VERSION
	.byte	0

	.align 4
__start:
	/* disable watchpoints */
	mtc0	zero, CP0_WATCHLO
	mtc0	zero, CP0_WATCHHI

	/* disable interrupts */
	mfc0	k0, CP0_STATUS
	li	k1, ~ST0_IE
	and	k0, k1
	mtc0	k0, CP0_STATUS

	/* copy barebox to link location */
	ADR	a0, _start, t1	/* a0 <- pc-relative position of _start */

	la	a1, _start	/* link (RAM) _start address */

	beq	a0, a1, stack_setup
	 nop

	la	t0, _start
	la	t1, __bss_start
	subu	t2, t1, t0	/* t2 <- size of barebox */
	addu	a2, a0, t2	/* a2 <- source end address */

#define LONGSIZE	4

copy_loop:
	/* copy from source address [a0] */
	lw		t4, LONGSIZE * 0(a0)
	lw		t5, LONGSIZE * 1(a0)
	lw		t6, LONGSIZE * 2(a0)
	lw		t7, LONGSIZE * 3(a0)
	/* copy fo target address [a1] */
	sw		t4, LONGSIZE * 0(a1)
	sw		t5, LONGSIZE * 1(a1)
	sw		t6, LONGSIZE * 2(a1)
	sw		t7, LONGSIZE * 3(a1)
	addi		a0, LONGSIZE * 4
	subu		t3, a0, a2
	blez		t3, copy_loop
	addi		a1, LONGSIZE * 4

	/*
	 * Dominic Sweetman, See MIPS Run, Morgan Kaufmann, 2nd edition, 2006
	 *
	 * 11.2.2 Stack Argument Structure in o32
	 * ...
	 * At the point where a function is called, sp must be
	 * eight-byte-aligned, matching the alignment of the largest
	 * basic types -- a long long integer or a floating-point double.
	 * The eight-byte alignment is not required by 32-bit MIPS integer
	 * hardware, but it's essential for compatibility with CPUs with
	 * 64-bit registers, and thus part of the rules. Subroutines fit
	 * in with this by always adjusting the stack pointer by a multiple
	 * of eight.
	 * ...
	 * SGI's n32 and n64 standards call for the stack to be maintained
	 * with 16-byte alignment.
	 *
	 */

#if (STACK_BASE + STACK_SIZE) % 16 != 0
#error stack pointer must be 16-byte-aligned
#endif

stack_setup:
	la	sp, STACK_BASE + STACK_SIZE

	/* reserve four 32-bit argument slots */
	addiu	sp, -16

	la	v0, main_entry
	jal     v0
	 nop

	/* No return */

__error:
	b __error
	 nop