aboutsummaryrefslogtreecommitdiff
path: root/src/pld/virtex2.h
blob: b69e3c97a956ab9397df948608f1ded4796200f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* SPDX-License-Identifier: GPL-2.0-or-later */

/***************************************************************************
 *   Copyright (C) 2006 by Dominic Rath                                    *
 *   Dominic.Rath@gmx.de                                                   *
 ***************************************************************************/

#ifndef OPENOCD_PLD_VIRTEX2_H
#define OPENOCD_PLD_VIRTEX2_H

#include <jtag/jtag.h>

#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;
};

struct virtex2_pld_device {
	struct jtag_tap *tap;
	int no_jstart;
	struct virtex2_command_set command_set;
};

#endif /* OPENOCD_PLD_VIRTEX2_H */