mirror of https://github.com/VLSIDA/OpenRAM.git
84 lines
2.6 KiB
Python
84 lines
2.6 KiB
Python
import gdsMill
|
|
import tech
|
|
from contact import contact
|
|
import math
|
|
import debug
|
|
from pin_layout import pin_layout
|
|
from vector import vector
|
|
from vector3d import vector3d
|
|
from globals import OPTS
|
|
from router import router
|
|
|
|
class signal_router(router):
|
|
"""
|
|
A router class to read an obstruction map from a gds and plan a
|
|
route on a given layer. This is limited to two layer routes.
|
|
"""
|
|
|
|
def __init__(self, layers, design, gds_filename=None):
|
|
"""
|
|
This will route on layers in design. It will get the blockages from
|
|
either the gds file name or the design itself (by saving to a gds file).
|
|
"""
|
|
router.__init__(self, layers, design, gds_filename)
|
|
|
|
|
|
def create_routing_grid(self):
|
|
"""
|
|
Create a sprase routing grid with A* expansion functions.
|
|
"""
|
|
# We will add a halo around the boundary
|
|
# of this many tracks
|
|
size = self.ur - self.ll
|
|
debug.info(1,"Size: {0} x {1}".format(size.x,size.y))
|
|
|
|
import signal_grid
|
|
self.rg = signal_grid.signal_grid(self.ll, self.ur, self.track_width)
|
|
|
|
|
|
def route(self, src, dest, detour_scale=5):
|
|
"""
|
|
Route a single source-destination net and return
|
|
the simplified rectilinear path. Cost factor is how sub-optimal to explore for a feasible route.
|
|
This is used to speed up the routing when there is not much detouring needed.
|
|
"""
|
|
debug.info(1,"Running signal router from {0} to {1}...".format(src,dest))
|
|
|
|
self.pins[src] = []
|
|
self.pins[dest] = []
|
|
|
|
# Clear the pins if we have previously routed
|
|
if (hasattr(self,'rg')):
|
|
self.clear_pins()
|
|
else:
|
|
# Creat a routing grid over the entire area
|
|
# FIXME: This could be created only over the routing region,
|
|
# but this is simplest for now.
|
|
self.create_routing_grid()
|
|
|
|
# Get the pin shapes
|
|
self.find_pins_and_blockages([src, dest])
|
|
|
|
# Block everything
|
|
self.prepare_blockages()
|
|
# Clear the pins we are routing
|
|
self.set_blockages(self.pin_components[src],False)
|
|
self.set_blockages(self.pin_components[dest],False)
|
|
|
|
# Now add the src/tgt if they are not blocked by other shapes
|
|
self.add_source(src)
|
|
self.add_target(dest)
|
|
|
|
if not self.run_router(detour_scale=detour_scale):
|
|
self.write_debug_gds(stop_program=False)
|
|
return False
|
|
|
|
self.write_debug_gds(stop_program=False)
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
|