summaryrefslogtreecommitdiff
path: root/Makefile
blob: 59fd8318aea65f479187d33c16a8ce41ab131c5d (plain)
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
# Makefile for semihosting tests
#
# Copyright (c) 2015 Linaro Limited
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
# 1. Redistributions of source code must retain the above copyright
#    notice, this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in
#    the documentation and/or other materials provided with the
#    distribution.
# 3. Neither the name of Linaro Limited nor the names of its
#    contributors may be used to endorse or promote products derived
#    from this software without specific prior written permission.
#
#
# We have several orthogonal cases we'd like to test:
# A32 vs T32 vs A64
# old syscall vs new HLT (for A32 and T32)
# usermode vs system
# gdb syscalls vs normal

# This makefile tests all of the instruction set and user/system cases.

# short instructions:
#   make run QEMU_BUILDDIR=path-to-your-builddir

# To test gdb attached syscalls:
#   make run-usertest-a32 QEMU_BUILDDIR=path-to-builddir GDBPORT=1234
# then in another terminal run gdb and connect it to port 1234.
# (Note that gdb's working directory must be the one with the testdata.txt
# file in it, since filename resolution is done on the gdb end.)
# Repeat for the other tests.

# TODO: compare test output against a golden reference rather
# than just letting it dump to stdout/stderr.

A32GCC := arm-linux-gnueabihf-gcc -marm
T32GCC := arm-linux-gnueabihf-gcc -mthumb
V7MGCC := arm-none-eabi-gcc -mcpu=cortex-m0 -mfloat-abi=soft
A64GCC := aarch64-linux-gnu-gcc

A32LD := arm-linux-gnueabihf-ld

A32LINKOPTS := -nostdlib -lgcc -Xlinker --script=baremetal.lds -Xlinker --build-id=none
A64LINKOPTS := -nostdlib -lgcc -Xlinker --script=baremetal-a64.lds -Xlinker --build-id=none

AV7MLINKOPTS := -nostdlib -lgcc -Xlinker --script=microbit.lds -Xlinker --build-id=none

QEMU_BUILDDIR := ~/linaro/qemu-from-laptop/qemu/build/x86

ifdef GDBPORT
SYSGDB := -gdb tcp::$(GDBPORT)
USRGDB := -g $(GDBPORT)
endif

ifdef TIMEOUT
SYSTIMEOUT := timeout --foreground 10s
endif

QEMU_ARM = $(QEMU_BUILDDIR)/qemu-arm $(USRGDB)
QEMU_AARCH64 = $(QEMU_BUILDDIR)/qemu-aarch64 $(USRGDB)
QEMU_SYSTEM_ARM = $(SYSTIMEOUT) $(QEMU_BUILDDIR)/qemu-system-arm $(SYSGDB)
QEMU_SYSTEM_AARCH64 = $(SYSTIMEOUT) $(QEMU_BUILDDIR)/qemu-system-aarch64 $(SYSGDB)

BINS =  usertest-a32 usertest-t32 \
	usertest-a32-hlt usertest-t32-hlt \
	usertest-a64 \
	systest-a32.axf systest-t32.axf \
	systest-a32-hlt.axf systest-t32-hlt.axf \
	systest-t32-bkpt.axf \
	systest-a64.axf

all: $(BINS)

clean:
	rm -rf $(BINS)

usertest-srcs = usertest.c semihosting.c semicall.S printf/printf.c

systest-srcs = start.S string.c $(usertest-srcs)
microbit-systest-srcs = start-microbit.S string.c $(usertest-srcs)

usertest-a32: $(usertest-srcs)
	$(A32GCC) --static -o $@ $^

usertest-t32: $(usertest-srcs)
	$(T32GCC) --static -o $@ $^

usertest-a32-hlt: $(usertest-srcs)
	$(A32GCC) -DUSE_HLT --static -o $@ $^

usertest-t32-hlt: $(usertest-srcs)
	$(T32GCC) -DUSE_HLT --static -o $@ $^

usertest-a64: $(usertest-srcs)
	$(A64GCC) --static -o $@ $^

systest-a32.axf: $(systest-srcs)
	$(A32GCC) -o $@ $^ $(A32LINKOPTS)

systest-t32.axf: $(systest-srcs)
	$(T32GCC) -o $@ $^ $(A32LINKOPTS)

systest-a32-hlt.axf: $(systest-srcs)
	$(A32GCC) -DUSE_HLT -o $@ $^ $(A32LINKOPTS)

systest-t32-hlt.axf: $(systest-srcs)
	$(T32GCC) -DUSE_HLT -o $@ $^ $(A32LINKOPTS)

systest-t32-bkpt.axf: $(microbit-systest-srcs)
	$(V7MGCC) -DUSE_BKPT -o $@ $^ $(AV7MLINKOPTS)

systest-a64.axf: $(systest-srcs)
	$(A64GCC) -nostdlib -o $@ $^ $(A64LINKOPTS)

run-usertest-a32: usertest-a32
	$(QEMU_ARM) usertest-a32

run-usertest-t32: usertest-t32
	$(QEMU_ARM) usertest-t32

run-usertest-a32-hlt: usertest-a32-hlt
	$(QEMU_ARM) usertest-a32-hlt

run-usertest-t32-hlt: usertest-t32-hlt
	$(QEMU_ARM) usertest-t32-hlt

run-usertest-a64: usertest-a64
	$(QEMU_AARCH64) usertest-a64

run-systest-a32: systest-a32.axf
	$(QEMU_SYSTEM_ARM) -M virt -net none --display none --semihosting -kernel $^

run-systest-t32: systest-t32.axf
	$(QEMU_SYSTEM_ARM) -M virt -net none --display none --semihosting -kernel $^

run-systest-a32-hlt: systest-a32-hlt.axf
	$(QEMU_SYSTEM_ARM) -M virt -net none --display none --semihosting -kernel $^

run-systest-t32-hlt: systest-t32-hlt.axf
	$(QEMU_SYSTEM_ARM) -M virt -net none --display none --semihosting -kernel $^

run-systest-t32-bkpt: systest-t32-bkpt.axf
	$(QEMU_SYSTEM_ARM) -M microbit --display none --semihosting -kernel $^

run-systest-a64: systest-a64.axf
	$(QEMU_SYSTEM_AARCH64) -M virt -net none --display none --semihosting \
		-cpu cortex-a57 -kernel $^

run: run-usertest-a32 run-usertest-t32 run-usertest-a64 \
	run-systest-a32 run-systest-t32 run-systest-a64 \
	run-usertest-a32-hlt run-usertest-t32-hlt \
	run-systest-a32-hlt run-systest-t32-hlt \
	run-systest-t32-bkpt