Subversion Repositories HelenOS

Rev

Rev 2460 | Rev 2489 | 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
 
1802 decky 33
-include ../version
558 palkovsky 34
-include Makefile.config
452 decky 35
 
2460 jermar 36
INCLUDES = generic/include
37
OPTIMIZATION = 3
38
 
452 decky 39
## Common compiler flags
40
#
41
 
2454 jermar 42
DEFS = -D$(ARCH) -DARCH=\"$(ARCH)\" -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\"" \
43
	-DKERNEL
2453 jermar 44
 
2460 jermar 45
GCC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) \
46
	-fno-builtin -fomit-frame-pointer -Wall -Wmissing-prototypes -Werror \
47
	-nostdlib -nostdinc
2453 jermar 48
 
2460 jermar 49
ICC_CFLAGS = -I$(INCLUDES) -O$(OPTIMIZATION) \
50
	-fno-builtin -fomit-frame-pointer -Wall -Wmissing-prototypes -Werror \
51
	-nostdlib -nostdinc \
52
	-wd170
53
 
54
SUNCC_CFLAGS = -I$(INCLUDES) -xO$(OPTIMIZATION) \
2462 jermar 55
	-xnolib -xc99=all -features=extensions \
2454 jermar 56
	-erroff=E_ZERO_SIZED_STRUCT_UNION
57
 
452 decky 58
LFLAGS = -M
462 decky 59
AFLAGS =
452 decky 60
 
561 decky 61
ifdef REVISION
62
	DEFS += "-DREVISION=\"$(REVISION)\""
462 decky 63
endif
64
 
561 decky 65
ifdef TIMESTAMP
66
	DEFS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
67
endif
68
 
452 decky 69
## Setup kernel configuration
70
#
71
 
558 palkovsky 72
-include arch/$(ARCH)/Makefile.inc
73
-include genarch/Makefile.inc
1 jermar 74
 
471 decky 75
ifeq ($(CONFIG_DEBUG),y)
76
	DEFS += -DCONFIG_DEBUG
452 decky 77
endif
1802 decky 78
 
452 decky 79
ifeq ($(CONFIG_DEBUG_SPINLOCK),y)
458 decky 80
	DEFS += -DCONFIG_DEBUG_SPINLOCK
452 decky 81
endif
1802 decky 82
 
1072 palkovsky 83
ifeq ($(CONFIG_DEBUG_AS_WATCHPOINT),y)
84
	DEFS += -DCONFIG_DEBUG_AS_WATCHPOINT
85
endif
1802 decky 86
 
568 palkovsky 87
ifeq ($(CONFIG_FPU_LAZY),y)
88
	DEFS += -DCONFIG_FPU_LAZY
89
endif
1802 decky 90
 
1094 palkovsky 91
ifeq ($(CONFIG_DEBUG_ALLREGS),y)
92
	DEFS += -DCONFIG_DEBUG_ALLREGS
93
endif
1802 decky 94
 
1210 vana 95
ifeq ($(CONFIG_VHPT),y)
96
	DEFS += -DCONFIG_VHPT
97
endif
1802 decky 98
 
1891 jermar 99
ifeq ($(CONFIG_TSB),y)
100
	DEFS += -DCONFIG_TSB
101
endif
102
 
1896 jermar 103
ifeq ($(CONFIG_Z8530),y)
104
	DEFS += -DCONFIG_Z8530
105
endif
106
 
107
ifeq ($(CONFIG_NS16550),y)
108
	DEFS += -DCONFIG_NS16550
109
endif
110
 
2009 jermar 111
ifeq ($(CONFIG_VIRT_IDX_DCACHE),y)
112
	DEFS += -DCONFIG_VIRT_IDX_DCACHE
1996 jermar 113
endif
114
 
1287 vana 115
ifeq ($(CONFIG_FB),y)
1802 decky 116
	ifeq ($(ARCH),ia32)
