BSDL Files Library for JTAG

The only free public library that contains thousands of BSDL (Boundary Scan Description Language) models to use with BScan/JTAG tools

BSDL model: STRATIX_10_1SX280HHF55_HPS

-- Copyright (C) 2018 Intel Corporation
--
-- File Name    : 1SX280HHF55_HPS.bsd
-- Device       : 1SX280HHF55_HPS 
-- BSDL Version : 1.00 
-- ***********************************************************************************
-- *                                IMPORTANT NOTICE                                 *
-- ***********************************************************************************
--
-- Your use of Intel Corporation's design tools, logic functions and other software/tools
-- and its AMPP partner logic functions, and any output files from any of the foregoing
-- (including device programming or simulation files), and any associated documentation
-- or information are expressly subject to the terms and conditions of the 
-- Intel Program License Subscription Agreement,Intel MegaCore Function License Agreement
-- including, without limitation, that your use is for the sole purpose of programming 
-- logic devices manufactured by Intel and sold by Intel or its authorized distributors.
-- Please refer to the applicable agreement for further details.
--
-- This file is for FPGA with HPS only
                                                                        
-- ***********************************************************************************
-- *                            ENTITY DEFINITION WITH PORTS                         *
-- ***********************************************************************************
                                                                        
entity STRATIX_10_1SX280HHF55_HPS is
  generic (PHYSICAL_PIN_MAP : string := "FBGA2912");

port (
--JTAG Ports
    TMS     , TCK     , TDI    : in bit;
    TDO     : out bit
);

use STD_1149_1_2001.all;
attribute COMPONENT_CONFORMANCE of STRATIX_10_1SX280HHF55_HPS :
entity is "STD_1149_1_2001";

-- ***********************************************************************************
-- *                                    PIN MAPPING                                  *
-- ***********************************************************************************

attribute PIN_MAP of STRATIX_10_1SX280HHF55_HPS : entity is PHYSICAL_PIN_MAP;
constant FBGA2912 : PIN_MAP_STRING :=
--JTAG ports
    "TMS   : BK29 , TCK   : BJ29 , TDO   : BL29 , "&  
    "TDI   : BH28"; 
-- ***********************************************************************************
-- *                              IEEE 1149.1 TAP PORTS                              *
-- ***********************************************************************************

attribute TAP_SCAN_IN of TDI     : signal is true;
attribute TAP_SCAN_MODE of TMS   : signal is true;
attribute TAP_SCAN_OUT of TDO    : signal is true;
attribute TAP_SCAN_CLOCK of TCK  : signal is (10.00e6,BOTH);


-- ***********************************************************************************
-- *                          INSTRUCTIONS AND REGISTER ACCESS                       *
-- ***********************************************************************************



attribute INSTRUCTION_LENGTH of STRATIX_10_1SX280HHF55_HPS : entity is 4;
attribute INSTRUCTION_OPCODE of STRATIX_10_1SX280HHF55_HPS : entity is
-- IEEE Std.1149.1
"ABORT             (1000), "& 
"DPACC             (1010), "& 
"APACC             (1011), "& 
"IDCODE            (1110), "& 
"BYPASS            (1111), "& 
"EXTEST            (0000), "&	-- WARNING: UNIMPLEMENTED, DO NOT USE
"SAMPLE            (0001), "&	-- WARNING: UNIMPLEMENTED, DO NOT USE
"PRELOAD           (0001)  ";	-- WARNING: UNIMPLEMENTED, DO NOT USE

attribute INSTRUCTION_CAPTURE of STRATIX_10_1SX280HHF55_HPS : entity is "xx01"; 

attribute INSTRUCTION_PRIVATE of STRATIX_10_1SX280HHF55_HPS : entity is
"ABORT,"&				-- ARM Debug Access Port Instructions
"DPACC,"&				-- ARM Debug Access Port Instructions
"APACC";				-- ARM Debug Access Port Instructions


attribute IDCODE_REGISTER of STRATIX_10_1SX280HHF55_HPS : entity is
  "0110"&               --4-bit Version
  "1011101000000000"&   --16-bit Part Number (hex BA00)
  "01000111011"&        --11-bit Manufacturer's Identity
  "1";                  --Mandatory LSB

attribute REGISTER_ACCESS of STRATIX_10_1SX280HHF55_HPS : entity is
"BYPASS                (BYPASS)," &
"DEVICE_ID             (IDCODE)" ;

-- ***********************************************************************************
-- *                           BOUNDARY SCAN CELL INFORMATION                        *
-- ***********************************************************************************

attribute BOUNDARY_LENGTH of STRATIX_10_1SX280HHF55_HPS : entity is 1;
attribute BOUNDARY_REGISTER of STRATIX_10_1SX280HHF55_HPS : entity is
"0 (BC_0, *, internal,X)";
-- ***********************************************************************************
-- *                                   DESIGN WARNING                                *
-- ***********************************************************************************

attribute DESIGN_WARNING of STRATIX_10_1SX280HHF55_HPS : entity is
"Although the STRATIX_10_1SX280HHF55_HPS device contains circuitry to support the"&
"TAP controller, this device does not offer Boundary Scan Cells to"&
"support the EXTEST and SAMPLE/PRELOAD instructions.  When the"&
"instruction register is updated with these instructions, the"&
"bypass register is selected."; 

end STRATIX_10_1SX280HHF55_HPS ;


-- *********************************************************************
-- *                            REVISION HISTORY                       *
-- *********************************************************************
--    Revision      Date             Description    
--    1.00          11/15/2018       Initial release