aboutsummaryrefslogtreecommitdiff
path: root/util/newconfig
diff options
context:
space:
mode:
authorRonald G. Minnich <rminnich@gmail.com>2003-07-10 14:46:59 +0000
committerRonald G. Minnich <rminnich@gmail.com>2003-07-10 14:46:59 +0000
commit0d7f46d29e710a789d52db1a2ba9907ca7101e6c (patch)
tree75218cffe563e77c965a890ec8d393b3d9cb4d66 /util/newconfig
parentbcdce3cfc76353248edc0d234d68af252743f5e5 (diff)
first cut at generating code.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@938 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/newconfig')
-rw-r--r--util/newconfig/config.g23
1 files changed, 18 insertions, 5 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g
index 76a9b9d0be..b5effff06f 100644
--- a/util/newconfig/config.g
+++ b/util/newconfig/config.g
@@ -229,6 +229,8 @@ class partobj:
self.dir = dir
self.irq = 0
self.instance = partinstance + 1
+ if (debug):
+ print "INSTANCE %d" % self.instance
partinstance = partinstance + 1
self.devfn = 0
self.private = 0
@@ -239,6 +241,9 @@ class partobj:
self.parent = parent
# add current child as my sibling,
# me as the child.
+ if (debug):
+ if (parent.children):
+ print "add %s (%d) as isbling" % (parent.children.dir, parent.children.instance)
self.siblings = parent.children
parent.children = self
else:
@@ -246,15 +251,21 @@ class partobj:
def dumpme(self, lvl):
print "%d: type %s" % (lvl, self.type)
+ print "%d: instance %d" % (lvl, self.instance)
print "%d: dir %s" % (lvl,self.dir)
print "%d: parent %s" % (lvl,self.parent.type)
print "%d: parent dir %s" % (lvl,self.parent.dir)
+ if (self.children):
+ print "%d: child %s" % (lvl, self.children.dir)
+ if (self.siblings):
+ print "%d: siblings %s" % (lvl, self.siblings.dir)
print "%d: initcode " % lvl
for i in self.initcode:
print " %s" % i
print "%d: registercode " % lvl
for i in self.registercode:
print " %s" % i
+ print "\n"
def gencode(self, file):
file.write("struct cdev dev%d = {\n" % self.instance)
@@ -602,7 +613,7 @@ def part(name, path, file):
dirstack.append(curdir)
curdir = os.path.join(treetop, 'src', name, path)
newpart = partobj(curdir, curpart, name)
- print "Configuring PART %s" % name
+ print "Configuring PART %s, path %s\n" % (name,path)
if (debug):
print "PUSH part %s %s" % (name, curpart.dir)
pstack.push(curpart)
@@ -1157,9 +1168,10 @@ def dumptree(part, lvl):
part.dumpme(lvl)
# dump the siblings -- actually are there any? not sure
# siblings are:
- kid = part
- #print "First sibling is %d\n" % kid.siblings
- while (kid.siblings):
+ if (debug):
+ print "DUMPTREE SIBLINGS are"
+ kid = part.siblings
+ while (kid):
kid.dumpme(lvl)
kid = kid.siblings
# dump the kids
@@ -1177,6 +1189,8 @@ def gencode(part, file):
part.gencode(file)
# dump the siblings -- actually are there any? not sure
# dump the kids
+ if (debug):
+ print "GENCODE KID is"
kid = part
while (kid.siblings):
kid.gencode(file)
@@ -1212,7 +1226,6 @@ if __name__=='__main__':
if (not parse('board', open(argv[1], 'r').read())):
fatal("Error: Could not parse file")
- debug = 1
if (debug):
print "DEVICE TREE:"
dumptree(root, 0)