117
		DEFS += -DCONFIG_VESA_WIDTH=$(CONFIG_VESA_WIDTH)
118
		DEFS += -DCONFIG_VESA_HEIGHT=$(CONFIG_VESA_HEIGHT)
119
		DEFS += -DCONFIG_VESA_BPP=$(CONFIG_VESA_BPP)
120
	endif
121
 
122
	ifeq ($(ARCH),amd64)
123
		DEFS += -DCONFIG_VESA_WIDTH=$(CONFIG_VESA_WIDTH)
124
		DEFS += -DCONFIG_VESA_HEIGHT=$(CONFIG_VESA_HEIGHT)
125
		DEFS += -DCONFIG_VESA_BPP=$(CONFIG_VESA_BPP)
126
	endif
127
 
1953 jermar 128
	ifeq ($(ARCH),ia32xen)
1802 decky 129
		DEFS += -DCONFIG_VESA_WIDTH=$(CONFIG_VESA_WIDTH)
130
		DEFS += -DCONFIG_VESA_HEIGHT=$(CONFIG_VESA_HEIGHT)
131
		DEFS += -DCONFIG_VESA_BPP=$(CONFIG_VESA_BPP)
132
	endif
1287 vana 133
endif
452 decky 134
 
135
## Toolchain configuration
136
#
137
 
2437 decky 138
ifeq ($(COMPILER),gcc_native)
452 decky 139
	CC = gcc
2455 jermar 140
	GCC = gcc
452 decky 141
	AS = as
142
	LD = ld
143
	OBJCOPY = objcopy
144
	OBJDUMP = objdump
2125 decky 145
	LIBDIR = /usr/lib
2454 jermar 146
	CFLAGS = $(GCC_CFLAGS)
2437 decky 147
endif
148
 
149
ifeq ($(COMPILER),icc_native)
150
	CC = icc
2455 jermar 151
	GCC = gcc
2437 decky 152
	AS = as
153
	LD = ld
154
	OBJCOPY = objcopy
155
	OBJDUMP = objdump
156
	LIBDIR = /usr/lib
2460 jermar 157
	CFLAGS = $(ICC_CFLAGS)
2437 decky 158
endif
159
 
2443 jermar 160
ifeq ($(COMPILER),suncc_native)
161
	CC = suncc
2455 jermar 162
	GCC = gcc
2443 jermar 163
	AS = as
164
	LD = ld
165
	OBJCOPY = objcopy
166
	OBJDUMP = objdump
167
	LIBDIR = /usr/lib
2454 jermar 168
	CFLAGS = $(SUNCC_CFLAGS)
2443 jermar 169
endif
170
 
2437 decky 171
ifeq ($(COMPILER),gcc_cross)
2125 decky 172
	CC = $(TOOLCHAIN_DIR)/bin/$(TARGET)-gcc
2455 jermar 173
	GCC = $(CC)
2125 decky 174
	AS = $(TOOLCHAIN_DIR)/bin/$(TARGET)-as
175
	LD = $(TOOLCHAIN_DIR)/bin/$(TARGET)-ld
176
	OBJCOPY = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objcopy
177
	OBJDUMP = $(TOOLCHAIN_DIR)/bin/$(TARGET)-objdump
178
	LIBDIR = $(TOOLCHAIN_DIR)/lib
2454 jermar 179
	CFLAGS = $(GCC_CFLAGS)
452 decky 180
endif
181
 
182
## Generic kernel sources
183
#
184
 
185
GENERIC_SOURCES = \
1200 jermar 186
	generic/src/adt/bitmap.c \
1101 jermar 187
	generic/src/adt/btree.c \
790 jermar 188
	generic/src/adt/hash_table.c \
788 jermar 189
	generic/src/adt/list.c \
510 jermar 190
	generic/src/console/chardev.c \
191
	generic/src/console/console.c \
518 jermar 192
	generic/src/console/kconsole.c \
1595 palkovsky 193
	generic/src/console/klog.c \
596 jermar 194
	generic/src/console/cmd.c \
