From 9bc11ee4734e134f8cb63cd1d440100cc9d18f89 Mon Sep 17 00:00:00 2001 From: Keith Rothman <537074+litghost@users.noreply.github.com> Date: Fri, 19 Feb 2021 10:08:42 -0800 Subject: Add missing constant information to device database. Signed-off-by: Keith Rothman <537074+litghost@users.noreply.github.com> --- interchange/DeviceResources.capnp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) (limited to 'interchange') diff --git a/interchange/DeviceResources.capnp b/interchange/DeviceResources.capnp index 70c1f20..21a7351 100644 --- a/interchange/DeviceResources.capnp +++ b/interchange/DeviceResources.capnp @@ -358,6 +358,25 @@ struct Device { # nodeSources should be used to explicitly list nodes that fall into this # case. nodeSources @3 : List(NodeConstantSource); + + # Name of GND and VCC cells and their pins that are tied to GND/VCC. + gndCellType @4 : StringIdx $stringRef(); + gndCellPin @5 : StringIdx $stringRef(); + + vccCellType @6 : StringIdx $stringRef(); + vccCellPin @7 : StringIdx $stringRef(); + + # If the format requires a specific gnd/vcc net name, what name should be + # used? + gndNetName : union { + anyName @8 : Void; + name @9 : StringIdx $stringRef(); + } + + vccNetName : union { + anyName @10 : Void; + name @11 : StringIdx $stringRef(); + } } ###################################### -- cgit v1.2.3