Rev 452 | Rev 455 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 452 | Rev 454 | ||
---|---|---|---|
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 | ## Make some default assumptions |
39 | ## Make some default assumptions |
40 | # |
40 | # |
41 | 41 | ||
42 | ifndef ARCH |
42 | ifndef ARCH |
43 | ARCH = ia32 |
43 | ARCH = ia32 |
44 | endif |
44 | endif |
45 | 45 | ||
46 | ## Common compiler flags |
46 | ## Common compiler flags |
47 | # |
47 | # |
48 | 48 | ||
49 | CFLAGS = -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/ |
49 | CFLAGS = -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/ |
50 | LFLAGS = -M |
50 | LFLAGS = -M |
51 | 51 | ||
52 | ## Setup kernel configuration |
52 | ## Setup kernel configuration |
53 | # |
53 | # |
54 | 54 | ||
55 | include Makefile.config |
55 | include Makefile.config |
56 | include arch/$(ARCH)/Makefile.inc |
56 | include arch/$(ARCH)/Makefile.inc |
57 | include genarch/Makefile.inc |
57 | include genarch/Makefile.inc |
58 | 58 | ||
59 | ifeq ($(CONFIG_DEBUG),n) |
59 | ifeq ($(CONFIG_DEBUG),n) |
60 | DEFS += -DNDEBUG |
60 | DEFS += -DNDEBUG |
61 | endif |
61 | endif |
62 | ifeq ($(CONFIG_DEBUG_SPINLOCK),y) |
62 | ifeq ($(CONFIG_DEBUG_SPINLOCK),y) |
63 | DEFS += -DDEBUG_SPINLOCK |
63 | DEFS += -DDEBUG_SPINLOCK |
64 | endif |
64 | endif |
65 | 65 | ||
66 | ## Toolchain configuration |
66 | ## Toolchain configuration |
67 | # |
67 | # |
68 | 68 | ||
69 | ifeq ($(COMPILER),native) |
69 | ifeq ($(COMPILER),native) |
70 | CC = gcc |
70 | CC = gcc |
71 | AS = as |
71 | AS = as |
72 | LD = ld |
72 | LD = ld |
73 | OBJCOPY = objcopy |
73 | OBJCOPY = objcopy |
74 | OBJDUMP = objdump |
74 | OBJDUMP = objdump |
75 | else |
75 | else |
76 | CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc |
76 | CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc |
77 | AS = $(TOOLCHAIN_DIR)/$(TARGET)-as |
77 | AS = $(TOOLCHAIN_DIR)/$(TARGET)-as |
78 | LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld |
78 | LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld |
79 | OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy |
79 | OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy |
80 | OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump |
80 | OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump |
81 | endif |
81 | endif |
82 | 82 | ||
83 | ## Generic kernel sources |
83 | ## Generic kernel sources |
84 | # |
84 | # |
85 | 85 | ||
86 | GENERIC_SOURCES = \ |
86 | GENERIC_SOURCES = \ |
87 | generic/src/cpu/cpu.c \ |
87 | generic/src/cpu/cpu.c \ |
88 | generic/src/main/main.c \ |
88 | generic/src/main/main.c \ |
89 | generic/src/main/kinit.c \ |
89 | generic/src/main/kinit.c \ |
90 | generic/src/main/uinit.c \ |
90 | generic/src/main/uinit.c \ |
91 | generic/src/proc/scheduler.c \ |
91 | generic/src/proc/scheduler.c \ |
92 | generic/src/proc/thread.c \ |
92 | generic/src/proc/thread.c \ |
93 | generic/src/proc/task.c \ |
93 | generic/src/proc/task.c \ |
94 | generic/src/proc/the.c \ |
94 | generic/src/proc/the.c \ |
95 | generic/src/mm/buddy.c \ |
95 | generic/src/mm/buddy.c \ |
96 | generic/src/mm/heap.c \ |
96 | generic/src/mm/heap.c \ |
97 | generic/src/mm/frame.c \ |
97 | generic/src/mm/frame.c \ |
98 | generic/src/mm/page.c \ |
98 | generic/src/mm/page.c \ |
99 | generic/src/mm/tlb.c \ |
99 | generic/src/mm/tlb.c \ |
100 | generic/src/mm/vm.c \ |
100 | generic/src/mm/vm.c \ |
101 | generic/src/lib/func.c \ |
101 | generic/src/lib/func.c \ |
102 | generic/src/lib/list.c \ |
102 | generic/src/lib/list.c \ |
103 | generic/src/lib/memstr.c \ |
103 | generic/src/lib/memstr.c \ |
104 | generic/src/lib/sort.c \ |
104 | generic/src/lib/sort.c \ |
105 | generic/src/debug/print.c \ |
105 | generic/src/debug/print.c \ |
106 | generic/src/debug/symtab.c \ |
106 | generic/src/debug/symtab.c \ |
107 | generic/src/time/clock.c \ |
107 | generic/src/time/clock.c \ |
108 | generic/src/time/timeout.c \ |
108 | generic/src/time/timeout.c \ |
109 | generic/src/time/delay.c \ |
109 | generic/src/time/delay.c \ |
110 | generic/src/preempt/preemption.c \ |
110 | generic/src/preempt/preemption.c \ |
111 | generic/src/synch/spinlock.c \ |
111 | generic/src/synch/spinlock.c \ |
112 | generic/src/synch/condvar.c \ |
112 | generic/src/synch/condvar.c \ |
113 | generic/src/synch/rwlock.c \ |
113 | generic/src/synch/rwlock.c \ |
114 | generic/src/synch/mutex.c \ |
114 | generic/src/synch/mutex.c \ |
115 | generic/src/synch/semaphore.c \ |
115 | generic/src/synch/semaphore.c \ |
116 | generic/src/synch/waitq.c \ |
116 | generic/src/synch/waitq.c \ |
117 | generic/src/smp/ipi.c \ |
117 | generic/src/smp/ipi.c \ |
118 | generic/src/fb/font-8x16.c |
118 | generic/src/fb/font-8x16.c |
119 | 119 | ||
120 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
120 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES))) |
121 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
121 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES))) |
122 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES))) |
122 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES))) |
123 | 123 | ||
124 | .PHONY: all clean config depend |
124 | .PHONY: all clean config depend boot |
125 | 125 | ||
126 | all: kernel.bin |
126 | all: kernel.bin boot |
127 | 127 | ||
128 | -include Makefile.depend |
128 | -include Makefile.depend |
129 | 129 | ||
130 | clean: |
130 | clean: |
131 | find generic/src/ arch/$(ARCH)/src/ genarch/src/ -name '*.o' -exec rm \{\} \; |
131 | find generic/src/ arch/$(ARCH)/src/ genarch/src/ -name '*.o' -exec rm \{\} \; |
132 | -rm -f kernel.bin kernel.map kernel.map.pre kernel.objdump src/debug/real_map.bin Makefile.depend generic/include/arch generic/include/genarch |
132 | -rm -f kernel.bin kernel.map kernel.map.pre kernel.objdump generic/src/debug/real_map.bin Makefile.depend generic/include/arch generic/include/genarch arch/$(ARCH)/_link.ld |
- | 133 | $(MAKE) -C arch/$(ARCH)/boot clean |
|
133 | 134 | ||
134 | config: |
135 | config: |
135 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch |
136 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch |
136 | ln -sfn ../../genarch/include/ generic/include/genarch |
137 | ln -sfn ../../genarch/include/ generic/include/genarch |
137 | 138 | ||
138 | depend: config |
139 | depend: config |
139 | $(CC) $(CFLAGS) -M $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend |
140 | $(CC) $(CFLAGS) -M $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend |
140 | 141 | ||
141 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in |
142 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in |
142 | $(CC) $(CFLAGS) -E -x c $< | grep -v "^\#" > $@ |
143 | $(CC) $(CFLAGS) -E -x c $< | grep -v "^\#" > $@ |
143 | 144 | ||
144 | generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) |
145 | generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) |
145 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o |
146 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o |
146 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre |
147 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre |
147 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump |
148 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump |
148 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin |
149 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin |
149 | 150 | ||
150 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin |
151 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin |
151 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@ |
152 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@ |
152 | 153 | ||
153 | kernel.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o |
154 | kernel.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o |
154 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map |
155 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map |
155 | 156 | ||
- | 157 | boot: kernel.bin |
|
- | 158 | $(MAKE) -C arch/$(ARCH)/boot build KERNEL_SIZE="`cat kernel.bin | wc -c`" |
|
- | 159 | ||
156 | %.o: %.S |
160 | %.o: %.S |
157 | $(CC) $(ASFLAGS) $(CFLAGS) -c $< -o $@ |
161 | $(CC) $(ASFLAGS) $(CFLAGS) -c $< -o $@ |
158 | 162 | ||
159 | %.o: %.s |
163 | %.o: %.s |
160 | $(AS) $(ASFLAGS) $< -o $@ |
164 | $(AS) $(ASFLAGS) $< -o $@ |
161 | 165 | ||
162 | %.o: %.c |
166 | %.o: %.c |
163 | $(CC) $(CFLAGS) -c $< -o $@ |
167 | $(CC) $(CFLAGS) -c $< -o $@ |
164 | 168 |