Subversion Repositories HelenOS

Rev

Rev 3535 | Rev 4339 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
452 decky 1
#
2071 jermar 2
# Copyright (c) 2005 Martin Decky
452 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
#
328 jermar 28
 
452 decky 29
## Toolchain configuration
30
#
328 jermar 31
 
3403 svoboda 32
ifndef CROSS_PREFIX
33
	CROSS_PREFIX = /usr/local
34
endif
35
 
452 decky 36
BFD_NAME = elf32-i386
37
BFD_ARCH = i386
457 decky 38
BFD = binary
452 decky 39
TARGET = i686-pc-linux-gnu
3403 svoboda 40
TOOLCHAIN_DIR = $(CROSS_PREFIX)/i686
452 decky 41
 
1802 decky 42
DEFS += -DMACHINE=$(MACHINE) -D__32_BITS__
455 decky 43
 
2460 jermar 44
CMN1 = -m32
45
GCC_CFLAGS += $(CMN1)
46
ICC_CFLAGS += $(CMN1)
47
SUNCC_CFLAGS += $(CMN1)
48
 
452 decky 49
## Accepted CPUs
50
#
51
 
1802 decky 52
ifeq ($(MACHINE),athlon-xp)
3191 svoboda 53
	FPU_NO_CFLAGS = -mno-mmx -mno-sse -mno-3dnow
54
	CMN2 = -march=athlon-xp
2460 jermar 55
	GCC_CFLAGS += $(CMN2)
56
	ICC_CFLAGS += $(CMN2)
57
	SUNCC_CFLAGS += -xarch=ssea
468 decky 58
	DEFS += -DCONFIG_FENCES_P3
452 decky 59
	CONFIG_SMP = n
60
	CONFIG_HT = n
455 decky 61
endif
1802 decky 62
ifeq ($(MACHINE),athlon-mp)
3191 svoboda 63
	FPU_NO_CFLAGS = -mno-mmx -mno-sse -mno-3dnow
64
	CMN2 = -march=athlon-mp
2460 jermar 65
	GCC_CFLAGS += $(CMN2)
66
	ICC_CFLAGS += $(CMN2)
67
	SUNCC_CFLAGS += xarch=ssea
468 decky 68
	DEFS += -DCONFIG_FENCES_P3
457 decky 69
	CONFIG_HT = n
455 decky 70
endif
1802 decky 71
ifeq ($(MACHINE),pentium3)
3191 svoboda 72
	FPU_NO_CFLAGS = -mno-mmx -mno-sse
73
	CMN2 = -march=pentium3
2460 jermar 74
	GCC_CFLAGS += $(CMN2)
75
	ICC_CFLAGS += $(CMN2)
76
	SUNCC_CFLAGS += -xarch=sse
468 decky 77
	DEFS += -DCONFIG_FENCES_P3
457 decky 78
	CONFIG_HT = n
455 decky 79
endif
2599 decky 80
ifeq ($(MACHINE),core)
3403 svoboda 81
	FPU_NO_CFLAGS = -mno-mmx -mno-sse -mno-sse2 -mno-sse3
3191 svoboda 82
	CMN2 = -march=prescott
2460 jermar 83
	GCC_CFLAGS += $(CMN2)
84
	ICC_CFLAGS += $(CMN2)
85
	SUNCC_CFLAGS += -xarch=sse3
468 decky 86
	DEFS += -DCONFIG_FENCES_P4
328 jermar 87
endif
1802 decky 88
ifeq ($(MACHINE),pentium4)
3191 svoboda 89
	FPU_NO_CFLAGS = -mno-mmx -mno-sse -mno-sse2
90
	GCC_CFLAGS += -march=pentium4
2460 jermar 91
	ICC_CFLAGS += -march=pentium4
92
	SUNCC_CFLAGS += -xarch=sse2
468 decky 93
	DEFS += -DCONFIG_FENCES_P4
457 decky 94
endif
328 jermar 95
 
452 decky 96
## Own configuration directives
97
#
1 jermar 98
 
452 decky 99
CONFIG_ACPI = y
1 jermar 100
 
684 jermar 101
## Compile with hierarchical page tables support.
102
#
103
 
104
CONFIG_PAGE_PT = y
1106 jermar 105
DEFS += -DCONFIG_PAGE_PT
684 jermar 106
 
894 jermar 107
## Compile with i8042 controller support
108
#
109
 
110
CONFIG_I8042 = y
1844 jermar 111
DEFS += -DCONFIG_I8042
894 jermar 112
 
4338 svoboda 113
## Compile with EGA support
114
#
115
 
116
CONFIG_EGA = y
117
DEFS += -DCONFIG_EGA
118
 
452 decky 119
## Accepted configuration directives
120
#
423 decky 121
 
452 decky 122
ifeq ($(CONFIG_SMP),y)
458 decky 123
	DEFS += -DCONFIG_SMP
1 jermar 124
endif
452 decky 125
ifeq ($(CONFIG_HT),y)
458 decky 126
	DEFS += -DCONFIG_HT
1 jermar 127
endif
778 palkovsky 128
ifeq ($(CONFIG_SIMICS_FIX),y)
129
	DEFS += -DCONFIG_SIMICS_FIX
130
endif
1 jermar 131
 
1196 cejka 132
## Compile with support for software integer division.
133
#
134
 
135
CONFIG_SOFTINT = y
136
 
452 decky 137
ARCH_SOURCES = \
2774 cejka 138
	arch/$(ARCH)/src/context.S \
452 decky 139
	arch/$(ARCH)/src/debug/panic.s \
140
	arch/$(ARCH)/src/delay.s \
141
	arch/$(ARCH)/src/asm.S \
142
	arch/$(ARCH)/src/proc/scheduler.c \
1185 jermar 143
	arch/$(ARCH)/src/proc/task.c \
1171 jermar 144
	arch/$(ARCH)/src/proc/thread.c \
452 decky 145
	arch/$(ARCH)/src/bios/bios.c \
146
	arch/$(ARCH)/src/smp/ap.S \
147
	arch/$(ARCH)/src/smp/apic.c \
148
	arch/$(ARCH)/src/smp/mps.c \
149
	arch/$(ARCH)/src/smp/smp.c \
150
	arch/$(ARCH)/src/atomic.S \
151
	arch/$(ARCH)/src/smp/ipi.c \
152
	arch/$(ARCH)/src/ia32.c \
153
	arch/$(ARCH)/src/interrupt.c \
154
	arch/$(ARCH)/src/pm.c \
155
	arch/$(ARCH)/src/userspace.c \
156
	arch/$(ARCH)/src/cpu/cpu.c \
756 jermar 157
	arch/$(ARCH)/src/mm/as.c \
452 decky 158
	arch/$(ARCH)/src/mm/frame.c \
159
	arch/$(ARCH)/src/mm/page.c \
160
	arch/$(ARCH)/src/mm/tlb.c \
1191 jermar 161
	arch/$(ARCH)/src/ddi/ddi.c \
452 decky 162
	arch/$(ARCH)/src/drivers/i8254.c \
163
	arch/$(ARCH)/src/drivers/i8259.c \
1287 vana 164
	arch/$(ARCH)/src/drivers/vesa.c \
452 decky 165
	arch/$(ARCH)/src/boot/boot.S \
2725 decky 166
	arch/$(ARCH)/src/boot/memmap.c \
1074 palkovsky 167
	arch/$(ARCH)/src/fpu_context.c \
3535 svoboda 168
	arch/$(ARCH)/src/debugger.c \
169
	arch/$(ARCH)/src/syscall.c