mirror of https://github.com/VLSIDA/OpenRAM.git
132 lines
4.7 KiB
Python
132 lines
4.7 KiB
Python
# See LICENSE for licensing information.
|
|
#
|
|
# Copyright (c) 2016-2019 Regents of the University of California and The Board
|
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
|
# (acting for and on behalf of Oklahoma State University)
|
|
# All rights reserved.
|
|
#
|
|
from math import log
|
|
import design
|
|
from tech import drc
|
|
import debug
|
|
from sram_factory import factory
|
|
from vector import vector
|
|
from globals import OPTS
|
|
|
|
|
|
class write_mask_and_array(design.design):
|
|
"""
|
|
Array of AND gates to turn write mask signal on only when w_en is on.
|
|
The write mask AND array goes between the write driver array and the sense amp array.
|
|
"""
|
|
|
|
def __init__(self, name, columns, word_size, write_size):
|
|
design.design.__init__(self, name)
|
|
debug.info(1, "Creating {0}".format(self.name))
|
|
self.add_comment("columns: {0}".format(columns))
|
|
self.add_comment("word_size {0}".format(word_size))
|
|
self.add_comment("write_size {0}".format(write_size))
|
|
|
|
self.columns = columns
|
|
self.word_size = word_size
|
|
self.write_size = write_size
|
|
self.words_per_row = int(columns / word_size)
|
|
self.num_wmasks = int(word_size / write_size)
|
|
|
|
self.create_netlist()
|
|
if not OPTS.netlist_only:
|
|
self.create_layout()
|
|
|
|
def create_netlist(self):
|
|
self.add_modules()
|
|
self.add_pins()
|
|
self.create_and2_array()
|
|
|
|
|
|
def create_layout(self):
|
|
|
|
self.width = self.num_wmasks * self.and2.width
|
|
|
|
self.height = self.and2.height
|
|
|
|
self.place_and2_array()
|
|
self.add_layout_pins()
|
|
self.add_boundary()
|
|
self.DRC_LVS()
|
|
|
|
def add_pins(self):
|
|
for bit in range(self.num_wmasks):
|
|
self.add_pin("wmask_in_{}".format(bit),"INPUT")
|
|
self.add_pin("en", "INPUT")
|
|
for bit in range(self.num_wmasks):
|
|
self.add_pin("wmask_out_{}".format(bit),"OUTPUT")
|
|
self.add_pin("vdd","POWER")
|
|
self.add_pin("gnd","GROUND")
|
|
|
|
def add_modules(self):
|
|
self.and2 = factory.create(module_type="pand2")
|
|
self.add_mod(self.and2)
|
|
|
|
|
|
def create_and2_array(self):
|
|
self.and2_insts = {}
|
|
for bit in range(self.num_wmasks):
|
|
name = "and2_{}".format(bit)
|
|
self.and2_insts[bit] = self.add_inst(name=name,
|
|
mod=self.and2)
|
|
self.connect_inst(["wmask_in_{}".format(bit),
|
|
"en",
|
|
"wmask_out_{}".format(bit),
|
|
"vdd", "gnd"])
|
|
|
|
|
|
def place_and2_array(self):
|
|
# place the write mask AND array below the write driver array
|
|
and2_spacing = self.and2.width
|
|
for i in range(self.num_wmasks):
|
|
base = vector(i * and2_spacing, 0)
|
|
self.and2_insts[i].place(base)
|
|
|
|
|
|
def add_layout_pins(self):
|
|
for i in range(self.num_wmasks):
|
|
wmask_in_pin = self.and2_insts[i].get_pin("A")
|
|
self.add_layout_pin(text="wmask_in_{0}".format(i),
|
|
layer=wmask_in_pin.layer,
|
|
offset=wmask_in_pin.ll(),
|
|
width=wmask_in_pin.width(),
|
|
height=wmask_in_pin.height())
|
|
|
|
en_pin = self.and2_insts[i].get_pin("B")
|
|
self.add_layout_pin(text="en",
|
|
layer=en_pin.layer,
|
|
offset=en_pin.ll(),
|
|
width=en_pin.width(),
|
|
height=en_pin.height())
|
|
|
|
wmask_out_pin = self.and2_insts[i].get_pin("Z")
|
|
self.add_layout_pin(text="wmask_out_{0}".format(i),
|
|
layer=wmask_out_pin.layer,
|
|
offset=wmask_out_pin.ll(),
|
|
width=wmask_out_pin.width(),
|
|
height=wmask_out_pin.height())
|
|
|
|
for n in ["vdd", "gnd"]:
|
|
pin_list = self.and2_insts[i].get_pins(n)
|
|
for pin in pin_list:
|
|
pin_pos = pin.center()
|
|
# Add the M2->M3 stack
|
|
self.add_via_center(layers=("metal2", "via2", "metal3"),
|
|
offset=pin_pos)
|
|
self.add_layout_pin_rect_center(text=n,
|
|
layer="metal3",
|
|
offset=pin_pos)
|
|
|
|
|
|
# def get_w_en_cin(self):
|
|
# """Get the relative capacitance of all the enable connections in the bank"""
|
|
# # The enable is connected to a nand2 for every row.
|
|
# return self.driver.get_w_en_cin() * len(self.driver_insts)
|
|
|
|
|