OpenRAM/compiler/modules/row_cap_array.py

119 lines
4.2 KiB
Python
Raw Normal View History

2020-05-28 05:03:11 +02:00
# See LICENSE for licensing information.
#
2021-01-22 20:23:28 +01:00
# Copyright (c) 2016-2021 Regents of the University of California
2020-05-28 05:03:11 +02:00
# All rights reserved.
#
from .bitcell_base_array import bitcell_base_array
2020-05-28 05:03:11 +02:00
from sram_factory import factory
from globals import OPTS
2020-06-22 21:55:18 +02:00
2020-05-28 05:03:11 +02:00
class row_cap_array(bitcell_base_array):
"""
Generate a dummy row/column for the replica array.
"""
def __init__(self, rows, cols, column_offset=0, mirror=0, name=""):
super().__init__(rows=rows, cols=cols, column_offset=column_offset, name=name)
2020-05-28 05:03:11 +02:00
self.mirror = mirror
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
self.create_all_wordline_names()
self.create_all_bitline_names()
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.width = max([x.rx() for x in self.insts])
self.height = max([x.uy() for x in self.insts])
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 """
self.dummy_cell = factory.create(module_type="row_cap_{}".format(OPTS.bitcell))
2020-05-28 05:03:11 +02:00
2020-11-06 01:55:08 +01:00
self.cell = factory.create(module_type=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):
2020-11-21 01:54:53 +01:00
for row in range(0, self.row_size):
2020-05-28 05:03:11 +02:00
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)
self.connect_inst(self.get_bitcell_pins(row, col))
2020-05-28 05:03:11 +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
"""
bitcell_pins = ["wl0_{0}".format(row),
"wl1_{0}".format(row),
2020-05-28 05:03:11 +02:00
"gnd"]
return bitcell_pins
def place_array(self, name_template, row_offset=0):
xoffset = 0.0
for col in range(self.column_size):
yoffset = self.cell.height
tempx, dir_y = self._adjust_x_offset(xoffset, col, self.column_offset)
2020-11-21 01:54:53 +01:00
for row in range(self.row_size):
tempy, dir_x = self._adjust_y_offset(yoffset, row + 1, row_offset)
2020-05-28 05:03:11 +02:00
if dir_x and dir_y:
dir_key = "XY"
elif dir_x:
dir_key = "MX"
elif dir_y:
dir_key = "MY"
else:
dir_key = ""
2020-06-22 21:55:18 +02:00
self.cell_inst[row, col].place(offset=[tempx, tempy],
mirror=dir_key)
2020-05-28 05:03:11 +02:00
yoffset += self.cell.height
xoffset += self.cell.width
def add_layout_pins(self):
""" Add the layout pins """
row_list = self.cell.get_all_wl_names()
for row in range(1, self.row_size - 1):
for cell_row in row_list:
2020-06-22 21:55:18 +02:00
wl_pin = self.cell_inst[row, 0].get_pin(cell_row)
self.add_layout_pin(text=cell_row + "_{0}".format(row),
2020-05-28 05:03:11 +02:00
layer=wl_pin.layer,
2020-06-22 21:55:18 +02:00
offset=wl_pin.ll().scale(0, 1),
2020-05-28 05:03:11 +02:00
width=self.width,
height=wl_pin.height())
for row in range(1, self.row_size - 1):
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):
self.add_layout_pin(text=pin_name,
layer=pin.layer,
offset=pin.ll(),
width=pin.width(),
height=pin.height())