blob: b71d1a195edeab8bfda4f803ea29600a8dfb12f5 [file] [log] [blame]
Kevin O'Connor14458432009-05-23 18:21:18 -04001# SeaBIOS build system
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05002#
Kevin O'Connor14458432009-05-23 18:21:18 -04003# Copyright (C) 2008,2009 Kevin O'Connor <kevin@koconnor.net>
Kevin O'Connorf076a3e2008-02-25 22:25:15 -05004#
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
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -04007# Program version
Kevin O'Connora2195e42009-12-19 10:51:29 -05008VERSION=pre-0.5.1-$(shell date +"%Y%m%d_%H%M%S")-$(shell hostname)
Kevin O'Connorc95d2ce2009-07-29 20:41:39 -04009
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050010# Output directory
11OUT=out/
12
13# Source files
Kevin O'Connorad901592009-12-13 11:25:25 -050014SRCBOTH=misc.c pmm.c stacks.c output.c util.c block.c floppy.c ata.c mouse.c \
Kevin O'Connor3a337b22009-11-03 19:50:52 -050015 kbd.c pci.c serial.c clock.c pic.c cdrom.c ps2port.c smp.c resume.c \
Kevin O'Connor871e0a02009-12-30 12:14:53 -050016 pnpbios.c pirtable.c vgahooks.c ramdisk.c pcibios.c \
Kevin O'Connor59f02832009-10-12 10:09:15 -040017 usb.c usb-uhci.c usb-ohci.c usb-hid.c paravirt.c
Kevin O'Connor871e0a02009-12-30 12:14:53 -050018SRC16=$(SRCBOTH) system.c disk.c apm.c font.c
Kevin O'Connor52a300f2009-12-26 23:32:57 -050019SRC32FLAT=$(SRCBOTH) post.c shadow.c memmap.c coreboot.c boot.c \
Kevin O'Connor592323f2009-04-26 23:17:49 -040020 acpi.c smm.c mptable.c smbios.c pciinit.c optionroms.c mtrr.c \
21 lzmadecode.c
Kevin O'Connor871e0a02009-12-30 12:14:53 -050022SRC32SEG=util.c output.c pci.c pcibios.c
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050023
Kevin O'Connor786502d2008-02-27 10:41:41 -050024cc-option = $(shell if test -z "`$(1) $(2) -S -o /dev/null -xc \
25 /dev/null 2>&1`"; then echo "$(2)"; else echo "$(3)"; fi ;)
26
Kevin O'Connorbdce35f2008-02-26 21:33:14 -050027# Default compiler flags
Kevin O'Connorba2d0df2008-04-13 16:59:03 -040028COMMONCFLAGS = -Wall -Os -MD -m32 -march=i386 -mregparm=3 \
Kevin O'Connor03f630e2009-03-26 20:45:36 -040029 -mpreferred-stack-boundary=2 -mrtd -freg-struct-return \
Kevin O'Connor942d4952009-06-10 22:44:06 -040030 -ffreestanding -fomit-frame-pointer \
Kevin O'Connord9441142009-04-19 23:18:54 -040031 -fno-delete-null-pointer-checks -Wno-strict-aliasing \
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040032 -ffunction-sections -fdata-sections -fno-common \
Kevin O'Connord9441142009-04-19 23:18:54 -040033 -minline-all-stringops
Kevin O'Connor786502d2008-02-27 10:41:41 -050034COMMONCFLAGS += $(call cc-option,$(CC),-nopie,)
35COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector,)
36COMMONCFLAGS += $(call cc-option,$(CC),-fno-stack-protector-all,)
37
Kevin O'Connor871e0a02009-12-30 12:14:53 -050038CFLAGS32FLAT = $(COMMONCFLAGS) -g -DMODE16=0 -DMODESEGMENT=0
39CFLAGSSEG = $(COMMONCFLAGS) -DMODESEGMENT=1 -fno-defer-pop \
40 $(call cc-option,$(CC),-fno-jump-tables,-DMANUAL_NO_JUMP_TABLE) \
41 $(call cc-option,$(CC),-fno-tree-switch-conversion,)
42CFLAGS32SEG = $(CFLAGSSEG) -DMODE16=0 -g
43CFLAGS16INC = $(CFLAGSSEG) -DMODE16=1 \
Kevin O'Connor96462242009-01-01 17:54:16 -050044 $(call cc-option,$(CC),--param large-stack-frame=4,)
Kevin O'Connor410680b2008-03-02 20:48:35 -050045CFLAGS16 = $(CFLAGS16INC) -g
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050046
Kevin O'Connor30853762009-01-17 18:49:20 -050047all: $(OUT) $(OUT)bios.bin
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050048
49# Run with "make V=1" to see the actual compile commands
50ifdef V
51Q=
52else
53Q=@
54endif
55
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050056OBJCOPY=objcopy
Kevin O'Connor202024a2009-01-17 10:41:28 -050057OBJDUMP=objdump
Kevin O'Connor2fc90bd2008-11-07 21:42:00 -050058STRIP=strip
59
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050060.PHONY : all FORCE
61
Kevin O'Connor1f2c3072009-05-06 23:35:59 -040062vpath %.c src vgasrc
63vpath %.S src vgasrc
Kevin O'Connorf076a3e2008-02-25 22:25:15 -050064
65################ Build rules
Kevin O'Connor410680b2008-03-02 20:48:35 -050066
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040067# Verify the gcc configuration and test if -fwhole-program works.
Kevin O'Connor03f630e2009-03-26 20:45:36 -040068TESTGCC:=$(shell CC=$(CC) tools/test-gcc.sh)
69ifeq "$(TESTGCC)" "-1"
70$(error "Please upgrade GCC")
71endif
72
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040073ifndef COMPSTRAT
74COMPSTRAT=$(TESTGCC)
Kevin O'Connor231f7102009-01-25 16:11:27 -050075endif
76
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040077# Do a whole file compile - three methods are supported.
78ifeq "$(COMPSTRAT)" "1"
79# First method - use -fwhole-program without -combine.
80define whole-compile
81@echo " Compiling whole program $3"
82$(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
83$(Q)$(CC) $1 -fwhole-program -DWHOLE_PROGRAM -c $3.tmp.c -o $3
84endef
Kevin O'Connord82a1ca2009-06-17 20:33:41 -040085else
86ifeq "$(COMPSTRAT)" "2"
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040087# Second menthod - don't use -fwhole-program at all.
Kevin O'Connor410680b2008-03-02 20:48:35 -050088define whole-compile
89@echo " Compiling whole program $3"
Kevin O'Connor86cebee2008-11-06 18:57:10 -050090$(Q)printf '$(foreach i,$2,#include "../$i"\n)' > $3.tmp.c
Kevin O'Connor410680b2008-03-02 20:48:35 -050091$(Q)$(CC) $1 -c $3.tmp.c -o $3
92endef
93else
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040094# Third (and preferred) method - use -fwhole-program with -combine
Kevin O'Connor410680b2008-03-02 20:48:35 -050095define whole-compile
96@echo " Compiling whole program $3"
Kevin O'Connor0942e7f2009-06-15 22:27:01 -040097$(Q)$(CC) $1 -fwhole-program -DWHOLE_PROGRAM -combine -c $2 -o $3
Kevin O'Connor410680b2008-03-02 20:48:35 -050098endef
99endif
Kevin O'Connord82a1ca2009-06-17 20:33:41 -0400100endif
Kevin O'Connor410680b2008-03-02 20:48:35 -0500101
102
Kevin O'Connor30853762009-01-17 18:49:20 -0500103$(OUT)%.s: %.c
Kevin O'Connor9e821222008-12-06 18:56:19 -0500104 @echo " Compiling to assembler $@"
Kevin O'Connor30853762009-01-17 18:49:20 -0500105 $(Q)$(CC) $(CFLAGS16INC) -S -c $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500106
107$(OUT)%.lds: %.lds.S
Kevin O'Connor9e821222008-12-06 18:56:19 -0500108 @echo " Precompiling $@"
Kevin O'Connord9a8b2d2008-11-16 09:17:02 -0500109 $(Q)$(CPP) -P -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500110
Kevin O'Connor30853762009-01-17 18:49:20 -0500111$(OUT)asm-offsets.h: $(OUT)asm-offsets.s
Kevin O'Connor952974e2008-11-16 18:14:33 -0500112 @echo " Generating offset file $@"
113 $(Q)./tools/gen-offsets.sh $< $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500114
Kevin O'Connore6caca82009-07-13 20:31:35 -0400115
Kevin O'Connor9e821222008-12-06 18:56:19 -0500116$(OUT)ccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S, $(addprefix src/, $(SRC16)),$@)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500117
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500118$(OUT)code32seg.o: ; $(call whole-compile, $(CFLAGS32SEG), $(addprefix src/, $(SRC32SEG)),$@)
119
120$(OUT)ccode32flat.o: ; $(call whole-compile, $(CFLAGS32FLAT), $(addprefix src/, $(SRC32FLAT)),$@)
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400121
Kevin O'Connore6caca82009-07-13 20:31:35 -0400122$(OUT)code16.o: romlayout.S $(OUT)ccode.16.s $(OUT)asm-offsets.h
Kevin O'Connor9e821222008-12-06 18:56:19 -0500123 @echo " Compiling (16bit) $@"
124 $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500125
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500126$(OUT)romlayout16.lds $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds $(OUT)code32flat.o: $(OUT)ccode32flat.o $(OUT)code32seg.o $(OUT)code16.o tools/layoutrom.py
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400127 @echo " Building ld scripts (version \"$(VERSION)\")"
128 $(Q)echo 'const char VERSION[] = "$(VERSION)";' > $(OUT)version.c
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500129 $(Q)$(CC) $(CFLAGS32FLAT) -c $(OUT)version.c -o $(OUT)version.o
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500130 $(Q)$(LD) -melf_i386 -r $(OUT)ccode32flat.o $(OUT)version.o -o $(OUT)code32flat.o
131 $(Q)$(OBJDUMP) -thr $(OUT)code32flat.o > $(OUT)code32flat.o.objdump
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500132 $(Q)$(OBJDUMP) -thr $(OUT)code32seg.o > $(OUT)code32seg.o.objdump
Kevin O'Connore6caca82009-07-13 20:31:35 -0400133 $(Q)$(OBJDUMP) -thr $(OUT)code16.o > $(OUT)code16.o.objdump
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500134 $(Q)./tools/layoutrom.py $(OUT)code16.o.objdump $(OUT)code32seg.o.objdump $(OUT)code32flat.o.objdump $(OUT)romlayout16.lds $(OUT)romlayout32seg.lds $(OUT)romlayout32flat.lds
Kevin O'Connor202024a2009-01-17 10:41:28 -0500135
Kevin O'Connor202024a2009-01-17 10:41:28 -0500136
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500137$(OUT)rom16.o: $(OUT)code16.o $(OUT)rom32flat.o $(OUT)romlayout16.lds
Kevin O'Connor14458432009-05-23 18:21:18 -0400138 @echo " Linking (no relocs) $@"
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400139 $(Q)$(LD) -r -T $(OUT)romlayout16.lds $< -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500140
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500141$(OUT)rom32seg.o: $(OUT)code32seg.o $(OUT)romlayout32seg.lds
142 @echo " Linking (no relocs) $@"
143 $(Q)$(LD) -r -T $(OUT)romlayout32seg.lds $< -o $@
144
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500145$(OUT)rom32flat.o: $(OUT)code32flat.o $(OUT)romlayout32flat.lds
Kevin O'Connore6caca82009-07-13 20:31:35 -0400146 @echo " Linking (no relocs) $@"
Kevin O'Connor52a300f2009-12-26 23:32:57 -0500147 $(Q)$(LD) -r -T $(OUT)romlayout32flat.lds $< -o $@
Kevin O'Connore6caca82009-07-13 20:31:35 -0400148
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500149$(OUT)rom.o: $(OUT)rom16.o $(OUT)rom32seg.o $(OUT)rom32flat.o $(OUT)rombios16.lds $(OUT)rombios32seg.lds $(OUT)rombios.lds
Kevin O'Connor114592f2009-09-28 21:32:08 -0400150 @echo " Linking $@"
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500151 $(Q)$(LD) -T $(OUT)rombios16.lds $(OUT)rom16.o -R $(OUT)rom32seg.o -R $(OUT)rom32flat.o -o $(OUT)rom16.reloc.o
Kevin O'Connor7173f6f2009-05-27 22:23:33 -0400152 $(Q)$(STRIP) $(OUT)rom16.reloc.o -o $(OUT)rom16.final.o
Kevin O'Connor5c3f5dd2009-06-22 20:05:56 -0400153 $(Q)$(OBJCOPY) --adjust-vma 0xf0000 $(OUT)rom16.o $(OUT)rom16.moved.o
Kevin O'Connor871e0a02009-12-30 12:14:53 -0500154 $(Q)$(LD) -T $(OUT)rombios32seg.lds $(OUT)rom32seg.o -R $(OUT)rom16.o -R $(OUT)rom32flat.o -o $(OUT)rom32seg.reloc.o
155 $(Q)$(STRIP) $(OUT)rom32seg.reloc.o -o $(OUT)rom32seg.final.o
156 $(Q)$(OBJCOPY) --adjust-vma 0xf0000 $(OUT)rom32seg.o $(OUT)rom32seg.moved.o
157 $(Q)$(LD) -T $(OUT)rombios.lds $(OUT)rom16.final.o $(OUT)rom32seg.final.o $(OUT)rom32flat.o -R $(OUT)rom16.moved.o -R $(OUT)rom32seg.moved.o -o $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500158
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400159$(OUT)bios.bin.elf $(OUT)bios.bin: $(OUT)rom.o tools/checkrom.py
Kevin O'Connor9bcc5272008-07-05 21:08:56 -0400160 @echo " Prepping $@"
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400161 $(Q)$(OBJDUMP) -thr $< > $<.objdump
162 $(Q)$(OBJCOPY) -O binary $< $(OUT)bios.bin.raw
163 $(Q)./tools/checkrom.py $<.objdump $(OUT)bios.bin.raw $(OUT)bios.bin
Kevin O'Connor3a337b22009-11-03 19:50:52 -0500164 $(Q)$(STRIP) -R .comment $< -o $(OUT)bios.bin.elf
Kevin O'Connor2fda7cb2008-07-05 20:41:53 -0400165
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500166
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400167################ VGA build rules
168
169# VGA src files
Kevin O'Connor8d8e0942009-05-17 21:14:46 -0400170SRCVGA=src/output.c src/util.c vgasrc/vga.c vgasrc/vgafb.c vgasrc/vgaio.c \
171 vgasrc/vgatables.c vgasrc/vgafonts.c vgasrc/clext.c
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400172
173$(OUT)vgaccode.16.s: ; $(call whole-compile, $(CFLAGS16) -S -Isrc, $(SRCVGA),$@)
174
175$(OUT)vgalayout16.o: vgaentry.S $(OUT)vgaccode.16.s $(OUT)asm-offsets.h
176 @echo " Compiling (16bit) $@"
177 $(Q)$(CC) $(CFLAGS16INC) -c -D__ASSEMBLY__ -Isrc $< -o $@
178
179$(OUT)vgarom.o: $(OUT)vgalayout16.o $(OUT)vgalayout.lds
180 @echo " Linking $@"
Kevin O'Connorc0693942009-06-10 21:56:01 -0400181 $(Q)$(LD) --gc-sections -T $(OUT)vgalayout.lds $(OUT)vgalayout16.o -o $@
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400182
183$(OUT)vgabios.bin.raw: $(OUT)vgarom.o
184 @echo " Extracting binary $@"
185 $(Q)$(OBJCOPY) -O binary $< $@
186
Kevin O'Connor5b8f8092009-09-20 19:47:45 -0400187$(OUT)vgabios.bin: $(OUT)vgabios.bin.raw tools/buildrom.py
Kevin O'Connor1f2c3072009-05-06 23:35:59 -0400188 @echo " Finalizing rom $@"
189 $(Q)./tools/buildrom.py $< $@
190
Kevin O'Connord91f9d42009-10-08 21:57:15 -0400191####### dsdt build rules
192src/acpi-dsdt.hex: src/acpi-dsdt.dsl
193 @echo "Compiling DSDT"
194 $(Q)cpp -P $< > $(OUT)acpi-dsdt.dsl.i
195 $(Q)iasl -tc -p $@ $(OUT)acpi-dsdt.dsl.i
196 $(Q)rm $(OUT)acpi-dsdt.dsl.i
197
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500198####### Generic rules
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500199clean:
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500200 $(Q)rm -rf $(OUT)
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500201
202$(OUT):
Kevin O'Connor86cebee2008-11-06 18:57:10 -0500203 $(Q)mkdir $@
Kevin O'Connorf076a3e2008-02-25 22:25:15 -0500204
205-include $(OUT)*.d