X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Fpld%2Fvirtex2.h;h=d6d922e79d353e4caad17a51dd74b05dbf48d437;hp=7bc6c5ebbca6e52855d3a002fea6ed6505f3ccaa;hb=HEAD;hpb=a28eaa85f73759bb189a46308642502c9fa5aa4b diff --git a/src/pld/virtex2.h b/src/pld/virtex2.h index 7bc6c5ebbc..b69e3c97a9 100644 --- a/src/pld/virtex2.h +++ b/src/pld/virtex2.h @@ -1,32 +1,32 @@ +/* SPDX-License-Identifier: GPL-2.0-or-later */ + /*************************************************************************** * Copyright (C) 2006 by Dominic Rath * * Dominic.Rath@gmx.de * - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - * This program is distributed in the hope that it will be useful, * - * but WITHOUT ANY WARRANTY; without even the implied warranty of * - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * - * GNU General Public License for more details. * - * * - * You should have received a copy of the GNU General Public License * - * along with this program; if not, write to the * - * Free Software Foundation, Inc., * - * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ -#ifndef VIRTEX2_H -#define VIRTEX2_H -#include "types.h" -#include "pld.h" -#include "xilinx_bit.h" +#ifndef OPENOCD_PLD_VIRTEX2_H +#define OPENOCD_PLD_VIRTEX2_H + +#include + +#define VIRTEX2_MAX_USER_INSTRUCTIONS 4 + +struct virtex2_command_set { + uint64_t cfg_out; + uint64_t cfg_in; + uint64_t jprog_b; + uint64_t jstart; + uint64_t jshutdown; + uint64_t bypass; + uint64_t user[VIRTEX2_MAX_USER_INSTRUCTIONS]; + unsigned int num_user; +}; -typedef struct virtex2_pld_device_s -{ - jtag_tap_t *tap; -} virtex2_pld_device_t; +struct virtex2_pld_device { + struct jtag_tap *tap; + int no_jstart; + struct virtex2_command_set command_set; +}; -#endif /* VIRTEX2_H */ +#endif /* OPENOCD_PLD_VIRTEX2_H */