Subversion Repositories HelenOS

Rev

Rev 4345 | Rev 4347 | 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
#
28
 
29
 
550 palkovsky 30
## Include configuration
452 decky 31
#
32
 
4340 svoboda 33
include ../version
34
-include ../Makefile.config
4342 svoboda 35
-include ../config.defs
452 decky 36
 
2460 jermar 37
INCLUDES = generic/include
38
OPTIMIZATION = 3
39
 
4342 svoboda 40
ifndef CROSS_PREFIX
41
	CROSS_PREFIX = /usr/local
42
endif
43
 
452 decky 44
## Common compiler flags
45
#
46
 
4342 svoboda 47
DEFS = -DKERNEL -DRELEASE=$(RELEASE) "-DNAME=$(NAME)"
2453 jermar 48
 
4342 svoboda 49
GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \
3191 svoboda 50
	-fno-builtin -Wall -Wextra -Wno-unused-parameter -Wmissing-prototypes -Werror \
3535 svoboda 51
	-nostdlib -nostdinc -pipe
2453 jermar 52
 
4342 svoboda 53
ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) -imacros ../config.h \
3191 svoboda 54
	-fno-builtin -Wall -Wmissing-prototypes -Werror \
2460 jermar 55
	-nostdlib -nostdinc \
56
	-wd170
57
 
58
SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \
2462 jermar 59
	-xnolib -xc99=all -features=extensions \
2454 jermar 60
	-erroff=E_ZERO_SIZED_STRUCT_UNION
61
 
452 decky 62
LFLAGS = -M
462 decky 63
AFLAGS =
452 decky 64
 
4342 svoboda 65
-include arch/$(KARCH)/Makefile.inc
558 palkovsky 66
-include genarch/Makefile.inc
1 jermar 67
 
2602 jermar 68
## The at-sign
69
#
2603 jermar 70
# The $(ATSIGN) variable holds the ASCII character representing the at-sign
2602 jermar 71
# ('@') used in various $(AS) constructs (e.g. @progbits). On architectures that
72
# don't use '@' for starting a comment, $(ATSIGN) is merely '@'. However, on
73
# those that do use it for starting a comment (e.g. arm32), $(ATSIGN) must be
74
# defined as the percentile-sign ('%') in the architecture-dependent
75
# Makefile.inc.
76
#
77
ATSIGN ?= @
78
 
79
## Cross-platform assembly to start a symtab.data section
80
#
81
SYMTAB_SECTION=".section symtab.data, \"a\", $(ATSIGN)progbits;"
82
 
2489 jermar 83
## Simple detection for the type of the host system
84
#
85
HOST = $(shell uname)
86
 
87
## On Solaris, some utilities have slightly different names
88
#
89
ifeq ($(HOST),SunOS)
90
	BINUTILS_PREFIX = "g"
91
else
92
	BINUTILS_PREFIX = ""
93
endif
94
 
452 decky 95
## Toolchain configuration
96
#
97
 
2437 decky 98
ifeq ($(COMPILER),gcc_native)
452 decky 99
	CC = gcc
2455 jermar 100
	GCC = gcc
2489 jermar 101
	AS = $(BINUTILS_PREFIX)as
102
	LD = $(BINUTILS_PREFIX)ld
103
	OBJCOPY = $(BINUTILS_PREFIX)objcopy
104
	OBJDUMP = $(BINUTILS_PREFIX)objdump
2125 decky 105
	LIBDIR = /usr/lib
2454 jermar 106
	CFLAGS = $(GCC_CFLAGS)
4342 svoboda 107
	DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
2437 decky 108
endif
109
 
110
ifeq ($(COMPILER),icc_native)
111
	CC = icc
2455 jermar 112
	GCC = gcc
2437 decky 113
	AS = as
114
	LD = ld
115
	OBJCOPY = objcopy
116
	OBJDUMP = objdump
117
	LIBDIR = /usr/lib
2460 jermar 118
	CFLAGS = $(ICC_CFLAGS)
4342 svoboda 119
	DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
2437 decky 120
endif
121
 
2443 jermar 122
ifeq ($(COMPILER),suncc_native)
123
	CC = suncc
2455 jermar 124
	GCC = gcc
2489 jermar 125
	AS = $(BINUTILS_PREFIX)as
126
	LD = $(BINUTILS_PREFIX)ld
127
	OBJCOPY = $(BINUTILS_PREFIX)objcopy
