2019-04-26 12:21:50 -07:00
|
|
|
# See LICENSE for licensing information.
|
|
|
|
|
#
|
2024-01-03 14:32:44 -08:00
|
|
|
# Copyright (c) 2016-2024 Regents of the University of California and The Board
|
2019-06-14 08:43:41 -07:00
|
|
|
# of Regents for the Oklahoma Agricultural and Mechanical College
|
|
|
|
|
# (acting for and on behalf of Oklahoma State University)
|
|
|
|
|
# All rights reserved.
|
2019-04-26 12:21:50 -07:00
|
|
|
#
|
2022-11-27 13:01:20 -08:00
|
|
|
from openram import debug
|
|
|
|
|
from openram.tech import drc, spice
|
|
|
|
|
from openram.sram_factory import factory
|
|
|
|
|
from openram import OPTS
|
2022-07-13 10:57:56 -07:00
|
|
|
from .bitcell_base_array import bitcell_base_array
|
2023-07-24 23:25:35 -07:00
|
|
|
from .pattern import pattern
|
|
|
|
|
from openram.base import geometry, instance
|
2023-07-27 18:39:18 -07:00
|
|
|
from math import ceil
|
2018-08-07 09:44:01 -07:00
|
|
|
|
2020-01-27 11:53:29 +01:00
|
|
|
class bitcell_array(bitcell_base_array):
|
2018-08-07 09:44:01 -07:00
|
|
|
"""
|
2020-08-06 11:17:49 -07:00
|
|
|
Creates a rows x cols array of memory cells.
|
|
|
|
|
Assumes bit-lines and word lines are connected by abutment.
|
2018-08-07 09:44:01 -07:00
|
|
|
"""
|
2026-04-14 14:48:26 -07:00
|
|
|
def __init__(self, rows, cols, column_offset=0, row_offset=0, name="", left_rbl=None, right_rbl=None):
|
|
|
|
|
super().__init__(rows=rows, cols=cols, column_offset=column_offset, row_offset=row_offset, name=name)
|
2020-09-09 11:54:46 -07:00
|
|
|
debug.info(1, "Creating {0} {1} x {2}".format(self.name, rows, cols))
|
|
|
|
|
self.add_comment("rows: {0} cols: {1}".format(rows, cols))
|
2018-08-07 09:44:01 -07:00
|
|
|
|
2020-09-09 11:54:46 -07:00
|
|
|
# This will create a default set of bitline/wordline names
|
|
|
|
|
self.create_all_bitline_names()
|
|
|
|
|
self.create_all_wordline_names()
|
2020-11-03 06:29:17 -08:00
|
|
|
|
2018-08-27 10:42:40 -07:00
|
|
|
self.create_netlist()
|
2018-08-27 16:42:48 -07:00
|
|
|
if not OPTS.netlist_only:
|
|
|
|
|
self.create_layout()
|
2020-11-03 06:29:17 -08:00
|
|
|
|
2018-08-07 09:44:01 -07:00
|
|
|
# We don't offset this because we need to align
|
|
|
|
|
# the replica bitcell in the control logic
|
2020-01-30 01:45:33 +00:00
|
|
|
# self.offset_all_coordinates()
|
2020-08-06 11:17:49 -07:00
|
|
|
|
2018-08-27 16:42:48 -07:00
|
|
|
def create_netlist(self):
|
|
|
|
|
""" Create and connect the netlist """
|
2018-08-28 10:24:09 -07:00
|
|
|
self.add_modules()
|
2018-08-27 16:42:48 -07:00
|
|
|
self.add_pins()
|
2018-11-13 16:05:22 -08:00
|
|
|
self.create_instances()
|
2018-08-07 09:44:01 -07:00
|
|
|
|
|
|
|
|
def create_layout(self):
|
2018-08-28 10:24:09 -07:00
|
|
|
|
2023-07-24 23:25:35 -07:00
|
|
|
self.place_array()
|
2018-08-07 09:44:01 -07:00
|
|
|
|
2018-08-27 10:42:40 -07:00
|
|
|
self.add_layout_pins()
|
|
|
|
|
|
2022-04-05 13:51:55 -07:00
|
|
|
self.route_supplies()
|
|
|
|
|
|
2019-05-27 16:32:38 -07:00
|
|
|
self.add_boundary()
|
2020-08-06 11:17:49 -07:00
|
|
|
|
2018-08-27 10:42:40 -07:00
|
|
|
self.DRC_LVS()
|
2018-08-27 16:42:48 -07:00
|
|
|
|
2018-08-28 10:24:09 -07:00
|
|
|
def add_modules(self):
|
|
|
|
|
""" Add the modules used in this design """
|
2020-11-05 16:55:08 -08:00
|
|
|
self.cell = factory.create(module_type=OPTS.bitcell)
|
2018-08-28 10:24:09 -07:00
|
|
|
|
2018-11-13 16:05:22 -08:00
|
|
|
def create_instances(self):
|
2026-04-14 14:48:26 -07:00
|
|
|
r = self.row_offset
|
|
|
|
|
c = self.column_offset
|
2023-07-24 23:25:35 -07:00
|
|
|
self.cell_inst={}
|
2023-08-14 13:59:31 -07:00
|
|
|
if self.cell.mirror.y:
|
|
|
|
|
core_block = [[0 for x in range(2)] for y in range(2)]
|
2026-04-27 17:24:13 -07:00
|
|
|
core_block[(0 + r) % 2][(0+c) %2] = geometry.instance(f"core_{(0 + r)%2}_{(0+c)%2}", mod=self.cell, is_bitcell=True, mirror='')
|
|
|
|
|
core_block[(0 + r) % 2][(1+c) %2] = geometry.instance(f"core_{(0 + r)%2}_{(1+c)%2}", mod=self.cell, is_bitcell=True, mirror='MY')
|
|
|
|
|
core_block[(1 + r) % 2][(0+c) %2] = geometry.instance(f"core_{(1 + r)%2}_{(0+c)%2}", mod=self.cell, is_bitcell=True, mirror='MX')
|
|
|
|
|
core_block[(1 + r) % 2][(1+c) %2] = geometry.instance(f"core_{(1 + r)%2}_{(1+c)%2}", mod=self.cell, is_bitcell=True, mirror='XY')
|
2023-08-14 13:59:31 -07:00
|
|
|
else:
|
2026-04-14 14:48:26 -07:00
|
|
|
core_block = [[0 for x in range(1)] for y in range(2)]
|
|
|
|
|
core_block[(0 + self.row_offset) % 2][(0+self.column_offset) %2] = geometry.instance("core_0_0", mod=self.cell, is_bitcell=True)
|
|
|
|
|
core_block[(1 + self.row_offset) % 2][(0+self.column_offset) %2] = geometry.instance("core_1_0", mod=self.cell, is_bitcell=True, mirror='MX')
|
2026-04-22 01:33:47 -07:00
|
|
|
#print(r, c)
|
|
|
|
|
#print(core_block)
|
2023-07-30 22:39:23 -07:00
|
|
|
|
2023-08-03 16:24:24 -07:00
|
|
|
self.pattern = pattern(self, "bitcell_array", core_block, num_rows=self.row_size, num_cols=self.column_size,name_template="bit_r{0}_c{1}")
|
2023-07-25 15:02:06 -07:00
|
|
|
self.pattern.connect_array()
|
2023-08-03 00:42:42 -07:00
|
|
|
|
2023-08-10 00:34:16 -07:00
|
|
|
for key in self.cell_inst.keys():
|
2023-08-15 11:30:16 -07:00
|
|
|
(row, col) = key
|
|
|
|
|
if col>0 and col<self.column_size-1 and row>0 and row<self.row_size-1:
|
2023-08-10 00:34:16 -07:00
|
|
|
self.trim_insts.add(self.cell_inst[key].name)
|
2021-11-22 10:51:40 -08:00
|
|
|
|
2019-03-04 19:27:53 -08:00
|
|
|
def analytical_power(self, corner, load):
|
2018-08-07 09:44:01 -07:00
|
|
|
"""Power of Bitcell array and bitline in nW."""
|
2020-08-06 11:17:49 -07:00
|
|
|
|
2018-08-07 09:44:01 -07:00
|
|
|
# Dynamic Power from Bitline
|
|
|
|
|
bl_wire = self.gen_bl_wire()
|
2020-04-20 14:23:40 -07:00
|
|
|
cell_load = 2 * bl_wire.return_input_cap()
|
2019-06-25 15:45:02 -07:00
|
|
|
bl_swing = OPTS.rbl_delay_percentage
|
2019-09-04 16:08:18 -07:00
|
|
|
freq = spice["default_event_frequency"]
|
2019-03-04 19:27:53 -08:00
|
|
|
bitline_dynamic = self.calc_dynamic_power(corner, cell_load, freq, swing=bl_swing)
|
2020-08-06 11:17:49 -07:00
|
|
|
|
2020-04-20 14:23:40 -07:00
|
|
|
# Calculate the bitcell power which currently only includes leakage
|
2019-03-04 19:27:53 -08:00
|
|
|
cell_power = self.cell.analytical_power(corner, load)
|
2020-08-06 11:17:49 -07:00
|
|
|
|
2020-01-30 01:45:33 +00:00
|
|
|
# Leakage power grows with entire array and bitlines.
|
2018-08-07 09:44:01 -07:00
|
|
|
total_power = self.return_power(cell_power.dynamic + bitline_dynamic * self.column_size,
|
|
|
|
|
cell_power.leakage * self.column_size * self.row_size)
|
|
|
|
|
return total_power
|
|
|
|
|
|
|
|
|
|
def gen_wl_wire(self):
|
2018-10-25 23:55:31 -07:00
|
|
|
if OPTS.netlist_only:
|
|
|
|
|
width = 0
|
|
|
|
|
else:
|
|
|
|
|
width = self.width
|
2019-12-17 11:03:36 -08:00
|
|
|
wl_wire = self.generate_rc_net(int(self.column_size), width, drc("minwidth_m1"))
|
2020-08-06 11:17:49 -07:00
|
|
|
# 2 access tx gate per cell
|
|
|
|
|
wl_wire.wire_c = 2 * spice["min_tx_gate_c"] + wl_wire.wire_c
|
2018-08-07 09:44:01 -07:00
|
|
|
return wl_wire
|
|
|
|
|
|
|
|
|
|
def gen_bl_wire(self):
|
2018-10-25 23:55:31 -07:00
|
|
|
if OPTS.netlist_only:
|
|
|
|
|
height = 0
|
|
|
|
|
else:
|
|
|
|
|
height = self.height
|
2018-08-07 09:44:01 -07:00
|
|
|
bl_pos = 0
|
2020-04-20 14:23:40 -07:00
|
|
|
bl_wire = self.generate_rc_net(int(self.row_size - bl_pos), height, drc("minwidth_m1"))
|
2020-08-06 11:17:49 -07:00
|
|
|
# 1 access tx d/s per cell
|
|
|
|
|
bl_wire.wire_c =spice["min_tx_drain_c"] + bl_wire.wire_c
|
2018-08-07 09:44:01 -07:00
|
|
|
return bl_wire
|
|
|
|
|
|
2020-09-29 12:15:42 -07:00
|
|
|
def graph_exclude_bits(self, targ_row=None, targ_col=None):
|
2020-09-29 10:26:31 -07:00
|
|
|
"""
|
|
|
|
|
Excludes bits in column from being added to graph except target
|
|
|
|
|
"""
|
2020-04-20 14:23:40 -07:00
|
|
|
# Function is not robust with column mux configurations
|
2019-04-24 14:23:22 -07:00
|
|
|
for row in range(self.row_size):
|
2019-05-15 17:17:26 -07:00
|
|
|
for col in range(self.column_size):
|
|
|
|
|
if row == targ_row and col == targ_col:
|
|
|
|
|
continue
|
2020-04-20 14:23:40 -07:00
|
|
|
self.graph_inst_exclude.add(self.cell_inst[row, col])
|
2020-08-06 11:17:49 -07:00
|
|
|
|
2019-05-20 18:35:52 -07:00
|
|
|
def get_cell_name(self, inst_name, row, col):
|
2020-04-20 14:23:40 -07:00
|
|
|
"""Gets the spice name of the target bitcell."""
|
2021-05-14 16:16:25 -07:00
|
|
|
return inst_name + "{}x".format(OPTS.hier_seperator) + self.cell_inst[row, col].name, self.cell_inst[row, col]
|