2019-06-20 01:03:21 +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
|
2019-06-20 01:03:21 +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
|
2023-08-03 09:42:42 +02:00
|
|
|
from openram.base import geometry
|
2023-07-31 05:06:40 +02:00
|
|
|
from .pattern import pattern
|
2020-01-30 02:58:30 +01:00
|
|
|
|
2020-01-27 11:53:29 +01:00
|
|
|
class dummy_array(bitcell_base_array):
|
2019-06-20 01:03:21 +02:00
|
|
|
"""
|
|
|
|
|
Generate a dummy row/column for the replica array.
|
|
|
|
|
"""
|
2023-09-11 20:23:39 +02:00
|
|
|
|
|
|
|
|
def __init__(self, rows, cols, column_offset=0, row_offset=0 ,mirror=0, location="", name=""):
|
2020-07-23 23:43:14 +02:00
|
|
|
super().__init__(rows=rows, cols=cols, column_offset=column_offset, name=name)
|
2023-09-11 20:23:39 +02:00
|
|
|
self.location = location
|
|
|
|
|
self.row_offset = row_offset
|
2019-07-11 00:56:51 +02:00
|
|
|
self.mirror = mirror
|
2023-09-11 20:23:39 +02:00
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
self.create_netlist()
|
|
|
|
|
if not OPTS.netlist_only:
|
|
|
|
|
self.create_layout()
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
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_bitline_names()
|
|
|
|
|
self.create_all_wordline_names()
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
self.add_modules()
|
|
|
|
|
self.add_pins()
|
|
|
|
|
self.create_instances()
|
|
|
|
|
|
|
|
|
|
def create_layout(self):
|
|
|
|
|
|
2023-07-31 05:06:40 +02:00
|
|
|
self.place_array()
|
2019-06-20 01:03:21 +02:00
|
|
|
|
|
|
|
|
self.add_layout_pins()
|
|
|
|
|
|
2022-04-05 22:51:55 +02:00
|
|
|
self.route_supplies()
|
|
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
self.add_boundary()
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
self.DRC_LVS()
|
|
|
|
|
|
|
|
|
|
def add_modules(self):
|
|
|
|
|
""" Add the modules used in this design """
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2020-11-06 01:55:08 +01:00
|
|
|
self.dummy_cell = factory.create(module_type=OPTS.dummy_bitcell)
|
|
|
|
|
self.cell = factory.create(module_type=OPTS.bitcell)
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
def create_instances(self):
|
|
|
|
|
""" Create the module instances used in this design """
|
2023-07-31 05:06:40 +02:00
|
|
|
self.cell_inst={}
|
2023-08-14 23:19:58 +02:00
|
|
|
if self.cell.mirror.y:
|
|
|
|
|
core_block = [[0 for x in range(2)] for y in range(2)]
|
2023-09-11 20:23:39 +02:00
|
|
|
core_block[(0+self.mirror) %2][0] = geometry.instance("core_0_0", mod=self.dummy_cell, is_bitcell=True)
|
|
|
|
|
core_block[(1+self.mirror) %2][0] = geometry.instance("core_1_0", mod=self.dummy_cell, is_bitcell=True, mirror='MX')
|
|
|
|
|
core_block[(0+self.mirror) %2][1] = geometry.instance("core_0_1", mod=self.dummy_cell, is_bitcell=True, mirror='MY')
|
|
|
|
|
core_block[(1+self.mirror) %2][1] = geometry.instance("core_1_1", mod=self.dummy_cell, is_bitcell=True, mirror='XY')
|
2023-08-14 23:19:58 +02:00
|
|
|
else:
|
|
|
|
|
core_block = [[0 for x in range(1)] for y in range(2)]
|
|
|
|
|
core_block[(0+self.mirror) %2][0] = geometry.instance("core_0_0", mod=self.dummy_cell, is_bitcell=True)
|
|
|
|
|
core_block[(1+self.mirror) %2][0] = geometry.instance("core_1_0", mod=self.dummy_cell, is_bitcell=True, mirror='MX')
|
2023-07-31 07:39:23 +02:00
|
|
|
|
2023-07-31 05:06:40 +02:00
|
|
|
|
2023-09-11 20:23:39 +02:00
|
|
|
self.pattern = pattern(self, "dummy_array", core_block, num_rows=self.row_size, num_cols=self.column_size, name_template="bit_r{0}_c{1}")
|
2023-07-31 05:06:40 +02:00
|
|
|
self.pattern.connect_array()
|
2019-06-20 01:03:21 +02:00
|
|
|
|
2020-09-01 18:55:23 +02:00
|
|
|
def add_pins(self):
|
|
|
|
|
# bitline pins are not added because they are floating
|
2020-10-16 22:43:56 +02:00
|
|
|
for bl_name in self.get_bitline_names():
|
|
|
|
|
self.add_pin(bl_name, "INOUT")
|
|
|
|
|
# bitline pins are not added because they are floating
|
2020-09-01 18:55:23 +02:00
|
|
|
for wl_name in self.get_wordline_names():
|
|
|
|
|
self.add_pin(wl_name, "INPUT")
|
|
|
|
|
self.add_pin("vdd", "POWER")
|
|
|
|
|
self.add_pin("gnd", "GROUND")
|
2020-11-03 15:29:17 +01:00
|
|
|
|
2019-06-20 01:03:21 +02:00
|
|
|
def input_load(self):
|
2020-08-28 02:30:58 +02:00
|
|
|
# FIXME: This appears to be old code from previous characterization. Needs to be updated.
|
2019-06-20 01:03:21 +02:00
|
|
|
wl_wire = self.gen_wl_wire()
|
|
|
|
|
return wl_wire.return_input_cap()
|