452 decky 195
	generic/src/cpu/cpu.c \
1178 jermar 196
	generic/src/ddi/ddi.c \
1920 jermar 197
	generic/src/ddi/irq.c \
198
	generic/src/ddi/device.c \
575 palkovsky 199
	generic/src/interrupt/interrupt.c \
430 jermar 200
	generic/src/main/main.c \
201
	generic/src/main/kinit.c \
202
	generic/src/main/uinit.c \
673 jermar 203
	generic/src/main/version.c \
2227 decky 204
	generic/src/main/shutdown.c \
430 jermar 205
	generic/src/proc/scheduler.c \
206
	generic/src/proc/thread.c \
207
	generic/src/proc/task.c \
208
	generic/src/proc/the.c \
678 decky 209
	generic/src/syscall/syscall.c \
1288 jermar 210
	generic/src/syscall/copy.c \
430 jermar 211
	generic/src/mm/buddy.c \
212
	generic/src/mm/frame.c \
213
	generic/src/mm/page.c \
214
	generic/src/mm/tlb.c \
703 jermar 215
	generic/src/mm/as.c \
1424 jermar 216
	generic/src/mm/backend_anon.c \
217
	generic/src/mm/backend_elf.c \
218
	generic/src/mm/backend_phys.c \
759 palkovsky 219
	generic/src/mm/slab.c \
430 jermar 220
	generic/src/lib/func.c \
221
	generic/src/lib/memstr.c \
222
	generic/src/lib/sort.c \
938 jermar 223
	generic/src/lib/elf.c \
2000 decky 224
	generic/src/lib/rd.c \
1273 cejka 225
	generic/src/printf/printf_core.c \
226
	generic/src/printf/printf.c \
227
	generic/src/printf/sprintf.c \
228
	generic/src/printf/snprintf.c \
229
	generic/src/printf/vprintf.c \
230
	generic/src/printf/vsprintf.c \
231
	generic/src/printf/vsnprintf.c \
430 jermar 232
	generic/src/debug/symtab.c \
233
	generic/src/time/clock.c \
234
	generic/src/time/timeout.c \
235
	generic/src/time/delay.c \
236
	generic/src/preempt/preemption.c \
237
	generic/src/synch/spinlock.c \
238
	generic/src/synch/condvar.c \
239
	generic/src/synch/rwlock.c \
240
	generic/src/synch/mutex.c \
241
	generic/src/synch/semaphore.c \
242
	generic/src/synch/waitq.c \
1109 jermar 243
	generic/src/synch/futex.c \
955 palkovsky 244
	generic/src/smp/ipi.c \
1901 jermar 245
	generic/src/smp/smp.c \
965 palkovsky 246
	generic/src/ipc/ipc.c \
1072 palkovsky 247
	generic/src/ipc/sysipc.c \
1174 jermar 248
	generic/src/ipc/ipcrsc.c \
1281 palkovsky 249
	generic/src/ipc/irq.c \
1317 vana 250
	generic/src/security/cap.c \
251
	generic/src/sysinfo/sysinfo.c
1 jermar 252
 
459 decky 253
## Test sources
254
#
255
 
2020 decky 256
ifeq ($(CONFIG_TEST),y)
459 decky 257
	DEFS += -DCONFIG_TEST
2019 decky 258
	CFLAGS += -Itest/
259
	GENERIC_SOURCES += \
260
		test/test.c \
2020 decky 261
		test/atomic/atomic1.c \
262
		test/btree/btree1.c \
263
		test/debug/mips1.c \
264
		test/fault/fault1.c \
2021 decky 265
		test/fpu/fpu1.c \
266
		test/fpu/sse1.c \
267
		test/fpu/mips2.c \
268
		test/mm/falloc1.c \
269
		test/mm/falloc2.c \
270
		test/mm/mapping1.c \
271
		test/mm/slab1.c \
272
		test/mm/slab2.c \
