a97bc662806ed9e2ba557c77ee1fc464a6afe8ec
[dragonfly.git] / sys / boot / pc32 / boot2 / Makefile
1 # $FreeBSD: src/sys/boot/i386/boot2/Makefile,v 1.47 2003/06/26 03:51:57 peter Exp $
2
3 BINDIR?=        /boot
4 BINMODE=        444
5 CLEANFILES=     boot \
6                 sio.o
7
8 CSTD?=          c99
9
10 NM?=            nm
11 NXCFLAGS=
12 NXLDFLAGS=
13
14 .PATH: ${.CURDIR}/..
15 .PATH: ${.CURDIR}/../../common
16 .PATH: ${.CURDIR}/../../../../lib/libstand
17 .PATH: ${.CURDIR}/../../../libkern
18
19 # A value of 0x80 enables LBA support.
20 B1FLAGS=        0x80
21
22 BOOT_COMCONSOLE_PORT?= 0x3f8
23 BOOT_COMCONSOLE_SPEED?= 9600
24 B2SIOFMT?=      0x3
25
26 .if exists(${.OBJDIR}/../btx)
27 BTX=    ${.OBJDIR}/../btx
28 .else
29 BTX=    ${.CURDIR}/../btx
30 .endif
31
32 # These origins are taken from bootasm.h.
33 #
34 REL1 = `${.OBJDIR}/bootasmdef.nx BOOT1_ORIGIN`
35 REL1D = `${.OBJDIR}/bootasmdef.nx -d BOOT1_ORIGIN`
36 ORG1 = `${.OBJDIR}/bootasmdef.nx MEM_BIOS_LADDR`
37 ORG1D = `${.OBJDIR}/bootasmdef.nx -d MEM_BIOS_LADDR`
38
39 # WARNING!  The ORG2 calculation is the origin of boot2.bin relative to 
40 # the start of the BTX *USER* address space, not the start of physical 
41 # memory.
42 #
43 ORG2=   `${.OBJDIR}/bootasmdef.nx BOOT2_VORIGIN`
44
45 CFLAGS= -Os \
46         -fomit-frame-pointer \
47         -fno-unwind-tables \
48         -fno-asynchronous-unwind-tables \
49         -DBOOT2 \
50         -I${.CURDIR}/../../common \
51         -I${.CURDIR}/../../../../lib/libstand \
52         -I${.CURDIR}/../btx/lib -I. \
53         -Wall -Waggregate-return -Wbad-function-cast -Wcast-align \
54         -Wmissing-declarations -Wmissing-prototypes -Wnested-externs \
55         -Wpointer-arith -Wshadow -Wstrict-prototypes -Wwrite-strings
56
57 DEBUG_FLAGS=
58
59 # Tell gcc that it shouldn't do fancy optimizations for newer processors.
60 # Otherwise it winds up creating larger code and we won't be able to fit boot2.
61 CFLAGS+= -march=i386
62
63 # Unfortunately, unit-at-a-time creates issues as yet
64 # not tracked down, in boot2, so we have to turn it off.  Note that
65 # the problem has been narrowed down to the 'boot2' code.  The /boot/loader
66 # doesn't seem to have a problem.  Added to BOOT2_GCC_FLAGS since clang
67 # doesn't recognize this flag.  The no-guess-branch-probability flag is also
68 # gcc-specific so it was moved to BOOT2_GCC_FLAGS as well.
69 #
70 CFLAGS+= ${BOOT2_GCC_FLAGS}
71
72 # boot2 area in 32 bit disklabel is 16 sectors (8K)
73 #
74 # boot2 area in 64 bit disklabel is 64 sectors (32K).
75 # However, the boot1 btx loader puts boot2 at a physical address
76 # of MEM_BTX_USR+BOOT2_VORIGIN which is typically 0xC000, so we
77 # cannot make boot2 any larger then 16KB or we overflow the segment.
78 #
79 NSECT_32?=      16
80 NSECT_64?=      30
81 LDFLAGS=        -nostdlib -static -N --gc-sections
82 LINKSCRIPT=     --script ${.CURDIR}/boot2.ldscript
83
84 all: boot
85
86 boot: boot1_32 boot2_32
87         cat ${.ALLSRC} > boot
88
89 .for s in _32 _64
90
91 _ADDCFLAGS$s:= -DNSECT=${NSECT$s}
92 _ts=    $s
93 .if ${_ts} == "_64"
94 _ADDCFLAGS$s+= -DDISKLABEL64
95 _ADDCFLAGS$s+= -DHAMMER2FS -DUFS
96 _ADDOBJS$s+= hammer2$s.o ufsread$s.o scrc32$s.o
97 .else
98 _ADDCFLAGS$s+= -DUFS -DUFS1_ONLY
99 _ADDOBJS$s+= ufsread$s.o
100 .endif
101
102 all: boot1$s boot2$s
103
104 boot1$s: boot1$s.out
105         objcopy -S -O binary boot1$s.out ${.TARGET}
106
107 boot1$s.out: boot1$s.o bootasmdef.nx
108         ${LD} ${LDFLAGS} -e start -Ttext ${ORG1} -o ${.TARGET} ${.ALLSRC:M*.o}
109
110 boot1$s.o: boot1.S
111         ${CC} ${CFLAGS} ${_ADDCFLAGS$s} -DFLAGS=${B1FLAGS} \
112                 ${ASSEMBLER_FLAGS} ${.ALLSRC} -o ${.TARGET} -c
113
114 #${.CURDIR}/../../common/ufsread.c ${.CURDIR}/../../../../lib/libstand/hammer2.c
115
116 boot2$s.s: boot2.c boot2$s.h ufsread.c hammer2.c scrc32.c
117         ${CC} ${CFLAGS} ${_ADDCFLAGS$s} -S -o boot2$s.s.tmp ${.CURDIR}/boot2.c
118         sed -e '/align/d' -e '/nop/d' < ${.TARGET}.tmp > ${.TARGET}
119         rm -f ${.TARGET}.tmp
120
121 boot2$s.o: boot2$s.s
122         ${AS} ${AFLAGS} -o ${.TARGET} boot2$s.s
123
124 boot2$s.h: boot1$s.out bootasmdef.nx
125         @echo "NOTE: boot2 using xread from boot1 at ${REL1}"
126         ${NM} -t d ${.ALLSRC} | awk '/([0-9])+ T xread/ \
127                 { x = $$1 - ORG1; \
128                 printf("#define XREADORG %#x\n", REL1 + x) }' \
129                 ORG1=${ORG1D} REL1=${REL1D} > boot2$s.h
130
131 boot2$s: boot2$s.ldr boot2$s.bin ${BTX}/btx/btx
132         btxld -v -E ${ORG2} -f bin -b ${BTX}/btx/btx -l boot2$s.ldr \
133                 -o boot2$s.ld -P 1 boot2$s.bin
134         stat boot2$s.ld | awk '{ x = (${NSECT$s} - 1) * 512 - $$8; \
135                 print x " bytes available"; if (x < 0) exit 1 }'
136         dd if=boot2$s.ld of=${.TARGET} obs=$$(( (${NSECT$s} - 1) * 512)) conv=osync 2>/dev/null
137
138 boot2$s.ldr:
139         dd if=/dev/zero of=${.TARGET} bs=512 count=1 2>/dev/null
140
141 boot2$s.bin: boot2$s.out
142         objcopy -S -O binary boot2$s.out ${.TARGET}
143
144 boot2$s.out: boot2$s.o sio.o ${_ADDOBJS$s}
145         ${LD} ${LDFLAGS} -Ttext ${ORG2} ${LINKSCRIPT} -o ${.TARGET} \
146                 ${BTX}/lib/crt0.o ${.ALLSRC}
147
148 CLEANFILES+=    boot1$s boot1$s.out boot1$s.o \
149                 boot2$s boot2$s.ldr boot2$s.bin \
150                 boot2$s.ld boot2$s.out boot2$s.o boot2$s.h boot2$s.s \
151                 ${_ADDOBJS$s}
152
153 hammer2$s.o: hammer2.c
154         ${CC} ${CFLAGS} ${_ADDCFLAGS$s} ${.ALLSRC} -o ${.TARGET} -c
155
156 ufsread$s.o: ufsread.c
157         ${CC} ${CFLAGS} ${_ADDCFLAGS$s} ${.ALLSRC} -o ${.TARGET} -c
158
159 scrc32$s.o: scrc32.c
160         ${CC} ${CFLAGS} ${_ADDCFLAGS$s} ${.ALLSRC} -o ${.TARGET} -c
161
162 .endfor
163
164 sio.o: sio.S
165         ${CC} ${CFLAGS} -DSIOPRT=${BOOT_COMCONSOLE_PORT} -DSIOFMT=${B2SIOFMT} \
166                 -DSIOSPD=${BOOT_COMCONSOLE_SPEED} \
167                 ${.ALLSRC} -o ${.TARGET} -c
168
169 install:
170         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
171                 boot ${DESTDIR}${BINDIR}/boot
172         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
173                 boot1_32 ${DESTDIR}${BINDIR}/boot1
174         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
175                 boot2_32 ${DESTDIR}${BINDIR}/boot2
176         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
177                 boot1_64 ${DESTDIR}${BINDIR}/boot1_64
178         ${INSTALL} -o ${BINOWN} -g ${BINGRP} -m ${BINMODE} \
179                 boot2_64 ${DESTDIR}${BINDIR}/boot2_64
180
181 .include <bsd.prog.mk>
182
183 .if defined(REALLY_X86_64)
184 # For x86_64, we need to fake up a complete machine/ tree
185 # so that types for -m32 appear correctly.
186
187 boot2.o: machine
188
189 beforedepend ${OBJS}: machine cpu
190
191 machine::
192         mkdir -p machine
193         ${LN} -sf ${.CURDIR}/../../../cpu/i386/include/* machine
194         ${LN} -sf ${.CURDIR}/../../../platform/pc32/include/* machine
195
196 cpu::
197         ${LN} -hsf ${.CURDIR}/../../../cpu/i386/include cpu
198
199 CLEANDIRS+=     machine cpu
200 .endif
201
202 CLEANFILES+=    bootasmdef.nx
203