[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 |
|
---|
[d91e54b] | 47 | DEFS = -D$(ARCH) -DARCH=\"$(ARCH)\" -DRELEASE=\"$(RELEASE)\" "-DNAME=\"$(NAME)\""
|
---|
[2cf5634] | 48 | CFLAGS = -fno-builtin -fomit-frame-pointer -Wall -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
|
---|
[944b15c] | 72 | ifeq ($(CONFIG_FPU_LAZY),y)
|
---|
| 73 | DEFS += -DCONFIG_FPU_LAZY
|
---|
| 74 | endif
|
---|
[e16e036a] | 75 |
|
---|
| 76 | ## Toolchain configuration
|
---|
| 77 | #
|
---|
| 78 |
|
---|
| 79 | ifeq ($(COMPILER),native)
|
---|
| 80 | CC = gcc
|
---|
| 81 | AS = as
|
---|
| 82 | LD = ld
|
---|
| 83 | OBJCOPY = objcopy
|
---|
| 84 | OBJDUMP = objdump
|
---|
| 85 | else
|
---|
| 86 | CC = $(TOOLCHAIN_DIR)/$(TARGET)-gcc
|
---|
| 87 | AS = $(TOOLCHAIN_DIR)/$(TARGET)-as
|
---|
| 88 | LD = $(TOOLCHAIN_DIR)/$(TARGET)-ld
|
---|
| 89 | OBJCOPY = $(TOOLCHAIN_DIR)/$(TARGET)-objcopy
|
---|
| 90 | OBJDUMP = $(TOOLCHAIN_DIR)/$(TARGET)-objdump
|
---|
| 91 | endif
|
---|
| 92 |
|
---|
| 93 | ## Generic kernel sources
|
---|
| 94 | #
|
---|
| 95 |
|
---|
| 96 | GENERIC_SOURCES = \
|
---|
[c585827] | 97 | generic/src/adt/hash_table.c \
|
---|
[5c9a08b] | 98 | generic/src/adt/list.c \
|
---|
[2677758] | 99 | generic/src/console/chardev.c \
|
---|
| 100 | generic/src/console/console.c \
|
---|
[f4338d2] | 101 | generic/src/console/kconsole.c \
|
---|
[442d0ae] | 102 | generic/src/console/cmd.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 \
|
---|
[0132630] | 108 | generic/src/main/version.c \
|
---|
[169c408] | 109 | generic/src/proc/scheduler.c \
|
---|
| 110 | generic/src/proc/thread.c \
|
---|
| 111 | generic/src/proc/task.c \
|
---|
| 112 | generic/src/proc/the.c \
|
---|
[a59e81e] | 113 | generic/src/syscall/syscall.c \
|
---|
[169c408] | 114 | generic/src/mm/buddy.c \
|
---|
| 115 | generic/src/mm/frame.c \
|
---|
| 116 | generic/src/mm/page.c \
|
---|
| 117 | generic/src/mm/tlb.c \
|
---|
[20d50a1] | 118 | generic/src/mm/as.c \
|
---|
[4e147a6] | 119 | generic/src/mm/slab.c \
|
---|
[169c408] | 120 | generic/src/lib/func.c \
|
---|
| 121 | generic/src/lib/memstr.c \
|
---|
| 122 | generic/src/lib/sort.c \
|
---|
[8b80b72] | 123 | generic/src/lib/elf32.c \
|
---|
[169c408] | 124 | generic/src/debug/print.c \
|
---|
| 125 | generic/src/debug/symtab.c \
|
---|
| 126 | generic/src/time/clock.c \
|
---|
| 127 | generic/src/time/timeout.c \
|
---|
| 128 | generic/src/time/delay.c \
|
---|
| 129 | generic/src/preempt/preemption.c \
|
---|
| 130 | generic/src/synch/spinlock.c \
|
---|
| 131 | generic/src/synch/condvar.c \
|
---|
| 132 | generic/src/synch/rwlock.c \
|
---|
| 133 | generic/src/synch/mutex.c \
|
---|
| 134 | generic/src/synch/semaphore.c \
|
---|
| 135 | generic/src/synch/waitq.c \
|
---|
[bbf5657] | 136 | generic/src/smp/ipi.c
|
---|
| 137 |
|
---|
[36a140b] | 138 | ## Test sources
|
---|
| 139 | #
|
---|
| 140 |
|
---|
| 141 | ifneq ($(CONFIG_TEST),)
|
---|
| 142 | DEFS += -DCONFIG_TEST
|
---|
| 143 | GENERIC_SOURCES += test/$(CONFIG_TEST)/test.c
|
---|
| 144 | endif
|
---|
| 145 |
|
---|
[e16e036a] | 146 | GENERIC_OBJECTS := $(addsuffix .o,$(basename $(GENERIC_SOURCES)))
|
---|
| 147 | ARCH_OBJECTS := $(addsuffix .o,$(basename $(ARCH_SOURCES)))
|
---|
| 148 | GENARCH_OBJECTS := $(addsuffix .o,$(basename $(GENARCH_SOURCES)))
|
---|
[c9ed176] | 149 |
|
---|
[214e89e3] | 150 | .PHONY: all build config distclean clean archlinks depend boot disasm
|
---|
[c9ed176] | 151 |
|
---|
[839470f] | 152 | all:
|
---|
[13fded3] | 153 | tools/config.py default $(ARCH)
|
---|
[940cac0] | 154 | $(MAKE) -C . build
|
---|
[839470f] | 155 |
|
---|
[940cac0] | 156 | build: kernel.bin boot disasm
|
---|
[839470f] | 157 |
|
---|
| 158 | config:
|
---|
[208189f] | 159 | -rm Makefile.depend
|
---|
[839470f] | 160 | tools/config.py
|
---|
[c9ed176] | 161 |
|
---|
| 162 | -include Makefile.depend
|
---|
| 163 |
|
---|
[839470f] | 164 | distclean: clean
|
---|
| 165 | -rm Makefile.config
|
---|
| 166 |
|
---|
[e16e036a] | 167 | clean:
|
---|
[fcfac420] | 168 | -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] | 169 | find generic/src/ arch/*/src/ genarch/src/ test/ -name '*.o' -follow -exec rm \{\} \;
|
---|
| 170 | for arch in arch/*; do \
|
---|
| 171 | [ -e $$arch/_link.ld ] && rm $$arch/_link.ld 2>/dev/null;\
|
---|
| 172 | $(MAKE) -C $$arch/boot clean; \
|
---|
| 173 | done;exit 0
|
---|
[c9ed176] | 174 |
|
---|
[839470f] | 175 | archlinks:
|
---|
[e16e036a] | 176 | ln -sfn ../../arch/$(ARCH)/include/ generic/include/arch
|
---|
| 177 | ln -sfn ../../genarch/include/ generic/include/genarch
|
---|
[c9ed176] | 178 |
|
---|
[6095342] | 179 | depend: archlinks
|
---|
[d6e8529] | 180 | -makedepend $(DEFS) $(CFLAGS) -f - $(ARCH_SOURCES) $(GENARCH_SOURCES) $(GENERIC_SOURCES) > Makefile.depend 2> /dev/null
|
---|
[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
|
---|
[3550c393] | 190 | # Do it once again, this time to get correct even the symbols
|
---|
| 191 | # on architectures, that have bss after symtab
|
---|
| 192 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab generic/src/debug/real_map.bin generic/src/debug/sizeok_map.o
|
---|
| 193 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/sizeok_map.o -o $@ -Map kernel.map.pre
|
---|
| 194 | $(OBJDUMP) -t $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) > kernel.objdump
|
---|
| 195 | tools/genmap.py kernel.map.pre kernel.objdump generic/src/debug/real_map.bin
|
---|
[c9ed176] | 196 |
|
---|
[169c408] | 197 | generic/src/debug/real_map.o: generic/src/debug/real_map.bin
|
---|
[c9ed176] | 198 | $(OBJCOPY) -I binary -O $(BFD_NAME) -B $(BFD_ARCH) --prefix-sections=symtab $< $@
|
---|
| 199 |
|
---|
[6e259d5] | 200 | kernel.raw: depend arch/$(ARCH)/_link.ld $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o
|
---|
[e16e036a] | 201 | $(LD) -T arch/$(ARCH)/_link.ld $(LFLAGS) $(ARCH_OBJECTS) $(GENARCH_OBJECTS) $(GENERIC_OBJECTS) generic/src/debug/real_map.o -o $@ -Map kernel.map
|
---|
[c9ed176] | 202 |
|
---|
[6e259d5] | 203 | kernel.bin: kernel.raw
|
---|
| 204 | $(OBJCOPY) -O $(BFD) kernel.raw kernel.bin
|
---|
| 205 |
|
---|
[849ba5cb] | 206 | boot: kernel.bin
|
---|
[d6e8529] | 207 | if [ -d arch/$(ARCH)/boot ] ; then $(MAKE) -C arch/$(ARCH)/boot build KERNEL_SIZE="`cat kernel.bin | wc -c`" CC=$(CC) AS=$(AS) LD=$(LD) ; fi
|
---|
[849ba5cb] | 208 |
|
---|
[2ccd275] | 209 | disasm: kernel.raw
|
---|
| 210 | $(OBJDUMP) -d kernel.raw > kernel.disasm
|
---|
| 211 |
|
---|
[c9ed176] | 212 | %.o: %.S
|
---|
[2ccd275] | 213 | $(CC) $(DEFS) $(AFLAGS) $(CFLAGS) -D__ASM__ -c $< -o $@
|
---|
[c9ed176] | 214 |
|
---|
| 215 | %.o: %.s
|
---|
[6bc4dbd] | 216 | $(AS) $(AFLAGS) $< -o $@
|
---|
[c9ed176] | 217 |
|
---|
| 218 | %.o: %.c
|
---|
[6bc4dbd] | 219 | $(CC) $(DEFS) $(CFLAGS) -c $< -o $@
|
---|