Home | History | Annotate | Line # | Download | only in mk
bsd.kmodule.mk revision 1.78
      1  1.78  riastrad #	$NetBSD: bsd.kmodule.mk,v 1.78 2022/07/17 13:38:06 riastradh Exp $
      2  1.14      elad 
      3  1.14      elad # We are not building this with PIE
      4  1.14      elad MKPIE=no
      5   1.1        ad 
      6   1.1        ad .include <bsd.init.mk>
      7   1.1        ad .include <bsd.klinks.mk>
      8  1.57  christos 
      9  1.57  christos .if ${MKCTF:Uno} == "yes"
     10  1.57  christos CFLAGS+=	-g
     11  1.57  christos # Only need symbols for ctf, strip them after converting to CTF
     12  1.57  christos CTFFLAGS=	-L VERSION
     13  1.58  christos CTFMFLAGS=	-t -L VERSION
     14  1.62   hannken # Keep symbols if built with "-g"
     15  1.66  christos .if !empty(COPTS:M*-g*) || ${MKDEBUG:Uno} == "yes"
     16  1.66  christos CTFFLAGS+=     -g
     17  1.66  christos CTFMFLAGS+=    -g
     18  1.62   hannken .endif
     19  1.57  christos .endif
     20  1.57  christos 
     21   1.7        ad .include <bsd.sys.mk>
     22   1.1        ad 
     23   1.1        ad ##### Basic targets
     24   1.1        ad realinstall:	kmodinstall
     25   1.1        ad 
     26   1.1        ad KERN=		$S/kern
     27  1.47  christos MKLDSCRIPT?=	no
     28   1.1        ad 
     29   1.6        ad CFLAGS+=	-ffreestanding ${COPTS}
     30   1.1        ad CPPFLAGS+=	-nostdinc -I. -I${.CURDIR} -isystem $S -isystem $S/arch
     31   1.1        ad CPPFLAGS+=	-isystem ${S}/../common/include
     32  1.69     skrll CPPFLAGS+=	-D_KERNEL -D_MODULE -DSYSCTL_INCLUDE_DESCR
     33   1.1        ad 
     34  1.72  christos CWARNFLAGS.clang+=	-Wno-error=constant-conversion
     35  1.59     joerg 
     36   1.1        ad # XXX until the kernel is fixed again...
     37  1.78  riastrad CFLAGS+=	-fno-strict-aliasing
     38  1.78  riastrad CWARNFLAGS+=	-Wno-pointer-sign -Wno-attributes
     39   1.1        ad 
     40  1.24      jmmv # XXX This is a workaround for platforms that have relative relocations
     41  1.24      jmmv # that, when relocated by the module loader, result in addresses that
     42  1.24      jmmv # overflow the size of the relocation (e.g. R_PPC_REL24 in powerpc).
     43  1.24      jmmv # The real solution to this involves generating trampolines for those
     44  1.24      jmmv # relocations inside the loader and removing this workaround, as the
     45  1.24      jmmv # resulting code would be much faster.
     46  1.63  jmcneill .if ${MACHINE_CPU} == "aarch64"
     47  1.63  jmcneill CFLAGS+=	-march=armv8-a+nofp+nosimd
     48  1.63  jmcneill .elif ${MACHINE_CPU} == "arm"
     49  1.41  jmcneill CFLAGS+=	-fno-common -fno-unwind-tables
     50  1.38     skrll .elif ${MACHINE_CPU} == "hppa"
     51  1.68     skrll CFLAGS+=	-mlong-calls -mno-space-regs -mfast-indirect-calls
     52  1.24      jmmv .elif ${MACHINE_CPU} == "powerpc"
     53  1.44     joerg CFLAGS+=	${${ACTIVE_CC} == "gcc":? -mlongcall :}
     54  1.71       rin CFLAGS+=	${${ACTIVE_CC} == "gcc" && ${HAVE_GCC:U0} >= 9:? -mno-pltseq :}
     55  1.31      matt .elif ${MACHINE_CPU} == "vax"
     56  1.31      matt CFLAGS+=	-fno-pic
     57  1.45      matt .elif ${MACHINE_CPU} == "riscv"
     58  1.45      matt CFLAGS+=	-fPIC -Wa,-fno-pic
     59  1.54      matt .elif ${MACHINE_ARCH} == "mips64eb" && !defined(BSD_MK_COMPAT_FILE)
     60  1.53      matt CFLAGS+=	-mabi=64
     61  1.76    simonb AFLAGS+=	-mabi=64
     62  1.53      matt LDFLAGS+=	-Wl,-m,elf64btsmip
     63  1.54      matt .elif ${MACHINE_ARCH} == "mips64el" && !defined(BSD_MK_COMPAT_FILE)
     64  1.53      matt CFLAGS+=	-mabi=64
     65  1.76    simonb AFLAGS+=	-mabi=64
     66  1.53      matt LDFLAGS+=	-Wl,-m,elf64ltsmip
     67  1.24      jmmv .endif
     68  1.24      jmmv 
     69  1.75    simonb .if ${MACHINE_CPU} == "mips"
     70  1.75    simonb # We can't use -msym32 with -mlong-calls as -msym32 forces all addresses
     71  1.75    simonb # to be 32-bit which defeats the whole purpose of long calls.
     72  1.75    simonb CFLAGS+=	-mlong-calls
     73  1.75    simonb .endif
     74  1.75    simonb 
     75  1.43  nakayama .if ${MACHINE_CPU} == "sparc64"
     76  1.40    martin # force same memory model as rest of the kernel
     77  1.42     joerg CFLAGS+=	${${ACTIVE_CC} == "gcc":? -mcmodel=medlow :}
     78  1.42     joerg CFLAGS+=	${${ACTIVE_CC} == "clang":? -mcmodel=small :}
     79  1.40    martin .endif
     80  1.40    martin 
     81  1.28       mrg # evbppc needs some special help
     82  1.28       mrg .if ${MACHINE} == "evbppc"
     83  1.28       mrg 
     84  1.28       mrg . ifndef PPC_INTR_IMPL
     85  1.28       mrg PPC_INTR_IMPL=\"powerpc/intr.h\"
     86  1.28       mrg . endif
     87  1.28       mrg . ifndef PPC_PCI_MACHDEP_IMPL
     88  1.28       mrg PPC_PCI_MACHDEP_IMPL=\"powerpc/pci_machdep.h\"
     89  1.28       mrg . endif
     90  1.73       rin CPPFLAGS+=	-DPPC_INTR_IMPL=${PPC_INTR_IMPL}
     91  1.73       rin CPPFLAGS+=	-DPPC_PCI_MACHDEP_IMPL=${DPPC_PCI_MACHDEP_IMPL}
     92  1.28       mrg 
     93  1.28       mrg . ifdef PPC_IBM4XX
     94  1.73       rin CPPFLAGS+=	-DPPC_IBM4XX
     95  1.28       mrg . elifdef PPC_BOOKE
     96  1.73       rin CPPFLAGS+=	-DPPC_BOOKE
     97  1.74       rin . elif ${MACHINE_ARCH} == "powerpc64"
     98  1.74       rin CPPFLAGS+=	-DPPC_OEA64
     99  1.28       mrg . else
    100  1.73       rin CPPFLAGS+=	-DPPC_OEA
    101  1.28       mrg . endif
    102  1.28       mrg 
    103  1.28       mrg .endif
    104  1.28       mrg 
    105  1.28       mrg 
    106   1.1        ad _YKMSRCS=	${SRCS:M*.[ly]:C/\..$/.c/} ${YHEADER:D${SRCS:M*.y:.y=.h}}
    107   1.1        ad DPSRCS+=	${_YKMSRCS}
    108   1.1        ad CLEANFILES+=	${_YKMSRCS}
    109   1.7        ad 
    110  1.21     skrll .if exists($S/../sys/modules/xldscripts/kmodule)
    111  1.47  christos KMODSCRIPTSRC=	$S/../sys/modules/xldscripts/kmodule
    112   1.7        ad .else
    113  1.47  christos KMODSCRIPTSRC=	${DESTDIR}/usr/libdata/ldscripts/kmodule
    114  1.47  christos .endif
    115  1.47  christos .if ${MKLDSCRIPT} == "yes"
    116  1.47  christos KMODSCRIPT=	kldscript
    117  1.52  christos MKLDSCRIPTSH=	
    118  1.47  christos .else
    119  1.47  christos KMODSCRIPT=	${KMODSCRIPTSRC}
    120   1.7        ad .endif
    121   1.1        ad 
    122   1.1        ad PROG?=		${KMOD}.kmod
    123  1.66  christos .if ${MKDEBUG:Uno} != "no" && !defined(NODEBUG) && !commands(${PROG}) && \
    124  1.66  christos     empty(SRCS:M*.sh)
    125  1.66  christos PROGDEBUG:=      ${PROG}.debug
    126  1.66  christos .endif  
    127   1.1        ad 
    128   1.1        ad ##### Build rules
    129  1.67       rin realall:	${PROG} ${PROGDEBUG}
    130   1.1        ad 
    131  1.35      matt OBJS+=		${SRCS:N*.h:N*.sh:R:S/$/.o/g}
    132  1.35      matt 
    133   1.1        ad ${OBJS} ${LOBJS}: ${DPSRCS}
    134   1.1        ad 
    135  1.52  christos .if ${MKLDSCRIPT} == "yes"
    136  1.52  christos ${KMODSCRIPT}: ${KMODSCRIPTSRC} ${OBJS} $S/conf/mkldscript.sh
    137  1.52  christos 	@rm -f ${.TARGET}
    138  1.52  christos 	@OBJDUMP=${OBJDUMP} ${HOST_SH} $S/conf/mkldscript.sh \
    139  1.52  christos 	    -t ${KMODSCRIPTSRC} ${OBJS} > ${.TARGET}
    140  1.52  christos .endif
    141  1.52  christos 
    142  1.39      matt .if ${MACHINE_CPU} == "arm"
    143  1.39      matt # The solution to limited branch space involves generating trampolines for
    144  1.39      matt # those relocations while creating the module, as the resulting code will
    145  1.39      matt # be much faster and simplifies the loader.
    146  1.39      matt ARCHDIR=	$S/modules/arch/${MACHINE_CPU}
    147  1.39      matt ASM_H=		$S/arch/${MACHINE_CPU}/include/asm.h
    148  1.39      matt CLEANFILES+=	tmp.o tmp.S ${KMOD}_tmp.o ${KMOD}_tramp.o ${KMOD}_tramp.S
    149  1.39      matt ${KMOD}_tmp.o: ${OBJS} ${DPADD}
    150  1.39      matt 	${_MKTARGET_LINK}
    151  1.39      matt 	${LD} -r -o tmp.o ${OBJS}
    152  1.39      matt 	${LD} -r \
    153  1.77  christos 		$$(${OBJDUMP} --syms --reloc tmp.o | \
    154  1.77  christos 			${TOOL_AWK} -f ${ARCHDIR}/kmodwrap.awk) \
    155  1.39      matt 		 -o ${.TARGET} tmp.o
    156  1.39      matt 
    157  1.39      matt ${KMOD}_tramp.S: ${KMOD}_tmp.o ${ARCHDIR}/kmodtramp.awk ${ASM_H}
    158  1.39      matt 	${_MKTARGET_CREATE}
    159  1.39      matt 	${OBJDUMP} --syms --reloc ${KMOD}_tmp.o | \
    160  1.39      matt 		 ${TOOL_AWK} -f ${ARCHDIR}/kmodtramp.awk \
    161  1.39      matt 		 > tmp.S && \
    162  1.60  christos 	${MV} tmp.S ${.TARGET}
    163  1.39      matt 
    164  1.39      matt ${PROG}: ${KMOD}_tmp.o ${KMOD}_tramp.o
    165  1.39      matt 	${_MKTARGET_LINK}
    166  1.39      matt .if exists(${ARCHDIR}/kmodhide.awk)
    167  1.46  uebayasi 	${LD} -r -Map=${.TARGET}.map \
    168  1.46  uebayasi 	    -o tmp.o ${KMOD}_tmp.o ${KMOD}_tramp.o
    169  1.39      matt 	${OBJCOPY} \
    170  1.77  christos 		$$(${NM} tmp.o | ${TOOL_AWK} -f ${ARCHDIR}/kmodhide.awk) \
    171  1.39      matt 		tmp.o ${.TARGET} && \
    172  1.39      matt 	rm tmp.o
    173  1.39      matt .else
    174  1.46  uebayasi 	${LD} -r -Map=${.TARGET}.map \
    175  1.46  uebayasi 	    -o ${.TARGET} ${KMOD}_tmp.o ${KMOD}_tramp.o
    176  1.39      matt .endif
    177  1.39      matt .else
    178  1.52  christos ${PROG}: ${OBJS} ${DPADD} ${KMODSCRIPT}
    179  1.55      matt 	${_MKTARGET_LINK}
    180  1.26    martin 	${CC} ${LDFLAGS} -nostdlib -r -Wl,-T,${KMODSCRIPT},-d \
    181  1.46  uebayasi 		-Wl,-Map=${.TARGET}.map \
    182  1.22      matt 		-o ${.TARGET} ${OBJS}
    183  1.35      matt .endif
    184  1.58  christos .if defined(CTFMERGE)
    185  1.58  christos 	${CTFMERGE} ${CTFMFLAGS} -o ${.TARGET} ${OBJS}
    186  1.58  christos .endif
    187   1.1        ad 
    188  1.66  christos .if defined(PROGDEBUG)
    189  1.66  christos ${PROGDEBUG}: ${PROG}
    190  1.66  christos 	${_MKTARGET_CREATE}
    191  1.66  christos 	(  ${OBJCOPY} --only-keep-debug ${PROG} ${PROGDEBUG} \
    192  1.66  christos 	&& ${OBJCOPY} --strip-debug -p -R .gnu_debuglink \
    193  1.66  christos 		--add-gnu-debuglink=${PROGDEBUG} ${PROG} \
    194  1.66  christos 	) || (rm -f ${PROGDEBUG}; false)
    195  1.66  christos .endif
    196  1.66  christos 
    197   1.1        ad ##### Install rules
    198   1.1        ad .if !target(kmodinstall)
    199   1.7        ad .if !defined(KMODULEDIR)
    200  1.64  christos .if ${KERNEL_DIR:Uno} == "yes"
    201  1.66  christos _INST_DIRS=	/netbsd
    202  1.66  christos _INST_DIRS+=	/netbsd/modules
    203  1.66  christos KMODULEDIR=	/netbsd/modules/${KMOD}
    204  1.64  christos .else
    205   1.9        he # Ensure these are recorded properly in METALOG on unprived installes:
    206  1.65  christos _OSRELEASE!=	${HOST_SH} $S/conf/osrelease.sh -k
    207  1.28       mrg KMODULEARCHDIR?= ${MACHINE}
    208  1.66  christos _INST_DIRS=	/stand/${KMODULEARCHDIR}
    209  1.66  christos _INST_DIRS+=	/stand/${KMODULEARCHDIR}/${_OSRELEASE}
    210  1.66  christos _INST_DIRS+=	/stand/${KMODULEARCHDIR}/${_OSRELEASE}/modules
    211  1.66  christos KMODULEDIR=	/stand/${KMODULEARCHDIR}/${_OSRELEASE}/modules/${KMOD}
    212  1.10    dyoung .endif
    213  1.64  christos .endif
    214   1.1        ad 
    215  1.66  christos _INST_DIRS+=	${KMODULEDIR}
    216  1.66  christos _PROG:=		${DESTDIR}${KMODULEDIR}/${PROG} # installed path
    217  1.66  christos 
    218  1.66  christos .if defined(PROGDEBUG)
    219  1.66  christos .for i in ${_INST_DIRS}
    220  1.66  christos _DEBUG_INST_DIRS += ${DEBUGDIR}${i}
    221  1.66  christos .endfor
    222  1.66  christos _INST_DIRS += ${_DEBUG_INST_DIRS}
    223  1.66  christos _PROGDEBUG:=	${DESTDIR}${DEBUGDIR}${KMODULEDIR}/${PROG}.debug
    224  1.66  christos .endif
    225  1.66  christos 
    226  1.66  christos .for _P P in ${_PROG} ${PROG} ${_PROGDEBUG} ${PROGDEBUG}
    227   1.1        ad .if ${MKUPDATE} == "no"
    228  1.66  christos ${_P}! ${P}					# install rule
    229  1.66  christos .if !defined(BUILD) && !make(all) && !make(${P})
    230  1.66  christos ${_P}!	.MADE					# no build at install
    231   1.1        ad .endif
    232   1.1        ad .else
    233  1.66  christos ${_P}: ${P}					# install rule
    234  1.66  christos .if !defined(BUILD) && !make(all) && !make(${P})
    235  1.66  christos ${_P}:	.MADE					# no build at install
    236   1.1        ad .endif
    237   1.1        ad .endif
    238   1.1        ad 	${_MKTARGET_INSTALL}
    239  1.16   hubertf 	dirs=${_INST_DIRS:Q}; \
    240  1.16   hubertf 	for d in $$dirs; do \
    241  1.66  christos 		${INSTALL_DIR} ${DESTDIR}$$d; \
    242   1.9        he 	done
    243  1.15        ad 	${INSTALL_FILE} -o ${KMODULEOWN} -g ${KMODULEGRP} -m ${KMODULEMODE} \
    244   1.1        ad 		${.ALLSRC} ${.TARGET}
    245   1.1        ad 
    246  1.66  christos kmodinstall::	${_P}
    247   1.1        ad .PHONY:		kmodinstall
    248  1.66  christos .PRECIOUS:	${_P}				# keep if install fails
    249  1.66  christos .endfor
    250   1.1        ad 
    251  1.66  christos .undef _PPROG
    252  1.66  christos .undef _PPROGDEBUG
    253   1.1        ad .endif # !target(kmodinstall)
    254   1.1        ad 
    255   1.1        ad ##### Clean rules
    256  1.32       apb CLEANFILES+= a.out [Ee]rrs mklog core *.core ${PROG} ${OBJS} ${LOBJS}
    257  1.66  christos CLEANFILES+= ${PROGDEBUG}
    258  1.46  uebayasi CLEANFILES+= ${PROG}.map
    259  1.47  christos .if ${MKLDSCRIPT} == "yes"
    260  1.47  christos CLEANFILES+= kldscript
    261  1.47  christos .endif
    262   1.1        ad 
    263   1.1        ad ##### Custom rules
    264   1.1        ad lint: ${LOBJS}
    265   1.1        ad .if defined(LOBJS) && !empty(LOBJS)
    266   1.1        ad 	${LINT} ${LINTFLAGS} ${LDFLAGS:C/-L[  ]*/-L/Wg:M-L*} ${LOBJS} ${LDADD}
    267   1.1        ad .endif
    268   1.1        ad 
    269   1.1        ad ##### Pull in related .mk logic
    270  1.19       apb LINKSOWN?= ${KMODULEOWN}
    271  1.19       apb LINKSGRP?= ${KMODULEGRP}
    272  1.19       apb LINKSMODE?= ${KMODULEMODE}
    273   1.1        ad .include <bsd.man.mk>
    274   1.1        ad .include <bsd.links.mk>
    275   1.1        ad .include <bsd.dep.mk>
    276  1.32       apb .include <bsd.clean.mk>
    277   1.1        ad 
    278   1.1        ad .-include "$S/arch/${MACHINE_CPU}/include/Makefile.inc"
    279   1.1        ad .-include "$S/arch/${MACHINE}/include/Makefile.inc"
    280