new config rules

git-svn-id: svn://svn.coreboot.org/coreboot/trunk@960 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Greg Watson 2003-07-14 18:00:10 +00:00
parent 68f9b1b135
commit 109959d6b1
6 changed files with 314 additions and 75 deletions

View File

@ -1,3 +1,45 @@
init config/crt0.base
ldscript config/ldscript.lb
makerule all
depends "romimage"
end
makerule floppy
depends "all"
action "mcopy -o romimage a:"
end
makerule romimage
depends "linuxbios.rom payload.block"
action "cat payload.block linuxbios.rom > romimage"
end
makerule nrv2b
depends "$(TOP)/util/nrv2b/nrv2b.c"
action "$(HOSTCC) -O2 -DENCODE -DDECODE -DMAIN -DVERBOSE -DNDEBUG -DBITSIZE=32 -DENDIAN=0 $< -o $@"
end
makerule linuxbios.rom
depends "linuxbios.strip buildrom"
action "./buildrom $< $@ $(PAYLOAD) $(ROM_IMAGE_SIZE) $(ROM_SIZE)"
#action "export size=`ls -l linuxbios.strip | (read p c u g size r ; echo $$size)` ; \\"
#action "echo $$size ; \\"
#action "dd if=linuxbios.strip of=linuxbios.rom bs=1 seek=`expr $(ROM_IMAGE_SIZE) - $$size`"
end
#makerule payload.block
# depends "$(if $(PAYLOAD),$(PAYLOAD), /dev/null)"
# action "perl -e '@stats=stat(\"$<\"); $$sz=$$stats[7]; print "\xff" x ($(PAYLOAD_SIZE) - $$sz);' | cat $< - > $@"
#end
makerule crt0.S
depends "$(CRT0)"
action "cp $< $@"
end
addaction clean "rm -f romimage payload.*"
dir lib dir lib
dir boot dir boot
dir smp dir smp

View File

