diff options
author | Ronald G. Minnich <rminnich@gmail.com> | 2003-07-10 12:38:39 +0000 |
---|---|---|
committer | Ronald G. Minnich <rminnich@gmail.com> | 2003-07-10 12:38:39 +0000 |
commit | bcdce3cfc76353248edc0d234d68af252743f5e5 (patch) | |
tree | 3cff385b239c6619f631b7b11f14fbcf813f3f53 /util | |
parent | 66fe2227dfbfd2086fb0266cdeea1ca904d76198 (diff) | |
download | coreboot-bcdce3cfc76353248edc0d234d68af252743f5e5.tar.xz |
fixing trees.
Greg help me, I've screwed up the tree, things are in there more than once, dammit!
screwup in partobj.
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@937 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util')
-rw-r--r-- | util/newconfig/config.g | 57 |
1 files changed, 38 insertions, 19 deletions
diff --git a/util/newconfig/config.g b/util/newconfig/config.g index d735667de1..76a9b9d0be 100644 --- a/util/newconfig/config.g +++ b/util/newconfig/config.g @@ -219,9 +219,10 @@ class partobj: global partinstance if (debug): print "partobj dir %s parent %s type %s" %(dir,parent,type) - self.children = [] + self.children = 0 self.initcode = [] self.registercode = [] + # sibling is not a list. self.siblings = 0 self.type = type self.objects = [] @@ -236,7 +237,10 @@ class partobj: if (debug): print "add to parent" self.parent = parent - parent.children.append(self) + # add current child as my sibling, + # me as the child. + self.siblings = parent.children + parent.children = self else: self.parent = self @@ -252,18 +256,18 @@ class partobj: for i in self.registercode: print " %s" % i - def gencode(self): - print "struct cdev dev%d = {" % self.instance - print "/* %s %s */" % (self.type, self.dir) - print " .devfn = %d" % self.devfn + def gencode(self, file): + file.write("struct cdev dev%d = {\n" % self.instance) + file.write("/* %s %s */\n" % (self.type, self.dir)) + file.write(" .devfn = %d\n" % self.devfn) if (self.siblings): - print " .next = &dev%d" % self.sibling.instance + file.write(" .next = &dev%d\n" % self.siblings.instance) if (self.children): - print " .children = &dev%d" % \ - self.children[0].instance + file.write(" .children = &dev%d\n" % \ + self.children.instance) if (self.private): - print " .private = private%d" % self.instance - print "};" + file.write(" .private = private%d\n" % self.instance) + file.write("};\n") def irq(self, irq): @@ -1152,25 +1156,36 @@ def dumptree(part, lvl): print "DUMPTREE ME is" 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): + kid.dumpme(lvl) + kid = kid.siblings # dump the kids if (debug): print "DUMPTREE KIDS are" - for kid in part.children: - dumptree(kid, lvl+1) + #for kid in part.children: + if (part.children): + dumptree(part.children, lvl+1) if (debug): print "DONE DUMPTREE" -def gencode(part): +def gencode(part, file): if (debug): print "GENCODE ME is" - if (debug): - part.gencode() + part.gencode(file) # dump the siblings -- actually are there any? not sure # dump the kids + kid = part + while (kid.siblings): + kid.gencode(file) + kid = kid.siblings if (debug): print "GENCODE KIDS are" - for kid in part.children: - gencode(kid) + #for kid in part.children: + if (part.children): + gencode(part.children, file) if (debug): print "DONE GENCODE" @@ -1197,11 +1212,15 @@ 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) - gencode(root) + filename = os.path.join(target_dir, "chips.c") + print "Creating", filename + file = open(filename, 'w+') + gencode(root, file) # crt0 includes if (debug): |