[6bc4dbd] | 1 | #
|
---|
[df4ed85] | 2 | # Copyright (c) 2005 Martin Decky
|
---|
[6bc4dbd] | 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 | #
|
---|
| 28 |
|
---|
| 29 | ## Toolchain configuration
|
---|
| 30 | #
|
---|
| 31 |
|
---|
[ddb0df5] | 32 | ifndef CROSS_PREFIX
|
---|
| 33 | CROSS_PREFIX = /usr/local
|
---|
| 34 | endif
|
---|
| 35 |
|
---|
[6bc4dbd] | 36 | BFD_ARCH = mips
|
---|
| 37 | TARGET = mipsel-linux-gnu
|
---|
[ddb0df5] | 38 | TOOLCHAIN_DIR = $(CROSS_PREFIX)/mipsel
|
---|
[6bc4dbd] | 39 |
|
---|
[389f41e] | 40 | KERNEL_LOAD_ADDRESS = 0x80100000
|
---|
[9b9f195] | 41 |
|
---|
[52d30c4] | 42 | GCC_CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
|
---|
[9b9f195] | 43 |
|
---|
[8ec30d9] | 44 | DEFS += -D__32_BITS__ -DMACHINE=$(MACHINE) -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS}
|
---|
[389f41e] | 45 |
|
---|
[6d7ffa65] | 46 | ## Compile with hierarchical page tables support.
|
---|
| 47 | #
|
---|
| 48 |
|
---|
| 49 | CONFIG_PAGE_PT = y
|
---|
[d71007e] | 50 | DEFS += -DCONFIG_PAGE_PT
|
---|
[6d7ffa65] | 51 |
|
---|
[4512d7e] | 52 | ## Compile with support for address space identifiers.
|
---|
| 53 | #
|
---|
| 54 |
|
---|
| 55 | CONFIG_ASID = y
|
---|
[6ed5352] | 56 | CONFIG_ASID_FIFO = y
|
---|
[6d7ffa65] | 57 |
|
---|
[389f41e] | 58 | ## Accepted MACHINEs
|
---|
[6bc4dbd] | 59 | #
|
---|
| 60 |
|
---|
[41f7564] | 61 | ifeq ($(MACHINE),lgxemul)
|
---|
[c4b2788] | 62 | BFD_NAME = elf32-tradlittlemips
|
---|
| 63 | BFD = binary
|
---|
[72c4ed4] | 64 | GCC_CFLAGS += -DFB_INVERT_ENDIAN -DARCH_HAS_FPU -mips3
|
---|
[389f41e] | 65 | endif
|
---|
[41f7564] | 66 | ifeq ($(MACHINE),bgxemul)
|
---|
[c4b2788] | 67 | BFD_NAME = elf32-bigmips
|
---|
[389f41e] | 68 | BFD = ecoff-bigmips
|
---|
[018e1e3] | 69 | TOOLCHAIN_DIR = $(CROSS_PREFIX)/mips
|
---|
[389f41e] | 70 | TARGET = mips-sgi-irix5
|
---|
[52d30c4] | 71 | GCC_CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -mips3
|
---|
[6bc4dbd] | 72 | endif
|
---|
[41f7564] | 73 | ifeq ($(MACHINE),simics)
|
---|
[389f41e] | 74 | # SIMICS 4kc emulation is broken, although for instructions
|
---|
| 75 | # that do not bother us
|
---|
| 76 |
|
---|
| 77 | BFD_NAME = elf32-tradlittlemips
|
---|
| 78 | BFD = elf32-tradlittlemips
|
---|
[52d30c4] | 79 | GCC_CFLAGS += -mhard-float -mips3 -DTLBCNT=16
|
---|
[54aff98] | 80 | TLBCNT = 16
|
---|
[6bc4dbd] | 81 | endif
|
---|
[41f7564] | 82 | ifeq ($(MACHINE),msim)
|
---|
[389f41e] | 83 | BFD_NAME = elf32-tradlittlemips
|
---|
| 84 | BFD = binary
|
---|
[52d30c4] | 85 | GCC_CFLAGS += -mhard-float -mips3
|
---|
[6bc4dbd] | 86 | endif
|
---|
| 87 |
|
---|
[280a27e] | 88 | ## Compile with support for software integer division.
|
---|
| 89 | #
|
---|
| 90 |
|
---|
| 91 | CONFIG_SOFTINT = y
|
---|
| 92 |
|
---|
[6bc4dbd] | 93 |
|
---|
| 94 | ARCH_SOURCES = \
|
---|
[389f41e] | 95 | arch/$(ARCH)/src/start.S \
|
---|
| 96 | arch/$(ARCH)/src/context.S \
|
---|
| 97 | arch/$(ARCH)/src/panic.S \
|
---|
| 98 | arch/$(ARCH)/src/mips32.c \
|
---|
| 99 | arch/$(ARCH)/src/dummy.S \
|
---|
| 100 | arch/$(ARCH)/src/console.c \
|
---|
[6bc4dbd] | 101 | arch/$(ARCH)/src/asm.S \
|
---|
[389f41e] | 102 | arch/$(ARCH)/src/exception.c \
|
---|
[6bc4dbd] | 103 | arch/$(ARCH)/src/interrupt.c \
|
---|
[389f41e] | 104 | arch/$(ARCH)/src/cache.c \
|
---|
[5bb8e45] | 105 | arch/$(ARCH)/src/debugger.c \
|
---|
[6bc4dbd] | 106 | arch/$(ARCH)/src/cpu/cpu.c \
|
---|
| 107 | arch/$(ARCH)/src/mm/frame.c \
|
---|
| 108 | arch/$(ARCH)/src/mm/page.c \
|
---|
| 109 | arch/$(ARCH)/src/mm/tlb.c \
|
---|
[20d50a1] | 110 | arch/$(ARCH)/src/mm/as.c \
|
---|
[389f41e] | 111 | arch/$(ARCH)/src/fpu_context.c \
|
---|
[f52e54da] | 112 | arch/$(ARCH)/src/ddi/ddi.c \
|
---|
[973be64e] | 113 | arch/$(ARCH)/src/drivers/msim.c \
|
---|
[22e8166d] | 114 | arch/$(ARCH)/src/drivers/serial.c \
|
---|
| 115 | arch/$(ARCH)/src/smp/order.c
|
---|