-
Notifications
You must be signed in to change notification settings - Fork 56
/
Makefile
251 lines (211 loc) · 5.61 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
platform := k210
#platform := qemu
# mode := debug
mode := release
K=kernel
U=xv6-user
T=target
OBJS =
ifeq ($(platform), k210)
OBJS += $K/entry_k210.o
else
OBJS += $K/entry_qemu.o
endif
OBJS += \
$K/printf.o \
$K/kalloc.o \
$K/intr.o \
$K/spinlock.o \
$K/string.o \
$K/main.o \
$K/vm.o \
$K/proc.o \
$K/swtch.o \
$K/trampoline.o \
$K/trap.o \
$K/syscall.o \
$K/sysproc.o \
$K/bio.o \
$K/sleeplock.o \
$K/file.o \
$K/pipe.o \
$K/exec.o \
$K/sysfile.o \
$K/kernelvec.o \
$K/timer.o \
$K/disk.o \
$K/fat32.o \
$K/plic.o \
$K/console.o
ifeq ($(platform), k210)
OBJS += \
$K/spi.o \
$K/gpiohs.o \
$K/fpioa.o \
$K/utils.o \
$K/sdcard.o \
$K/dmac.o \
$K/sysctl.o \
else
OBJS += \
$K/virtio_disk.o \
#$K/uart.o \
endif
QEMU = qemu-system-riscv64
ifeq ($(platform), k210)
RUSTSBI = ./bootloader/SBI/sbi-k210
else
RUSTSBI = ./bootloader/SBI/sbi-qemu
endif
# TOOLPREFIX := riscv64-unknown-elf-
TOOLPREFIX := riscv64-linux-gnu-
CC = $(TOOLPREFIX)gcc
AS = $(TOOLPREFIX)gas
LD = $(TOOLPREFIX)ld
OBJCOPY = $(TOOLPREFIX)objcopy
OBJDUMP = $(TOOLPREFIX)objdump
CFLAGS = -Wall -Werror -O -fno-omit-frame-pointer -ggdb -g
CFLAGS += -MD
CFLAGS += -mcmodel=medany
CFLAGS += -ffreestanding -fno-common -nostdlib -mno-relax
CFLAGS += -I.
CFLAGS += $(shell $(CC) -fno-stack-protector -E -x c /dev/null >/dev/null 2>&1 && echo -fno-stack-protector)
ifeq ($(mode), debug)
CFLAGS += -DDEBUG
endif
ifeq ($(platform), qemu)
CFLAGS += -D QEMU
endif
LDFLAGS = -z max-page-size=4096
ifeq ($(platform), k210)
linker = ./linker/k210.ld
endif
ifeq ($(platform), qemu)
linker = ./linker/qemu.ld
endif
# Compile Kernel
$T/kernel: $(OBJS) $(linker) $U/initcode
@if [ ! -d "./target" ]; then mkdir target; fi
@$(LD) $(LDFLAGS) -T $(linker) -o $T/kernel $(OBJS)
@$(OBJDUMP) -S $T/kernel > $T/kernel.asm
@$(OBJDUMP) -t $T/kernel | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > $T/kernel.sym
build: $T/kernel userprogs
# Compile RustSBI
RUSTSBI:
ifeq ($(platform), k210)
@cd ./bootloader/SBI/rustsbi-k210 && cargo build && cp ./target/riscv64gc-unknown-none-elf/debug/rustsbi-k210 ../sbi-k210
@$(OBJDUMP) -S ./bootloader/SBI/sbi-k210 > $T/rustsbi-k210.asm
else
@cd ./bootloader/SBI/rustsbi-qemu && cargo build && cp ./target/riscv64gc-unknown-none-elf/debug/rustsbi-qemu ../sbi-qemu
@$(OBJDUMP) -S ./bootloader/SBI/sbi-qemu > $T/rustsbi-qemu.asm
endif
rustsbi-clean:
@cd ./bootloader/SBI/rustsbi-k210 && cargo clean
@cd ./bootloader/SBI/rustsbi-qemu && cargo clean
image = $T/kernel.bin
k210 = $T/k210.bin
k210-serialport := /dev/ttyUSB0
ifndef CPUS
CPUS := 2
endif
QEMUOPTS = -machine virt -kernel $T/kernel -m 8M -nographic
# use multi-core
QEMUOPTS += -smp $(CPUS)
QEMUOPTS += -bios $(RUSTSBI)
# import virtual disk image
QEMUOPTS += -drive file=fs.img,if=none,format=raw,id=x0
QEMUOPTS += -device virtio-blk-device,drive=x0,bus=virtio-mmio-bus.0
run: build
ifeq ($(platform), k210)
@$(OBJCOPY) $T/kernel --strip-all -O binary $(image)
@$(OBJCOPY) $(RUSTSBI) --strip-all -O binary $(k210)
@dd if=$(image) of=$(k210) bs=128k seek=1
@$(OBJDUMP) -D -b binary -m riscv $(k210) > $T/k210.asm
@sudo chmod 777 $(k210-serialport)
@python3 ./tools/kflash.py -p $(k210-serialport) -b 1500000 -t $(k210)
else
@$(QEMU) $(QEMUOPTS)
endif
$U/initcode: $U/initcode.S
$(CC) $(CFLAGS) -march=rv64g -nostdinc -I. -Ikernel -c $U/initcode.S -o $U/initcode.o
$(LD) $(LDFLAGS) -N -e start -Ttext 0 -o $U/initcode.out $U/initcode.o
$(OBJCOPY) -S -O binary $U/initcode.out $U/initcode
$(OBJDUMP) -S $U/initcode.o > $U/initcode.asm
tags: $(OBJS) _init
@etags *.S *.c
ULIB = $U/ulib.o $U/usys.o $U/printf.o $U/umalloc.o
_%: %.o $(ULIB)
$(LD) $(LDFLAGS) -N -e main -Ttext 0 -o $@ $^
$(OBJDUMP) -S $@ > $*.asm
$(OBJDUMP) -t $@ | sed '1,/SYMBOL TABLE/d; s/ .* / /; /^$$/d' > $*.sym
$U/usys.S : $U/usys.pl
@perl $U/usys.pl > $U/usys.S
$U/usys.o : $U/usys.S
$(CC) $(CFLAGS) -c -o $U/usys.o $U/usys.S
$U/_forktest: $U/forktest.o $(ULIB)
# forktest has less library code linked in - needs to be small
# in order to be able to max out the proc table.
$(LD) $(LDFLAGS) -N -e main -Ttext 0 -o $U/_forktest $U/forktest.o $U/ulib.o $U/usys.o
$(OBJDUMP) -S $U/_forktest > $U/forktest.asm
# Prevent deletion of intermediate files, e.g. cat.o, after first build, so
# that disk image changes after first build are persistent until clean. More
# details:
# http://www.gnu.org/software/make/manual/html_node/Chained-Rules.html
.PRECIOUS: %.o
UPROGS=\
$U/_init\
$U/_sh\
$U/_cat\
$U/_echo\
$U/_grep\
$U/_ls\
$U/_kill\
$U/_mkdir\
$U/_xargs\
$U/_sleep\
$U/_find\
$U/_rm\
$U/_wc\
$U/_test\
$U/_usertests\
$U/_strace\
$U/_mv\
# $U/_forktest\
# $U/_ln\
# $U/_stressfs\
# $U/_grind\
# $U/_zombie\
userprogs: $(UPROGS)
dst=/mnt
# @sudo cp $U/_init $(dst)/init
# @sudo cp $U/_sh $(dst)/sh
# Make fs image
fs: $(UPROGS)
@if [ ! -f "fs.img" ]; then \
echo "making fs image..."; \
dd if=/dev/zero of=fs.img bs=512k count=512; \
mkfs.vfat -F 32 fs.img; fi
@sudo mount fs.img $(dst)
@if [ ! -d "$(dst)/bin" ]; then sudo mkdir $(dst)/bin; fi
@sudo cp README $(dst)/README
@for file in $$( ls $U/_* ); do \
sudo cp $$file $(dst)/$${file#$U/_};\
sudo cp $$file $(dst)/bin/$${file#$U/_}; done
@sudo umount $(dst)
# Write mounted sdcard
sdcard: userprogs
@if [ ! -d "$(dst)/bin" ]; then sudo mkdir $(dst)/bin; fi
@for file in $$( ls $U/_* ); do \
sudo cp $$file $(dst)/bin/$${file#$U/_}; done
@sudo cp $U/_init $(dst)/init
@sudo cp $U/_sh $(dst)/sh
@sudo cp README $(dst)/README
clean:
rm -f *.tex *.dvi *.idx *.aux *.log *.ind *.ilg \
*/*.o */*.d */*.asm */*.sym \
$T/* \
$U/initcode $U/initcode.out \
$K/kernel \
.gdbinit \
$U/usys.S \
$(UPROGS)