Subversion Repositories HelenOS

Rev

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

Rev 3228 Rev 3369
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
ifndef CROSS_PREFIX
-
 
33
	CROSS_PREFIX = /usr/local
-
 
34
endif
-
 
35
 
32
BFD_ARCH = mips
36
BFD_ARCH = mips
33
TARGET = mipsel-linux-gnu
37
TARGET = mipsel-linux-gnu
34
TOOLCHAIN_DIR = /usr/local/mipsel
38
TOOLCHAIN_DIR = $(CROSS_PREFIX)/mipsel
35
 
39
 
36
KERNEL_LOAD_ADDRESS = 0x80100000
40
KERNEL_LOAD_ADDRESS = 0x80100000
37
INIT_ADDRESS = 0x81000000
41
INIT_ADDRESS = 0x81000000
38
INIT_SIZE = 262144
42
INIT_SIZE = 262144
39
 
43
 
40
GCC_CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
44
GCC_CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
41
 
45
 
42
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE) -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE}
46
DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE) -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE}
43
 
47
 
44
## Compile with hierarchical page tables support.
48
## Compile with hierarchical page tables support.
45
#
49
#
46
 
50
 
47
CONFIG_PAGE_PT = y
51
CONFIG_PAGE_PT = y
48
DEFS += -DCONFIG_PAGE_PT
52
DEFS += -DCONFIG_PAGE_PT
49
 
53
 
50
## Compile with support for address space identifiers.
54
## Compile with support for address space identifiers.
51
#
55
#
52
 
56
 
53
CONFIG_ASID = y
57
CONFIG_ASID = y
54
CONFIG_ASID_FIFO = y
58
CONFIG_ASID_FIFO = y
55
 
59
 
56
## Accepted MACHINEs
60
## Accepted MACHINEs
57
#
61
#
58
 
62
 
59
ifeq ($(MACHINE),lgxemul)
63
ifeq ($(MACHINE),lgxemul)
60
	BFD_NAME = elf32-tradlittlemips
64
	BFD_NAME = elf32-tradlittlemips
61
	BFD = binary
65
	BFD = binary
62
	GCC_CFLAGS += -DFB_INVERT_ENDIAN -DARCH_HAS_FPU -mips3
66
	GCC_CFLAGS += -DFB_INVERT_ENDIAN -DARCH_HAS_FPU -mips3
63
endif
67
endif
64
ifeq ($(MACHINE),bgxemul)
68
ifeq ($(MACHINE),bgxemul)
65
	BFD_NAME = elf32-bigmips
69
	BFD_NAME = elf32-bigmips
66
	BFD = ecoff-bigmips
70
	BFD = ecoff-bigmips
67
	TARGET = mips-sgi-irix5
71
	TARGET = mips-sgi-irix5
68
	TOOLCHAIN_DIR = /usr/local/mips/bin
72
	TOOLCHAIN_DIR = $(CROSS_PREFIX)/mips/bin
69
	GCC_CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -mips3
73
	GCC_CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -mips3
70
	INIT_ADDRESS = 0x81800000
74
	INIT_ADDRESS = 0x81800000
71
endif
75
endif
72
ifeq ($(MACHINE),simics)
76
ifeq ($(MACHINE),simics)
73
	# SIMICS 4kc emulation is broken, although for instructions
77
	# SIMICS 4kc emulation is broken, although for instructions
74
	# that do not bother us
78
	# that do not bother us
75
	
79
	
76
	BFD_NAME = elf32-tradlittlemips
80
	BFD_NAME = elf32-tradlittlemips
77
	BFD = elf32-tradlittlemips
81
	BFD = elf32-tradlittlemips
78
	GCC_CFLAGS += -mhard-float -mips3 -DTLBCNT=16
82
	GCC_CFLAGS += -mhard-float -mips3 -DTLBCNT=16
79
	TLBCNT = 16
83
	TLBCNT = 16
80
endif
84
endif
81
ifeq ($(MACHINE),msim)
85
ifeq ($(MACHINE),msim)
82
	BFD_NAME = elf32-tradlittlemips
86
	BFD_NAME = elf32-tradlittlemips
83
	BFD = binary
87
	BFD = binary
84
	GCC_CFLAGS += -mhard-float -mips3
88
	GCC_CFLAGS += -mhard-float -mips3
85
endif
89
endif
86
 
90
 
87
## Compile with support for software integer division.
91
## Compile with support for software integer division.
88
#
92
#
89
 
93
 
90
CONFIG_SOFTINT = y
94
CONFIG_SOFTINT = y
91
 
95
 
92
 
96
 
93
ARCH_SOURCES = \
97
ARCH_SOURCES = \
94
	arch/$(ARCH)/src/start.S \
98
	arch/$(ARCH)/src/start.S \
95
	arch/$(ARCH)/src/context.S \
99
	arch/$(ARCH)/src/context.S \
96
	arch/$(ARCH)/src/panic.S \
100
	arch/$(ARCH)/src/panic.S \
97
	arch/$(ARCH)/src/mips32.c \
101
	arch/$(ARCH)/src/mips32.c \
98
	arch/$(ARCH)/src/dummy.S \
102
	arch/$(ARCH)/src/dummy.S \
99
	arch/$(ARCH)/src/console.c \
103
	arch/$(ARCH)/src/console.c \
100
	arch/$(ARCH)/src/asm.S \
104
	arch/$(ARCH)/src/asm.S \
101
	arch/$(ARCH)/src/exception.c \
105
	arch/$(ARCH)/src/exception.c \
102
	arch/$(ARCH)/src/interrupt.c \
106
	arch/$(ARCH)/src/interrupt.c \
103
	arch/$(ARCH)/src/cache.c \
107
	arch/$(ARCH)/src/cache.c \
104
	arch/$(ARCH)/src/debugger.c \
108
	arch/$(ARCH)/src/debugger.c \
105
	arch/$(ARCH)/src/cpu/cpu.c \
109
	arch/$(ARCH)/src/cpu/cpu.c \
106
	arch/$(ARCH)/src/mm/frame.c \
110
	arch/$(ARCH)/src/mm/frame.c \
107
	arch/$(ARCH)/src/mm/page.c \
111
	arch/$(ARCH)/src/mm/page.c \
108
	arch/$(ARCH)/src/mm/tlb.c \
112
	arch/$(ARCH)/src/mm/tlb.c \
109
	arch/$(ARCH)/src/mm/as.c \
113
	arch/$(ARCH)/src/mm/as.c \
110
	arch/$(ARCH)/src/fpu_context.c \
114
	arch/$(ARCH)/src/fpu_context.c \
111
	arch/$(ARCH)/src/ddi/ddi.c \
115
	arch/$(ARCH)/src/ddi/ddi.c \
112
	arch/$(ARCH)/src/drivers/msim.c \
116
	arch/$(ARCH)/src/drivers/msim.c \
113
	arch/$(ARCH)/src/drivers/serial.c \
117
	arch/$(ARCH)/src/drivers/serial.c \
114
	arch/$(ARCH)/src/smp/order.c
118
	arch/$(ARCH)/src/smp/order.c
115
 
119