128
	OBJDUMP = $(BINUTILS_PREFIX)objdump
2443 jermar 129
	LIBDIR = /usr/lib
2454 jermar 130
	CFLAGS = $(SUNCC_CFLAGS)
4342 svoboda 131
	DEFS += $(CONFIG_DEFS)
132
	DEPEND_DEFS = $(DEFS)
2443 jermar 133
endif
134
 
2437 decky 135
ifeq ($(COMPILER),gcc_cross)
2125 decky 136
	CC = $(TOOLCHAIN_DIR)/bin/$(TARGET)-gcc
2455 jermar 137
	GCC = $(CC)
2125 decky 138
	AS = $(TOOLCHAIN_DIR)/bin/$(TARGET)-as
139
	LD = $(TOOLCHAIN_DIR)/bin/$(TARGET)-ld
140
	OBJCOPY = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objcopy
141
	OBJDUMP = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objdump
142
	LIBDIR = $(TOOLCHAIN_DIR)/lib
2454 jermar 143
	CFLAGS = $(GCC_CFLAGS)
4342 svoboda 144
	DEPEND_DEFS = $(DEFS) $(CONFIG_DEFS)
452 decky 145
endif
146
 
147
## Generic kernel sources
148
#
149
 
150
GENERIC_SOURCES = \
2500 jermar 151
	generic/src/adt/avl.c \
1200 jermar 152
	generic/src/adt/bitmap.c \
1101 jermar 153
	generic/src/adt/btree.c \
790 jermar 154
	generic/src/adt/hash_table.c \
788 jermar 155
	generic/src/adt/list.c \
510 jermar 156
	generic/src/console/chardev.c \
157
	generic/src/console/console.c \
452 decky 158
	generic/src/cpu/cpu.c \
1178 jermar 159
	generic/src/ddi/ddi.c \
1920 jermar 160
	generic/src/ddi/irq.c \
161
	generic/src/ddi/device.c \
4346 svoboda 162
	generic/src/debug/symtab.c \
575 palkovsky 163
	generic/src/interrupt/interrupt.c \
430 jermar 164
	generic/src/main/main.c \
165
	generic/src/main/kinit.c \
166
	generic/src/main/uinit.c \
673 jermar 167
	generic/src/main/version.c \
2227 decky 168
	generic/src/main/shutdown.c \
3203 svoboda 169
	generic/src/proc/program.c \
430 jermar 170
	generic/src/proc/scheduler.c \
171
	generic/src/proc/thread.c \
172
	generic/src/proc/task.c \
173
	generic/src/proc/the.c \
2746 decky 174
	generic/src/proc/tasklet.c \
678 decky 175
	generic/src/syscall/syscall.c \
1288 jermar 176
	generic/src/syscall/copy.c \
430 jermar 177
	generic/src/mm/buddy.c \
178
	generic/src/mm/frame.c \
179
	generic/src/mm/page.c \
180
	generic/src/mm/tlb.c \
703 jermar 181
	generic/src/mm/as.c \
1424 jermar 182
	generic/src/mm/backend_anon.c \
183
	generic/src/mm/backend_elf.c \
184
	generic/src/mm/backend_phys.c \
759 palkovsky 185
	generic/src/mm/slab.c \
430 jermar 186
	generic/src/lib/func.c \
187
	generic/src/lib/memstr.c \
188
	generic/src/lib/sort.c \
4345 svoboda 189
	generic/src/lib/string.c \
938 jermar 190
	generic/src/lib/elf.c \
2000 decky 191
	generic/src/lib/rd.c \
1273 cejka 192
	generic/src/printf/printf_core.c \
193
	generic/src/printf/printf.c \
194
	generic/src/printf/sprintf.c \
195
	generic/src/printf/snprintf.c \
196
	generic/src/printf/vprintf.c \
197
	generic/src/printf/vsprintf.c \
198
	generic/src/printf/vsnprintf.c \
430 jermar 199
	generic/src/time/clock.c \
200
	generic/src/time/timeout.c \
201
	generic/src/time/delay.c \
202
	generic/src/preempt/preemption.c \
203
	generic/src/synch/spinlock.c \
204
	generic/src/synch/condvar.c \
205
	generic/src/synch/rwlock.c \
206
	generic/src/synch/mutex.c \
207
	generic/src/synch/semaphore.c \
3210 svoboda 208
	generic/src/synch/smc.c \
430 jermar 209
	generic/src/synch/waitq.c \
