Rev 501 | Rev 509 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
455 | decky | 1 | # |
2 | # Copyright (C) 2005 Martin Decky |
||
3 | # All rights reserved. |
||
4 | # |
||
5 | # Redistribution and use in source and binary forms, with or without |
||
6 | # modification, are permitted provided that the following conditions |
||
7 | # are met: |
||
8 | # |
||
9 | # - Redistributions of source code must retain the above copyright |
||
10 | # notice, this list of conditions and the following disclaimer. |
||
11 | # - Redistributions in binary form must reproduce the above copyright |
||
12 | # notice, this list of conditions and the following disclaimer in the |
||
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 |
||
15 | # derived from this software without specific prior written permission. |
||
16 | # |
||
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 |
||
19 | # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. |
||
20 | # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, |
||
21 | # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
||
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 |
||
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 |
||
26 | # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
||
27 | # |
||
1 | jermar | 28 | |
455 | decky | 29 | ## Toolchain configuration |
30 | # |
||
1 | jermar | 31 | |
455 | decky | 32 | BFD_ARCH = mips |
33 | TARGET = mipsel-linux-gnu |
||
34 | TOOLCHAIN_DIR = /usr/local/mipsel/bin |
||
35 | |||
36 | ## Make some default assumptions |
||
37 | # |
||
38 | |||
457 | decky | 39 | ifndef MACHINE |
40 | MACHINE = msim |
||
455 | decky | 41 | endif |
42 | |||
457 | decky | 43 | KERNEL_LOAD_ADDRESS = 0x80100000 |
506 | decky | 44 | INIT_ADDRESS = 0x80110000 |
45 | INIT_SIZE = 65536 |
||
486 | jermar | 46 | CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss |
506 | decky | 47 | DEFS += -DMACHINE=${MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE} |
457 | decky | 48 | |
49 | ## Accepted MACHINEs |
||
455 | decky | 50 | # |
51 | |||
457 | decky | 52 | ifeq ($(MACHINE),indy) |
53 | # GCC 4.0.1 compiled for mipsEL has problems compiling in |
||
54 | # BigEndian mode with the swl/swr/lwl/lwr instructions. |
||
55 | # We have to compile it with mips-sgi-irix5 to get it right. |
||
56 | |||
57 | BFD_NAME = elf32-bigmips |
||
58 | BFD = ecoff-bigmips |
||
59 | TARGET = mips-sgi-irix5 |
||
60 | TOOLCHAIN_DIR = /usr/local/mips/bin |
||
61 | KERNEL_LOAD_ADDRESS = 0x88002000 |
||
62 | CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -march=r4600 |
||
455 | decky | 63 | endif |
457 | decky | 64 | ifeq ($(MACHINE}),lgxemul) |
65 | BFD_NAME=elf32-tradlittlemips |
||
66 | BFD = ecoff-littlemips |
||
67 | CFLAGS += -DHAVE_FPU -mips3 |
||
455 | decky | 68 | endif |
457 | decky | 69 | ifeq ($(MACHINE),bgxemul) |
70 | BFD_NAME=elf32-bigmips |
||
71 | BFD = ecoff-bigmips |
||
72 | TARGET = mips-sgi-irix5 |
||
73 | TOOLCHAIN_DIR = /usr/local/mips/bin |
||
74 | CFLAGS += -EB -DBIG_ENDIAN -DHAVE_FPU -mips3 |
||
455 | decky | 75 | endif |
457 | decky | 76 | ifeq ($(MACHINE),msim4kc) |
77 | # MSIM needs lwl/swl patch & 4kc instruction patch to work |
||
78 | # otherwise add -mmemcpy -mips3 |
||
79 | |||
80 | BFD_NAME = elf32-tradlittlemips |
||
81 | BFD = binary |
||
82 | CFLAGS += -mhard-float -march=4kc |
||
455 | decky | 83 | endif |
457 | decky | 84 | ifeq ($(MACHINE),simics) |
85 | # SIMICS 4kc emulation is broken, although for instructions |
||
86 | # that do not bother us |
||
87 | |||
88 | BFD_NAME = elf32-tradlittlemips |
||
89 | BFD = elf32-tradlittlemips |
||
90 | CFLAGS += -mhard-float -mips3 |
||
91 | endif |
||
92 | ifeq ($(MACHINE),msim) |
||
93 | BFD_NAME = elf32-tradlittlemips |
||
94 | BFD = binary |
||
95 | CFLAGS += -mhard-float -mips3 |
||
96 | endif |
||
455 | decky | 97 | |
98 | ## Own configuration directives |
||
99 | # |
||
100 | |||
457 | decky | 101 | CONFIG_OFW = y |
455 | decky | 102 | |
103 | ## Accepted configuration directives |
||
104 | # |
||
105 | |||
106 | ifeq ($(CONFIG_FPU_LAZY),y) |
||
458 | decky | 107 | DEFS += -DCONFIG_FPU_LAZY |
455 | decky | 108 | endif |
109 | |||
110 | ARCH_SOURCES = \ |
||
457 | decky | 111 | arch/$(ARCH)/src/start.S \ |
112 | arch/$(ARCH)/src/context.S \ |
||
113 | arch/$(ARCH)/src/panic.S \ |
||
114 | arch/$(ARCH)/src/mips32.c \ |
||
115 | arch/$(ARCH)/src/dummy.S \ |
||
116 | arch/$(ARCH)/src/console.c \ |
||
455 | decky | 117 | arch/$(ARCH)/src/asm.S \ |
457 | decky | 118 | arch/$(ARCH)/src/exception.c \ |
455 | decky | 119 | arch/$(ARCH)/src/interrupt.c \ |
457 | decky | 120 | arch/$(ARCH)/src/cache.c \ |
455 | decky | 121 | arch/$(ARCH)/src/cpu/cpu.c \ |
457 | decky | 122 | arch/$(ARCH)/src/mm/asid.c \ |
455 | decky | 123 | arch/$(ARCH)/src/mm/frame.c \ |
124 | arch/$(ARCH)/src/mm/page.c \ |
||
125 | arch/$(ARCH)/src/mm/tlb.c \ |
||
457 | decky | 126 | arch/$(ARCH)/src/mm/vm.c \ |
127 | arch/$(ARCH)/src/fpu_context.c \ |
||
128 | arch/$(ARCH)/src/fmath.c \ |
||
129 | arch/$(ARCH)/src/drivers/arc.c |