-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
258 lines (209 loc) · 8.64 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
252
253
254
255
256
257
258
###################################################################
# About the library name and path
###################################################################
# library name, without extension
LIB_NAME ?= libusbhid
# project root directory, relative to app dir
PROJ_FILES = ../../
# library name, with extension
LIB_FULL_NAME = $(LIB_NAME).a
# SDK helper Makefiles inclusion
-include $(PROJ_FILES)/m_config.mk
-include $(PROJ_FILES)/m_generic.mk
# use an app-specific build dir
APP_BUILD_DIR = $(BUILD_DIR)/libs/$(LIB_NAME)
###################################################################
# About the compilation flags
###################################################################
CFLAGS += $(LIBS_CFLAGS)
CFLAGS += -MMD -MP -O3
#############################################################
# About library sources
#############################################################
SRC_DIR = .
SRC = $(wildcard $(SRC_DIR)/*.c)
OBJ = $(patsubst %.c,$(APP_BUILD_DIR)/%.o,$(SRC))
DEP = $(OBJ:.o=.d)
OUT_DIRS = $(dir $(OBJ))
# file to (dist)clean
# objects and compilation related
TODEL_CLEAN += $(OBJ)
# targets
TODEL_DISTCLEAN += $(APP_BUILD_DIR)
##########################################################
# generic targets of all libraries makefiles
##########################################################
.PHONY: app doc
default: all
all: $(APP_BUILD_DIR) lib
doc:
$(Q)$(MAKE) BUILDDIR=../$(APP_BUILD_DIR)/doc -C doc html latexpdf
show:
@echo
@echo "\tAPP_BUILD_DIR\t=> " $(APP_BUILD_DIR)
@echo
@echo "C sources files:"
@echo "\tSRC_DIR\t\t=> " $(SRC_DIR)
@echo "\tSRC\t\t=> " $(SRC)
@echo "\tOBJ\t\t=> " $(OBJ)
@echo
lib: $(APP_BUILD_DIR)/$(LIB_FULL_NAME)
$(APP_BUILD_DIR)/%.o: %.c
$(call if_changed,cc_o_c)
# lib
$(APP_BUILD_DIR)/$(LIB_FULL_NAME): $(OBJ)
$(call if_changed,mklib)
$(call if_changed,ranlib)
$(APP_BUILD_DIR):
$(call cmd,mkdir)
-include $(DEP)
#####################################################################
# Frama-C
#####################################################################
# This variable is to be overriden by local shell environment variable to
# compile and use frama-C targets
# by default, FRAMAC target is deactivated, it can be activated by overriding
# the following variable value with 'y' in the environment.
FRAMAC_TARGET ?= n
ifeq (y,$(FRAMAC_TARGET))
# some FRAMAC arguments may vary depending on the FRAMA-C version (Calcium, Scandium...)
# Here we support both Calcium (20) and Scandium (21) releases
FRAMAC_VERSION=$(shell frama-c -version|cut -d'.' -f 1)
FRAMAC_RELEASE=$(shell frama-c -version|sed -re 's:^.*\((.*)\)$:\1:g')
#
# INFO: Using Frama-C, the overall flags are not directly used as they are targetting
# arm-none-eabi architecture which is not handled by framaC. Instead, we used
# a 32bits target with custom CFLAGS to handle Frama-C compilation step.
# As a consequence, include paths need to be set here as above CFLAGS are dissmissed.
# Below variables are used to handle Wookey SDK in-tree vs out-of-tree Frama-C compilation,
# which permits to:
# - run Frama-C on an autonomous extract of the overall Wookey firmware, out of the Wookey SDK tree
# - run Frama-C directly in the SDK tree, on the same set of software
# The difference is mostly the dependencies paths. The advantage of such an effort is
# to simplify the begining of the Frama-C integration, by detecting and including the necessary
# dependencies only. In a second step only, the dependencies, if they are anotated or updated,
# are pushed back to their initial position in their initial repositories.
# For libxDCI, the dependencies are:
# - the USB device driver (we have chosen the USB OTG HS (High Speed) driver
# - the libstd, which is the tiny libc implementation of the Wookey environment, including the
# userspace part of the syscalls.
# - some generated headers associated to the target plateform associated to the driver
# - EwoK kernel exported headers
# dir of USBOTG-HS sources (direct compilation from here bypassing local Makefile)
# this path is using the Wookey repositories structure hierarchy. Another hierarchy
# can be used by overriding this variable in the environment.
USBOTGHS_API_DIR ?= $(PROJ_FILES)/drivers/socs/$(SOC)/usbotghs/api
# This is the device specification header path generated by the Wookey SDK JSON layout.
# The following variable is using the standard Wookey SDK directories structure but
# can be overriden in case of out of tree execution.
# This directory handle both device specifications and devlist header (per device
# unique identifier table).
# INFO: this directory MUST contains a subdir named "generated" which contains these
# two files.
USBOTGHS_DEVHEADER_PATH ?= $(PROJ_FILES)/layouts/boards/wookey
# This is the Wookey micro-libC API directory. This directory is used by all libraries and driver
# and defines all prototypes and C types used nearly everywhere in the Wookey project.
LIBSTD_API_DIR ?= $(PROJ_FILES)/libs/std/api
# This is the Wookey USB control plane library directory. This directory is used by all USB class
# implementations such as HID.
LIBUSB_API_DIR ?= $(PROJ_FILES)/libs/usbctrl/api
# This is the EwoK kernel exported headers directory. These headers are requested by the libstd
# itself and thus by upper layers, including drivers and libraries.
EWOK_API_DIR ?= $(PROJ_FILES)/kernel/src/C/exported
FRAMAC_RESULTSDIR := framac/results
SESSION := $(FRAMAC_RESULTSDIR)/frama-c-rte-eva-wp-ref.session
LOGFILE := $(FRAMAC_RESULTSDIR)/frama-c-rte-eva-wp-ref.log
EVA_SESSION := $(FRAMAC_RESULTSDIR)/frama-c-rte-eva.session
EVA_LOGFILE := $(FRAMAC_RESULTSDIR)/frama-c-rte-eva.log
EVAREPORT := $(FRAMAC_RESULTSDIR)/frama-c-rte-eva_report
TIMESTAMP := $(FRAMAC_RESULTSDIR)/timestamp-calcium_wp-eva.txt
JOBS := $(shell nproc)
# Does this flag could be overriden by env (i.e. using ?=)
TIMEOUT := 15
$(FRAMAC_RESULTSDIR):
$(call cmd,mkdir)
FRAMAC_GEN_FLAGS:=\
-absolute-valid-range 0x40040000-0x40044000 \
-no-frama-c-stdlib \
-warn-left-shift-negative \
-warn-right-shift-negative \
-warn-signed-downcast \
-warn-signed-overflow \
-warn-unsigned-downcast \
-warn-unsigned-overflow \
-warn-invalid-pointer \
-kernel-msg-key pp \
-cpp-extra-args="-nostdinc -I framac/include -I $(LIBUSB_API_DIR) -I $(LIBSTD_API_DIR) -I $(USBOTGHS_API_DIR) -I $(USBOTGHS_DEVHEADER_PATH) -I $(EWOK_API_DIR)" \
-rte \
-instantiate
FRAMAC_EVA_FLAGS:=\
-eva \
-eva-show-perf \
-eva-slevel 500 \
-eva-domains symbolic-locations\
-eva-domains equality \
-eva-split-return auto \
-eva-partition-history 3 \
-eva-use-spec usbctrl_declare \
-eva-use-spec usbctrl_initialize \
-eva-use-spec usbctrl_declare_interface \
-eva-use-spec usbctrl_start_device \
-eva-use-spec usbctrl_stop_device \
-eva-use-spec usbotghs_send_data \
-eva-use-spec usbotghs_send_zlp \
-eva-use-spec usbotghs_set_recv_fifo \
-eva-use-spec usbotghs_endpoint_stall \
-eva-use-spec usbotghs_endpoint_stall_clear \
-eva-use-spec usbotghs_endpoint_set_nak \
-eva-use-spec usbotghs_endpoint_clear_nak \
-eva-log a:$(EVA_LOGFILE)\
-eva-report-red-statuses $(EVAREPORT)
ifeq (22,$(FRAMAC_VERSION))
FRAMAC_WP_SUPP_FLAGS= # -wp-check-memory-model, asserts are to be added first: invalid wp behavior by now
else
FRAMAC_WP_SUPP_FLAGS=
endif
FRAMAC_WP_PROVERS ?= alt-ergo,cvc4,z3
FRAMAC_WP_FLAGS:=\
-wp \
-wp-model "Typed+ref+int" \
$(FRAMAC_WP_SUPP_FLAGS)\
-wp-literals \
-wp-prover $(FRAMAC_WP_PROVERS),tip \
-wp-prop="-@lemma" \
-wp-time-margin 25 \
-wp-timeout $(TIMEOUT) \
-wp-smoke-tests \
-wp-no-smoke-dead-code \
-wp-log a:$(LOGFILE)
FRAMAC_WP_LEMMAS_FLAGS:=\
-wp-prop="@lemma" \
-wp-auto="wp:split,wp:bitrange"
frama-c-parsing: $(FRAMAC_RESULTSDIR)
frama-c framac/entrypoint.c usbhid*.c \
-c11 \
-no-frama-c-stdlib \
-cpp-extra-args="-nostdinc -I framac/include -I $(LIBUSB_API_DIR) -I $(LIBSTD_API_DIR) -I $(USBOTGHS_API_DIR) -I $(USBOTGHS_DEVHEADER_PATH) -I $(EWOK_API_DIR)"
frama-c-eva: $(FRAMAC_RESULTSDIR)
frama-c framac/entrypoint.c usbhid*.c -c11 \
$(FRAMAC_GEN_FLAGS) \
$(FRAMAC_EVA_FLAGS) \
-save $(EVA_SESSION) \
-time $(TIMESTAMP)
frama-c: $(FRAMAC_RESULTSDIR)
frama-c framac/entrypoint.c usbhid*.c -c11 \
$(FRAMAC_GEN_FLAGS) \
$(FRAMAC_EVA_FLAGS) \
-then \
$(FRAMAC_WP_FLAGS) \
-save $(SESSION) \
-then \
$(FRAMAC_WP_LEMMAS_FLAGS) \
-time $(TIMESTAMP)
frama-c-instantiate: $(FRAMAC_RESULTSDIR)
frama-c framac/entrypoint.c -c11 -machdep x86_32 \
$(FRAMAC_GEN_FLAGS) \
-instantiate
frama-c-gui:
frama-c-gui -load $(SESSION)
endif