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