IBUF - IBUF - 2025.2 English - Primitive: Input Buffer - UG1704

Spartan UltraScale+ Libraries Guide (UG1704)

Document ID
UG1704
Release Date
2025-12-17
Version
2025.2 English

Primitive: Input Buffer

  • PRIMITIVE_GROUP: I/O
  • PRIMITIVE_SUBGROUP: INPUT_BUFFER
Page-1 Graphic ID: SW & IP X9442 X9442 Buffer.7 Sheet.3 I I Sheet.4 O O Sheet.5 IBUF IBUF Sheet.6 Input from Device Pad Input from Device Pad Sheet.7 Sheet.8 Sheet.9 Sheet.10 Sheet.11 X09442-061219 X09442-061219

Introduction

Single-ended signals used as simple inputs must use an input buffer (IBUF).

I/O attributes that do not impact the logic function of the component, such as IOSTANDARD and IBUF_LOW_PWR, should be supplied to the top-level port via an appropriate property.

Port Descriptions

Port Direction Width Function
I Input 1 Buffer input connected to a top-level input port.
O Output 1 Buffer output connected to internal device circuitry.

Design Entry Method

Instantiation Yes
Inference Recommended
IP and IP Integrator Catalog No

VHDL Instantiation Template

Unless they already exist, copy the following two statements and paste them before the entity declaration.
Library UNISIM;
use UNISIM.vcomponents.all;

-- IBUF: Input Buffer
--       Spartan UltraScale+
-- Xilinx HDL Language Template, version 2025.2

IBUF_inst : IBUF
port map (
   O => O, -- 1-bit output: Buffer output
   I => I  -- 1-bit input: Buffer input
);

-- End of IBUF_inst instantiation

Verilog Instantiation Template


// IBUF: Input Buffer
//       Spartan UltraScale+
// Xilinx HDL Language Template, version 2025.2

IBUF IBUF_inst (
   .O(O), // 1-bit output: Buffer output
   .I(I)  // 1-bit input: Buffer input
);

// End of IBUF_inst instantiation

Related Information

  • Spartan UltraScale+ FPGAs SelectIO Resources User Guide (UG861)
  • Vivado Design Suite Properties Reference Guide (UG912)