mirror of https://github.com/efabless/caravel.git
Renamed the poorly and awkwardly named "sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped"
cell to the simpler (and easier to remember) "xres_buf".
This commit is contained in:
parent
a2aacdb5d2
commit
dd66d1e5ca
|
@ -1338,7 +1338,7 @@ module caravan (
|
|||
);
|
||||
|
||||
// XRES (chip input pin reset) reset level converter
|
||||
sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped rstb_level (
|
||||
xres_buf rstb_level (
|
||||
`ifdef USE_POWER_PINS
|
||||
.VPWR(vddio_core),
|
||||
.LVPWR(vccd_core),
|
||||
|
|
|
@ -64,7 +64,7 @@
|
|||
`include "gl/gpio_control_block.v"
|
||||
`include "gl/gpio_defaults_block.v"
|
||||
`include "gl/gpio_logic_high.v"
|
||||
`include "gl/sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped.v"
|
||||
`include "gl/xres_buf.v"
|
||||
`include "gl/caravan.v"
|
||||
`else
|
||||
`include "digital_pll.v"
|
||||
|
@ -82,7 +82,7 @@
|
|||
`include "gpio_control_block.v"
|
||||
`include "gpio_defaults_block.v"
|
||||
`include "gpio_logic_high.v"
|
||||
`include "sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped.v"
|
||||
`include "xres_buf.v"
|
||||
`include "mgmt_core_wrapper.v"
|
||||
`include "caravan.v"
|
||||
`endif
|
||||
|
|
|
@ -1216,7 +1216,7 @@ module caravan_openframe (
|
|||
);
|
||||
|
||||
// XRES (chip input pin reset) reset level converter
|
||||
sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped rstb_level (
|
||||
xres_buf rstb_level (
|
||||
`ifdef USE_POWER_PINS
|
||||
.VPWR(vddio_core),
|
||||
.LVPWR(vccd_core),
|
||||
|
|
|
@ -1391,7 +1391,7 @@ module caravel (
|
|||
);
|
||||
|
||||
// XRES (chip input pin reset) reset level converter
|
||||
sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped rstb_level (
|
||||
xres_buf rstb_level (
|
||||
`ifdef USE_POWER_PINS
|
||||
.VPWR(vddio_core),
|
||||
.LVPWR(vccd_core),
|
||||
|
|
|
@ -60,7 +60,7 @@
|
|||
`include "gl/gpio_control_block.v"
|
||||
`include "gl/gpio_defaults_block.v"
|
||||
`include "gl/gpio_logic_high.v"
|
||||
`include "gl/sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped.v"
|
||||
`include "gl/xres_buf.v"
|
||||
`include "gl/caravel.v"
|
||||
`else
|
||||
`include "digital_pll.v"
|
||||
|
@ -78,7 +78,7 @@
|
|||
`include "gpio_control_block.v"
|
||||
`include "gpio_defaults_block.v"
|
||||
`include "gpio_logic_high.v"
|
||||
`include "sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped.v"
|
||||
`include "xres_buf.v"
|
||||
`include "mgmt_core_wrapper.v"
|
||||
`include "caravel.v"
|
||||
`endif
|
||||
|
|
|
@ -1275,7 +1275,7 @@ module caravel_openframe (
|
|||
);
|
||||
|
||||
// XRES (chip input pin reset) reset level converter
|
||||
sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped rstb_level (
|
||||
xres_buf rstb_level (
|
||||
`ifdef USE_POWER_PINS
|
||||
.VPWR(vddio_core),
|
||||
.LVPWR(vccd_core),
|
||||
|
|
|
@ -13,7 +13,12 @@
|
|||
// limitations under the License.
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
module sky130_fd_sc_hvl__lsbufhv2lv_1_wrapped (
|
||||
// Module xres_buf is a level-shift buffer between the xres pad (used for
|
||||
// digital reset) and the caravel chip core. The xres pad output is in
|
||||
// the 3.3V domain while the signal goes to the digital circuitry in the
|
||||
// 1.8V domain.
|
||||
|
||||
module xres_buf (
|
||||
X ,
|
||||
A ,
|
||||
`ifdef USE_POWER_PINS
|
Loading…
Reference in New Issue