Subversion Repositories HelenOS-historic

Rev

Rev 558 | Rev 568 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 558 Rev 561
1
#
1
#
2
# Copyright (C) 2005 Martin Decky
2
# Copyright (C) 2005 Martin Decky
3
# All rights reserved.
3
# All rights reserved.
4
#
4
#
5
# Redistribution and use in source and binary forms, with or without
5
# Redistribution and use in source and binary forms, with or without
6
# modification, are permitted provided that the following conditions
6
# modification, are permitted provided that the following conditions
7
# are met:
7
# are met:
8
#
8
#
9
# - Redistributions of source code must retain the above copyright
9
# - Redistributions of source code must retain the above copyright
10
#   notice, this list of conditions and the following disclaimer.
10
#   notice, this list of conditions and the following disclaimer.
11
# - Redistributions in binary form must reproduce the above copyright
11
# - Redistributions in binary form must reproduce the above copyright
12
#   notice, this list of conditions and the following disclaimer in the
12
#   notice, this list of conditions and the following disclaimer in the
13
#   documentation and/or other materials provided with the distribution.
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
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.
15
#   derived from this software without specific prior written permission.
16
#
16
#
17
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
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
18
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
# IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
# NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
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
23
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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
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.
26
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
#
27
#
28
 
28
 
29
## Kernel release
29
## Kernel release
30
#
30
#
31
 
31
 
32
VERSION = 0
32
VERSION = 0
33
PATCHLEVEL = 1
33
PATCHLEVEL = 1
34
SUBLEVEL = 0
34
SUBLEVEL = 0
35
EXTRAVERSION = 
35
EXTRAVERSION = 
36
NAME = Dawn
36
NAME = Dawn
37
RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
37
RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
38
 
38
 
39
## Include configuration
39
## Include configuration
40
#
40
#
41
 
41
 
42
-include Makefile.config
42
-include Makefile.config
43
 
43
 
44
## Common compiler flags
44
## Common compiler flags
45
#
45
#
46
 
46
 
47
DEFS = -DARCH=$(ARCH) -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\""
47
DEFS = -DARCH=$(ARCH) -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\""
48
CFLAGS = -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/
48
CFLAGS = -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/
49
LFLAGS = -M
49
LFLAGS = -M
50
AFLAGS =
50
AFLAGS =
51
 
51
 
-
 
52
ifdef REVISION
-
 
53
	DEFS += "-DREVISION=\"$(REVISION)\""
-
 
54
endif
-
 
55
 
52
ifdef TAG
56
ifdef TIMESTAMP
53
	DEFS += "-DTAG=\"$(TAG)\""
57
	DEFS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
54
endif
58
endif
55
 
59
 
56
## Setup kernel configuration
60
## Setup kernel configuration
57
#
61
#
58
 
62
 
59
-include arch/$(ARCH)/Makefile.inc
63
-include arch/$(ARCH)/Makefile.inc
60
-include genarch/Makefile.inc
64
-include genarch/Makefile.inc
61
 
65
 
62
ifeq ($(CONFIG_DEBUG),y)
66
ifeq ($(CONFIG_DEBUG),y)
63
	DEFS += -DCONFIG_DEBUG
67
	DEFS += -DCONFIG_DEBUG
64
endif
68
endif
65
ifeq ($(CONFIG_DEBUG_SPINLOCK),y)
69
ifeq ($(CONFIG_DEBUG_SPINLOCK),y)
66
	DEFS += -DCONFIG_DEBUG_SPINLOCK
70
	DEFS += -DCONFIG_DEBUG_SPINLOCK
67
endif
71
endif
68
ifeq ($(CONFIG_USERSPACE),y)
72
ifeq ($(CONFIG_USERSPACE),y)
69
	DEFS += -DCONFIG_USERSPACE
73
	DEFS += -DCONFIG_USERSPACE
70
endif
74
endif
71
 
75
 
72
## Toolchain configuration
76
## Toolchain configuration
73
#
77
#
74
 
78
 
