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: EPM7032SQ44

-- Copyright (C) 1998-2005 Altera Corporation
--
-- File Name     : 7032SQ44.BSD
-- Device        : EPM7032SQ44
-- Package       : 44-Pin Plastic Quad Flat Pack
-- BSDL Version  : 3.01
-- BSDL Status   : Final
-- Date Created  : 12/8/1998
-- Created by    : Altera BSDL Generation Program Ver. 1.20      
-- Verification  : Software syntax checked on:
--                   Agilent Technologies 3070 BSDL Compiler
--                   ASSET ScanWorks ver. 3.1.1
--                   Corelis ScanPlus TPG ver. 4.12
--                   Genrad BSDL syntax checker ver. 4.01, a component
--                      of Scan Pathfinder(tm) and BasicSCAN(tm)
--                   GOEPEL Electronics' CASCON-GALAXY(R) ver. 4.0
--                   JTAG Technologies BSDL Converter ver. 2.4
--
-- Documentation : MAX 7000 Family Datasheet
--                 AN39: JTAG Boundary Scan Testing for Altera Devices
--
-- *********************************************************************
-- *                           IMPORTANT NOTICE                        *
-- *********************************************************************
--
-- Altera, MAX 7000S and EPM7032S are trademarks of Altera
-- Corporation.  Altera products, marketed under trademarks, are
-- protected under numerous US and foreign patents and pending
-- applications, maskwork rights, and copyrights.   Altera warrants
-- performance of its semiconductor products to current specifications
-- in accordance with Altera's standard warranty, but reserves the
-- right to make changes to any products and services at any time
-- without notice.  Altera assumes no responsibility or liability
-- arising out of the application or use of any information, product,
-- or service described herein except as expressly agreed to in
-- writing by Altera Corporation.  Altera customers are advised to
-- obtain the latest version of device specifications before relying
-- on any published information and before placing orders for products
-- or services.
--
-- *********************************************************************
-- *                     ENTITY DEFINITION WITH PORTS                  *
-- *********************************************************************

entity EPM7032SQ44 is
  generic (PHYSICAL_PIN_MAP : string := "PQFP44");

port (
--I/O Pins
    IO42   , IO43   , IO44   , IO2    , IO3    , IO5    , IO6    , 
    IO8    , IO10   , IO11   , IO12   , IO13   , IO14   , IO15   , 
    IO18   , IO19   , IO20   , IO21   , IO22   , IO23   , IO25   , 
    IO27   , IO28   , IO30   , IO31   , IO33   , IO34   , IO35   
    : linkage bit;
--Dedicated Input Pins
    IN39   , IN40   , IN37   , IN38   : linkage bit;
--JTAG Ports
    TCK    , TMS    , TDI    : in bit;
    TDO    : out bit;
--Power Pins
    VCC    : linkage bit_vector (1 to 4);
--Ground Pins
    GND    : linkage bit_vector (1 to 4)
);

use STD_1149_1_1994.all;

attribute COMPONENT_CONFORMANCE of EPM7032SQ44 :
          entity is "STD_1149_1_1993";

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

attribute PIN_MAP of EPM7032SQ44 : entity is PHYSICAL_PIN_MAP;
constant PQFP44 : PIN_MAP_STRING :=
--I/O Pins
    "IO42   : 42  , IO43   : 43  , IO44   : 44  , IO2    : 2   , "&
    "IO3    : 3   , IO5    : 5   , IO6    : 6   , IO8    : 8   , "&
    "IO10   : 10  , IO11   : 11  , IO12   : 12  , IO13   : 13  , "&
    "IO14   : 14  , IO15   : 15  , IO18   : 18  , IO19   : 19  , "&
    "IO20   : 20  , IO21   : 21  , IO22   : 22  , IO23   : 23  , "&
    "IO25   : 25  , IO27   : 27  , IO28   : 28  , IO30   : 30  , "&
    "IO31   : 31  , IO33   : 33  , IO34   : 34  , IO35   : 35  , "&
--Dedicated Input Pins
    "IN39   : 39  , IN40   : 40  , IN37   : 37  , IN38   : 38  , "&
--JTAG ports
    "TCK    : 26  , TMS    : 7   , TDI    : 1   , TDO    : 32  , "&
--Power Pins
    "VCC    : (41  , 9   , 17  , 29  ), "&
--Ground Pins
    "GND    : (4   , 16  , 24  , 36  )";

-- *********************************************************************
-- *                       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 EPM7032SQ44 : entity is 10;
attribute INSTRUCTION_OPCODE of EPM7032SQ44 : entity is
  "BYPASS            (1111111111), "&
  "EXTEST            (0000000011), "&
  "SAMPLE            (0001010111), "&
  "IDCODE            (0001011001)";

attribute INSTRUCTION_CAPTURE of EPM7032SQ44 : entity is "0101010101";

attribute IDCODE_REGISTER of EPM7032SQ44 : entity is
  "0000"&               --4-bit Version
  "0111000000110010"&   --16-bit Part Number (hex 7032)
  "00001101110"&        --11-bit Manufacturer's Identity
  "1";                  --Mandatory LSB
attribute REGISTER_ACCESS of EPM7032SQ44 : entity is
  "DEVICE_ID        (IDCODE)";

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

attribute BOUNDARY_LENGTH of EPM7032SQ44 : entity is 1;
attribute BOUNDARY_REGISTER of EPM7032SQ44 : entity is
  "0 (BC_4, *, internal, 1)";

-- *********************************************************************
-- *                            DESIGN WARNING                         *
-- *********************************************************************

attribute DESIGN_WARNING of EPM7032SQ44 : entity is
  "Although the EPM7032S 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 EPM7032SQ44;