mirror of
https://github.com/VLSIDA/OpenRAM.git
synced 2026-08-29 01:24:39 +02:00
work on capped rba
This commit is contained in:
@@ -6,7 +6,7 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
from openram import debug
|
from openram import debug
|
||||||
from openram.modules import bitcell_base
|
from openram.modules.bitcell_base import bitcell_base
|
||||||
from openram.tech import cell_properties as props
|
from openram.tech import cell_properties as props
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -6,7 +6,8 @@
|
|||||||
#
|
#
|
||||||
|
|
||||||
from openram import debug
|
from openram import debug
|
||||||
from openram.modules import bitcell_array, pattern
|
from openram.modules.bitcell_array import bitcell_array
|
||||||
|
from openram.modules import pattern
|
||||||
from openram.sram_factory import factory
|
from openram.sram_factory import factory
|
||||||
from openram.base import geometry
|
from openram.base import geometry
|
||||||
from openram import OPTS
|
from openram import OPTS
|
||||||
|
|||||||
@@ -11,209 +11,15 @@ from openram.sram_factory import factory
|
|||||||
from openram.tech import drc, spice
|
from openram.tech import drc, spice
|
||||||
from openram.tech import cell_properties as props
|
from openram.tech import cell_properties as props
|
||||||
from openram import OPTS
|
from openram import OPTS
|
||||||
|
from openram.modules.capped_replica_bitcell_array import capped_replica_bitcell_array
|
||||||
from .sky130_bitcell_base_array import sky130_bitcell_base_array
|
from .sky130_bitcell_base_array import sky130_bitcell_base_array
|
||||||
|
|
||||||
|
|
||||||
class sky130_capped_replica_bitcell_array(sky130_bitcell_base_array):
|
class sky130_capped_replica_bitcell_array(capped_replica_bitcell_array, sky130_bitcell_base_array):
|
||||||
"""
|
"""
|
||||||
Creates a replica bitcell array then adds the row and column caps to all
|
Creates a replica bitcell array then adds the row and column caps to all
|
||||||
sides of a bitcell array.
|
sides of a bitcell array.
|
||||||
"""
|
"""
|
||||||
def __init__(self, rows, cols, rbl=None, left_rbl=None, right_rbl=None, name=""):
|
def __init__(self, rows, cols, rbl=None, left_rbl=None, right_rbl=None, name=""):
|
||||||
super().__init__(name, rows, cols, column_offset=0)
|
super().__init__(rows, cols, rbl, left_rbl, right_rbl, name)
|
||||||
debug.info(1, "Creating {0} {1} x {2} rbls: {3} left_rbl: {4} right_rbl: {5}".format(self.name,
|
|
||||||
rows,
|
|
||||||
cols,
|
|
||||||
rbl,
|
|
||||||
left_rbl,
|
|
||||||
right_rbl))
|
|
||||||
self.add_comment("rows: {0} cols: {1}".format(rows, cols))
|
|
||||||
self.add_comment("rbl: {0} left_rbl: {1} right_rbl: {2}".format(rbl, left_rbl, right_rbl))
|
|
||||||
|
|
||||||
# This is how many RBLs are in all the arrays
|
|
||||||
self.rbl = rbl
|
|
||||||
# This specifies which RBL to put on the left or right by port number
|
|
||||||
# This could be an empty list
|
|
||||||
if left_rbl is not None:
|
|
||||||
self.left_rbl = left_rbl
|
|
||||||
else:
|
|
||||||
self.left_rbl = []
|
|
||||||
# This could be an empty list
|
|
||||||
if right_rbl is not None:
|
|
||||||
self.right_rbl = right_rbl
|
|
||||||
else:
|
|
||||||
self.right_rbl = []
|
|
||||||
|
|
||||||
self.create_netlist()
|
|
||||||
if not OPTS.netlist_only:
|
|
||||||
self.create_layout()
|
|
||||||
|
|
||||||
def create_netlist(self):
|
|
||||||
""" Create and connect the netlist """
|
|
||||||
self.add_modules()
|
|
||||||
self.add_pins()
|
|
||||||
self.create_instances()
|
|
||||||
|
|
||||||
def add_modules(self):
|
|
||||||
self.replica_bitcell_array = factory.create(module_type="replica_bitcell_array",
|
|
||||||
cols=self.column_size,
|
|
||||||
rows=self.row_size,
|
|
||||||
rbl=self.rbl,
|
|
||||||
left_rbl=self.left_rbl,
|
|
||||||
right_rbl=self.right_rbl)
|
|
||||||
|
|
||||||
def add_pins(self):
|
|
||||||
|
|
||||||
# Arrays are always:
|
|
||||||
# bitlines (column first then port order)
|
|
||||||
# word lines (row first then port order)
|
|
||||||
# dummy wordlines
|
|
||||||
# replica wordlines
|
|
||||||
# regular wordlines (bottom to top)
|
|
||||||
# # dummy bitlines
|
|
||||||
# replica bitlines (port order)
|
|
||||||
# regular bitlines (left to right port order)
|
|
||||||
#
|
|
||||||
# vdd
|
|
||||||
# gnd
|
|
||||||
|
|
||||||
self.add_bitline_pins()
|
|
||||||
self.add_wordline_pins()
|
|
||||||
self.add_pin("vdd", "POWER")
|
|
||||||
self.add_pin("gnd", "GROUND")
|
|
||||||
|
|
||||||
def add_bitline_pins(self):
|
|
||||||
self.bitline_names = self.replica_bitcell_array.bitline_names
|
|
||||||
self.all_bitline_names = self.replica_bitcell_array.all_bitline_names
|
|
||||||
self.rbl_bitline_names = self.replica_bitcell_array.rbl_bitline_names
|
|
||||||
self.all_rbl_bitline_names = self.replica_bitcell_array.all_rbl_bitline_names
|
|
||||||
|
|
||||||
self.bitline_pins = []
|
|
||||||
|
|
||||||
for port in self.left_rbl:
|
|
||||||
self.bitline_pins.extend(self.rbl_bitline_names[port])
|
|
||||||
self.bitline_pins.extend(self.all_bitline_names)
|
|
||||||
for port in self.right_rbl:
|
|
||||||
self.bitline_pins.extend(self.rbl_bitline_names[port])
|
|
||||||
|
|
||||||
self.add_pin_list(self.bitline_pins, "INOUT")
|
|
||||||
|
|
||||||
def add_wordline_pins(self):
|
|
||||||
# some of these are just included for compatibility with modules instantiating this module
|
|
||||||
self.rbl_wordline_names = self.replica_bitcell_array.rbl_wordline_names
|
|
||||||
self.all_rbl_wordline_names = self.replica_bitcell_array.all_rbl_wordline_names
|
|
||||||
self.wordline_names = self.replica_bitcell_array.wordline_names
|
|
||||||
self.all_wordline_names = self.replica_bitcell_array.all_wordline_names
|
|
||||||
|
|
||||||
self.wordline_pins = []
|
|
||||||
|
|
||||||
for port in range(self.rbl[0]):
|
|
||||||
self.wordline_pins.append(self.rbl_wordline_names[port][port])
|
|
||||||
self.wordline_pins.extend(self.all_wordline_names)
|
|
||||||
for port in range(self.rbl[0], self.rbl[0] + self.rbl[1]):
|
|
||||||
self.wordline_pins.append(self.rbl_wordline_names[port][port])
|
|
||||||
|
|
||||||
self.add_pin_list(self.wordline_pins, "INPUT")
|
|
||||||
|
|
||||||
def create_instances(self):
|
|
||||||
""" Create the module instances used in this design """
|
|
||||||
self.supplies = ["vdd", "gnd"]
|
|
||||||
|
|
||||||
# Main array
|
|
||||||
self.replica_bitcell_array_inst=self.add_inst(name="replica_bitcell_array",
|
|
||||||
mod=self.replica_bitcell_array)
|
|
||||||
self.connect_inst(self.bitline_pins + self.wordline_pins + self.supplies)
|
|
||||||
|
|
||||||
def create_layout(self):
|
|
||||||
|
|
||||||
self.replica_bitcell_array_inst.place(offset=0)
|
|
||||||
|
|
||||||
self.width = self.replica_bitcell_array.width
|
|
||||||
self.height = self.replica_bitcell_array.height
|
|
||||||
|
|
||||||
for pin_name in self.bitline_pins + self.wordline_pins + self.supplies:
|
|
||||||
self.copy_layout_pin(self.replica_bitcell_array_inst, pin_name)
|
|
||||||
|
|
||||||
self.add_boundary()
|
|
||||||
|
|
||||||
self.DRC_LVS()
|
|
||||||
|
|
||||||
def get_main_array_top(self):
|
|
||||||
return self.replica_bitcell_array.get_main_array_top()
|
|
||||||
|
|
||||||
def get_main_array_bottom(self):
|
|
||||||
return self.replica_bitcell_array.get_main_array_bottom()
|
|
||||||
|
|
||||||
def get_main_array_left(self):
|
|
||||||
return self.replica_bitcell_array.get_main_array_left()
|
|
||||||
|
|
||||||
def get_main_array_right(self):
|
|
||||||
return self.replica_bitcell_array.get_main_array_right()
|
|
||||||
|
|
||||||
def get_replica_top(self):
|
|
||||||
return self.replica_bitcell_array.get_replica_top()
|
|
||||||
|
|
||||||
def get_replica_bottom(self):
|
|
||||||
return self.replica_bitcell_array.get_replica_bottom()
|
|
||||||
|
|
||||||
def get_replica_left(self):
|
|
||||||
return self.replica_bitcell_array.get_replica_left()
|
|
||||||
|
|
||||||
def get_replica_right(self):
|
|
||||||
return self.replica_bitcell_array.get_replica_right()
|
|
||||||
|
|
||||||
|
|
||||||
def get_column_offsets(self):
|
|
||||||
return self.replica_bitcell_array.get_column_offsets()
|
|
||||||
|
|
||||||
def analytical_power(self, corner, load):
|
|
||||||
"""Power of Bitcell array and bitline in nW."""
|
|
||||||
# Dynamic Power from Bitline
|
|
||||||
bl_wire = self.gen_bl_wire()
|
|
||||||
cell_load = 2 * bl_wire.return_input_cap()
|
|
||||||
bl_swing = OPTS.rbl_delay_percentage
|
|
||||||
freq = spice["default_event_frequency"]
|
|
||||||
bitline_dynamic = self.calc_dynamic_power(corner, cell_load, freq, swing=bl_swing)
|
|
||||||
|
|
||||||
# Calculate the bitcell power which currently only includes leakage
|
|
||||||
cell_power = self.cell.analytical_power(corner, load)
|
|
||||||
|
|
||||||
# Leakage power grows with entire array and bitlines.
|
|
||||||
total_power = self.return_power(cell_power.dynamic + bitline_dynamic * self.column_size,
|
|
||||||
cell_power.leakage * self.column_size * self.row_size)
|
|
||||||
return total_power
|
|
||||||
|
|
||||||
|
|
||||||
def gen_bl_wire(self):
|
|
||||||
if OPTS.netlist_only:
|
|
||||||
height = 0
|
|
||||||
else:
|
|
||||||
height = self.height
|
|
||||||
bl_pos = 0
|
|
||||||
bl_wire = self.generate_rc_net(int(self.row_size - bl_pos), height, drc("minwidth_m1"))
|
|
||||||
bl_wire.wire_c =spice["min_tx_drain_c"] + bl_wire.wire_c # 1 access tx d/s per cell
|
|
||||||
return bl_wire
|
|
||||||
|
|
||||||
def graph_exclude_bits(self, targ_row=None, targ_col=None):
|
|
||||||
"""
|
|
||||||
Excludes bits in column from being added to graph except target
|
|
||||||
"""
|
|
||||||
self.replica_bitcell_array.graph_exclude_bits(targ_row, targ_col)
|
|
||||||
|
|
||||||
def graph_exclude_replica_col_bits(self):
|
|
||||||
"""
|
|
||||||
Exclude all replica/dummy cells in the replica columns except the replica bit.
|
|
||||||
"""
|
|
||||||
self.replica_bitcell_array.graph_exclude_replica_col_bits()
|
|
||||||
|
|
||||||
def get_cell_name(self, inst_name, row, col):
|
|
||||||
"""
|
|
||||||
Gets the spice name of the target bitcell.
|
|
||||||
"""
|
|
||||||
return self.replica_bitcell_array.get_cell_name(inst_name + "{}x".format(OPTS.hier_seperator) + self.replica_bitcell_array_inst.name, row, col)
|
|
||||||
|
|
||||||
def clear_exclude_bits(self):
|
|
||||||
"""
|
|
||||||
Clears the bit exclusions
|
|
||||||
"""
|
|
||||||
self.replica_bitcell_array.clear_exclude_bits()
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
# See LICENSE for licensing information.
|
# See LICENSE for licensing information.
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016-2023 Regents of the University of California
|
# Copyright (c) 2016-2023 Regents of the University of California
|
||||||
@@ -9,42 +9,15 @@ from openram.base import geometry
|
|||||||
from openram.sram_factory import factory
|
from openram.sram_factory import factory
|
||||||
from openram.tech import layer
|
from openram.tech import layer
|
||||||
from openram import OPTS
|
from openram import OPTS
|
||||||
|
from openram.modules.col_cap_array import col_cap_array
|
||||||
from .sky130_bitcell_base_array import sky130_bitcell_base_array
|
from .sky130_bitcell_base_array import sky130_bitcell_base_array
|
||||||
|
|
||||||
class sky130_col_cap_array(sky130_bitcell_base_array):
|
class sky130_col_cap_array(col_cap_array, sky130_bitcell_base_array):
|
||||||
"""
|
"""
|
||||||
Generate a dummy row/column for the replica array.
|
Generate a dummy row/column for the replica array.
|
||||||
"""
|
"""
|
||||||
def __init__(self, rows, cols, location, column_offset=0, mirror=0, name=""):
|
def __init__(self, rows, cols, column_offset=0, mirror=0, location="", name=""):
|
||||||
# Don't call the regular col-cap_array constructor since we don't want its constructor, just
|
super().__init__(rows, cols, column_offset=0, mirror=0, location="", name="")
|
||||||
# some of it's useful member functions
|
|
||||||
sky130_bitcell_base_array.__init__(self, rows=rows, cols=cols, column_offset=column_offset, name=name)
|
|
||||||
self.mirror = mirror
|
|
||||||
self.location = location
|
|
||||||
self.rows = rows
|
|
||||||
self.cols = cols
|
|
||||||
self.create_netlist()
|
|
||||||
if not OPTS.netlist_only:
|
|
||||||
self.create_layout()
|
|
||||||
|
|
||||||
def create_netlist(self):
|
|
||||||
""" Create and connect the netlist """
|
|
||||||
# This module has no wordlines
|
|
||||||
# self.create_all_wordline_names()
|
|
||||||
# This module has no bitlines
|
|
||||||
# self.create_all_bitline_names()
|
|
||||||
self.add_modules()
|
|
||||||
self.create_all_wordline_names()
|
|
||||||
self.add_pins()
|
|
||||||
self.create_instances()
|
|
||||||
|
|
||||||
def create_layout(self):
|
|
||||||
|
|
||||||
self.place_array("dummy_r{0}_c{1}", self.mirror)
|
|
||||||
self.add_layout_pins()
|
|
||||||
self.add_supply_pins()
|
|
||||||
self.add_boundary()
|
|
||||||
self.DRC_LVS()
|
|
||||||
|
|
||||||
def add_modules(self):
|
def add_modules(self):
|
||||||
""" Add the modules used in this design """
|
""" Add the modules used in this design """
|
||||||
@@ -60,196 +33,4 @@ class sky130_col_cap_array(sky130_bitcell_base_array):
|
|||||||
self.cell = factory.create(module_type=OPTS.bitcell, version="opt1")
|
self.cell = factory.create(module_type=OPTS.bitcell, version="opt1")
|
||||||
|
|
||||||
def create_instances(self):
|
def create_instances(self):
|
||||||
""" Create the module instances used in this design """
|
|
||||||
self.cell_inst = {}
|
|
||||||
self.array_layout = []
|
|
||||||
bitline = 0
|
|
||||||
for col in range((self.column_size * 2) - 1):
|
|
||||||
row_layout = []
|
|
||||||
name="rca_{0}_{1}".format(self.location, col)
|
|
||||||
# Top/bottom cell are always dummy cells.
|
|
||||||
# Regular array cells are replica cells (>left_rbl and <rows-right_rbl)
|
|
||||||
# Replic bit specifies which other bit (in the full range (0,rows) to make a replica cell.
|
|
||||||
pins = []
|
|
||||||
if col % 4 == 0:
|
|
||||||
row_layout.append(self.colend1)
|
|
||||||
self.cell_inst[col]=self.add_inst(name=name, mod=self.colend1)
|
|
||||||
pins.append("fake_bl_{}".format(bitline))
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("gnd")
|
|
||||||
pins.append("fake_br_{}".format(bitline))
|
|
||||||
pins.append("gate")
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("gnd")
|
|
||||||
bitline += 1
|
|
||||||
elif col % 4 == 1:
|
|
||||||
row_layout.append(self.colend2)
|
|
||||||
self.cell_inst[col]=self.add_inst(name=name, mod=self.colend3)
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("gnd")
|
|
||||||
elif col % 4 == 2:
|
|
||||||
row_layout.append(self.colend1)
|
|
||||||
self.cell_inst[col]=self.add_inst(name=name, mod=self.colend1)
|
|
||||||
pins.append("fake_bl_{}".format(bitline))
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("gnd")
|
|
||||||
pins.append("fake_br_{}".format(bitline))
|
|
||||||
pins.append("gate")
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("gnd")
|
|
||||||
bitline += 1
|
|
||||||
elif col % 4 ==3:
|
|
||||||
row_layout.append(self.colend2)
|
|
||||||
self.cell_inst[col]=self.add_inst(name=name, mod=self.colend2)
|
|
||||||
pins.append("gnd")
|
|
||||||
pins.append("vdd")
|
|
||||||
pins.append("vnb")
|
|
||||||
|
|
||||||
self.connect_inst(pins)
|
|
||||||
|
|
||||||
self.array_layout.append(row_layout)
|
|
||||||
|
|
||||||
def place_array(self, name_template, row_offset=0):
|
|
||||||
xoffset = 0.0
|
|
||||||
yoffset = 0.0
|
|
||||||
|
|
||||||
for col in range(len(self.insts)):
|
|
||||||
inst = self.insts[col]
|
|
||||||
if col % 4 == 0:
|
|
||||||
inst.place(offset=[xoffset + inst.width, yoffset], mirror="MY")
|
|
||||||
elif col % 4 == 1:
|
|
||||||
inst.place(offset=[xoffset, yoffset])
|
|
||||||
elif col % 4 == 2:
|
|
||||||
inst.place(offset=[xoffset, yoffset])
|
|
||||||
elif col % 4 ==3:
|
|
||||||
inst.place(offset=[xoffset, yoffset])
|
|
||||||
|
|
||||||
xoffset += inst.width
|
|
||||||
|
|
||||||
self.width = max([x.rx() for x in self.insts])
|
|
||||||
self.height = max([x.uy() for x in self.insts])
|
|
||||||
|
|
||||||
def add_pins(self):
|
|
||||||
|
|
||||||
for fake_bl in range(self.cols):
|
|
||||||
self.add_pin("fake_bl_{}".format(fake_bl), "OUTPUT")
|
|
||||||
self.add_pin("fake_br_{}".format(fake_bl), "OUTPUT")
|
|
||||||
#self.add_pin("fake_wl", "INPUT")
|
|
||||||
self.add_pin("vdd", "POWER")
|
|
||||||
self.add_pin("gnd", "GROUND")
|
|
||||||
self.add_pin("gate", "BIAS")
|
|
||||||
|
|
||||||
|
|
||||||
def add_layout_pins(self):
|
|
||||||
""" Add the layout pins """
|
|
||||||
# Add vdd/gnd via stacks
|
|
||||||
for cols in range((self.column_size * 2) - 1):
|
|
||||||
inst = self.cell_inst[cols]
|
|
||||||
for pin_name in ["vdd", "gnd"]:
|
|
||||||
for pin in inst.get_pins(pin_name):
|
|
||||||
if inst.mod.cell_name == 'sky130_fd_bd_sram__sram_sp_colend' or 'sky130_fd_bd_sram__sram_sp_colenda':
|
|
||||||
if inst.mirror == "MY":
|
|
||||||
if pin_name == "vdd" and pin.layer == 'm1':
|
|
||||||
self.add_layout_pin_rect_center(text="vdd",
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=inst.lr(),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
elif pin_name == "gnd" and pin.layer == 'm1':
|
|
||||||
self.add_layout_pin_rect_center(text="gnd",
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=inst.ll(),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
else:
|
|
||||||
if pin_name == "vdd" and pin.layer == 'm1':
|
|
||||||
self.add_layout_pin_rect_center(text="vdd",
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=inst.ll(),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
elif pin_name == "gnd" and pin.layer == 'm1':
|
|
||||||
self.add_layout_pin_rect_center(text="gnd",
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=inst.lr(),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
|
|
||||||
|
|
||||||
for col in range(len(self.insts)):
|
|
||||||
|
|
||||||
inst = self.insts[col]
|
|
||||||
if col % 4 == 0:
|
|
||||||
pin = self.cell_inst[col].get_pin("bl")
|
|
||||||
text = "fake_bl_{}".format(int(col/2))
|
|
||||||
self.add_layout_pin(text=text,
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=pin.ll().scale(1, 0),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
|
|
||||||
pin = self.cell_inst[col].get_pin("br")
|
|
||||||
text = "fake_br_{}".format(int(col/2))
|
|
||||||
self.add_layout_pin(text=text,
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=pin.ll().scale(1, 0),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
|
|
||||||
elif col % 4 == 2:
|
|
||||||
pin = self.cell_inst[col].get_pin("bl")
|
|
||||||
text = "fake_bl_{}".format(int(col/2))
|
|
||||||
self.add_layout_pin(text=text,
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=pin.ll().scale(1, 0),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
|
|
||||||
pin = self.cell_inst[col].get_pin("br")
|
|
||||||
text = "fake_br_{}".format(int(col/2))
|
|
||||||
self.add_layout_pin(text=text,
|
|
||||||
layer=pin.layer,
|
|
||||||
offset=pin.ll().scale(1, 0),
|
|
||||||
width=pin.width(),
|
|
||||||
height=pin.height())
|
|
||||||
return
|
|
||||||
|
|
||||||
def add_supply_pins(self):
|
|
||||||
for col in range(len(self.insts)):
|
|
||||||
inst = self.cell_inst[col]
|
|
||||||
|
|
||||||
if 'VPB' or 'vnb' in self.cell_inst[col].mod.pins:
|
|
||||||
pin = inst.get_pin("vpb")
|
|
||||||
self.objs.append(geometry.rectangle(layer["nwell"],
|
|
||||||
pin.ll(),
|
|
||||||
pin.width(),
|
|
||||||
pin.height()))
|
|
||||||
self.objs.append(geometry.label("vdd", layer["nwell"], pin.center()))
|
|
||||||
|
|
||||||
|
|
||||||
if 'VNB' or 'vnb' in self.cell_inst[col].mod.pins:
|
|
||||||
try:
|
|
||||||
from openram.tech import layer_override
|
|
||||||
if layer_override['VNB']:
|
|
||||||
pin = inst.get_pin("vnb")
|
|
||||||
self.objs.append(geometry.label("gnd", layer["pwellp"], pin.center()))
|
|
||||||
self.objs.append(geometry.rectangle(layer["pwellp"],
|
|
||||||
pin.ll(),
|
|
||||||
pin.width(),
|
|
||||||
pin.height()))
|
|
||||||
except:
|
|
||||||
pin = inst.get_pin("vnb")
|
|
||||||
self.add_label("vdd", pin.layer, pin.center())
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
def create_all_wordline_names(self, row_size=None):
|
|
||||||
if row_size == None:
|
|
||||||
row_size = self.row_size
|
|
||||||
|
|
||||||
for row in range(row_size):
|
|
||||||
for port in self.all_ports:
|
|
||||||
self.wordline_names[port].append("wl_{0}_{1}".format(port, row))
|
|
||||||
|
|
||||||
self.all_wordline_names = [x for sl in zip(*self.wordline_names) for x in sl]
|
|
||||||
@@ -13,7 +13,7 @@ from openram.tech import drc
|
|||||||
from openram.tech import array_row_multiple
|
from openram.tech import array_row_multiple
|
||||||
from openram.tech import array_col_multiple
|
from openram.tech import array_col_multiple
|
||||||
from openram import OPTS
|
from openram import OPTS
|
||||||
from openram.modules import replica_bitcell_array
|
from openram.modules.replica_bitcell_array import replica_bitcell_array
|
||||||
from .sky130_bitcell_base_array import sky130_bitcell_base_array
|
from .sky130_bitcell_base_array import sky130_bitcell_base_array
|
||||||
|
|
||||||
|
|
||||||
@@ -27,38 +27,5 @@ class sky130_replica_bitcell_array(replica_bitcell_array, sky130_bitcell_base_ar
|
|||||||
bitcell (Bl/BR disconnected).
|
bitcell (Bl/BR disconnected).
|
||||||
"""
|
"""
|
||||||
def __init__(self, rows, cols, rbl=None, left_rbl=None, right_rbl=None, name=""):
|
def __init__(self, rows, cols, rbl=None, left_rbl=None, right_rbl=None, name=""):
|
||||||
|
|
||||||
super().__init__(rows, cols, rbl, left_rbl, right_rbl, name)
|
super().__init__(rows, cols, rbl, left_rbl, right_rbl, name)
|
||||||
# total_ports = OPTS.num_rw_ports + OPTS.num_w_ports + OPTS.num_r_ports
|
|
||||||
# self.all_ports = list(range(total_ports))
|
|
||||||
#
|
|
||||||
# self.column_size = cols
|
|
||||||
# self.row_size = rows
|
|
||||||
#
|
|
||||||
# # This is how many RBLs are in all the arrays
|
|
||||||
# if rbl:
|
|
||||||
# self.rbl = rbl
|
|
||||||
# else:
|
|
||||||
# self.rbl=[1, 1 if len(self.all_ports)>1 else 0]
|
|
||||||
# # This specifies which RBL to put on the left or right
|
|
||||||
# # by port number
|
|
||||||
# # This could be an empty list
|
|
||||||
# if left_rbl != None:
|
|
||||||
# self.left_rbl = left_rbl
|
|
||||||
# else:
|
|
||||||
# self.left_rbl = [0]
|
|
||||||
# # This could be an empty list
|
|
||||||
# if right_rbl != None:
|
|
||||||
# self.right_rbl = right_rbl
|
|
||||||
# else:
|
|
||||||
# self.right_rbl=[1] if len(self.all_ports) > 1 else []
|
|
||||||
# self.rbls = self.left_rbl + self.right_rbl
|
|
||||||
#
|
|
||||||
# if ((self.column_size + self.rbl[0] + self.rbl[1]) % array_col_multiple != 0):
|
|
||||||
# debug.error("Invalid number of cols including rbl(s): {}. Total cols must be divisible by {}".format(self.column_size + self.rbl[0] + self.rbl[1], array_col_multiple), -1)
|
|
||||||
#
|
|
||||||
# if ((self.row_size + self.rbl[0] + self.rbl[1]) % array_row_multiple != 0):
|
|
||||||
# debug.error("invalid number of rows including dummy row(s): {}. Total cols must be divisible by {}".format(self.row_size + self.rbl[0] + self.rbl[1], array_row_multiple), -15)
|
|
||||||
#
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user