@ -12,18 +12,36 @@ makedefine CFLAGS := $(CPU_OPT) $(CPPFLAGS) -Os -nostdinc -nostdlib -fno-builtin
makedefine HOSTCFLAGS:= -Os -Wall makedefine HOSTCFLAGS:= -Os -Wall
makerule ldscript.ld dep "ldoptions $(LDSUBSCRIPTS-1)" act " echo \"INCLUDE ldoptions\" > $@ ; for file in $(LDSUBSCRIPTS-1) ; do echo \"INCLUDE $$file\" >> $@ ; done" makerule ldscript.ld
depends "ldoptions $(LDSUBSCRIPTS-1)"
action "echo \"INCLUDE ldoptions\" > $@ ; for file in $(LDSUBSCRIPTS-1) ; do echo \"INCLUDE $$file\" >> $@ ; done"
end
makerule cpuflags dep "Makefile.settings" act " perl -e 'print \"CPUFLAGS :=\n\"; foreach $$var (split(\" \", $$ENV{VARIABLES})) { if (exists($$ENV{$$var})) { print \"CPUFLAGS += -D$$var\" . (length($$ENV{$$var})?\"=\x27$$ENV{$$var}\x27\":\"\") .\"\n\"} else { print \"CPUFLAGS += -U$$var\n\"} }' > $@" #makerule cpuflags
# depends "Makefile.settings"
# action "perl -e 'print \"CPUFLAGS :=\n\"; foreach $$var (split(\" \", $$ENV{VARIABLES})) { if (exists($$ENV{$$var})) { print \"CPUFLAGS += -D$$var\" . (length($$ENV{$$var})?\"=\x27$$ENV{$$var}\x27\":\"\") .\"\n\"} else { print \"CPUFLAGS += -U$$var\n\"} }' > $@"
#end
makerule ldoptions dep "Makefile.settings" act " perl -e 'foreach $$var (split(\" \", $$ENV{VARIABLES})) { if ($$ENV{$$var} =~ m/^(0x[0-9a-fA-F]+|0[0-7]+|[0-9]+)$$/) { print \"$$var = $$ENV{$$var};\n\"; }}' > $@" #makerule ldoptions
# depends "Makefile.settings"
# action "perl -e 'foreach $$var (split(\" \", $$ENV{VARIABLES})) { if ($$ENV{$$var} =~ m/^(0x[0-9a-fA-F]+|0[0-7]+|[0-9]+)$$/) { print \"$$var = $$ENV{$$var};\n\"; }}' > $@"
#end
makerule linuxbios.strip dep "linuxbios" act " $(OBJCOPY) -O binary linuxbios linuxbios.strip" makerule linuxbios.strip
depends "linuxbios"
action "$(OBJCOPY) -O binary linuxbios linuxbios.strip"
end
makerule linuxbios_c.o
depends "$(DRIVER) linuxbios.a $(LIBGCC_FILE_NAME)"
action "$(CC) -nostdlib -r -o $@ c_start.o $(DRIVER) linuxbios.a $(LIBGCC_FILE_NAME)"
end
makerule linuxbios_c.o dep "$(DRIVER) linuxbios.a $(LIBGCC_FILE_NAME)" act " $(CC) -nostdlib -r -o $@ c_start.o $(DRIVER) linuxbios.a $(LIBGCC_FILE_NAME)" makerule linuxbios_c
depends "linuxbios_c.o $(TOP)/src/config/linuxbios_c.ld ldoptions"
makerule linuxbios_c dep "linuxbios_c.o $(TOP)/src/config/linuxbios_c.ld ldoptions" act " $(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_c.ld linuxbios_c.o" action "$(CC) -nostdlib -nostartfiles -static -o $@ -T $(TOP)/src/config/linuxbios_c.ld linuxbios_c.o"
action "$(CROSS_COMPILE)nm -n linuxbios_c | sort > linuxbios_c.map"
end
## ##
## By default compress the C part of linuxbios ## By default compress the C part of linuxbios
@ -31,53 +49,110 @@ makerule linuxbios_c dep "linuxbios_c.o $(TOP)/src/config/linuxbios_c.ld ldopti
makedefine LINUXBIOS_PAYLOAD-$(CONFIG_COMPRESS):=linuxbios_payload.nrv2b makedefine LINUXBIOS_PAYLOAD-$(CONFIG_COMPRESS):=linuxbios_payload.nrv2b
makedefine LINUXBIOS_PAYLOAD-$(CONFIG_UNCOMPRESSED):=linuxbios_payload.bin makedefine LINUXBIOS_PAYLOAD-$(CONFIG_UNCOMPRESSED):=linuxbios_payload.bin
addaction linuxbios_c "$(CROSS_COMPILE)nm -n linuxbios_c | sort > linuxbios_c.map" makerule linuxbios_payload.bin
makerule linuxbios_payload.bin dep "linuxbios_c" act " $(OBJCOPY) -O binary $< $@" depends "linuxbios_c"
makerule linuxbios_payload.nrv2b dep " linuxbios_payload.bin nrv2b" act " ./nrv2b e $< $@" action "$(OBJCOPY) -O binary $< $@"
makerule linuxbios_payload dep "$(LINUXBIOS_PAYLOAD-1) " act "cp $(LINUXBIOS_PAYLOAD-1) linuxbios_payload" end
makerule linuxbios dep "crt0.o linuxbios_payload ldscript.ld " act "$(CC) -nostdlib -nostartfiles -static -o $@ -T ldscript.ld crt0.o"
addaction linuxbios "$(CROSS_COMPILE)nm -n linuxbios | sort > linuxbios.map"
makerule linuxbios.a dep "$(OBJECTS-1) " act "rm -f linuxbios.a" makerule linuxbios_payload.nrv2b
addaction linuxbios.a "ar cr linuxbios.a $(OBJECTS-1)" depends "linuxbios_payload.bin nrv2b"
action "./nrv2b e $< $@"
end
makerule crt0.S dep "$(CRT0) " act "cp $< $@" makerule linuxbios_payload
depends "$(LINUXBIOS_PAYLOAD-1)"
action "cp $(LINUXBIOS_PAYLOAD-1) linuxbios_payload"
end
makerule linuxbios
depends "crt0.o linuxbios_payload ldscript.ld"
action "$(CC) -nostdlib -nostartfiles -static -o $@ -T ldscript.ld crt0.o"
action "$(CROSS_COMPILE)nm -n linuxbios | sort > linuxbios.map"
end
makerule linuxbios.a
depends "$(OBJECTS-1)"
action "rm -f linuxbios.a"
action "ar cr linuxbios.a $(OBJECTS-1)"
end
#makerule crt0.S
# depends "$(CRT0)"
# action "cp $< $@"
#end
# the buildrom tool # the buildrom tool
makerule buildrom dep "$(TOP)/util/buildrom/buildrom.c" act "$(CC) -o $@ $<" makerule buildrom
depends "$(TOP)/util/buildrom/buildrom.c"
action "$(HOSTCC) -o $@ $<"
end
# Force crt0.s (which has build time version code in it to rebuild every time) # Force crt0.s (which has build time version code in it to rebuild every time)
makedefine .PHONY : crt0.s makedefine .PHONY : crt0.s
makerule crt0.s dep "crt0.S crt0_includes.h $(CRT0_INCLUDES) " act "@echo \"$(CPP) ... $< > $@ \"" makerule crt0.s
addaction crt0.s "$(CPP) $(CPPFLAGS) -I. -I$(TOP)/src $< > $@.new && mv $@.new $@ " depends "crt0.S $(CRT0_INCLUDES)"
action "@echo \"$(CPP) ... $< > $@ \""
action "$(CPP) $(CPPFLAGS) -I. -I$(TOP)/src $< > $@.new && mv $@.new $@"
end
makerule crt0.o dep "crt0.s " act "@echo $(CC) ... -o $@ $<" makerule crt0.o
addaction crt0.o "@$(CC) -c $(CPU_OPT) -o $@ $<" depends "crt0.s $(INIT-OBJECTS)"
action "@echo $(CC) ... -o $@ $<"
action "@$(CC) -c $(CPU_OPT) -o $@ $< $(INIT-OBJECTS)"
end
makerule etags
depends "$(SOURCES)"
action "etags $(SOURCES)"
end
makerule tags
depends "$(SOURCES)"
action "ctags $(SOURCES)"
end
makerule documentation
depends "$(SOURCES)"
action "doxygen LinuxBIOSDoc.config"
end
makerule etags dep "$(SOURCES) " act "etags $(SOURCES)" makerule ./romcc
makerule tags dep "$(SOURCES) " act "ctags $(SOURCES)" depends "$(TOP)/util/romcc/romcc.c"
makerule documentation dep "$(SOURCES) " act "doxygen LinuxBIOSDoc.config " action "$(HOSTCC) -g $(HOSTCFLAGS) -DVERSION='\"0.21\"' -DRELEASE_DATE='\"7 april 2003\"' $< -o $@"
end
makerule ./romcc dep "$(TOP)/util/romcc/romcc.c " act "$(HOSTCC) -g $(HOSTCFLAGS) -DVERSION='\"0.21\"' -DRELEASE_DATE='\"7 april 2003\"' $< -o $@" makerule build_opt_tbl
makerule build_opt_tbl dep "$(TOP)/util/options/build_opt_tbl.c $(TOP)/src/include/pc80/mc146818rtc.h $(TOP)/src/include/boot/linuxbios_tables.h " act "$(HOSTCC) $(HOSTCFLAGS) $< -o $@" depends "$(TOP)/util/options/build_opt_tbl.c $(TOP)/src/include/pc80/mc146818rtc.h $(TOP)/src/include/boot/linuxbios_tables.h"
action "$(HOSTCC) $(HOSTCFLAGS) $< -o $@"
end
#makerule /$(TARGET_DIR)/option_table.c dep "build_opt_tbl $(MAINBOARD)/cmos.layout " act "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout " #makerule /$(TARGET_DIR)/option_table.c
makerule option_table.c dep "build_opt_tbl $(MAINBOARD)/cmos.layout " act "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout " # depends "build_opt_tbl $(MAINBOARD)/cmos.layout"
# action "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout"
#end
makerule option_table.c
depends "build_opt_tbl $(MAINBOARD)/cmos.layout"
action "./build_opt_tbl -b --config $(MAINBOARD)/cmos.layout"
end
if HAVE_OPTION_TABLE if HAVE_OPTION_TABLE
object ./option_table.o object ./option_table.o
#special rule #special rule
#makerule option_table.o dep "option_table.c" act "$(CC) -c $(CFLAGS) -o $@ $<" #makerule option_table.o
# depends "option_table.c"
# action "$(CC) -c $(CFLAGS) -o $@ $<"
#end
# object option_table.o # object option_table.o
end end
makerule clean act "rm -f linuxbios.* *~" makerule clean
addaction clean "rm -f linuxbios " action "rm -f linuxbios.* *~"
addaction clean "rm -f ldoptions cpuflags ldscript.ld" action "rm -f linuxbios"
addaction clean "rm -f a.out *.s *.l *.o" action "rm -f ldscript.ld"
addaction clean "rm -f TAGS tags" action "rm -f a.out *.s *.l *.o"
addaction clean "rm -f docipl" action "rm -f TAGS tags"
addaction clean "rm -f build_opt_tbl option_table.c crt0.S" action "rm -f docipl"
action "rm -f build_opt_tbl option_table.c crt0.S"
end
# do standard config files that the user need not specify # do standard config files that the user need not specify
# for now, this is just 'lib', but it may be more later. # for now, this is just 'lib', but it may be more later.

