Subversion Repositories HelenOS

Rev

Rev 457 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 457 Rev 458
1
#
1
#
2
# Copyright (C) 2005 Martin Decky
2
# Copyright (C) 2005 Martin Decky
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
13
#   documentation and/or other materials provided with the distribution.
14
# - The name of the author may not be used to endorse or promote products
14
# - The name of the author may not be used to endorse or promote products
15
#   derived from this software without specific prior written permission.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
## Toolchain configuration
29
## Toolchain configuration
30
#
30
#
31
 
31
 
32
BFD_ARCH = mips
32
BFD_ARCH = mips
33
TARGET = mipsel-linux-gnu
33
TARGET = mipsel-linux-gnu
34
TOOLCHAIN_DIR = /usr/local/mipsel/bin
34
TOOLCHAIN_DIR = /usr/local/mipsel/bin
35
 
35
 
36
## Make some default assumptions
36
## Make some default assumptions
37
#
37
#
38
 
38
 
39
ifndef MACHINE
39
ifndef MACHINE
40
	MACHINE = msim
40
	MACHINE = msim
41
endif
41
endif
42
 
42
 
43
KERNEL_LOAD_ADDRESS = 0x80100000
43
KERNEL_LOAD_ADDRESS = 0x80100000
44
CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
44
CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
45
DEFS += -DMACHINE=${MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS}
45
DEFS += -DMACHINE=${MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS}
46
 
46
 
47
## Accepted MACHINEs
47
## Accepted MACHINEs
48
#
48
#
49
 
49
 
50
ifeq ($(MACHINE),indy)
50
ifeq ($(MACHINE),indy)
51
	# GCC 4.0.1 compiled for mipsEL has problems compiling in 
51
	# GCC 4.0.1 compiled for mipsEL has problems compiling in 
52
	# BigEndian mode with the swl/swr/lwl/lwr instructions.
52
	# BigEndian mode with the swl/swr/lwl/lwr instructions.
53
	# We have to compile it with mips-sgi-irix5 to get it right.
53
	# We have to compile it with mips-sgi-irix5 to get it right.
54
	
54
	
55
	BFD_NAME = elf32-bigmips
55
	BFD_NAME = elf32-bigmips
56
	BFD = ecoff-bigmips
56
	BFD = ecoff-bigmips
57
	TARGET = mips-sgi-irix5
57
	TARGET = mips-sgi-irix5
58
	TOOLCHAIN_DIR = /usr/local/mips/bin
58
	TOOLCHAIN_DIR = /usr/local/mips/bin
59
	KERNEL_LOAD_ADDRESS = 0x88002000
59
	KERNEL_LOAD_ADDRESS = 0x88002000
60
	CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -march=r4600
60
	CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -march=r4600
61
endif
61
endif
62
ifeq ($(MACHINE}),lgxemul)
62
ifeq ($(MACHINE}),lgxemul)
63
	BFD_NAME=elf32-tradlittlemips
63
	BFD_NAME=elf32-tradlittlemips
64
	BFD = ecoff-littlemips
64
	BFD = ecoff-littlemips
65
	CFLAGS += -DHAVE_FPU -mips3
65
	CFLAGS += -DHAVE_FPU -mips3
66
endif
66
endif
67
ifeq ($(MACHINE),bgxemul)
67
ifeq ($(MACHINE),bgxemul)
68
	BFD_NAME=elf32-bigmips
68
	BFD_NAME=elf32-bigmips
69
	BFD = ecoff-bigmips
69
	BFD = ecoff-bigmips
70
	TARGET = mips-sgi-irix5
70
	TARGET = mips-sgi-irix5
71
	TOOLCHAIN_DIR = /usr/local/mips/bin
71
	TOOLCHAIN_DIR = /usr/local/mips/bin
72
	CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -mips3
72
	CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -mips3
73
endif
73
endif
74
ifeq ($(MACHINE),msim4kc)
74
ifeq ($(MACHINE),msim4kc)
75
	# MSIM needs lwl/swl patch & 4kc instruction patch to work
75
	# MSIM needs lwl/swl patch & 4kc instruction patch to work
76
	# otherwise add -mmemcpy -mips3
76
	# otherwise add -mmemcpy -mips3
77
	
77
	
