2020-05-28 05:03:11 +02:00
|
|
|
# See LICENSE for licensing information.
|
|
|
|
|
#
|
2024-01-03 23:32:44 +01:00
|
|
|
# Copyright (c) 2016-2024 Regents of the University of California, Santa Cruz
|
2020-05-28 05:03:11 +02:00
|
|
|
# All rights reserved.
|
|
|
|
|
#
|
2022-11-27 22:01:20 +01:00
|
|
|
from openram.sram_factory import factory
|
|
|
|
|
from openram import OPTS
|
2022-07-13 19:57:56 +02:00
|
|
|
from .bitcell_base_array import bitcell_base_array
|
2020-05-28 05:03:11 +02:00
|
|
|
|
2020-06-06 00:09:22 +02:00
|
|
|
|
2020-05-28 05:03:11 +02:00
|
|
|
class col_cap_array(bitcell_base_array):
|
|
|
|
|
"""
|
|
|
|
|
Generate a dummy row/column for the replica array.
|
|
|
|
|
"""
|
2020-10-13 20:07:31 +02:00
|
|
|
def __init__(self, rows, cols, column_offset=0, mirror=0, location="", name=""):
|
2020-07-28 01:22:21 +02:00
|
|
|
super().__init__(rows=rows, cols=cols, column_offset=column_offset, name=name)
|
2020-05-28 05:03:11 +02:00
|
|
|
self.mirror = mirror
|
2020-10-13 20:07:31 +02:00
|
|
|
self.location = location
|
2020-05-28 05:03:11 +02:00
|
|
|
|
2020-06-22 21:55:18 +02:00
|
|
|
self.no_instances = True
|
2020-05-28 05:03:11 +02:00
|
|
|
self.create_netlist()
|
|
|
|
|
if not OPTS.netlist_only:
|
|
|
|
|
self.create_layout()
|
|
|
|
|
|
|
|
|
|
def create_netlist(self):
|
|
|
|
|
""" Create and connect the netlist """
|
2020-10-13 20:07:31 +02:00
|
|
|
# This will create a default set of bitline/wordline names
|
2020-11-14 00:55:55 +01:00
|
|
|
self.cell = factory.create(module_type=OPTS.bitcell)
|
2020-10-15 22:56:37 +02:00
|
|
|
|
2020-11-14 00:55:55 +01:00
|
|
|
if not self.cell.end_caps:
|
2020-10-15 22:56:37 +02:00
|
|
|
self.create_all_wordline_names()
|
2020-10-13 20:07:31 +02:00
|
|
|
self.create_all_bitline_names()
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2020-05-28 05:03:11 +02:00
|
|
|
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()
|
2020-11-21 01:54:53 +01:00
|
|
|
|
|
|
|
|
self.height = self.dummy_cell.height
|
|
|
|
|
self.width = self.column_size * self.cell.width
|
2021-11-22 19:51:40 +01:00
|
|
|
|
2020-05-28 05:03:11 +02:00
|
|
|
self.add_boundary()
|
|
|
|
|
self.DRC_LVS()
|
|
|
|
|
|
|
|
|
|
def add_modules(self):
|
|
|
|
|
""" Add the modules used in this design """
|
2020-06-06 00:09:22 +02:00
|
|
|
self.dummy_cell = factory.create(module_type="col_cap_{}".format(OPTS.bitcell))
|
2020-05-28 05:03:11 +02:00
|
|
|
|
|
|
|
|
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)
|
2020-06-22 21:55:18 +02:00
|
|
|
self.cell_inst[row, col]=self.add_inst(name=name,
|
|
|
|
|
mod=self.dummy_cell)
|
2020-07-23 23:43:14 +02:00
|
|
|
self.connect_inst(self.get_bitcell_pins(row, col))
|
2020-05-28 05:03:11 +02:00
|
|
|
|
2020-07-23 23:43:14 +02:00
|
|
|
def get_bitcell_pins(self, row, col):
|
2020-05-28 05:03:11 +02:00
|
|
|
"""
|
|
|
|
|
Creates a list of connections in the bitcell,
|
|
|
|
|
indexed by column and row, for instance use in bitcell_array
|
|
|
|
|
"""
|
|
|
|
|
|
2020-10-15 22:56:37 +02:00
|
|
|
if len(self.all_ports) == 1:
|
2020-11-16 22:42:42 +01:00
|
|
|
bitcell_pins = ["bl0_{0}".format(col),
|
|
|
|
|
"br0_{0}".format(col),
|
2020-10-13 20:07:31 +02:00
|
|
|
"vdd"]
|
|
|
|
|
else:
|
2020-11-16 22:42:42 +01:00
|
|
|
bitcell_pins = ["bl0_{0}".format(col),
|
|
|
|
|
"br0_{0}".format(col),
|
|
|
|
|
"bl1_{0}".format(col),
|
|
|
|
|
"br1_{0}".format(col),
|
2020-10-13 20:07:31 +02:00
|
|
|
"vdd"]
|
2020-05-28 05:03:11 +02:00
|
|
|
|
|
|
|
|
return bitcell_pins
|
|
|
|
|
|
|
|
|
|
def add_layout_pins(self):
|
|
|
|
|
""" Add the layout pins """
|
|
|
|
|
|
|
|
|
|
column_list = self.cell.get_all_bitline_names()
|
|
|
|
|
|
|
|
|
|
for col in range(self.column_size):
|
|
|
|
|
for cell_column in column_list:
|
2020-06-22 21:55:18 +02:00
|
|
|
bl_pin = self.cell_inst[0, col].get_pin(cell_column)
|
|
|
|
|
self.add_layout_pin(text=cell_column + "_{0}".format(col),
|
2020-05-28 05:03:11 +02:00
|
|
|
layer=bl_pin.layer,
|
2020-06-22 21:55:18 +02:00
|
|
|
offset=bl_pin.ll().scale(1, 0),
|
2020-05-28 05:03:11 +02:00
|
|
|
width=bl_pin.width(),
|
|
|
|
|
height=self.height)
|
|
|
|
|
|
|
|
|
|
# Add vdd/gnd via stacks
|
|
|
|
|
for row in range(self.row_size):
|
|
|
|
|
for col in range(self.column_size):
|
2020-06-22 21:55:18 +02:00
|
|
|
inst = self.cell_inst[row, col]
|
2020-05-28 05:03:11 +02:00
|
|
|
for pin_name in ["vdd", "gnd"]:
|
|
|
|
|
for pin in inst.get_pins(pin_name):
|
2022-04-19 17:50:11 +02:00
|
|
|
self.copy_layout_pin(inst, pin_name)
|