View File

@ -102,7 +102,7 @@ define CC
comment "Target C Compiler" comment "Target C Compiler"
end end
define HOSTCC define HOSTCC
default "$(CROSS_COMPILE)gcc" default "gcc"
export always export always
comment "Host C Compiler" comment "Host C Compiler"
end end

View File

@ -107,8 +107,14 @@ if USE_FALLBACK_IMAGE mainboardinit arch/i386/lib/noop_failover.inc end
#makerule ./failover.E dep "$(MAINBOARD)/failover.c" act "$(CPP) -I$(TOP)/src $(CPPFLAGS) $(MAINBOARD)/failover.c > ./failever.E" #makerule ./failover.E dep "$(MAINBOARD)/failover.c" act "$(CPP) -I$(TOP)/src $(CPPFLAGS) $(MAINBOARD)/failover.c > ./failever.E"
#makerule ./failover.inc dep "./romcc ./failover.E" act "./romcc -O ./failover.E > failover.inc" #makerule ./failover.inc dep "./romcc ./failover.E" act "./romcc -O ./failover.E > failover.inc"
#mainboardinit .failover.inc #mainboardinit .failover.inc
makerule ./auto.E dep "$(MAINBOARD)/auto.c" act "$(CPP) -I$(TOP)/src -$(ROMCCPPFLAGS) $(CPPFLAGS) $(MAINBOARD)/auto.c > ./auto.E" makerule ./auto.E
makerule ./auto.inc dep "./romcc ./auto.E" act "./romcc -O ./auto.E > auto.inc" depends "$(MAINBOARD)/auto.c"
action "$(CPP) -I$(TOP)/src -$(ROMCCPPFLAGS) $(CPPFLAGS) $(MAINBOARD)/auto.c > ./auto.E"
end
makerule ./auto.inc
depends "./romcc ./auto.E"
action "./romcc -O ./auto.E > auto.inc"
end
mainboardinit ./auto.inc mainboardinit ./auto.inc
# #
### ###