78
	BFD_NAME = elf32-tradlittlemips
78
	BFD_NAME = elf32-tradlittlemips
79
	BFD = binary
79
	BFD = binary
80
	CFLAGS += -mhard-float -march=4kc 
80
	CFLAGS += -mhard-float -march=4kc 
81
endif
81
endif
82
ifeq ($(MACHINE),simics)
82
ifeq ($(MACHINE),simics)
83
	# SIMICS 4kc emulation is broken, although for instructions
83
	# SIMICS 4kc emulation is broken, although for instructions
84
	# that do not bother us
84
	# that do not bother us
85
	
85
	
86
	BFD_NAME = elf32-tradlittlemips
86
	BFD_NAME = elf32-tradlittlemips
87
	BFD = elf32-tradlittlemips
87
	BFD = elf32-tradlittlemips
88
	CFLAGS += -mhard-float -mips3
88
	CFLAGS += -mhard-float -mips3
89
endif
89
endif
90
ifeq ($(MACHINE),msim)
90
ifeq ($(MACHINE),msim)
91
	BFD_NAME = elf32-tradlittlemips
91
	BFD_NAME = elf32-tradlittlemips
92
	BFD = binary
92
	BFD = binary
93
	CFLAGS += -mhard-float -mips3
93
	CFLAGS += -mhard-float -mips3
94
endif
94
endif
95
 
95
 
96
## Own configuration directives
96
## Own configuration directives
97
#
97
#
98
 
98
 
99
CONFIG_OFW = y
99
CONFIG_OFW = y
100
 
100
 
101
## Accepted configuration directives
101
## Accepted configuration directives
102
#
102
#
103
 
103
 
104
ifeq ($(CONFIG_FPU_LAZY),y)
104
ifeq ($(CONFIG_FPU_LAZY),y)
105
	DEFS += -DFPU_LAZY
105
	DEFS += -DCONFIG_FPU_LAZY
106
endif
106
endif
107
 
107
 
108
ARCH_SOURCES = \
108
ARCH_SOURCES = \
109
	arch/$(ARCH)/src/start.S \
109
	arch/$(ARCH)/src/start.S \
110
	arch/$(ARCH)/src/context.S \
110
	arch/$(ARCH)/src/context.S \
111
	arch/$(ARCH)/src/panic.S \
111
	arch/$(ARCH)/src/panic.S \
112
	arch/$(ARCH)/src/mips32.c \
112
	arch/$(ARCH)/src/mips32.c \
113
	arch/$(ARCH)/src/dummy.S \
113
	arch/$(ARCH)/src/dummy.S \
114
	arch/$(ARCH)/src/console.c \
114
	arch/$(ARCH)/src/console.c \
115
	arch/$(ARCH)/src/asm.S \
115
	arch/$(ARCH)/src/asm.S \
116
	arch/$(ARCH)/src/exception.c \
116
	arch/$(ARCH)/src/exception.c \
117
	arch/$(ARCH)/src/interrupt.c \
117
	arch/$(ARCH)/src/interrupt.c \
118
	arch/$(ARCH)/src/cache.c \
118
	arch/$(ARCH)/src/cache.c \
119
	arch/$(ARCH)/src/cpu/cpu.c \
119
	arch/$(ARCH)/src/cpu/cpu.c \
120
	arch/$(ARCH)/src/mm/asid.c \
120
	arch/$(ARCH)/src/mm/asid.c \
121
	arch/$(ARCH)/src/mm/frame.c \
121
	arch/$(ARCH)/src/mm/frame.c \
122
	arch/$(ARCH)/src/mm/page.c \
122
	arch/$(ARCH)/src/mm/page.c \
123
	arch/$(ARCH)/src/mm/tlb.c \
123
	arch/$(ARCH)/src/mm/tlb.c \
124
	arch/$(ARCH)/src/mm/vm.c \
124
	arch/$(ARCH)/src/mm/vm.c \
125
	arch/$(ARCH)/src/fpu_context.c \
125
	arch/$(ARCH)/src/fpu_context.c \
126
	arch/$(ARCH)/src/fmath.c \
126
	arch/$(ARCH)/src/fmath.c \
127
	arch/$(ARCH)/src/drivers/arc.c
127
	arch/$(ARCH)/src/drivers/arc.c
128
 
128