summaryrefslogtreecommitdiffstats
path: root/util/sconfig/sconfig.tab.h_shipped
diff options
context:
space:
mode:
authorFurquan Shaikh <furquan@google.com>2018-05-30 15:09:09 -0700
committerFurquan Shaikh <furquan@google.com>2018-06-05 20:57:16 +0000
commit79e8412665567cfd2a18e144794f5b3d924b0cbc (patch)
tree51ccf491e1397f47e1784516e8960181e15cc793 /util/sconfig/sconfig.tab.h_shipped
parenta51ff0712cd85ecd9f46ec7c928688b7d463ff28 (diff)
downloadcoreboot-79e8412665567cfd2a18e144794f5b3d924b0cbc.tar.gz
coreboot-79e8412665567cfd2a18e144794f5b3d924b0cbc.tar.bz2
coreboot-79e8412665567cfd2a18e144794f5b3d924b0cbc.zip
util/sconfig: Re-factor sconfig to not assume chip as device
This change adds a new structure "struct chip" to identify elements of type chip rather than re-using the structure for device. Until now chip was treated as a device while generating the parse tree and then device tree postprocessing skipped over all the chip entries in children and sibling pointers of device nodes. With this change, the device tree will only contain struct device in the parsed tree. It helps by avoiding unnecessary pointers to chip structure as children or next_sibling and then skipping those elements in post processing. Every device can then hold a pointer to its chip. When generating static.c, chip structure is emitted before device structure to ensure that the device structure has chip within its scope. Externally, the only visible change in static.c should be the order in which chip/device elements are emitted i.e. previously all chips under a particular device were emitted to static.c and then the devices using those chips. Now, all chips are emitted before all the devices in static.c BUG=b:80081934 TEST=Verified that abuild is successful for all boards. Also, verified that static.c generated for eve, kahlee, scarlet, asrock imb_a180 is unchanged from before in node definitions. Change-Id: I255092f527c8eecb144385eb681df20e54caf8f5 Signed-off-by: Furquan Shaikh <furquan@google.com> Reviewed-on: https://review.coreboot.org/26720 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'util/sconfig/sconfig.tab.h_shipped')
-rw-r--r--util/sconfig/sconfig.tab.h_shipped1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/sconfig/sconfig.tab.h_shipped b/util/sconfig/sconfig.tab.h_shipped
index 89b936a1564e..e633fe0579c0 100644
--- a/util/sconfig/sconfig.tab.h_shipped
+++ b/util/sconfig/sconfig.tab.h_shipped
@@ -86,6 +86,7 @@ union YYSTYPE
struct device *device;
+ struct chip *chip;
char *string;
int number;