2020-04-08 04:24:42 -05:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2023-04-26 12:34:22 -05:00
|
|
|
from ..Hurricane import Breakpoint, DataBase, UpdateSession, DbU, Box, Net
|
Comprehensive reorganisation of the Python part of Coriolis.
* Move all Python stuff under a common Python namespace "coriolis".
* Instead of having a series subtrees for each tool, integrate
everything in one common tree. So now, all components can be
located either with an absolute path from "coriolis" or, inside
cross-reference themselves through relatives imports.
* As a consequence, we only need to add ".../site-packages/coriolis/"
to the PYTHONPATH, and not a whole bunch of subdirectories.
And nothing, if installed in-system.
* The tree of free technologies configuration files is also moved
below "coriolis/technos" instead of "/etc".
* Supressed "cumulus" level for the plugins.
* All python modules are rewritten using relative imports except
for the configuration files that uses absolute import as they
can be cloned outside of the tree to serve as templates.
* Change: In boostrap/FindPythonSitePackages, include "/coriolis" in
Python_CORIOLISARCH and Python_CORIOLISLIB.
Provide a Python_SITELIB *without* "/coriolis" appended.
* Change: In cumulus/plugins/__init__.loadPlugins(), must prefix modules
read in the plugins directory by "coriolis.plugins.". No longer need
to add their path to sys.path.
* Change: In crlcore/python/technos/nodeX/*/devices.py, the scripts of
the layouts generators must be prefixed by "coriolis.oroshi.".
* Change: In CRL::System CTOR, no longer add the pathes of the various
plugins to sys.path. Only "site-packages/coriolis/".
* New: In Utilities::Path::toPyModePath(), new method to convert a
filesystem path into a python module path.
Examples:
"coriolis/plugins/block" --> "coriolis.plugins.block".
"coriolis/plugins/rsave.py" --> "coriolis.plugins.rsave".
* Change: In katanaEngine::_runKatanaEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In BoraEngine::_runBoraEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In UnicornGui::_runUnicornInit(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In cumulus.plugins.chip.constants, put the constants
outside __init__.py to avoid a loop at initialization.
2023-02-27 15:14:32 -06:00
|
|
|
from ..Analog import Device
|
|
|
|
from ..helpers.io import catch
|
|
|
|
from ..helpers import setTraceLevel, trace
|
|
|
|
|
|
|
|
#setTraceLevel( 100 )
|
|
|
|
|
|
|
|
from . import getRules, paramsmatrix
|
|
|
|
from .capacitorunit import CapacitorUnit
|
|
|
|
from .capacitormatrix import CapacitorStack
|
|
|
|
from .capacitorvrtracks import VerticalRoutingTracks
|
|
|
|
from .capacitorrouted import RoutMatchedCapacitor
|
|
|
|
from .capacitorroutedsingle import RouteCapacitorSingle
|
2020-04-08 04:24:42 -05:00
|
|
|
|
|
|
|
|
|
|
|
def toMatrixArgs ( matrix ):
|
|
|
|
valid = True
|
|
|
|
rows = matrix.getRows ()
|
|
|
|
columns = matrix.getColumns()
|
|
|
|
lol = []
|
|
|
|
|
|
|
|
for row in range(rows):
|
|
|
|
lol.append( [] )
|
|
|
|
for column in range(columns):
|
|
|
|
lol[-1].append( matrix.getValue(row,column) )
|
|
|
|
|
|
|
|
return [rows,columns], lol
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def checkCoherency ( device, bbMode ):
|
|
|
|
message = 'CapacitorMatrix.checkCoherency(): device "%s".\n' % device.getName()
|
|
|
|
|
|
|
|
techno = DataBase.getDB().getTechnology()
|
Comprehensive reorganisation of the Python part of Coriolis.
* Move all Python stuff under a common Python namespace "coriolis".
* Instead of having a series subtrees for each tool, integrate
everything in one common tree. So now, all components can be
located either with an absolute path from "coriolis" or, inside
cross-reference themselves through relatives imports.
* As a consequence, we only need to add ".../site-packages/coriolis/"
to the PYTHONPATH, and not a whole bunch of subdirectories.
And nothing, if installed in-system.
* The tree of free technologies configuration files is also moved
below "coriolis/technos" instead of "/etc".
* Supressed "cumulus" level for the plugins.
* All python modules are rewritten using relative imports except
for the configuration files that uses absolute import as they
can be cloned outside of the tree to serve as templates.
* Change: In boostrap/FindPythonSitePackages, include "/coriolis" in
Python_CORIOLISARCH and Python_CORIOLISLIB.
Provide a Python_SITELIB *without* "/coriolis" appended.
* Change: In cumulus/plugins/__init__.loadPlugins(), must prefix modules
read in the plugins directory by "coriolis.plugins.". No longer need
to add their path to sys.path.
* Change: In crlcore/python/technos/nodeX/*/devices.py, the scripts of
the layouts generators must be prefixed by "coriolis.oroshi.".
* Change: In CRL::System CTOR, no longer add the pathes of the various
plugins to sys.path. Only "site-packages/coriolis/".
* New: In Utilities::Path::toPyModePath(), new method to convert a
filesystem path into a python module path.
Examples:
"coriolis/plugins/block" --> "coriolis.plugins.block".
"coriolis/plugins/rsave.py" --> "coriolis.plugins.rsave".
* Change: In katanaEngine::_runKatanaEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In BoraEngine::_runBoraEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In UnicornGui::_runUnicornInit(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In cumulus.plugins.chip.constants, put the constants
outside __init__.py to avoid a loop at initialization.
2023-02-27 15:14:32 -06:00
|
|
|
rules = getRules()
|
2020-04-08 04:24:42 -05:00
|
|
|
|
|
|
|
capacities = device.getParameter( 'capacities' )
|
|
|
|
if capacities is None:
|
|
|
|
message += ' Missing "capacities" parameter on %s' % str(device)
|
|
|
|
return (False, message)
|
|
|
|
|
|
|
|
pmatrix = device.getParameter( 'matrix' )
|
|
|
|
if pmatrix is None:
|
|
|
|
message += ' Missing "matrix" parameter on %s' % str(device)
|
|
|
|
return (False, message)
|
|
|
|
|
|
|
|
valid = True
|
|
|
|
if pmatrix:
|
|
|
|
rows = pmatrix.getRows ()
|
|
|
|
columns = pmatrix.getColumns()
|
|
|
|
|
|
|
|
for row in range(rows):
|
|
|
|
#print ' [',
|
|
|
|
for column in range(columns):
|
|
|
|
capaIndex = pmatrix.getValue(row,column)
|
|
|
|
#print '%2d' % capaIndex,
|
|
|
|
|
|
|
|
if capaIndex >= capacities.getCount():
|
|
|
|
valid = False
|
|
|
|
message += ' element [%d,%d] == %d is out of range, must be in [0..%d]\n' \
|
|
|
|
% (row,column,capaIndex,capacities.getCount()-1)
|
|
|
|
#print ']'
|
|
|
|
|
|
|
|
if not valid: return (False, message)
|
|
|
|
|
|
|
|
return (True, "")
|
|
|
|
|
|
|
|
|
|
|
|
def addDummyNets ( device ):
|
|
|
|
if not device.hasDummy(): return
|
|
|
|
|
|
|
|
i = device.getParameter( 'capacities' ).getCount()
|
|
|
|
topName = 't%d'%i
|
|
|
|
botName = 'b%d'%i
|
|
|
|
|
|
|
|
topNet = device.getNet( topName )
|
|
|
|
if not topNet:
|
|
|
|
topNet = Net.create( device, topName )
|
|
|
|
topNet.setExternal( True )
|
|
|
|
|
|
|
|
botNet = device.getNet( botName )
|
|
|
|
if not botNet:
|
|
|
|
botNet = Net.create( device, botName )
|
|
|
|
botNet.setExternal( True )
|
|
|
|
return
|
|
|
|
|
|
|
|
|
|
|
|
def layout ( device, bbMode ):
|
|
|
|
|
|
|
|
trace( 100, ',+', '\tMultiCapacitor.layout() called for "%s".\n' % device.getName())
|
|
|
|
|
Comprehensive reorganisation of the Python part of Coriolis.
* Move all Python stuff under a common Python namespace "coriolis".
* Instead of having a series subtrees for each tool, integrate
everything in one common tree. So now, all components can be
located either with an absolute path from "coriolis" or, inside
cross-reference themselves through relatives imports.
* As a consequence, we only need to add ".../site-packages/coriolis/"
to the PYTHONPATH, and not a whole bunch of subdirectories.
And nothing, if installed in-system.
* The tree of free technologies configuration files is also moved
below "coriolis/technos" instead of "/etc".
* Supressed "cumulus" level for the plugins.
* All python modules are rewritten using relative imports except
for the configuration files that uses absolute import as they
can be cloned outside of the tree to serve as templates.
* Change: In boostrap/FindPythonSitePackages, include "/coriolis" in
Python_CORIOLISARCH and Python_CORIOLISLIB.
Provide a Python_SITELIB *without* "/coriolis" appended.
* Change: In cumulus/plugins/__init__.loadPlugins(), must prefix modules
read in the plugins directory by "coriolis.plugins.". No longer need
to add their path to sys.path.
* Change: In crlcore/python/technos/nodeX/*/devices.py, the scripts of
the layouts generators must be prefixed by "coriolis.oroshi.".
* Change: In CRL::System CTOR, no longer add the pathes of the various
plugins to sys.path. Only "site-packages/coriolis/".
* New: In Utilities::Path::toPyModePath(), new method to convert a
filesystem path into a python module path.
Examples:
"coriolis/plugins/block" --> "coriolis.plugins.block".
"coriolis/plugins/rsave.py" --> "coriolis.plugins.rsave".
* Change: In katanaEngine::_runKatanaEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In BoraEngine::_runBoraEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In UnicornGui::_runUnicornInit(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In cumulus.plugins.chip.constants, put the constants
outside __init__.py to avoid a loop at initialization.
2023-02-27 15:14:32 -06:00
|
|
|
paramsMatrix = paramsmatrix.ParamsMatrix()
|
2020-04-08 04:24:42 -05:00
|
|
|
|
|
|
|
try:
|
|
|
|
capacities = device.getParameter( 'capacities' )
|
|
|
|
dummyArg = device.hasDummy()
|
|
|
|
capaValuesArg = []
|
|
|
|
vTrackNetsArg = []
|
|
|
|
|
|
|
|
addDummyNets( device )
|
|
|
|
|
|
|
|
for i in range(capacities.getCount()):
|
|
|
|
capaValuesArg.append( capacities.getValue(i)*1000.0 )
|
|
|
|
vTrackNetsArg.append( [ device.getNet('t%d'%i), device.getNet("b%d"%i) ] )
|
|
|
|
|
|
|
|
if dummyArg:
|
|
|
|
i = device.getParameter( 'capacities' ).getCount()
|
|
|
|
vTrackNetsArg.append( [ device.getNet('t%d'%i), device.getNet("b%d"%i) ] )
|
|
|
|
|
|
|
|
matrixSizeArg, matchingSchemeArg = toMatrixArgs( device.getParameter('matrix') )
|
|
|
|
|
|
|
|
typeArg = 'UnknownType'
|
|
|
|
if device.isPIP(): typeArg = 'PIPCap'
|
|
|
|
if device.isMIM(): typeArg = 'MIMCap'
|
|
|
|
if device.isMOM(): typeArg = 'MOMCap'
|
|
|
|
|
|
|
|
if len(capaValuesArg) == 1:
|
|
|
|
# One capa, multiple units.
|
|
|
|
capaGenerator = CapacitorStack( device
|
|
|
|
, capaValuesArg # (fF).
|
|
|
|
, typeArg
|
|
|
|
, [0,0] # AB position.
|
|
|
|
, vTrackNetsArg
|
|
|
|
, matrixDim =matrixSizeArg
|
|
|
|
, dummyRing =dummyArg
|
|
|
|
)
|
|
|
|
capaMatrix = capaGenerator.create()
|
|
|
|
capaSingle = RouteCapacitorSingle( capaGenerator
|
|
|
|
, capaMatrix
|
|
|
|
, topPlateWSpec=[1,0]
|
|
|
|
, bottomPlateWSpec=[0,1] )
|
|
|
|
capaSingle.route()
|
|
|
|
else:
|
|
|
|
# Two capa, multiple units.
|
2023-05-08 13:00:47 -05:00
|
|
|
#Breakpoint.setStopLevel( 200 )
|
2020-04-08 04:24:42 -05:00
|
|
|
capaGenerator = CapacitorStack( device
|
|
|
|
, capaValuesArg # [ 240, 720 ] # capaValuesArg (fF).
|
|
|
|
, typeArg
|
|
|
|
, [0,0] # AB position.
|
|
|
|
, vTrackNetsArg
|
|
|
|
, matrixDim =matrixSizeArg
|
|
|
|
, matchingMode =True
|
|
|
|
, matchingScheme=matchingSchemeArg
|
|
|
|
, dummyRing =dummyArg
|
|
|
|
)
|
|
|
|
capaMatrix = capaGenerator.create()
|
|
|
|
capaTracks = VerticalRoutingTracks( capaGenerator, capaMatrix, True )
|
|
|
|
capaTracks.create()
|
|
|
|
|
|
|
|
capaRouted = RoutMatchedCapacitor( capaTracks )
|
|
|
|
capaRouted.route()
|
|
|
|
|
|
|
|
for pair in vTrackNetsArg:
|
|
|
|
for net in pair:
|
|
|
|
device.setRestrictions( net, Device.NorthBlocked|Device.SouthBlocked )
|
|
|
|
|
|
|
|
paramsMatrix.setGlobalCapacitorParams( device.getAbutmentBox() )
|
|
|
|
trace( 100, '++' )
|
|
|
|
#paramsMatrix.trace()
|
|
|
|
|
2022-07-13 04:20:55 -05:00
|
|
|
except Exception as e:
|
Comprehensive reorganisation of the Python part of Coriolis.
* Move all Python stuff under a common Python namespace "coriolis".
* Instead of having a series subtrees for each tool, integrate
everything in one common tree. So now, all components can be
located either with an absolute path from "coriolis" or, inside
cross-reference themselves through relatives imports.
* As a consequence, we only need to add ".../site-packages/coriolis/"
to the PYTHONPATH, and not a whole bunch of subdirectories.
And nothing, if installed in-system.
* The tree of free technologies configuration files is also moved
below "coriolis/technos" instead of "/etc".
* Supressed "cumulus" level for the plugins.
* All python modules are rewritten using relative imports except
for the configuration files that uses absolute import as they
can be cloned outside of the tree to serve as templates.
* Change: In boostrap/FindPythonSitePackages, include "/coriolis" in
Python_CORIOLISARCH and Python_CORIOLISLIB.
Provide a Python_SITELIB *without* "/coriolis" appended.
* Change: In cumulus/plugins/__init__.loadPlugins(), must prefix modules
read in the plugins directory by "coriolis.plugins.". No longer need
to add their path to sys.path.
* Change: In crlcore/python/technos/nodeX/*/devices.py, the scripts of
the layouts generators must be prefixed by "coriolis.oroshi.".
* Change: In CRL::System CTOR, no longer add the pathes of the various
plugins to sys.path. Only "site-packages/coriolis/".
* New: In Utilities::Path::toPyModePath(), new method to convert a
filesystem path into a python module path.
Examples:
"coriolis/plugins/block" --> "coriolis.plugins.block".
"coriolis/plugins/rsave.py" --> "coriolis.plugins.rsave".
* Change: In katanaEngine::_runKatanaEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In BoraEngine::_runBoraEngine(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In UnicornGui::_runUnicornInit(), rename the hook script
initHook.py. No longer need to modify sys.path.
* Change: In cumulus.plugins.chip.constants, put the constants
outside __init__.py to avoid a loop at initialization.
2023-02-27 15:14:32 -06:00
|
|
|
catch( e )
|
2020-04-08 04:24:42 -05:00
|
|
|
|
|
|
|
trace( 100, '---' )
|
|
|
|
|
|
|
|
return paramsMatrix.getMatrix()
|