mirror of https://github.com/lnis-uofu/SOFA.git
[HDL] Now use a proper drive strength of 4 in the digital I/O cells
This commit is contained in:
parent
3ae41e2207
commit
ce91890a0e
|
@ -36,14 +36,14 @@ module EMBEDDED_IO_HD (
|
|||
.X(SOC_DIR)
|
||||
);
|
||||
|
||||
// Use drive-strength 2 for a high fan-out from global routing architecture
|
||||
sky130_fd_sc_hd__and2_2 IN_PROTECT_GATE (.A(SOC_DIR),
|
||||
// Use drive-strength 4 for a high fan-out from global routing architecture
|
||||
sky130_fd_sc_hd__and2_4 IN_PROTECT_GATE (.A(SOC_DIR),
|
||||
.B(SOC_IN),
|
||||
.X(FPGA_IN)
|
||||
);
|
||||
|
||||
// Use drive-strength 1 for a potential high fan-out from SoC components
|
||||
sky130_fd_sc_hd__and2b_1 OUT_PROTECT_GATE (.A_N(SOC_DIR),
|
||||
// Use drive-strength 4 for a potential high fan-out from SoC components
|
||||
sky130_fd_sc_hd__and2b_4 OUT_PROTECT_GATE (.A_N(SOC_DIR),
|
||||
.B(FPGA_OUT),
|
||||
.X(SOC_OUT)
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue