Rev 684 | Rev 730 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 684 | Rev 703 | ||
---|---|---|---|
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 MIPS_MACHINE |
39 | ifndef MIPS_MACHINE |
40 | MIPS_MACHINE = msim |
40 | MIPS_MACHINE = msim |
41 | endif |
41 | endif |
42 | 42 | ||
43 | KERNEL_LOAD_ADDRESS = 0x80100000 |
43 | KERNEL_LOAD_ADDRESS = 0x80100000 |
44 | INIT_ADDRESS = 0x80110000 |
44 | INIT_ADDRESS = 0x80110000 |
45 | INIT_SIZE = 65536 |
45 | INIT_SIZE = 65536 |
46 | CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss |
46 | CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss |
47 | DEFS += -DMACHINE=${MIPS_MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE} |
47 | DEFS += -DMACHINE=${MIPS_MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE} |
48 | 48 | ||
49 | ## Compile with hierarchical page tables support. |
49 | ## Compile with hierarchical page tables support. |
50 | # |
50 | # |
51 | 51 | ||
52 | CONFIG_PAGE_PT = y |
52 | CONFIG_PAGE_PT = y |
53 | 53 | ||
54 | 54 | ||
55 | ## Accepted MACHINEs |
55 | ## Accepted MACHINEs |
56 | # |
56 | # |
57 | 57 | ||
58 | ifeq ($(MIPS_MACHINE),indy) |
58 | ifeq ($(MIPS_MACHINE),indy) |
59 | # GCC 4.0.1 compiled for mipsEL has problems compiling in |
59 | # GCC 4.0.1 compiled for mipsEL has problems compiling in |
60 | # BigEndian mode with the swl/swr/lwl/lwr instructions. |
60 | # BigEndian mode with the swl/swr/lwl/lwr instructions. |
61 | # We have to compile it with mips-sgi-irix5 to get it right. |
61 | # We have to compile it with mips-sgi-irix5 to get it right. |
62 | 62 | ||
63 | BFD_NAME = elf32-bigmips |
63 | BFD_NAME = elf32-bigmips |
64 | BFD = ecoff-bigmips --impure |
64 | BFD = ecoff-bigmips --impure |
65 | TARGET = mips-sgi-irix5 |
65 | TARGET = mips-sgi-irix5 |
66 | TOOLCHAIN_DIR = /usr/local/mips/bin |
66 | TOOLCHAIN_DIR = /usr/local/mips/bin |
67 | KERNEL_LOAD_ADDRESS = 0x88002000 |
67 | KERNEL_LOAD_ADDRESS = 0x88002000 |
68 | CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -march=r4600 |
68 | CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -march=r4600 |
69 | endif |
69 | endif |
70 | ifeq ($(MIPS_MACHINE),lgxemul) |
70 | ifeq ($(MIPS_MACHINE),lgxemul) |
71 | BFD_NAME=elf32-tradlittlemips |
71 | BFD_NAME=elf32-tradlittlemips |
72 | BFD = ecoff-littlemips |
72 | BFD = ecoff-littlemips |
73 | CFLAGS += -DHAVE_FPU -mips3 |
73 | CFLAGS += -DHAVE_FPU -mips3 |
74 | endif |
74 | endif |
75 | ifeq ($(MIPS_MACHINE),bgxemul) |
75 | ifeq ($(MIPS_MACHINE),bgxemul) |
76 | BFD_NAME=elf32-bigmips |
76 | BFD_NAME=elf32-bigmips |
77 | BFD = ecoff-bigmips |
77 | BFD = ecoff-bigmips |
78 | TARGET = mips-sgi-irix5 |
78 | TARGET = mips-sgi-irix5 |
79 | TOOLCHAIN_DIR = /usr/local/mips/bin |
79 | TOOLCHAIN_DIR = /usr/local/mips/bin |
80 | CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -mips3 |
80 | CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -mips3 |
81 | endif |
81 | endif |
82 | ifeq ($(MIPS_MACHINE),simics) |
82 | ifeq ($(MIPS_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 -DTLBCNT=16 |
88 | CFLAGS += -mhard-float -mips3 -DTLBCNT=16 |
89 | TLBCNT = 16 |
89 | TLBCNT = 16 |
90 | endif |
90 | endif |
91 | ifeq ($(MIPS_MACHINE),msim) |
91 | ifeq ($(MIPS_MACHINE),msim) |
92 | BFD_NAME = elf32-tradlittlemips |
92 | BFD_NAME = elf32-tradlittlemips |
93 | BFD = binary |
93 | BFD = binary |
94 | CFLAGS += -mhard-float -mips3 |
94 | CFLAGS += -mhard-float -mips3 |
95 | endif |
95 | endif |
96 | 96 | ||
97 | 97 | ||
98 | ARCH_SOURCES = \ |
98 | ARCH_SOURCES = \ |
99 | arch/$(ARCH)/src/start.S \ |
99 | arch/$(ARCH)/src/start.S \ |
100 | arch/$(ARCH)/src/context.S \ |
100 | arch/$(ARCH)/src/context.S \ |
101 | arch/$(ARCH)/src/panic.S \ |
101 | arch/$(ARCH)/src/panic.S \ |
102 | arch/$(ARCH)/src/mips32.c \ |
102 | arch/$(ARCH)/src/mips32.c \ |
103 | arch/$(ARCH)/src/dummy.S \ |
103 | arch/$(ARCH)/src/dummy.S \ |
104 | arch/$(ARCH)/src/console.c \ |
104 | arch/$(ARCH)/src/console.c \ |
105 | arch/$(ARCH)/src/asm.S \ |
105 | arch/$(ARCH)/src/asm.S \ |
106 | arch/$(ARCH)/src/exception.c \ |
106 | arch/$(ARCH)/src/exception.c \ |
107 | arch/$(ARCH)/src/interrupt.c \ |
107 | arch/$(ARCH)/src/interrupt.c \ |
108 | arch/$(ARCH)/src/cache.c \ |
108 | arch/$(ARCH)/src/cache.c \ |
109 | arch/$(ARCH)/src/debugger.c \ |
109 | arch/$(ARCH)/src/debugger.c \ |
110 | arch/$(ARCH)/src/cpu/cpu.c \ |
110 | arch/$(ARCH)/src/cpu/cpu.c \ |
111 | arch/$(ARCH)/src/mm/asid.c \ |
111 | arch/$(ARCH)/src/mm/asid.c \ |
112 | arch/$(ARCH)/src/mm/frame.c \ |
112 | arch/$(ARCH)/src/mm/frame.c \ |
113 | arch/$(ARCH)/src/mm/page.c \ |
113 | arch/$(ARCH)/src/mm/page.c \ |
114 | arch/$(ARCH)/src/mm/tlb.c \ |
114 | arch/$(ARCH)/src/mm/tlb.c \ |
115 | arch/$(ARCH)/src/mm/vm.c \ |
115 | arch/$(ARCH)/src/mm/as.c \ |
116 | arch/$(ARCH)/src/fpu_context.c \ |
116 | arch/$(ARCH)/src/fpu_context.c \ |
117 | arch/$(ARCH)/src/drivers/arc.c \ |
117 | arch/$(ARCH)/src/drivers/arc.c \ |
118 | arch/$(ARCH)/src/drivers/msim.c \ |
118 | arch/$(ARCH)/src/drivers/msim.c \ |
119 | arch/$(ARCH)/src/drivers/serial.c |
119 | arch/$(ARCH)/src/drivers/serial.c |
120 | 120 |