1109 jermar 210
	generic/src/synch/futex.c \
955 palkovsky 211
	generic/src/smp/ipi.c \
1901 jermar 212
	generic/src/smp/smp.c \
965 palkovsky 213
	generic/src/ipc/ipc.c \
1072 palkovsky 214
	generic/src/ipc/sysipc.c \
1174 jermar 215
	generic/src/ipc/ipcrsc.c \
1281 palkovsky 216
	generic/src/ipc/irq.c \
1317 vana 217
	generic/src/security/cap.c \
218
	generic/src/sysinfo/sysinfo.c
1 jermar 219
 
4337 svoboda 220
## Kernel console support
221
#
222
 
223
ifeq ($(CONFIG_KCONSOLE),y)
224
GENERIC_SOURCES += \
225
	generic/src/console/kconsole.c \
226
	generic/src/console/cmd.c
227
endif
228
 
3448 svoboda 229
## Udebug interface sources
230
#
231
 
232
ifeq ($(CONFIG_UDEBUG),y)
233
GENERIC_SOURCES += \
234
	generic/src/ipc/kbox.c \
235
	generic/src/udebug/udebug.c \
236
	generic/src/udebug/udebug_ops.c \
237
	generic/src/udebug/udebug_ipc.c
238
endif
239
 
459 decky 240
## Test sources
241
#
242
 
2020 decky 243
ifeq ($(CONFIG_TEST),y)
2019 decky 244
	CFLAGS += -Itest/
245
	GENERIC_SOURCES += \
246
		test/test.c \
2020 decky 247
		test/atomic/atomic1.c \
248
		test/btree/btree1.c \
2500 jermar 249
		test/avltree/avltree1.c \
2020 decky 250
		test/fault/fault1.c \
2021 decky 251
		test/mm/falloc1.c \
252
		test/mm/falloc2.c \
253
		test/mm/mapping1.c \
254
		test/mm/slab1.c \
255
		test/mm/slab2.c \
2022 decky 256
		test/synch/rwlock1.c \
257
		test/synch/rwlock2.c \
258
		test/synch/rwlock3.c \
259
		test/synch/rwlock4.c \
260
		test/synch/rwlock5.c \
261
		test/synch/semaphore1.c \
262
		test/synch/semaphore2.c \
263
		test/print/print1.c \
264
		test/thread/thread1.c \
265
		test/sysinfo/sysinfo1.c
4342 svoboda 266
 
4343 svoboda 267
	ifeq ($(KARCH),mips32)
268
		GENERIC_SOURCES += test/debug/mips1.c
269
	else
270
		GENERIC_SOURCES += test/debug/mips1_skip.c
271
	endif
272
 
273
	ifeq ($(KARCH),ia64)
274
		GENERIC_SOURCES += test/mm/purge1.c
275
	else
276
		GENERIC_SOURCES += test/mm/purge1_skip.c
277
	endif
278
 
4342 svoboda 279
	ifeq ($(CONFIG_FPU),y)
280
		ifeq ($(KARCH),ia32)
281
			TEST_FPU1 = y
282
			TEST_SSE1 = y
4343 svoboda 283
			GENERIC_SOURCES += test/fpu/fpu1_x86.c
4342 svoboda 284
		endif
285
 
286
		ifeq ($(KARCH),amd64)
287
			TEST_FPU1 = y
288
			TEST_SSE1 = y
4343 svoboda 289
			GENERIC_SOURCES += test/fpu/fpu1_x86.c
4342 svoboda 290
		endif
291
 
292
		ifeq ($(KARCH),ia64)
293
			TEST_FPU1 = y
4343 svoboda 294
			GENERIC_SOURCES += test/fpu/fpu1_ia64.c
4342 svoboda 295
		endif
296
 
297
		ifeq ($(KARCH),mips32)
298
			TEST_MIPS2 = y
299
		endif
300
	endif
301
 
4343 svoboda 302
	ifneq ($(TEST_FPU1),y)
4342 svoboda 303
		GENERIC_SOURCES += test/fpu/fpu1_skip.c
304
	endif
305
 
306
	ifeq ($(TEST_SSE1),y)
307
		GENERIC_SOURCES += test/fpu/sse1.c
308
	else
309
		GENERIC_SOURCES += test/fpu/sse1_skip.c
310
	endif
311
 
312
	ifeq ($(TEST_MIPS2),y)
