[e16e036a] | 1 | #
|
---|
| 2 | # Copyright (C) 2005 Martin 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 | ## Kernel release
|
---|
| 30 | #
|
---|
| 31 |
|
---|
| 32 | VERSION = 0
|
---|
| 33 | PATCHLEVEL = 1
|
---|
| 34 | SUBLEVEL = 0
|
---|
| 35 | EXTRAVERSION =
|
---|
| 36 | NAME = Dawn
|
---|
| 37 | RELEASE = $(VERSION).$(PATCHLEVEL).$(SUBLEVEL)$(EXTRAVERSION)
|
---|
| 38 |
|
---|
[9371c30] | 39 | ## Include configuration
|
---|
[e16e036a] | 40 | #
|
---|
| 41 |
|
---|
[839470f] | 42 | -include Makefile.config
|
---|
[e16e036a] | 43 |
|
---|
| 44 | ## Common compiler flags
|
---|
| 45 | #
|
---|
| 46 |
|
---|
[f7f6f25] | 47 | DEFS = -D$(ARCH) -DARCH=$(ARCH) -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\""
|
---|
[feb1a414] | 48 | CFLAGS = -fno-builtin -fomit-frame-pointer -Werror-implicit-function-declaration -Wmissing-prototypes -Werror -O3 -nostdlib -nostdinc -Igeneric/include/
|
---|
[e16e036a] | 49 | LFLAGS = -M
|
---|
[ba22dcb] | 50 | AFLAGS =
|
---|
| 51 |
|
---|
[940cac0] | 52 | ifdef REVISION
|
---|
| 53 | DEFS += "-DREVISION=\"$(REVISION)\""
|
---|
| 54 | endif
|
---|
| 55 |
|
---|
| 56 | ifdef TIMESTAMP
|
---|
| 57 | DEFS += "-DTIMESTAMP=\"$(TIMESTAMP)\""
|
---|
[ba22dcb] | 58 | endif
|
---|
[e16e036a] | 59 |
|
---|
| 60 | ## Setup kernel configuration
|
---|
| 61 | #
|
---|
| 62 |
|
---|
[839470f] | 63 | -include arch/$(ARCH)/Makefile.inc
|
---|
| 64 | -include genarch/Makefile.inc
|
---|
[c9ed176] | 65 |
|
---|
[b183865e] | 66 | ifeq ($(CONFIG_DEBUG),y)
|
---|
| 67 | DEFS += -DCONFIG_DEBUG
|
---|
[e16e036a] | 68 | endif
|
---|
| 69 | ifeq ($(CONFIG_DEBUG_SPINLOCK),y)
|
---|
[5f85c91] | 70 | DEFS += -DCONFIG_DEBUG_SPINLOCK
|
---|
[e16e036a] | 71 | endif
|
---|
[36a140b] | 72 | ifeq ($(CONFIG_USERSPACE),y)
|
---|
| 73 | DEFS += -DCONFIG_USERSPACE
|
---|
| 74 | endif
|
---|
[944b15c] | 75 | ifeq ($(CONFIG_FPU_LAZY),y)
|
---|
| 76 | DEFS += -DCONFIG_FPU_LAZY
|
---|
| 77 | endif
|
---|
[e16e036a] | 78 |
|
---|
| 79 | ## Toolchain configuration
|
---|
| 80 | #
|
---|
| 81 |
|
---|
| 82 | ifeq ($(COMPILER),native)
|
---|
| 83 | CC = gcc
|
---|
| 84 | AS = as
|
---|
| 85 | LD = ld
|
---|
| 86 | OBJCOPY = objcopy
|
---|
| 87 | OBJDUMP = objdump
|
---|
| 88 | else
|
---|
| 89 | CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
|
---|
| 90 | AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
|
---|
| 91 | LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
|
---|
| 92 | OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
|
---|
| 93 | OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
|
---|
| 94 | endif
|
---|
| 95 |
|
---|
| 96 | ## Generic kernel sources
|
---|
| 97 | #
|
---|
| 98 |
|
---|
| 99 | GENERIC_SOURCES = \
|
---|
[2677758] | 100 | generic/src/console/chardev.c \
|
---|
| 101 | generic/src/console/console.c \
|
---|
[f4338d2] | 102 | generic/src/console/kconsole.c \
|
---|
[e16e036a] | 103 | generic/src/cpu/cpu.c \
|
---|
[973be64e] | 104 | generic/src/interrupt/interrupt.c \
|
---|
[169c408] | 105 | generic/src/main/main.c \
|
---|
| 106 | generic/src/main/kinit.c \
|
---|
| 107 | generic/src/main/uinit.c \
|
---|
| 108 | generic/src/proc/scheduler.c \
|
---|
| 109 | generic/src/proc/thread.c \
|
---|
| 110 | generic/src/proc/task.c \
|
---|
| 111 | generic/src/proc/the.c \
|
---|
| 112 | generic/src/mm/buddy.c \
|
---|
| 113 | generic/src/mm/heap.c \
|
---|
| 114 | generic/src/mm/frame.c \
|
---|
| 115 | generic/src/mm/page.c \
|
---|
| 116 | generic/src/mm/tlb.c \
|
---|
| 117 | generic/src/mm/vm.c \
|
---|
| 118 | generic/src/lib/func.c \
|
---|
| 119 | generic/src/lib/list.c \
|
---|
| 120 | generic/src/lib/memstr.c \
|
---|
| 121 | generic/src/lib/sort.c \
|
---|
| 122 | generic/src/debug/print.c \
|
---|
| 123 | generic/src/debug/symtab.c \
|
---|
| 124 | generic/src/time/clock.c \
|
---|
| 125 | generic/src/time/timeout.c \
|
---|
| 126 | generic/src/time/delay.c \
|
---|
| 127 | generic/src/preempt/preemption.c \
|
---|
| 128 | generic/src/synch/spinlock.c \
|
---|
| 129 | generic/src/synch/condvar.c \
|
---|
| 130 | generic/src/synch/rwlock.c \
|
---|
| 131 | generic/src/synch/mutex.c \
|
---|
| 132 | generic/src/synch/semaphore.c \
|
---|
| 133 | generic/src/synch/waitq.c \
|
---|
| 134 | generic/src/smp/ipi.c \
|
---|
| 135 | generic/src/fb/font-8x16.c
|
---|
[c9ed176] | 136 |
|
---|
[36a140b] | 137 | ## Test sources
|
---|
| 138 | #
|
---|
| 139 |
|
---|
| 140 | ifneq ($(CONFIG_TEST),)
|
---|
| 141 | DEFS += -DCONFIG_TEST
|
---|
| 142 | GENERIC_SOURCES += test/$(CONFIG_TEST)/test.c
|
---|
| 143 | endif
|
---|
| 144 |
|
---|
[e16e036a] | 145 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
|
---|
| 146 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
|
---|
| 147 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
|
---|
[c9ed176] | 148 |
|
---|
[940cac0] | 149 | .PHONY: all build clean config links depend boot
|
---|
[c9ed176] | 150 |
|
---|
[839470f] | 151 | all:
|
---|
| 152 | tools/config.py default
|
---|
[940cac0] | 153 | $(MAKE) -C . build
|
---|
[839470f] | 154 |
|
---|
[940cac0] | 155 | build: kernel.bin boot disasm
|
---|
[839470f] | 156 |
|
---|
| 157 | config:
|
---|
[208189f] | 158 | -rm Makefile.depend
|
---|
[839470f] | 159 | tools/config.py
|
---|
[c9ed176] | 160 |
|
---|
| 161 | -include Makefile.depend
|
---|
| 162 |
|
---|
[839470f] | 163 | distclean: clean
|
---|
| 164 | -rm Makefile.config
|
---|
| 165 |
|
---|
[e16e036a] | 166 | clean:
|
---|
[fcfac420] | 167 | -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
|
---|
[839470f] | 168 | find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
|
---|
| 169 | for arch in arch/*; do \
|
---|
| 170 | [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null;\
|
---|
| 171 | $(MAKE) -C $$arch/boot clean; \
|
---|
| 172 | done;exit 0
|
---|
[c9ed176] | 173 |
|
---|
[839470f] | 174 | archlinks:
|
---|
[e16e036a] | 175 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch
|
---|
| 176 | ln -sfn ../../genarch/include/ generic/include/genarch
|
---|
[c9ed176] | 177 |
|
---|
[6095342] | 178 | depend: archlinks
|
---|
[fcfac420] | 179 | -makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) >Makefile.depend 2>/dev/null
|
---|
| 180 | #$(CC) $(DEFS) $(CFLAGS) -M $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend
|
---|
[c9ed176] | 181 |
|
---|
[e16e036a] | 182 | arch/$(ARCH)/_link.ld: arch/$(ARCH)/_link.ld.in
|
---|
[6e259d5] | 183 | $(CC) $(DEFS) $(CFLAGS) -E -x c $< | grep -v "^\#" > $@
|
---|
[c9ed176] | 184 |
|
---|
[e16e036a] | 185 | generic/src/debug/real_map.bin: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS)
|
---|
[169c408] | 186 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab Makefile generic/src/debug/empty_map.o
|
---|
[e16e036a] | 187 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/empty_map.o -o $@ -Map kernel.map.pre
|
---|
| 188 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
|
---|
[169c408] | 189 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin
|
---|
[c9ed176] | 190 |
|
---|
[169c408] | 191 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin
|
---|
[c9ed176] | 192 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@
|
---|
| 193 |
|
---|
[6e259d5] | 194 | kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o
|
---|
[e16e036a] | 195 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map
|
---|
[c9ed176] | 196 |
|
---|
[6e259d5] | 197 | kernel.bin: kernel.raw
|
---|
| 198 | $(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
|
---|
| 199 |
|
---|
[849ba5cb] | 200 | boot: kernel.bin
|
---|
[6bc4dbd] | 201 | $(MAKE) -C arch/$(ARCH)/boot build KERNEL_SIZE="`cat kernel.bin | wc -c`" CC=$(CC) AS=$(AS) LD=$(LD)
|
---|
[849ba5cb] | 202 |
|
---|
[2ccd275] | 203 | disasm: kernel.raw
|
---|
| 204 | $(OBJDUMP) -d kernel.raw > kernel.disasm
|
---|
| 205 |
|
---|
[c9ed176] | 206 | %.o: %.S
|
---|
[2ccd275] | 207 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
|
---|
[c9ed176] | 208 |
|
---|
| 209 | %.o: %.s
|
---|
[6bc4dbd] | 210 | $(AS) $(AFLAGS) $< -o $@
|
---|
[c9ed176] | 211 |
|
---|
| 212 | %.o: %.c
|
---|
[6bc4dbd] | 213 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
|
---|