OpenRAM/compiler/modules/rom_base_array.py

333 lines
12 KiB
Python
Raw Normal View History

2022-07-23 00:12:09 +02:00
# See LICENSE for licensing information.
#
# Copyright (c) 2016-2021 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.
#
2022-10-15 23:40:04 +02:00
import math
2022-07-23 00:12:09 +02:00
from .bitcell_base_array import bitcell_base_array
from base import vector
from globals import OPTS
from sram_factory import factory
class rom_base_array(bitcell_base_array):
2022-10-07 23:40:28 +02:00
def __init__(self, rows, cols, strap_spacing, bitmap, name="", column_offset=0):
2022-10-15 23:40:04 +02:00
2022-07-23 00:12:09 +02:00
super().__init__(name=name, rows=rows, cols=cols, column_offset=column_offset)
#TODO: data is input in col-major order for ease of parsing, create a function to convert a row-major input to col-major
2022-07-23 00:12:09 +02:00
self.data = bitmap
self.route_layer = 'm1'
2022-10-07 23:40:28 +02:00
self.strap_spacing = strap_spacing
2022-10-15 23:40:04 +02:00
self.data_col_size = self.column_size
self.array_col_size = self.column_size + math.ceil(self.column_size / strap_spacing)
2022-07-23 00:12:09 +02:00
self.create_all_bitline_names()
self.create_all_wordline_names()
self.create_netlist()
self.create_layout()
def create_netlist(self):
self.add_modules()
self.add_pins()
2022-09-02 05:06:48 +02:00
2022-07-23 00:12:09 +02:00
self.create_instances()
2022-10-07 23:40:28 +02:00
2022-07-23 00:12:09 +02:00
def create_layout(self):
2022-10-15 23:40:04 +02:00
self.place_array()
2022-10-07 23:40:28 +02:00
self.place_rails()
#self.route_bitlines()
#self.route_wordlines()
self.add_boundary()
2022-07-23 00:12:09 +02:00
2022-10-07 23:40:28 +02:00
2022-07-23 00:12:09 +02:00
#def add_pins(self):
def add_boundary(self):
2022-09-02 05:06:48 +02:00
self.width = self.dummy.width * self.column_size
self.height = self.dummy.height * self.row_size
2022-07-23 00:12:09 +02:00
super().add_boundary()
def add_modules(self):
2022-10-07 23:40:28 +02:00
# dummy cell, # "dummy" cells represent 0
2022-09-02 05:06:48 +02:00
self.dummy = factory.create(module_type="rom_dummy_cell", route_layer=self.route_layer)
2022-10-07 23:40:28 +02:00
2022-09-02 05:06:48 +02:00
2022-10-07 23:40:28 +02:00
#base cell with no contacts
self.cell_nc = factory.create(module_name="base_mod_0_contact", module_type="rom_base_cell")
#base cell with drain contact
self.cell_dc = factory.create(module_name="base_mod_d_contact", module_type="rom_base_cell", add_drain_contact=self.route_layer)
#base cell with source contact
self.cell_sc = factory.create(module_name="base_mod_s_contact", module_type="rom_base_cell", add_source_contact=self.route_layer)
#base cell with all contacts
self.cell_ac = factory.create(module_name="base_mod_sd_contact", module_type="rom_base_cell", add_source_contact=self.route_layer, add_drain_contact=self.route_layer)
2022-09-02 05:06:48 +02:00
2022-10-07 23:40:28 +02:00
self.poly_tap = factory.create(module_type="rom_poly_tap", strap_length=self.strap_spacing)
2022-10-15 23:40:04 +02:00
self.zero_tap = factory.create(module_type="rom_poly_tap", strap_length=0)
2022-09-02 05:06:48 +02:00
2022-10-07 23:40:28 +02:00
self.gnd_rail = factory.create(module_type="rom_array_gnd_tap", length=self.row_size)
2022-09-02 05:06:48 +02:00
2022-07-23 00:12:09 +02:00
def create_instances(self):
2022-10-07 23:40:28 +02:00
self.tap_inst = {}
2022-07-23 00:12:09 +02:00
self.cell_inst = {}
self.cell_list = []
2022-07-23 00:12:09 +02:00
self.current_row = 0
2022-10-07 23:40:28 +02:00
#list of current bitline interconnect nets, starts as the same as the bitline list and is updated when new insts of cells are added
int_bl_list = self.bitline_names[0]
#When rotated correctly rows are word lines
for row in range(self.row_size):
row_list = []
2022-10-15 23:40:04 +02:00
# for each new strap placed, offset the column index refrenced to get correct bit in the data array
strap_offset = 0
2022-10-07 23:40:28 +02:00
#when rotated correctly cols are bit lines
2022-10-15 23:40:04 +02:00
for col in range(self.array_col_size):
2022-07-23 00:12:09 +02:00
name = "bit_r{0}_c{1}".format(row, col)
2022-10-15 23:40:04 +02:00
data_col = col - strap_offset
if col % self.strap_spacing == 0:
name = "tap_r{0}_c{1}".format(row, col)
print("tap instance added at c{0}, r{1}".format(col, row))
self.cell_inst[row, col]=self.add_inst(name=name, mod=self.poly_tap)
self.connect_inst([])
strap_offset += 1
continue
2022-07-23 00:12:09 +02:00
2022-10-15 23:40:04 +02:00
if self.data[row][data_col] == 1:
2022-10-07 23:40:28 +02:00
# if dummy/0 cell above and below a 1, add a tx with contacts on both drain and source
# if the first row and a 0 above, add both contacts
# if the last row and 0 below add both contacts
#(row == 0 and self.data[row + 1][col] == 0):
2022-10-15 23:40:04 +02:00
if (row < self.row_size - 1 and row > 0 and self.data[row + 1][data_col] == 0 and self.data[row - 1][data_col] == 0) or \
(row == self.row_size - 1 and self.data[row - 1][data_col] == 0):
2022-10-07 23:40:28 +02:00
2022-09-02 05:06:48 +02:00
self.cell_inst[row, col]=self.add_inst(name=name, mod=self.cell_ac)
2022-10-07 23:40:28 +02:00
# if dummy/0 is below and not above, add a source contact
# if in the first row, add a source contact
2022-10-15 23:40:04 +02:00
elif (row > 0 and self.data[row - 1][data_col] == 0):
2022-09-02 05:06:48 +02:00
self.cell_inst[row, col]=self.add_inst(name=name, mod=self.cell_sc)
2022-10-15 23:40:04 +02:00
elif (row < self.row_size - 1 and self.data[row + 1][data_col] == 0) or \
2022-10-07 23:40:28 +02:00
(row == self.row_size - 1):
2022-09-02 05:06:48 +02:00
self.cell_inst[row, col]=self.add_inst(name=name, mod=self.cell_dc)
else:
2022-09-02 05:06:48 +02:00
self.cell_inst[row, col]=self.add_inst(name=name, mod=self.cell_nc)
2022-10-07 23:40:28 +02:00
2022-10-15 23:40:04 +02:00
if row == self.row_size - 1 or self.get_next_cell_in_bl(row, data_col) == -1:
bl_l = int_bl_list[data_col]
2022-10-07 23:40:28 +02:00
bl_h = "gnd"
else:
2022-10-15 23:40:04 +02:00
bl_l = int_bl_list[data_col]
int_bl_list[data_col] = "bl_int_{0}_{1}".format(row, data_col)
bl_h = int_bl_list[data_col]
2022-10-07 23:40:28 +02:00
self.connect_inst([bl_h, bl_l, self.wordline_names[0][row], "gnd"])
2022-09-02 05:06:48 +02:00
2022-09-02 05:06:48 +02:00
else:
2022-09-02 05:06:48 +02:00
self.cell_inst[row, col]=self.add_inst(name=name,
mod=self.dummy)
self.connect_inst([])
2022-10-07 23:40:28 +02:00
# when col = 0 bl_h is connected to vdd, otherwise connect to previous bl connection
2022-10-15 23:40:04 +02:00
# when col = col_size - 1 connected column_sizeto gnd otherwise create new bl connection
2022-10-07 23:40:28 +02:00
#
2022-09-02 05:06:48 +02:00
row_list.append(self.cell_inst[row, col])
2022-10-07 23:40:28 +02:00
2022-10-15 23:40:04 +02:00
name = "tap_r{0}_c{1}".format(row, self.array_col_size)
2022-10-07 23:40:28 +02:00
#print(*row_list)
2022-10-15 23:40:04 +02:00
self.cell_inst[row, self.array_col_size]=self.add_inst(name=name, mod=self.zero_tap)
2022-10-07 23:40:28 +02:00
self.connect_inst([])
self.cell_list.append(row_list)
def create_all_bitline_names(self):
for col in range(self.column_size):
for port in self.all_ports:
self.bitline_names[port].extend(["bl_{0}_{1}".format(port, col)])
# Make a flat list too
self.all_bitline_names = [x for sl in zip(*self.bitline_names) for x in sl]
2022-07-23 00:12:09 +02:00
2022-10-07 23:40:28 +02:00
def place_taps(self):
2022-09-02 05:06:48 +02:00
self.tap_pos = {}
for row in range(self.row_size):
2022-10-15 23:40:04 +02:00
for col in range(0, self.column_size, self.strap_spacing):
2022-09-02 05:06:48 +02:00
2022-10-15 23:40:04 +02:00
2022-10-07 23:40:28 +02:00
tap_x = self.dummy.width * col
tap_y = self.dummy.height * row
2022-09-02 05:06:48 +02:00
2022-10-07 23:40:28 +02:00
self.tap_pos[row, col] = vector(tap_x, tap_y)
self.tap_inst[row, col].place(self.tap_pos[row, col])
tap_x = self.dummy.width * self.column_size + self.poly_tap.width
tap_y = self.dummy.height * row
2022-09-02 05:06:48 +02:00
2022-10-07 23:40:28 +02:00
self.tap_pos[row, self.column_size] = vector(tap_x, tap_y)
self.tap_inst[row, self.column_size].place(self.tap_pos[row, self.column_size])
2022-10-15 23:40:04 +02:00
2022-10-07 23:40:28 +02:00
2022-09-02 05:06:48 +02:00
2022-10-07 23:40:28 +02:00
def place_rails(self):
2022-10-15 23:40:04 +02:00
rail_y = self.dummy.height * (self.row_size) + self.mcon_width * 0.5
start_x = self.cell_inst[self.row_size - 1, 0].rx()
end_x = self.cell_inst[self.row_size - 1, self.array_col_size - 1].cx()
#self.dummy.height * self.row_size
#self.cell_inst[self.row_size - 1,0].uy()
rail_start = vector(start_x , rail_y)
rail_end = vector(end_x, rail_y)
2022-10-07 23:40:28 +02:00
self.add_layout_pin_rect_ends( name="gnd",
layer="m1",
start=rail_start,
end=rail_end)
2022-07-23 00:12:09 +02:00
2022-10-15 23:40:04 +02:00
def place_array(self):
2022-07-23 00:12:09 +02:00
self.cell_pos = {}
2022-10-15 23:40:04 +02:00
# rows are wordlines
for row in range(self.row_size):
2022-10-15 23:40:04 +02:00
strap_cols = -1
cell_y = row * (self.dummy.height)
# columns are bit lines
for col in range(self.array_col_size):
2022-07-23 00:12:09 +02:00
2022-10-15 23:40:04 +02:00
if col % self.strap_spacing == 0:
strap_cols += 1
rot = 0
else:
rot = 90
2022-10-15 23:40:04 +02:00
bit_cols = col - strap_cols
2022-07-23 00:12:09 +02:00
2022-10-15 23:40:04 +02:00
if col == 0:
cell_x = 0
else:
cell_x = (self.dummy.width * bit_cols) + (self.poly_tap.width * strap_cols)
2022-07-23 00:12:09 +02:00
2022-10-15 23:40:04 +02:00
self.cell_pos[row, col] = vector(cell_x, cell_y)
self.cell_inst[row, col].place(self.cell_pos[row, col], rotate=rot)
strap_cols += 1
bit_cols = self.array_col_size - strap_cols
cell_x = (self.dummy.width * bit_cols) + (self.poly_tap.width * strap_cols)
self.cell_pos[row, self.array_col_size] = vector(cell_x, cell_y)
self.cell_inst[row, self.array_col_size].place(self.cell_pos[row, self.array_col_size])
2022-07-23 00:12:09 +02:00
def route_bitlines(self):
#get first nmos in col
#connect to main bitline wire
#get next nmos in col
#route source to drain
#loop
2022-07-23 00:12:09 +02:00
for col in range(self.column_size):
for row in range(self.row_size ):
#nmos at this position and another nmos further down
if self.data[row][col] == 1 :
next_row = self.get_next_cell_in_bl(row, col)
if next_row != -1:
drain_pin = self.cell_inst[row, col].get_pin("D")
source_pin = self.cell_inst[next_row, col].get_pin("S")
source_pos = source_pin.bc()
drain_pos = drain_pin.bc()
self.add_path(self.route_layer, [drain_pos, source_pos])
def get_next_cell_in_bl(self, row_start, col):
for row in range(row_start + 1, self.row_size):
if self.data[row][col] == 1:
return row
return -1
2022-07-23 00:12:09 +02:00
def get_current_bl_interconnect(self, col):
"""Get interconnect net for bitline(col) currently being connected """
return "bli_{0}_{1}".format(self.current_row, col)
2022-07-23 00:12:09 +02:00
def create_next_bl_interconnect(self, row, col):
"""create a new net name for a bitline interconnect"""
self.current_row = row
return "bli_{0}_{1}".format(row, col)
2022-07-23 00:12:09 +02:00
def get_bitcell_pins(self, row, col):
"""
return the correct nets to attack nmos/cell drain, gate, source, body pins to
"""
2022-07-23 00:12:09 +02:00
bitcell_pins = []
#drain pin
if self.current_row == 0:
bitcell_pins.append(self.bitline_names[0][col])
else:
bitcell_pins.append(self.get_current_bl_interconnect(col))
#gate pin
bitcell_pins.append(self.get_wordline_names()[row])
#source pin
"""If there is another bitcell to be placed below the current cell, """
if self.get_next_cell_in_bl(row, col) == -1:
2022-07-23 00:12:09 +02:00
bitcell_pins.append("gnd")
else:
"""create another interconnect net"""
2022-07-23 00:12:09 +02:00
bitcell_pins.append(self.create_next_bl_interconnect(row, col))
2022-07-23 00:12:09 +02:00
#body pin
bitcell_pins.append("gnd")
return bitcell_pins