Subversion Repositories HelenOS

Rev

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

Rev 1871 Rev 2071
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
KERNEL_LOAD_ADDRESS = 0x80100000
36
KERNEL_LOAD_ADDRESS = 0x80100000
37
INIT_ADDRESS = 0x81000000
37
INIT_ADDRESS = 0x81000000
38
INIT_SIZE = 262144
38
INIT_SIZE = 262144
39
 
39
 
40
CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
40
CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
41
 
41
 
42
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE) -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE}
42
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE) -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE}
43
 
43
 
44
## Compile with hierarchical page tables support.
44
## Compile with hierarchical page tables support.
45
#
45
#
46
 
46
 
47
CONFIG_PAGE_PT = y
47
CONFIG_PAGE_PT = y
48
DEFS += -DCONFIG_PAGE_PT
48
DEFS += -DCONFIG_PAGE_PT
49
 
49
 
50
## Compile with support for address space identifiers.
50
## Compile with support for address space identifiers.
51
#
51
#
52
 
52
 
53
CONFIG_ASID = y
53
CONFIG_ASID = y
54
CONFIG_ASID_FIFO = y
54
CONFIG_ASID_FIFO = y
55
 
55
 
56
## Accepted MACHINEs
56
## Accepted MACHINEs
57
#
57
#
58
 
58
 
59
ifeq ($(MACHINE),indy)
59
ifeq ($(MACHINE),indy)
60
	# GCC 4.0.1 compiled for mipsEL has problems compiling in 
60
	# GCC 4.0.1 compiled for mipsEL has problems compiling in 
61
	# BigEndian mode with the swl/swr/lwl/lwr instructions.
61
	# BigEndian mode with the swl/swr/lwl/lwr instructions.
62
	# We have to compile it with mips-sgi-irix5 to get it right.
62
	# We have to compile it with mips-sgi-irix5 to get it right.
63
	
63
	
64
	BFD_NAME = elf32-bigmips
64
	BFD_NAME = elf32-bigmips
65
	BFD = ecoff-bigmips --impure
65
	BFD = ecoff-bigmips --impure
66
	TARGET = mips-sgi-irix5
66
	TARGET = mips-sgi-irix5
67
	TOOLCHAIN_DIR = /usr/local/mips/bin
67
	TOOLCHAIN_DIR = /usr/local/mips/bin
68
	KERNEL_LOAD_ADDRESS = 0x88002000
68
	KERNEL_LOAD_ADDRESS = 0x88002000
69
	CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -march=r4600
69
	CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -march=r4600
70
	INIT_ADDRESS = 0
70
	INIT_ADDRESS = 0
71
	INIT_SIZE = 0
71
	INIT_SIZE = 0
72
endif
72
endif
73
ifeq ($(MACHINE),lgxemul)
73
ifeq ($(MACHINE),lgxemul)
74
	BFD_NAME = elf32-tradlittlemips
74
	BFD_NAME = elf32-tradlittlemips
75
	BFD = binary
75
	BFD = binary
76
	CFLAGS += -DFB_INVERT_ENDIAN -DARCH_HAS_FPU -mips3
76
	CFLAGS += -DFB_INVERT_ENDIAN -DARCH_HAS_FPU -mips3
77
endif
77
endif
78
ifeq ($(MACHINE),bgxemul)
78
ifeq ($(MACHINE),bgxemul)
79
	BFD_NAME = elf32-bigmips
79
	BFD_NAME = elf32-bigmips
80
	BFD = ecoff-bigmips
80
	BFD = ecoff-bigmips
81
	TARGET = mips-sgi-irix5
81
	TARGET = mips-sgi-irix5
82
	TOOLCHAIN_DIR = /usr/local/mips/bin
82
	TOOLCHAIN_DIR = /usr/local/mips/bin
83
	CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -mips3
83
	CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -mips3
84
	INIT_ADDRESS = 0x81800000
84
	INIT_ADDRESS = 0x81800000