75
ifeq ($(COMPILER),native)
79
ifeq ($(COMPILER),native)
76
	CC = gcc
80
	CC = gcc
77
	AS = as
81
	AS = as
78
	LD = ld
82
	LD = ld
79
	OBJCOPY = objcopy
83
	OBJCOPY = objcopy
80
	OBJDUMP = objdump
84
	OBJDUMP = objdump
81
else
85
else
82
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
86
	CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
83
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
87
	AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
84
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
88
	LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
85
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
89
	OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
86
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
90
	OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
87
endif
91
endif
88
 
92
 
89
## Generic kernel sources
93
## Generic kernel sources
90
#
94
#
91
 
95
 
92
GENERIC_SOURCES = \
96
GENERIC_SOURCES = \
93
	generic/src/console/chardev.c \
97
	generic/src/console/chardev.c \
94
	generic/src/console/console.c \
98
	generic/src/console/console.c \
95
	generic/src/console/kconsole.c \
99
	generic/src/console/kconsole.c \
96
	generic/src/cpu/cpu.c \
100
	generic/src/cpu/cpu.c \
97
	generic/src/main/main.c \
101
	generic/src/main/main.c \
98
	generic/src/main/kinit.c \
102
	generic/src/main/kinit.c \
99
	generic/src/main/uinit.c \
103
	generic/src/main/uinit.c \
100
	generic/src/proc/scheduler.c \
104
	generic/src/proc/scheduler.c \
101
	generic/src/proc/thread.c \
105
	generic/src/proc/thread.c \
102
	generic/src/proc/task.c \
106
	generic/src/proc/task.c \
103
	generic/src/proc/the.c \
107
	generic/src/proc/the.c \
104
	generic/src/mm/buddy.c \
108
	generic/src/mm/buddy.c \
105
	generic/src/mm/heap.c \
109
	generic/src/mm/heap.c \
106
	generic/src/mm/frame.c \
110
	generic/src/mm/frame.c \
107
	generic/src/mm/page.c \
111
	generic/src/mm/page.c \
108
	generic/src/mm/tlb.c \
112
	generic/src/mm/tlb.c \
109
	generic/src/mm/vm.c \
113
	generic/src/mm/vm.c \
110
	generic/src/lib/func.c \
114
	generic/src/lib/func.c \
111
	generic/src/lib/list.c \
115
	generic/src/lib/list.c \
112
	generic/src/lib/memstr.c \
116
	generic/src/lib/memstr.c \
113
	generic/src/lib/sort.c \
117
	generic/src/lib/sort.c \
114
	generic/src/debug/print.c \
118
	generic/src/debug/print.c \
115
	generic/src/debug/symtab.c \
119
	generic/src/debug/symtab.c \
116
	generic/src/time/clock.c \
120
	generic/src/time/clock.c \
117
	generic/src/time/timeout.c \
121
	generic/src/time/timeout.c \
118
	generic/src/time/delay.c \
122
	generic/src/time/delay.c \
119
	generic/src/preempt/preemption.c \
123
	generic/src/preempt/preemption.c \
120
	generic/src/synch/spinlock.c \
124
	generic/src/synch/spinlock.c \
121
	generic/src/synch/condvar.c \
125
	generic/src/synch/condvar.c \
122
	generic/src/synch/rwlock.c \
126
	generic/src/synch/rwlock.c \
123
	generic/src/synch/mutex.c \
127
	generic/src/synch/mutex.c \
124
	generic/src/synch/semaphore.c \
128
	generic/src/synch/semaphore.c \
125
	generic/src/synch/waitq.c \
129
	generic/src/synch/waitq.c \
126
	generic/src/smp/ipi.c \
130
	generic/src/smp/ipi.c \
127
	generic/src/fb/font-8x16.c
131
	generic/src/fb/font-8x16.c
128
 
132
 
129
## Test sources
133
## Test sources
130
#
134
#
131
 
135
 
132
ifneq ($(CONFIG_TEST),)
136
ifneq ($(CONFIG_TEST),)
133
	DEFS += -DCONFIG_TEST
