mirror of https://github.com/VLSIDA/OpenRAM.git
72 lines
2.2 KiB
Python
72 lines
2.2 KiB
Python
# See LICENSE for licensing information.
|
|
#
|
|
# Copyright (c) 2016-2019 Regents of the University of California
|
|
# All rights reserved.
|
|
#
|
|
import debug
|
|
import design
|
|
from base_array import bitcell_base_array
|
|
from tech import drc
|
|
import contact
|
|
from sram_factory import factory
|
|
from vector import vector
|
|
from globals import OPTS
|
|
|
|
class dummy_array(bitcell_base_array):
|
|
"""
|
|
Generate a dummy row/column for the replica array.
|
|
"""
|
|
def __init__(self, cols, rows, column_offset=0, mirror=0, name=""):
|
|
super().__init__(cols, rows, name, column_offset)
|
|
self.mirror = mirror
|
|
|
|
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 create_layout(self):
|
|
|
|
self.place_array("dummy_r{0}_c{1}", self.mirror)
|
|
|
|
self.add_layout_pins()
|
|
|
|
self.add_boundary()
|
|
|
|
self.DRC_LVS()
|
|
|
|
def add_modules(self):
|
|
""" Add the modules used in this design """
|
|
self.dummy_cell = factory.create(module_type="dummy_bitcell")
|
|
self.add_mod(self.dummy_cell)
|
|
|
|
self.cell = factory.create(module_type="bitcell")
|
|
|
|
|
|
def create_instances(self):
|
|
""" Create the module instances used in this design """
|
|
self.cell_inst = {}
|
|
for col in range(self.column_size):
|
|
for row in range(self.row_size):
|
|
name = "bit_r{0}_c{1}".format(row, col)
|
|
self.cell_inst[row,col]=self.add_inst(name=name,
|
|
mod=self.dummy_cell)
|
|
self.connect_inst(self.get_bitcell_pins(col, row))
|
|
|
|
def input_load(self):
|
|
wl_wire = self.gen_wl_wire()
|
|
return wl_wire.return_input_cap()
|
|
|
|
def get_wordline_cin(self):
|
|
"""Get the relative input capacitance from the wordline connections in all the bitcell"""
|
|
#A single wordline is connected to all the bitcells in a single row meaning the capacitance depends on the # of columns
|
|
bitcell_wl_cin = self.cell.get_wl_cin()
|
|
total_cin = bitcell_wl_cin * self.column_size
|
|
return total_cin
|