85
endif
85
endif
86
ifeq ($(MACHINE),simics)
86
ifeq ($(MACHINE),simics)
87
	# SIMICS 4kc emulation is broken, although for instructions
87
	# SIMICS 4kc emulation is broken, although for instructions
88
	# that do not bother us
88
	# that do not bother us
89
	
89
	
90
	BFD_NAME = elf32-tradlittlemips
90
	BFD_NAME = elf32-tradlittlemips
91
	BFD = elf32-tradlittlemips
91
	BFD = elf32-tradlittlemips
92
	CFLAGS += -mhard-float -mips3 -DTLBCNT=16
92
	CFLAGS += -mhard-float -mips3 -DTLBCNT=16
93
	TLBCNT = 16
93
	TLBCNT = 16
94
endif
94
endif
95
ifeq ($(MACHINE),msim)
95
ifeq ($(MACHINE),msim)
96
	BFD_NAME = elf32-tradlittlemips
96
	BFD_NAME = elf32-tradlittlemips
97
	BFD = binary
97
	BFD = binary
98
	CFLAGS += -mhard-float -mips3
98
	CFLAGS += -mhard-float -mips3
99
endif
99
endif
100
 
100
 
101
## Compile with support for software integer division.
101
## Compile with support for software integer division.
102
#
102
#
103
 
103
 
104
CONFIG_SOFTINT = y
104
CONFIG_SOFTINT = y
105
 
105
 
106
 
106
 
107
ARCH_SOURCES = \
107
ARCH_SOURCES = \
108
	arch/$(ARCH)/src/start.S \
108
	arch/$(ARCH)/src/start.S \
109
	arch/$(ARCH)/src/context.S \
109
	arch/$(ARCH)/src/context.S \
110
	arch/$(ARCH)/src/panic.S \
110
	arch/$(ARCH)/src/panic.S \
111
	arch/$(ARCH)/src/mips32.c \
111
	arch/$(ARCH)/src/mips32.c \
112
	arch/$(ARCH)/src/dummy.S \
112
	arch/$(ARCH)/src/dummy.S \
113
	arch/$(ARCH)/src/console.c \
113
	arch/$(ARCH)/src/console.c \
114
	arch/$(ARCH)/src/asm.S \
114
	arch/$(ARCH)/src/asm.S \
115
	arch/$(ARCH)/src/exception.c \
115
	arch/$(ARCH)/src/exception.c \
116
	arch/$(ARCH)/src/interrupt.c \
116
	arch/$(ARCH)/src/interrupt.c \
117
	arch/$(ARCH)/src/cache.c \
117
	arch/$(ARCH)/src/cache.c \
118
	arch/$(ARCH)/src/debugger.c \
118
	arch/$(ARCH)/src/debugger.c \
119
	arch/$(ARCH)/src/cpu/cpu.c \
119
	arch/$(ARCH)/src/cpu/cpu.c \
120
	arch/$(ARCH)/src/mm/frame.c \
120
	arch/$(ARCH)/src/mm/frame.c \
121
	arch/$(ARCH)/src/mm/page.c \
121
	arch/$(ARCH)/src/mm/page.c \
122
	arch/$(ARCH)/src/mm/tlb.c \
122
	arch/$(ARCH)/src/mm/tlb.c \
123
	arch/$(ARCH)/src/mm/as.c \
123
	arch/$(ARCH)/src/mm/as.c \
124
	arch/$(ARCH)/src/fpu_context.c \
124
	arch/$(ARCH)/src/fpu_context.c \
125
	arch/$(ARCH)/src/ddi/ddi.c \
125
	arch/$(ARCH)/src/ddi/ddi.c \
126
	arch/$(ARCH)/src/drivers/arc.c \
126
	arch/$(ARCH)/src/drivers/arc.c \
127
	arch/$(ARCH)/src/drivers/msim.c \
127
	arch/$(ARCH)/src/drivers/msim.c \
128
	arch/$(ARCH)/src/drivers/serial.c
128
	arch/$(ARCH)/src/drivers/serial.c
129
 
129