-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added a cascode common source (11) cascode stage pcell.
- Loading branch information
sud_ana
committed
Jul 24, 2024
1 parent
8e943ff
commit cf7c940
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
openfasoc/generators/glayout/glayout/flow/blocks/cascode_common_source/__init__.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from glayout.flow.blocks.cascode_common_source import common_source |
67 changes: 67 additions & 0 deletions
67
...soc/generators/glayout/glayout/flow/blocks/cascode_common_source/cascode_common_source.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
from gdsfactory import Component | ||
from glayout.flow.pdk.mappedpdk import MappedPDK | ||
from glayout.flow.placement.two_transistor_interdigitized import two_nfet_interdigitized | ||
from glayout.flow.placement.two_transistor_interdigitized import two_pfet_interdigitized | ||
from glayout.flow.primitives.fet import pmos | ||
from glayout.flow.primitives.fet import nmos | ||
from glayout.flow.primitives.guardring import tapring | ||
|
||
from glayout.flow.pdk.util.comp_utils import prec_ref_center, prec_center, movey, evaluate_bbox | ||
from glayout.flow.routing.smart_route import smart_route | ||
from glayout.flow.routing.c_route import c_route | ||
from glayout.flow.routing.straight_route import straight_route | ||
|
||
from glayout.flow.pdk.gf180_mapped import gf180_mapped_pdk | ||
from glayout.flow.pdk.sky130_mapped import sky130_mapped_pdk | ||
|
||
def Cascode_CS(pdk: MappedPDK, L1, W1, L2, W2, cs_type="nfet"): | ||
Cascode_CS = Component(name="Cascode_cs") | ||
|
||
# Add two nfets for the cascode. | ||
if (cs_type=="nfet"): | ||
fet_M1=nmos(pdk, length=L1, width=W1, with_tie=False, sd_route_topmet="met3", gate_route_topmet="met3") | ||
fet_M2=nmos(pdk, length=L2, width=W2, with_tie=False, sd_route_topmet="met3", gate_route_topmet="met3") | ||
elif (cs_type=="pfet"): | ||
fet_M1=pmos(pdk, length=L1, width=W1) | ||
fet_M2=pmos(pdk, length=L2, width=W2) | ||
|
||
# Generate a reference to M1, M2 for placement and routing | ||
M1_ref = prec_ref_center(fet_M1) | ||
Cascode_CS.add(M1_ref) | ||
Cascode_CS.add_ports(M1_ref.get_ports_list(), prefix="M1_") | ||
M2_ref = prec_ref_center(fet_M2) | ||
Cascode_CS.add(M2_ref) | ||
Cascode_CS.add_ports(M2_ref.get_ports_list(), prefix="M2_") | ||
|
||
# Get dimensions of M1, M2 for displacing M1 above M2 | ||
M1_dim = prec_ref_center(M1_ref) | ||
M2_dim = prec_ref_center(M2_ref) | ||
movey(M2_ref, 0.5*(evaluate_bbox(M1_ref)[1]+evaluate_bbox(M2_ref)[1]) + pdk.util_max_metal_seperation()) | ||
|
||
# Routing the Source of M2 to drain of M1: | ||
Cascode_CS << c_route(pdk, | ||
Cascode_CS.ports["M2_multiplier_0_source_W"], | ||
Cascode_CS.ports["M1_multiplier_0_drain_W"]) | ||
# Cascode_CS << smart_route(pdk, | ||
# Cascode_CS.ports["M1_multiplier_0_drain_N"], | ||
# Cascode_CS.ports["M2_multiplier_0_source_S"], | ||
# M1_ref, M2_ref) | ||
|
||
# Add a guard tap ring around the cascode | ||
shift_amount = -prec_center(Cascode_CS.flatten())[1] | ||
tap_ring = tapring(pdk, | ||
enclosed_rectangle=evaluate_bbox(Cascode_CS.flatten(), padding=pdk.util_max_metal_seperation())) | ||
tap_ring_ref = Cascode_CS << tap_ring | ||
tap_ring_ref.movey(shift_amount) | ||
|
||
return Cascode_CS | ||
|
||
mapped_pdk_build = sky130_mapped_pdk | ||
Cascode_cs_component = Cascode_CS(mapped_pdk_build,2,3,4,6) | ||
Cascode_cs_component.show() | ||
|
||
magic_drc_result = sky130_mapped_pdk.drc_magic(Cascode_cs_component, Cascode_cs_component.name) | ||
if magic_drc_result : | ||
print("DRC is clean: ", magic_drc_result) | ||
else: | ||
print("DRC failed. Please try again.") |