137
	DEFS += -DCONFIG_TEST
134
	GENERIC_SOURCES += test/$(CONFIG_TEST)/test.c
138
	GENERIC_SOURCES += test/$(CONFIG_TEST)/test.c
135
endif
139
endif
136
 
140
 
137
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
141
GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
138
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
142
ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
139
GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
143
GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
140
 
144
 
141
.PHONY: all clean config links depend boot
145
.PHONY: all build clean config links depend boot
142
 
146
 
143
all:
147
all:
144
	tools/config.py default
148
	tools/config.py default
145
	$(MAKE) -C . real_all
149
	$(MAKE) -C . build
146
 
150
 
147
real_all: kernel.bin boot disasm
151
build: kernel.bin boot disasm
148
 
152
 
149
config:
153
config:
150
	tools/config.py
154
	tools/config.py
151
 
155
 
152
-include Makefile.depend
156
-include Makefile.depend
153
 
157
 
154
distclean: clean
158
distclean: clean
155
	-rm Makefile.config
159
	-rm Makefile.config
156
 
160
 
157
clean:
161
clean:
158
	-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
162
	-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
159
	find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
163
	find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
160
	for arch in arch/*; do \
164
	for arch in arch/*; do \
161
	    [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null;\
165
	    [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null;\
162
	    $(MAKE) -C $$arch/boot clean; \
166
	    $(MAKE) -C $$arch/boot clean; \
163
	done;exit 0
167
	done;exit 0
164
 
168
 
165
archlinks:
169
archlinks:
166
	ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch
170
	ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch
167
	ln -sfn ../../genarch/include/ generic/include/genarch
171
	ln -sfn ../../genarch/include/ generic/include/genarch
168
 
172
 
169
depend: archlinks
173
depend: archlinks
170
	$(CC) $(DEFS) $(CFLAGS) -M $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend
174
	$(CC) $(DEFS) $(CFLAGS) -M $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend
171
 
175
 
172
arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
176
arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
173
	$(CC) $(DEFS) $(CFLAGS) -E -x c $< | grep -v "^\#" > $@
177
	$(CC) $(DEFS) $(CFLAGS) -E -x c $< | grep -v "^\#" > $@
174
 
178
 
175
generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
179
generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
176
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o
180
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o
177
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre
181
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre
178
	$(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
182
	$(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
179
	tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 
183
	tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin 
180
 
184
 
181
generic/src/debug/real_map.o: generic/src/debug/real_map.bin
185
generic/src/debug/real_map.o: generic/src/debug/real_map.bin
182
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@
186
	$(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@
183
 
187
 
184
kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o
188
kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o
185
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map
189
	$(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map
186
 
190
 
187
kernel.bin: kernel.raw
191
kernel.bin: kernel.raw
188
	$(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
192
	$(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
189
 
193
 
190
boot: kernel.bin
194
boot: kernel.bin
191
	$(MAKE) -C arch/$(ARCH)/boot build KERNEL_SIZE="`cat kernel.bin | wc -c`" CC=$(CC) AS=$(AS) LD=$(LD)
195
	$(MAKE) -C arch/$(ARCH)/boot build KERNEL_SIZE="`cat kernel.bin | wc -c`" CC=$(CC) AS=$(AS) LD=$(LD)
192
 
196
 
193
disasm: kernel.raw
197
disasm: kernel.raw
194
	$(OBJDUMP) -d kernel.raw > kernel.disasm
198
	$(OBJDUMP) -d kernel.raw > kernel.disasm
195
 
199
 
196
%.o: %.S
200
%.o: %.S
197
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
201
	$(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
198
 
202
 
199
%.o: %.s
203
%.o: %.s
200
	$(AS) $(AFLAGS) $< -o $@
204
	$(AS) $(AFLAGS) $< -o $@
201
 
205
 
202
%.o: %.c
206
%.o: %.c
203
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
207
	$(CC) $(DEFS) $(CFLAGS) -c $< -o $@
204
 
208