View File

@ -1,9 +1,6 @@
/* Copyright 2000 AG Electronics Ltd. */ /* Copyright 2000 AG Electronics Ltd. */
/* This code is distributed without warranty under the GPL v2 (see COPYING) */ /* This code is distributed without warranty under the GPL v2 (see COPYING) */
#include <ppc.h>
#include <ppcreg.h>
#include <types.h>
#include <arch/io.h> #include <arch/io.h>
#ifndef PNP_INDEX_REG #ifndef PNP_INDEX_REG

View File

@ -10,6 +10,7 @@ errors = 0
arch = '' arch = ''
ldscriptbase = '' ldscriptbase = ''
payloadfile = '' payloadfile = ''
initfile = ''
# Key is the rule name. Value is a mkrule object. # Key is the rule name. Value is a mkrule object.
makebaserules = {} makebaserules = {}
@ -22,6 +23,7 @@ target_dir = ''
#sources = {} #sources = {}
objectrules = {} objectrules = {}
initobjectrules = {}
# make these a hash so they will be unique. # make these a hash so they will be unique.
driverrules = {} driverrules = {}
ldscripts = [] ldscripts = []
@ -37,12 +39,15 @@ options = {}
# for options. # for options.
options_by_order = [] options_by_order = []
crt0includes = [] crt0includes = []
initincludes = {}
useinitincludes = 0 # transitional
partinstance = 0 partinstance = 0
curdir = '' curdir = ''
dirstack = [] dirstack = []
config_file_list = [] config_file_list = []
local_path = re.compile(r'^\.') local_path = re.compile(r'^\.')
include_pattern = re.compile(r'%%([^%]+)%%')
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# Error Handling # Error Handling
@ -80,6 +85,17 @@ class location:
return self.stack[-1].at() return self.stack[-1].at()
loc = location() loc = location()
class initinclude:
def __init__ (self, str, path):
self.string = str
self.path = path
def getstring(self):
return self.string
def getpath(self):
return self.path
class makerule: class makerule:
def __init__ (self, target): def __init__ (self, target):
self.target = target self.target = target
@ -310,9 +326,10 @@ class partobj:
if (o == 0): if (o == 0):
fatal("Error: can't use undefined option %s" % name) fatal("Error: can't use undefined option %s" % name)
o.setused() o.setused()
o1 = getvalue(self.options, name)
if (o1):
return
setvalue(self.options, name, o) setvalue(self.options, name, o)
if (debug):
print "option %s used in %s " % (name, self)
class partsstack: class partsstack:
def __init__ (self): def __init__ (self):
@ -551,20 +568,30 @@ def loadoptions():
fatal("Error: Could not parse file") fatal("Error: Could not parse file")
loc.pop_file() loc.pop_file()
def addinit(path):
global initfile
if (path[0] == '/'):
initfile = treetop + '/src/' + path
else:
initfile = curdir + '/' + path
print "Adding init file: %s" % path
# we do the crt0include as a dictionary, so that if needed we # we do the crt0include as a dictionary, so that if needed we
# can trace who added what when. Also it makes the keys # can trace who added what when. Also it makes the keys
# nice and unique. # nice and unique.
def addcrt0include(path): def addcrt0include(path):
global crt0includes global crt0includes
#fullpath = os.path.join(curdir, path)
#fullpath = path
#setvalue(crt0includes, fullpath, loc)
# oh shoot. Order matters. All right, we'll worry about this
# later.
fullpath = path
if (debug > 2): if (debug > 2):
print "ADDCRT0: %s" % fullpath print "ADDCRT0: %s" % path
crt0includes.append(fullpath) crt0includes.append(path)
def addinitinclude(str, path):
global initincludes, useinitincludes
useinitincludes = 1
if (debug > 2):
print "ADDCRT0: %s -> %s" % str, path
o = initinclude(dequote(str), path)
setvalue(initincludes, path, o)
def addldscript(path): def addldscript(path):
global ldscripts global ldscripts
@ -604,6 +631,9 @@ def addobjectdriver(dict, object_name):
print "add object %s source %s" % (object_name, source) print "add object %s source %s" % (object_name, source)
setvalue(dict, base, [object, source]) setvalue(dict, base, [object, source])
def addinitobject(object_name):
addobjectdriver(initobjectrules, object_name)
def addobject(object_name): def addobject(object_name):
addobjectdriver(objectrules, object_name) addobjectdriver(objectrules, object_name)
@ -628,7 +658,7 @@ def part(name, path, file):
dirstack.append(curdir) dirstack.append(curdir)
curdir = os.path.join(treetop, 'src', name, path) curdir = os.path.join(treetop, 'src', name, path)
newpart = partobj(curdir, curpart, name, path) newpart = partobj(curdir, curpart, name, path)
print "Configuring PART %s, path %s\n" % (name,path) print "Configuring PART %s, path %s" % (name,path)
if (debug): if (debug):
print "PUSH part %s %s" % (name, curpart.dir) print "PUSH part %s %s" % (name, curpart.dir)
pstack.push(curpart) pstack.push(curpart)
@ -718,13 +748,19 @@ def flatten_name(str):
def addaction(id, str): def addaction(id, str):
o = getvalue(makebaserules, id) o = getvalue(makebaserules, id)
if (o):
a = dequote(str) a = dequote(str)
o.addaction(a) o.addaction(a)
return
fatal("No such rule \"%s\" for addaction" % id);
def adddep(id, str): def adddep(id, str):
o = getvalue(makebaserules, id) o = getvalue(makebaserules, id)
if (o):
a = dequote(str) a = dequote(str)
o.adddependency(a) o.adddependency(a)
return
fatal("No such rule \"%s\" for adddependency" % id);
# If the first part of <path> matches treetop, replace that part with "$(TOP)" # If the first part of <path> matches treetop, replace that part with "$(TOP)"
def topify(path): def topify(path):
@ -742,7 +778,8 @@ def set_arch(my_arch):
global curdir global curdir
arch = my_arch arch = my_arch
setoption('ARCH', my_arch) setoption('ARCH', my_arch)
part('arch', my_arch, 'config/make.base.lb') #part('arch', my_arch, 'config/make.base.lb')
part('arch', my_arch, 'Config.lb')
def mainboard(path): def mainboard(path):
@ -754,6 +791,7 @@ def mainboard(path):
mainboard_part_number = re.sub("[^/]/", "", path) mainboard_part_number = re.sub("[^/]/", "", path)
setoption('MAINBOARD_VENDOR', vendor) setoption('MAINBOARD_VENDOR', vendor)
setoption('MAINBOARD_PART_NUMBER', mainboard_part_number) setoption('MAINBOARD_PART_NUMBER', mainboard_part_number)
dodir('/config', 'Config.lb')
part('mainboard', path, 'Config.lb') part('mainboard', path, 'Config.lb')
#============================================================================= #=============================================================================
@ -766,7 +804,8 @@ def writemakefileheader(file, fname):
def writemakefilesettings(path): def writemakefilesettings(path):
global treetop, arch, mainboard_dir, target_dir, options_by_order, root global treetop, arch, mainboard_dir, target_dir, root
global options_by_order, options
# Write Makefile.settings to seperate the settings # Write Makefile.settings to seperate the settings
# from the actual makefile creation # from the actual makefile creation
# In practice you need to rerun NLBConfig.py to change # In practice you need to rerun NLBConfig.py to change
@ -801,7 +840,7 @@ def writemakefilesettings(path):
# first, dump all the -D stuff # first, dump all the -D stuff
def writemakefile(path): def writemakefile(path):
global root global root, useinitincludes
makefilepath = os.path.join(path, "Makefile") makefilepath = os.path.join(path, "Makefile")
print "Creating", makefilepath print "Creating", makefilepath
file = open(makefilepath, 'w+') file = open(makefilepath, 'w+')
@ -831,9 +870,17 @@ CPUFLAGS := $(foreach _var_,$(VARIABLES),$(call D_item,$(_var_)))
file.write("all: linuxbios.rom") file.write("all: linuxbios.rom")
# print out all the object dependencies # print out all the object dependencies
file.write("\n# object dependencies (objectrules:)\n") file.write("\n# object dependencies (objectrules:)\n")
file.write("INIT-OBJECTS :=\n")
file.write("OBJECTS :=\n") file.write("OBJECTS :=\n")
file.write("DRIVER :=\n") file.write("DRIVER :=\n")
file.write("\nSOURCES :=\n") file.write("\nSOURCES :=\n")
for irule in initobjectrules.keys():
init = initobjectrules[irule]
i_name = init[0]
i_source = init[1]
file.write("INIT-OBJECTS += %s\n" % (i_name))
file.write("SOURCES += %s\n" % (i_source))
for objrule in objectrules.keys(): for objrule in objectrules.keys():
obj = objectrules[objrule] obj = objectrules[objrule]
obj_name = obj[0] obj_name = obj[0]
@ -857,12 +904,20 @@ CPUFLAGS := $(foreach _var_,$(VARIABLES),$(call D_item,$(_var_)))
# Print out the dependencies for crt0_includes.h # Print out the dependencies for crt0_includes.h
file.write("\n# Dependencies for crt0_includes.h\n") file.write("\n# Dependencies for crt0_includes.h\n")
file.write("CRT0_INCLUDES:=\n") file.write("CRT0_INCLUDES:=\n")
if (useinitincludes):
for inc in initincludes.keys():
if (local_path.match(inc)):
file.write("CRT0_INCLUDES += %s\n" % inc)
else:
file.write("CRT0_INCLUDES += $(TOP)/src/%s\n" % inc)
else:
for i in crt0includes: for i in crt0includes:
if (local_path.match(i)): if (local_path.match(i)):
file.write("CRT0_INCLUDES += %s\n" % i) file.write("CRT0_INCLUDES += %s\n" % i)
else: else:
file.write("CRT0_INCLUDES += $(TOP)/src/%s\n" % i) file.write("CRT0_INCLUDES += $(TOP)/src/%s\n" % i)
# Print out the user defines. # Print out the user defines.
file.write("\n# userdefines:\n") file.write("\n# userdefines:\n")
#for udef in userdefines: #for udef in userdefines:
@ -902,11 +957,14 @@ CPUFLAGS := $(foreach _var_,$(VARIABLES),$(call D_item,$(_var_)))
file.write("GENERATED:=\n") file.write("GENERATED:=\n")
for genfile in [ 'Makefile', for genfile in [ 'Makefile',
'Makefile.settings', 'Makefile.settings',
'crt0_includes.h',
'nsuperio.c', 'nsuperio.c',
'chip.c', 'chip.c',
'LinuxBIOSDoc.config' ]: 'LinuxBIOSDoc.config' ]:
file.write("GENERATED += %s\n" % genfile) file.write("GENERATED += %s\n" % genfile)
if (useinitincludes):
file.write("GENERATED += crt0.S\n")
else:
file.write("GENERATED += crt0_includes.h\n")
file.write("\n# Remake Makefile (and the other files generated by\n") file.write("\n# Remake Makefile (and the other files generated by\n")
file.write("# NLBConfig.py) if any config dependencies change.\n") file.write("# NLBConfig.py) if any config dependencies change.\n")
@ -945,12 +1003,54 @@ def writecrt0_includes(path):
crt0filepath = os.path.join(path, "crt0_includes.h") crt0filepath = os.path.join(path, "crt0_includes.h")
print "Creating", crt0filepath print "Creating", crt0filepath
file = open(crt0filepath, 'w+') file = open(crt0filepath, 'w+')
for i in crt0includes: for i in crt0includes:
file.write("#include <%s>\n" % i) file.write("#include <%s>\n" % i)
file.close() file.close()
def writeinitincludes(path):
global initfile, include_pattern, crt0_includes
crt0filepath = os.path.join(path, "crt0.S")
print "Creating", crt0filepath
infile = open(initfile, 'r')
outfile = open(crt0filepath, 'w+')
line = infile.readline()
while (line):
p = include_pattern.match(line)
if (p):
for i in initincludes.keys():
inc = initincludes[i]
if (inc.getstring() == p.group(1)):
outfile.write("#include \"%s\"\n" % inc.getpath())
else:
outfile.write(line);
line = infile.readline()
infile.close()
outfile.close()
def writeldoptions(path):
global options
# Write Makefile.settings to seperate the settings
# from the actual makefile creation
# In practice you need to rerun NLBConfig.py to change
# these but in theory you shouldn't need to.
filename = os.path.join(path, "ldoptions")
print "Creating", filename
file = open(filename, 'w+')
for i in options.keys():
if (isexported(i, 0) and IsInt(getoption(i, 0))):
file.write("%s = %s;\n" % (i, getformated(i, 0)))
file.close()
# Add any run-time checks to verify that parsing the configuration
# was successful
def verifyparse():
global useinitincludes, initfile
if (useinitincludes and initfile == ''):
fatal("An init file must be specified")
%% %%
parser Config: parser Config:
@ -959,7 +1059,7 @@ parser Config:
# less general tokens should come first, otherwise they get matched # less general tokens should come first, otherwise they get matched
# by the re's # by the re's
token ACT: 'act' token ACTION: 'action'
token ADDACTION: 'addaction' token ADDACTION: 'addaction'
token ALWAYS: 'always' token ALWAYS: 'always'
token ARCH: 'arch' token ARCH: 'arch'
@ -967,7 +1067,7 @@ parser Config:
token CPU: 'cpu' token CPU: 'cpu'
token DEFAULT: 'default' token DEFAULT: 'default'
token DEFINE: 'define' token DEFINE: 'define'
token DEP: 'dep' token DEPENDS: 'depends'
token DIR: 'dir' token DIR: 'dir'
token DRIVER: 'driver' token DRIVER: 'driver'
token ELSE: 'else' token ELSE: 'else'
@ -977,6 +1077,8 @@ parser Config:
token FORMAT: 'format' token FORMAT: 'format'
token IF: 'if' token IF: 'if'
token INIT: 'init' token INIT: 'init'
token INITOBJECT: 'initobject'
token INITINCLUDE: 'initinclude'
token LDSCRIPT: 'ldscript' token LDSCRIPT: 'ldscript'
token LOADOPTIONS: 'loadoptions' token LOADOPTIONS: 'loadoptions'
token MAINBOARD: 'mainboard' token MAINBOARD: 'mainboard'
@ -1004,7 +1106,7 @@ parser Config:
token PATH: r'[a-zA-Z0-9_.][a-zA-Z0-9/_.]+[a-zA-Z0-9_.]+' token PATH: r'[a-zA-Z0-9_.][a-zA-Z0-9/_.]+[a-zA-Z0-9_.]+'
# Dir's on the other hand are abitrary # Dir's on the other hand are abitrary
# this may all be stupid. # this may all be stupid.
token DIRPATH: r'[a-zA-Z0-9_$()./]+' token DIRPATH: r'[-a-zA-Z0-9_$()./]+'
token ID: r'[a-zA-Z_.]+[a-zA-Z0-9_.]*' token ID: r'[a-zA-Z_.]+[a-zA-Z0-9_.]*'
token DELEXPR: r'{([^}]+|\\.)*}' token DELEXPR: r'{([^}]+|\\.)*}'
token STR: r'"([^\\"]+|\\.)*"' token STR: r'"([^\\"]+|\\.)*"'
@ -1064,6 +1166,14 @@ parser Config:
rule mainboardinit<<C>>: rule mainboardinit<<C>>:
MAINBOARDINIT DIRPATH {{ if (C): addcrt0include(DIRPATH)}} MAINBOARDINIT DIRPATH {{ if (C): addcrt0include(DIRPATH)}}
rule initinclude<<C>>:
INITINCLUDE
STR
DIRPATH {{ if (C): addinitinclude(STR, DIRPATH)}}
rule initobject<<C>>:
INITOBJECT DIRPATH {{ if (C): addinitobject(DIRPATH)}}
rule object<<C>>: OBJECT DIRPATH {{ if (C): addobject(DIRPATH)}} rule object<<C>>: OBJECT DIRPATH {{ if (C): addobject(DIRPATH)}}
rule driver<<C>>: DRIVER DIRPATH {{ if (C): adddriver(DIRPATH)}} rule driver<<C>>: DRIVER DIRPATH {{ if (C): adddriver(DIRPATH)}}
@ -1081,12 +1191,13 @@ parser Config:
(stmt<<c>>)* [ ELSE (stmt<<not c>>)* ] END (stmt<<c>>)* [ ELSE (stmt<<not c>>)* ] END
rule depsacts<<ID, C>>: rule depsacts<<ID, C>>:
( DEP STR {{ if (C): adddep(ID, STR) }} ( DEPENDS STR {{ if (C): adddep(ID, STR) }}
| ACT STR {{ if (C): addaction(ID, STR) }} | ACTION STR {{ if (C): addaction(ID, STR) }}
)* )*
rule makerule<<C>>: MAKERULE DIRPATH {{ if (C): addrule(DIRPATH) }} rule makerule<<C>>: MAKERULE DIRPATH {{ if (C): addrule(DIRPATH) }}
depsacts<<DIRPATH, C>> depsacts<<DIRPATH, C>>
END
rule makedefine<<C>>: rule makedefine<<C>>:
MAKEDEFINE RAWTEXT {{ if (C): adduserdefine(RAWTEXT) }} MAKEDEFINE RAWTEXT {{ if (C): adduserdefine(RAWTEXT) }}
@ -1094,7 +1205,7 @@ parser Config:
rule addaction<<C>>: rule addaction<<C>>:
ADDACTION ID STR {{ if (C): addaction(ID, STR) }} ADDACTION ID STR {{ if (C): addaction(ID, STR) }}
rule init<<C>>: INIT STR {{ if (C): curpart.addinit(STR) }} rule init<<C>>: INIT DIRPATH {{ if (C): addinit(DIRPATH) }}
rule register<<C>>: REGISTER STR {{ if (C): curpart.addregister(STR) }} rule register<<C>>: REGISTER STR {{ if (C): curpart.addregister(STR) }}
@ -1108,9 +1219,11 @@ parser Config:
| northbridge<<C>> {{ return northbridge }} | northbridge<<C>> {{ return northbridge }}
| southbridge<<C>> {{ return southbridge }} | southbridge<<C>> {{ return southbridge }}
| superio<<C>> {{ return superio }} | superio<<C>> {{ return superio }}
| initobject<<C>> {{ return initobject }}
| object<<C>> {{ return object }} | object<<C>> {{ return object }}
| driver<<C>> {{ return driver }} | driver<<C>> {{ return driver }}
| mainboardinit<<C>> {{ return mainboardinit }} | mainboardinit<<C>> {{ return mainboardinit }}
| initinclude<<C>> {{ return initinclude }}
| makerule<<C>> {{ return makerule }} | makerule<<C>> {{ return makerule }}
| makedefine<<C>> {{ return makedefine }} | makedefine<<C>> {{ return makedefine }}
| addaction<<C>> {{ return addaction }} | addaction<<C>> {{ return addaction }}
@ -1250,6 +1363,8 @@ if __name__=='__main__':
if (not parse('board', open(argv[1], 'r').read())): if (not parse('board', open(argv[1], 'r').read())):
fatal("Error: Could not parse file") fatal("Error: Could not parse file")
verifyparse()
if (debug): if (debug):
print "DEVICE TREE:" print "DEVICE TREE:"
dumptree(root, 0) dumptree(root, 0)
@ -1281,5 +1396,9 @@ if __name__=='__main__':
print " makerule %s dep %s act %s" % (i, m.dependency, m.actions) print " makerule %s dep %s act %s" % (i, m.dependency, m.actions)
writemakefilesettings(target_dir) writemakefilesettings(target_dir)
if (useinitincludes):
writeinitincludes(target_dir)
else:
writecrt0_includes(target_dir) writecrt0_includes(target_dir)
writemakefile(target_dir) writemakefile(target_dir)
writeldoptions(target_dir)