Subversion Repositories HelenOS

Rev

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