xref: /openbmc/linux/arch/powerpc/kernel/vdso/Makefile (revision fe4d0d5d)
1# SPDX-License-Identifier: GPL-2.0
2
3# List of files in the vdso, has to be asm only for now
4
5ARCH_REL_TYPE_ABS := R_PPC_JUMP_SLOT|R_PPC_GLOB_DAT|R_PPC_ADDR32|R_PPC_ADDR24|R_PPC_ADDR16|R_PPC_ADDR16_LO|R_PPC_ADDR16_HI|R_PPC_ADDR16_HA|R_PPC_ADDR14|R_PPC_ADDR14_BRTAKEN|R_PPC_ADDR14_BRNTAKEN|R_PPC_REL24
6include $(srctree)/lib/vdso/Makefile
7
8obj-vdso32 = sigtramp32-32.o gettimeofday-32.o datapage-32.o cacheflush-32.o note-32.o getcpu-32.o
9obj-vdso64 = sigtramp64-64.o gettimeofday-64.o datapage-64.o cacheflush-64.o note-64.o getcpu-64.o
10
11ifneq ($(c-gettimeofday-y),)
12  CFLAGS_vgettimeofday-32.o += -include $(c-gettimeofday-y)
13  CFLAGS_vgettimeofday-32.o += $(DISABLE_LATENT_ENTROPY_PLUGIN)
14  CFLAGS_vgettimeofday-32.o += $(call cc-option, -fno-stack-protector)
15  CFLAGS_vgettimeofday-32.o += -DDISABLE_BRANCH_PROFILING
16  CFLAGS_vgettimeofday-32.o += -ffreestanding -fasynchronous-unwind-tables
17  CFLAGS_REMOVE_vgettimeofday-32.o = $(CC_FLAGS_FTRACE)
18  CFLAGS_REMOVE_vgettimeofday-32.o += -mcmodel=medium -mabi=elfv1 -mabi=elfv2 -mcall-aixdesc
19  CFLAGS_vgettimeofday-64.o += -include $(c-gettimeofday-y)
20  CFLAGS_vgettimeofday-64.o += $(DISABLE_LATENT_ENTROPY_PLUGIN)
21  CFLAGS_vgettimeofday-64.o += $(call cc-option, -fno-stack-protector)
22  CFLAGS_vgettimeofday-64.o += -DDISABLE_BRANCH_PROFILING
23  CFLAGS_vgettimeofday-64.o += -ffreestanding -fasynchronous-unwind-tables
24  CFLAGS_REMOVE_vgettimeofday-64.o = $(CC_FLAGS_FTRACE)
25# Go prior to 1.16.x assumes r30 is not clobbered by any VDSO code. That used to be true
26# by accident when the VDSO was hand-written asm code, but may not be now that the VDSO is
27# compiler generated. To avoid breaking Go tell GCC not to use r30. Impact on code
28# generation is minimal, it will just use r29 instead.
29  CFLAGS_vgettimeofday-64.o += $(call cc-option, -ffixed-r30)
30endif
31
32# Build rules
33
34ifdef CROSS32_COMPILE
35    VDSOCC := $(CROSS32_COMPILE)gcc
36else
37    VDSOCC := $(CC)
38endif
39
40targets := $(obj-vdso32) vdso32.so.dbg vgettimeofday-32.o
41obj-vdso32 := $(addprefix $(obj)/, $(obj-vdso32))
42targets += $(obj-vdso64) vdso64.so.dbg vgettimeofday-64.o
43obj-vdso64 := $(addprefix $(obj)/, $(obj-vdso64))
44
45GCOV_PROFILE := n
46KCOV_INSTRUMENT := n
47UBSAN_SANITIZE := n
48KASAN_SANITIZE := n
49
50ccflags-y := -shared -fno-common -fno-builtin -nostdlib -Wl,--hash-style=both
51
52CC32FLAGS := -Wl,-soname=linux-vdso32.so.1 -m32
53AS32FLAGS := -D__VDSO32__ -s
54
55CC64FLAGS := -Wl,-soname=linux-vdso64.so.1
56AS64FLAGS := -D__VDSO64__ -s
57
58targets += vdso32.lds
59CPPFLAGS_vdso32.lds += -P -C -Upowerpc
60targets += vdso64.lds
61CPPFLAGS_vdso64.lds += -P -C -U$(ARCH)
62
63# link rule for the .so file, .lds has to be first
64$(obj)/vdso32.so.dbg: $(src)/vdso32.lds $(obj-vdso32) $(obj)/vgettimeofday-32.o FORCE
65	$(call if_changed,vdso32ld_and_check)
66$(obj)/vdso64.so.dbg: $(src)/vdso64.lds $(obj-vdso64) $(obj)/vgettimeofday-64.o FORCE
67	$(call if_changed,vdso64ld_and_check)
68
69# assembly rules for the .S files
70$(obj-vdso32): %-32.o: %.S FORCE
71	$(call if_changed_dep,vdso32as)
72$(obj)/vgettimeofday-32.o: %-32.o: %.c FORCE
73	$(call if_changed_dep,vdso32cc)
74$(obj-vdso64): %-64.o: %.S FORCE
75	$(call if_changed_dep,vdso64as)
76$(obj)/vgettimeofday-64.o: %-64.o: %.c FORCE
77	$(call if_changed_dep,cc_o_c)
78
79# Generate VDSO offsets using helper script
80gen-vdso32sym := $(srctree)/$(src)/gen_vdso32_offsets.sh
81quiet_cmd_vdso32sym = VDSO32SYM $@
82      cmd_vdso32sym = $(NM) $< | $(gen-vdso32sym) | LC_ALL=C sort > $@
83gen-vdso64sym := $(srctree)/$(src)/gen_vdso64_offsets.sh
84quiet_cmd_vdso64sym = VDSO64SYM $@
85      cmd_vdso64sym = $(NM) $< | $(gen-vdso64sym) | LC_ALL=C sort > $@
86
87include/generated/vdso32-offsets.h: $(obj)/vdso32.so.dbg FORCE
88	$(call if_changed,vdso32sym)
89include/generated/vdso64-offsets.h: $(obj)/vdso64.so.dbg FORCE
90	$(call if_changed,vdso64sym)
91
92# actual build commands
93quiet_cmd_vdso32ld_and_check = VDSO32L $@
94      cmd_vdso32ld_and_check = $(VDSOCC) $(c_flags) $(CC32FLAGS) -o $@ -Wl,-T$(filter %.lds,$^) $(filter %.o,$^) ; $(cmd_vdso_check)
95quiet_cmd_vdso32as = VDSO32A $@
96      cmd_vdso32as = $(VDSOCC) $(a_flags) $(CC32FLAGS) $(AS32FLAGS) -c -o $@ $<
97quiet_cmd_vdso32cc = VDSO32C $@
98      cmd_vdso32cc = $(VDSOCC) $(c_flags) $(CC32FLAGS) -c -o $@ $<
99
100quiet_cmd_vdso64ld_and_check = VDSO64L $@
101      cmd_vdso64ld_and_check = $(VDSOCC) $(c_flags) $(CC64FLAGS) -o $@ -Wl,-T$(filter %.lds,$^) $(filter %.o,$^) ; $(cmd_vdso_check)
102quiet_cmd_vdso64as = VDSO64A $@
103      cmd_vdso64as = $(VDSOCC) $(a_flags) $(CC64FLAGS) $(AS64FLAGS) -c -o $@ $<
104