source: mainline/arch/mips32/Makefile.inc@ e5027df7

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since e5027df7 was c4b2788, checked in by Martin Decky <martin@…>, 19 years ago

prepare GXEmul kernel to use the boot loader

  • Property mode set to 100644
File size: 3.9 KB
RevLine 
[6bc4dbd]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#
28
29## Toolchain configuration
30#
31
32BFD_ARCH = mips
33TARGET = mipsel-linux-gnu
34TOOLCHAIN_DIR = /usr/local/mipsel/bin
35
36## Make some default assumptions
37#
38
[9371c30]39ifndef MIPS_MACHINE
40 MIPS_MACHINE = msim
[6bc4dbd]41endif
42
[389f41e]43KERNEL_LOAD_ADDRESS = 0x80100000
[de6b301]44INIT_ADDRESS = 0x81000000
[9ceaef4]45INIT_SIZE = 262144
[9b9f195]46
[feb1a414]47CFLAGS += -mno-abicalls -G 0 -fno-zero-initialized-in-bss
[9b9f195]48
[de6b301]49DEFS += -D__32_BITS__ -DMACHINE=${MIPS_MACHINE} -DKERNEL_LOAD_ADDRESS=${KERNEL_LOAD_ADDRESS} -DINIT_ADDRESS=${INIT_ADDRESS} -DINIT_SIZE=${INIT_SIZE}
[389f41e]50
[6d7ffa65]51## Compile with hierarchical page tables support.
52#
53
54CONFIG_PAGE_PT = y
[d71007e]55DEFS += -DCONFIG_PAGE_PT
[6d7ffa65]56
[4512d7e]57## Compile with support for address space identifiers.
58#
59
60CONFIG_ASID = y
[6ed5352]61CONFIG_ASID_FIFO = y
[6d7ffa65]62
[389f41e]63## Accepted MACHINEs
[6bc4dbd]64#
65
[9371c30]66ifeq ($(MIPS_MACHINE),indy)
[389f41e]67 # GCC 4.0.1 compiled for mipsEL has problems compiling in
68 # BigEndian mode with the swl/swr/lwl/lwr instructions.
69 # We have to compile it with mips-sgi-irix5 to get it right.
70
71 BFD_NAME = elf32-bigmips
[96c939e]72 BFD = ecoff-bigmips --impure
[389f41e]73 TARGET = mips-sgi-irix5
74 TOOLCHAIN_DIR = /usr/local/mips/bin
75 KERNEL_LOAD_ADDRESS = 0x88002000
[0e24857]76 CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -march=r4600
[085d973]77 INIT_ADDRESS = 0
78 INIT_SIZE = 0
[389f41e]79endif
[9371c30]80ifeq ($(MIPS_MACHINE),lgxemul)
[c4b2788]81 BFD_NAME = elf32-tradlittlemips
82 BFD = binary
[ddd043ce]83 CFLAGS += -DFB_BIG_ENDIAN -DARCH_HAS_FPU -mips3
[389f41e]84endif
[9371c30]85ifeq ($(MIPS_MACHINE),bgxemul)
[c4b2788]86 BFD_NAME = elf32-bigmips
[389f41e]87 BFD = ecoff-bigmips
88 TARGET = mips-sgi-irix5
89 TOOLCHAIN_DIR = /usr/local/mips/bin
[0e24857]90 CFLAGS += -EB -DBIG_ENDIAN -DARCH_HAS_FPU -mips3
[de6b301]91 INIT_ADDRESS = 0x81800000
[6bc4dbd]92endif
[9371c30]93ifeq ($(MIPS_MACHINE),simics)
[389f41e]94 # SIMICS 4kc emulation is broken, although for instructions
95 # that do not bother us
96
97 BFD_NAME = elf32-tradlittlemips
98 BFD = elf32-tradlittlemips
[54aff98]99 CFLAGS += -mhard-float -mips3 -DTLBCNT=16
100 TLBCNT = 16
[6bc4dbd]101endif
[9371c30]102ifeq ($(MIPS_MACHINE),msim)
[389f41e]103 BFD_NAME = elf32-tradlittlemips
104 BFD = binary
105 CFLAGS += -mhard-float -mips3
[6bc4dbd]106endif
107
[280a27e]108## Compile with support for software integer division.
109#
110
111CONFIG_SOFTINT = y
112
[6bc4dbd]113
114ARCH_SOURCES = \
[389f41e]115 arch/$(ARCH)/src/start.S \
116 arch/$(ARCH)/src/context.S \
117 arch/$(ARCH)/src/panic.S \
118 arch/$(ARCH)/src/mips32.c \
119 arch/$(ARCH)/src/dummy.S \
120 arch/$(ARCH)/src/console.c \
[6bc4dbd]121 arch/$(ARCH)/src/asm.S \
[389f41e]122 arch/$(ARCH)/src/exception.c \
[6bc4dbd]123 arch/$(ARCH)/src/interrupt.c \
[389f41e]124 arch/$(ARCH)/src/cache.c \
[5bb8e45]125 arch/$(ARCH)/src/debugger.c \
[6bc4dbd]126 arch/$(ARCH)/src/cpu/cpu.c \
127 arch/$(ARCH)/src/mm/frame.c \
128 arch/$(ARCH)/src/mm/page.c \
129 arch/$(ARCH)/src/mm/tlb.c \
[20d50a1]130 arch/$(ARCH)/src/mm/as.c \
[389f41e]131 arch/$(ARCH)/src/fpu_context.c \
[f52e54da]132 arch/$(ARCH)/src/ddi/ddi.c \
[a7fdfe1]133 arch/$(ARCH)/src/drivers/arc.c \
[973be64e]134 arch/$(ARCH)/src/drivers/msim.c \
135 arch/$(ARCH)/src/drivers/serial.c
Note: See TracBrowser for help on using the repository browser.