blob: 19e63d4037e1daf924fab427264fd11f44de8883 [file] [log] [blame]
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05001# Legacy Bios build system
2#
3# Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net>
4#
Kevin O'Connorb1b7c2a2009-01-15 20:52:58 -05005# This file may be distributed under the terms of the GNU LGPLv3 license.
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05006
7# Output directory
8OUT=out/
9
10# Source files
Kevin O'Connor30853762009-01-17 18:49:20 -050011SRCBOTH=output.c util.c floppy.c ata.c misc.c mouse.c kbd.c pci.c \
Kevin O'Connor0c3068d2008-12-21 17:51:36 -050012 serial.c clock.c pic.c cdrom.c ps2port.c smpdetect.c resume.c \
Kevin O'Connor51358db2008-12-28 21:50:29 -050013 pnpbios.c pirtable.c
Kevin O'Connor30853762009-01-17 18:49:20 -050014SRC16=$(SRCBOTH) system.c disk.c apm.c pcibios.c vgahooks.c font.c
Kevin O'Connor9f4e1d92009-02-08 15:44:08 -050015SRC32=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \
Kevin O'Connor7061eb62009-01-04 21:48:22 -050016 acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050017
Kevin O'Connor786502d2008-02-27 10:41:41 -050018cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
19 /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)
20
Kevin O'Connorbdce35f2008-02-26 21:33:14 -050021# Default compiler flags
Kevin O'Connorba2d0df2008-04-13 16:59:03 -040022COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=3 \
Kevin O'Connor03f630e2009-03-26 20:45:36 -040023 -mpreferred-stack-boundary=2 -mrtd -freg-struct-return \
Kevin O'Connorbc28a2b2008-03-11 19:32:38 -040024 -ffreestanding -fwhole-program -fomit-frame-pointer \
Kevin O'Connord9441142009-04-19 23:18:54 -040025 -fno-delete-null-pointer-checks -Wno-strict-aliasing \
26 -minline-all-stringops
Kevin O'Connor786502d2008-02-27 10:41:41 -050027COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
28COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
29COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
30
Kevin O'Connorc43bcba2008-07-30 20:37:13 -040031override CFLAGS = $(COMMONCFLAGS) -g -DMODE16=0
Kevin O'Connor7ab798f2008-07-13 11:08:36 -040032CFLAGS16INC = $(COMMONCFLAGS) -DMODE16=1 -fno-jump-tables -fno-defer-pop \
Kevin O'Connorb49e0582009-04-08 21:25:00 -040033 $(call cc-option,$(CC),-fno-tree-switch-conversion,) \
Kevin O'Connor96462242009-01-01 17:54:16 -050034 $(call cc-option,$(CC),--param large-stack-frame=4,)
Kevin O'Connor202024a2009-01-17 10:41:28 -050035CFLAGS16INC += -ffunction-sections -fdata-sections
Kevin O'Connor410680b2008-03-02 20:48:35 -050036CFLAGS16 = $(CFLAGS16INC) -g
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050037
Kevin O'Connor30853762009-01-17 18:49:20 -050038all: $(OUT) $(OUT)bios.bin
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050039
40# Run with "make V=1" to see the actual compile commands
41ifdef V
42Q=
43else
44Q=@
45endif
46
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050047OBJCOPY=objcopy
Kevin O'Connor202024a2009-01-17 10:41:28 -050048OBJDUMP=objdump
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050049NM=nm
50STRIP=strip
51
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050052.PHONY : all FORCE
53
54vpath %.c src
55vpath %.S src
56
57################ Build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -050058
Kevin O'Connor03f630e2009-03-26 20:45:36 -040059TESTGCC:=$(shell CC=$(CC) tools/test-gcc.sh)
60ifeq "$(TESTGCC)" "-1"
61$(error "Please upgrade GCC")
62endif
63
Kevin O'Connor231f7102009-01-25 16:11:27 -050064ifndef AVOIDCOMBINE
Kevin O'Connor03f630e2009-03-26 20:45:36 -040065AVOIDCOMBINE=$(TESTGCC)
Kevin O'Connor231f7102009-01-25 16:11:27 -050066endif
67
Kevin O'Connor410680b2008-03-02 20:48:35 -050068# Do a whole file compile - two methods are supported. The first
69# involves including all the content textually via #include
70# directives. The second method uses gcc's "-combine" option.
Kevin O'Connor231f7102009-01-25 16:11:27 -050071ifeq "$(AVOIDCOMBINE)" "1"
Kevin O'Connor410680b2008-03-02 20:48:35 -050072define whole-compile
73@echo " Compiling whole program $3"
Kevin O'Connor86cebee2008-11-06 18:57:10 -050074$(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
Kevin O'Connor410680b2008-03-02 20:48:35 -050075$(Q)$(CC) $1 -c $3.tmp.c -o $3
76endef
77else
Kevin O'Connor410680b2008-03-02 20:48:35 -050078define whole-compile
79@echo " Compiling whole program $3"
80$(Q)$(CC) $1 -combine -c $2 -o $3
81endef
82endif
83
84
Kevin O'Connor30853762009-01-17 18:49:20 -050085$(OUT)%.s: %.c
Kevin O'Connor9e821222008-12-06 18:56:19 -050086 @echo " Compiling to assembler $@"
Kevin O'Connor30853762009-01-17 18:49:20 -050087 $(Q)$(CC) $(CFLAGS16INC) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050088
89$(OUT)%.lds: %.lds.S
Kevin O'Connor9e821222008-12-06 18:56:19 -050090 @echo " Precompiling $@"
Kevin O'Connord9a8b2d2008-11-16 09:17:02 -050091 $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050092
Kevin O'Connor30853762009-01-17 18:49:20 -050093$(OUT)asm-offsets.h: $(OUT)asm-offsets.s
Kevin O'Connor952974e2008-11-16 18:14:33 -050094 @echo " Generating offset file $@"
95 $(Q)./tools/gen-offsets.sh $< $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050096
Kevin O'Connor9e821222008-12-06 18:56:19 -050097$(OUT)ccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050098
Kevin O'Connor30853762009-01-17 18:49:20 -050099$(OUT)romlayout16.o: romlayout.S $(OUT)ccode.16.s $(OUT)asm-offsets.h
Kevin O'Connor9e821222008-12-06 18:56:19 -0500100 @echo " Compiling (16bit) $@"
101 $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500102
Kevin O'Connor9e821222008-12-06 18:56:19 -0500103$(OUT)ccode32.o: ; $(call whole-compile, $(CFLAGS), $(addprefix src/, $(SRC32)),$@)
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400104
Kevin O'Connor9e821222008-12-06 18:56:19 -0500105$(OUT)rom32.o: $(OUT)ccode32.o $(OUT)rombios32.lds
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400106 @echo " Linking (no relocs) $@"
Kevin O'Connor7cf17f22009-04-08 21:10:08 -0400107 $(Q)$(LD) -r -T $(OUT)rombios32.lds $< -o $@
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400108
Kevin O'Connor202024a2009-01-17 10:41:28 -0500109$(OUT)romlayout.lds: $(OUT)romlayout16.o
110 @echo " Building layout information $@"
Kevin O'Connor711ddc62009-01-17 15:17:34 -0500111 $(Q)$(OBJDUMP) -h $< | ./tools/layoutrom.py $@
Kevin O'Connor202024a2009-01-17 10:41:28 -0500112
113$(OUT)rombios16.lds: $(OUT)romlayout.lds
114
Kevin O'Connord2899772008-07-06 09:56:14 -0400115$(OUT)rom16.o: $(OUT)romlayout16.o $(OUT)rom32.o $(OUT)rombios16.lds
Kevin O'Connor9e821222008-12-06 18:56:19 -0500116 @echo " Linking (16bit) $@"
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500117 $(Q)$(OBJCOPY) --prefix-symbols=_code32_ $(OUT)rom32.o $(OUT)rom32.rename.o
118 $(Q)$(LD) -T $(OUT)rombios16.lds -R $(OUT)rom32.rename.o $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500119
Kevin O'Connord2899772008-07-06 09:56:14 -0400120$(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32.o $(OUT)rombios.lds
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500121 @echo " Linking $@"
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500122 $(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.o $(OUT)rom32.o -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500123
Kevin O'Connord2899772008-07-06 09:56:14 -0400124$(OUT)bios.bin.elf: $(OUT)rom.o
Kevin O'Connor9bcc5272008-07-05 21:08:56 -0400125 @echo " Prepping $@"
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500126 $(Q)$(NM) $< | ./tools/checkrom.py
127 $(Q)$(STRIP) $< -o $@
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400128
129$(OUT)bios.bin: $(OUT)bios.bin.elf
130 @echo " Extracting binary $@"
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500131 $(Q)$(OBJCOPY) -O binary $< $@
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400132
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500133
134####### Generic rules
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500135clean:
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500136 $(Q)rm -rf $(OUT)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500137
138$(OUT):
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500139 $(Q)mkdir $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500140
141-include $(OUT)*.d