2022 decky 273
		test/mm/purge1.c \
274
		test/synch/rwlock1.c \
275
		test/synch/rwlock2.c \
276
		test/synch/rwlock3.c \
277
		test/synch/rwlock4.c \
278
		test/synch/rwlock5.c \
279
		test/synch/semaphore1.c \
280
		test/synch/semaphore2.c \
281
		test/print/print1.c \
282
		test/thread/thread1.c \
283
		test/sysinfo/sysinfo1.c
459 decky 284
endif
285
 
2125 decky 286
## Experimental features
287
#
288
 
289
ifeq ($(CONFIG_EXPERIMENTAL),y)
2126 decky 290
	GENERIC_SOURCES += generic/src/lib/objc_ext.c \
291
		generic/src/lib/objc.c
2125 decky 292
	EXTRA_OBJECTS = $(LIBDIR)/libobjc.a
293
	EXTRA_FLAGS += -x objective-c
294
endif
295
 
452 decky 296
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
297
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
298
GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
326 palkovsky 299
 
1017 decky 300
.PHONY: all build config distclean clean archlinks depend disasm
1 jermar 301
 
558 palkovsky 302
all:
1802 decky 303
	../tools/config.py kernel.config default $(ARCH) $(COMPILER) $(CONFIG_DEBUG) $(MACHINE)
561 decky 304
	$(MAKE) -C . build
34 jermar 305
 
1017 decky 306
build: kernel.bin disasm
558 palkovsky 307
 
308
config:
580 palkovsky 309
	-rm Makefile.depend
2011 decky 310
	../tools/config.py kernel.config
558 palkovsky 311
 
452 decky 312
-include Makefile.depend
1 jermar 313
 
558 palkovsky 314
distclean: clean
315
	-rm Makefile.config
316
 
452 decky 317
clean:
576 palkovsky 318
	-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/$(ARCH)/_link.ld
558 palkovsky 319
	find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
1802 decky 320
	for arch in arch/* ; do \
321
	    [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null ; \
322
	done ; exit 0
1 jermar 323
 
558 palkovsky 324
archlinks:
452 decky 325
	ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch
326
	ln -sfn ../../genarch/include/ generic/include/genarch
1 jermar 327
 
577 palkovsky 328
depend: archlinks
651 decky 329
	-makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
576 palkovsky 330
 
452 decky 331
arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
2455 jermar 332
	$(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -D__LINKER__ -E -x c $< | grep -v "^\#" > $@
1 jermar 333
 
452 decky 334
generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
430 jermar 335
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o
2125 decky 336
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/empty_map.o  -o $@ -Map kernel.map.pre
452 decky 337
	$(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
430 jermar 338
	tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 
602 palkovsky 339
	# Do it once again, this time to get correct even the symbols
340
	# on architectures, that have bss after symtab
341
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab generic/src/debug/real_map.bin generic/src/debug/sizeok_map.o
2125 decky 342
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre
602 palkovsky 343
	$(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
344
	tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 
293 palkovsky 345
 
430 jermar 346
generic/src/debug/real_map.o: generic/src/debug/real_map.bin
293 palkovsky 347
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@
348
 
461 decky 349
kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o
2125 decky 350
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) $(EXTRA_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map
293 palkovsky 351
 
461 decky 352
kernel.bin: kernel.raw
353
	$(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
354
 
472 jermar 355
disasm: kernel.raw
356
	$(OBJDUMP) -d kernel.raw > kernel.disasm
357
 
314 palkovsky 358
%.o: %.S
2455 jermar 359
	$(GCC) $(DEFS) $(GCC_CFLAGS) -D__ASM__ -c $< -o $@
1 jermar 360
 
361
%.o: %.s
455 decky 362
	$(AS) $(AFLAGS) $< -o $@
1 jermar 363
 
364
%.o: %.c
2125 decky 365
	$(CC) $(DEFS) $(CFLAGS) $(EXTRA_FLAGS) -c $< -o $@