313
		GENERIC_SOURCES += test/fpu/mips2.c
314
	else
315
		GENERIC_SOURCES += test/fpu/mips2_skip.c
316
	endif
317
 
459 decky 318
endif
319
 
452 decky 320
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
321
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
322
GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
326 palkovsky 323
 
4346 svoboda 324
ifeq ($(CONFIG_SYMTAB),y)
325
	SYMTAB_OBJECTS := generic/src/debug/real_map.o
326
else
327
	SYMTAB_OBJECTS :=
328
endif
329
 
4340 svoboda 330
.PHONY: all build clean archlinks depend disasm
1 jermar 331
 
4342 svoboda 332
all: ../Makefile.config ../config.h ../config.defs
4340 svoboda 333
	-rm Makefile.depend
561 decky 334
	$(MAKE) -C . build
34 jermar 335
 
1017 decky 336
build: kernel.bin disasm
558 palkovsky 337
 
452 decky 338
-include Makefile.depend
1 jermar 339
 
452 decky 340
clean:
4342 svoboda 341
	-rm -f kernel.bin kernel.raw kernel.map kernel.map.pre kernel.objdump kernel.disasm generic/src/debug/real_map.bin Makefile.depend* generic/include/arch generic/include/genarch arch/$(KARCH)/_link.ld
558 palkovsky 342
	find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
1802 decky 343
	for arch in arch/* ; do \
344
	    [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null ; \
345
	done ; exit 0
1 jermar 346
 
558 palkovsky 347
archlinks:
4342 svoboda 348
	ln -sfn ../../arch/$(KARCH)/include/ generic/include/arch
452 decky 349
	ln -sfn ../../genarch/include/ generic/include/genarch
1 jermar 350
 
577 palkovsky 351
depend: archlinks
4342 svoboda 352
	-makedepend -f - -- $(DEPEND_DEFS) $(CFLAGS) -- $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
576 palkovsky 353
 
4342 svoboda 354
arch/$(KARCH)/_link.ld: arch/$(KARCH)/_link.ld.in
2455 jermar 355
	$(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $< | grep -v "^\#" > $@
1 jermar 356
 
4342 svoboda 357
generic/src/debug/real_map.bin: depend arch/$(KARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
2602 jermar 358
	echo $(SYMTAB_SECTION) | $(AS) $(AFLAGS) -o generic/src/debug/empty_map.o
4342 svoboda 359
	$(LD) -T arch/$(KARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/empty_map.o  -o $@ -Map kernel.map.pre
452 decky 360
	$(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
430 jermar 361
	tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 
602 palkovsky 362
	# Do it once again, this time to get correct even the symbols
363
	# on architectures, that have bss after symtab
2602 jermar 364
	echo $(SYMTAB_SECTION)" .incbin \"$@\"" | $(AS) $(AFLAGS) -o generic/src/debug/sizeok_map.o
4342 svoboda 365
	$(LD) -T arch/$(KARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre
602 palkovsky 366
	$(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
367
	tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 
293 palkovsky 368
 
430 jermar 369
generic/src/debug/real_map.o: generic/src/debug/real_map.bin
2602 jermar 370
	echo $(SYMTAB_SECTION)" .incbin \"$<\"" | $(AS) $(AFLAGS) -o $@ 
293 palkovsky 371
 
4346 svoboda 372
kernel.raw: depend arch/$(KARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(SYMTAB_OBJECTS)
373
	$(LD) -T arch/$(KARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) $(SYMTAB_OBJECTS) -o $@ -Map kernel.map
293 palkovsky 374
 
461 decky 375
kernel.bin: kernel.raw
376
	$(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
377
 
472 jermar 378
disasm: kernel.raw
379
	$(OBJDUMP) -d kernel.raw > kernel.disasm
380
 
314 palkovsky 381
%.o: %.S
2455 jermar 382
	$(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c $< -o $@
1 jermar 383
 
384
%.o: %.s
455 decky 385
	$(AS) $(AFLAGS) $< -o $@
1 jermar 386
 
3191 svoboda 387
#
388
# The FPU tests are the only objects for which we allow the compiler to generate
389
# FPU instructions.
390
#
391
test/fpu/%.o: test/fpu/%.c
392
	$(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@
393
 
394
#
395
# Ordinary objects.
396
#
1 jermar 397
%.o: %.c
3191 svoboda 398
	$(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) $(FPU_NO_CFLAGS) -c $< -o $@