#include <linux/autoconf.h>
#include <linux/module.h>
#include <linux/sched.h>
#include <linux/slab.h>
#include <linux/ioport.h>
#include <linux/errno.h>
#include <linux/kernel.h>
#include <linux/fs.h>
#include <linux/string.h>
#include <linux/init.h>
#include <asm/arch/hwregs/reg_map.h>
#include <asm/arch/hwregs/reg_rdwr.h>
#include <asm/arch/hwregs/gio_defs.h>
#include <asm/arch/hwregs/intr_vect_defs.h>
#include <asm/arch/hwregs/pinmux_defs.h>
#include <asm/io.h>
#include <asm/system.h>
#include <asm/irq.h>
#include <asm/elphel/fpgactrl.h>
#include <asm/delay.h>
#include <asm/uaccess.h>
#include "fpgactrl.h"
#include "x3x3.h"
Include dependency graph for fpgajtag.c:
Go to the source code of this file.
Data Structures | |
struct | JTAG_channel_t |
Defines | |
#define | D(x) |
#define | FPGAJTAG_TDO_BIT 0 |
#define | FPGAJTAG_TDI_BIT 1 |
#define | FPGAJTAG_TMS_BIT 2 |
#define | FPGAJTAG_TCK_BIT 3 |
#define | FPGAJTAG_DONE_BIT 5 |
#define | FPGAJTAG_RSTBTN_BIT 6 |
#define | FPGAJTAG_PGM_BIT 7 |
#define | XC3S1000_BITSIZE 3223488 |
#define | XC3S1200E_BITSIZE 3841189 |
#define | XC3S1200E_BOUNDARY_SIZE 772 |
#define | FJTAG_BUF_SIZE 0x77000 |
#define | FJTAG_MAX_HEAD 0x1000 |
#define | FJTAG_RAW_WSIZE 0x40000 |
#define | FJTAG_RAW_RSIZE 0x30000 |
#define | FJTAG_IDSIZE 0x40 |
#define | FPGA_JTAG_MAJOR 132 |
#define | FPGA_JTAG_DRIVER_NAME "Elphel (R) model 353 FPGA (Xilinx (R) XC3S1200E) configuration driver" |
#define | FPGA_JTAG_MAXMINOR 10 |
#define | FPGA_JTAG_RESET_MINOR 0 |
#define | FPGA_JTAG_RAW_MINOR 0 |
#define | FPGA_JTAG_MINOR 1 |
#define | FPGA_SJTAG_MINOR 2 |
#define | FPGA_AJTAG_MINOR 3 |
#define | FPGA_JTAG_BOUNDARY_MINOR 5 |
#define | FPGA_SJTAG_BOUNDARY_MINOR 6 |
#define | FPGA_AJTAG_BOUNDARY_MINOR 7 |
#define | JTAG_RAW 0 |
#define | JTAG_MAIN_FPGA 1 |
#define | JTAG_SENSOR_FPGA 2 |
#define | JTAG_AUX_FPGA 3 |
#define | JTAG_NCHANNELS 4 |
#define | JTAG_MODE_CLOSED 0 |
#define | JTAG_MODE_RDID 1 |
#define | JTAG_MODE_PGM 2 |
#define | JTAG_MODE_BOUNDARY 3 |
#define | JTAG_MODE_SAMPLE 4 |
#define | JTAG_MODE_EXTEST 5 |
#define | JTAG_MODE_RAW 6 |
#define | PC_DOUT_INITIAL 0 |
#define | JTAG_RAW_SEND 0x10 |
#define | JTAG_RAW_SETCHN 0x20 |
#define | JTAG_RAW_DEACT 0x22 |
#define | JTAG_RAW_ACT 0x23 |
#define | JTAG_RAW_PGMOFF 0x24 |
#define | JTAG_RAW_PGMON 0x25 |
#define | JTAG_RAW_WAIT 0x80 |
Functions | |
static int | fpga_jtag_open (struct inode *inode, struct file *filp) |
static int | fpga_jtag_release (struct inode *inode, struct file *filp) |
static ssize_t | fpga_jtag_write (struct file *file, const char *buf, size_t count, loff_t *off) |
static loff_t | fpga_jtag_lseek (struct file *file, loff_t offset, int orig) |
static ssize_t | fpga_jtag_read (struct file *file, char *buf, size_t count, loff_t *off) |
static int __init | fpga_jtag_init (void) |
loff_t | fjtag_bitsize (int minor) |
loff_t | fjtag_bytesize (int minor) |
int | JTAG_channel (int minor) |
void | initPortC (void) |
void | set_pgm_mode (int chn, int en) |
void | set_pgm (int chn, int pgmon) |
int | read_done (int chn) |
int | jtag_send (int chn, int tms, int len, int d) |
int | jtag_write_bits (int chn, unsigned char *buf, int len, int check, int last, int prev[2]) |
int | JTAG_configure (int chn, unsigned char *buf, int len) |
int | JTAG_readID (int chn, unsigned char *buf) |
int | JTAG_openChannel (int chn) |
int | JTAG_resetChannel (int chn) |
int | JTAG_CAPTURE (int chn, unsigned char *buf, int len) |
int | JTAG_EXTEST (int chn, unsigned char *buf, int len) |
void | JTAG_push_raw (int b) |
int | JTAG_process_raw (void) |
int | JTAG_whatopen (void) |
module_init (fpga_jtag_init) | |
MODULE_LICENSE ("GPL") | |
MODULE_AUTHOR ("Andrey Filippov <andrey@elphel.com>.") | |
MODULE_DESCRIPTION (FPGA_JTAG_DRIVER_NAME) | |
Variables | |
static unsigned char | bitstream_data [FJTAG_BUF_SIZE] |
static unsigned char * | raw_fifo_w = &bitstream_data[0] |
static unsigned char * | raw_fifo_r = &bitstream_data[FJTAG_RAW_WSIZE] |
static struct JTAG_channel_t | JTAG_channels [JTAG_NCHANNELS] |
static int | data_modified = 0 |
static reg_gio_rw_pc_dout | pc_dout |
static const char | fpga_jtag_name [] = "fpga_jtag_loader" |
static int | minors [FPGA_JTAG_MAXMINOR+1] |
static struct file_operations | fpga_jtag_fops |
static int | raw_fifo_w_wp |
static int | raw_fifo_w_rp |
static int | raw_fifo_r_wp |
static int | raw_fifo_r_rp |
static int | raw_chn |
#define D | ( | x | ) |
*************************************************************************** ! FILE NAME : fpgajtag353.c ! DESCRIPTION: TBD ! Copyright 2002-2007 (C) Elphel, Inc. ! -----------------------------------------------------------------------------** ! ! 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 3 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, see <http://www.gnu.org/licenses/>. ! -----------------------------------------------------------------------------** !
TODO: replace static buffer (what a waste!) I suspect "somebody" is is playing with portA during JTAG configuration. To test that I'll use 256K static buffer, copy all the bitstream there, disable interrupts and do the programming. No debug with printk ...
Definition at line 106 of file fpgajtag.c.
#define FJTAG_BUF_SIZE 0x77000 |
#define FJTAG_IDSIZE 0x40 |
#define FJTAG_MAX_HEAD 0x1000 |
#define FJTAG_RAW_RSIZE 0x30000 |
Definition at line 137 of file fpgajtag.c.
Referenced by fpga_jtag_lseek(), fpga_jtag_open(), and JTAG_push_raw().
#define FJTAG_RAW_WSIZE 0x40000 |
#define FPGA_AJTAG_BOUNDARY_MINOR 7 |
Definition at line 154 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGA_AJTAG_MINOR 3 |
Definition at line 150 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGA_JTAG_BOUNDARY_MINOR 5 |
Definition at line 152 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGA_JTAG_MAJOR 132 |
#define FPGA_JTAG_MAXMINOR 10 |
#define FPGA_JTAG_MINOR 1 |
Definition at line 148 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGA_JTAG_RAW_MINOR 0 |
Definition at line 147 of file fpgajtag.c.
#define FPGA_JTAG_RESET_MINOR 0 |
Definition at line 146 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGA_SJTAG_BOUNDARY_MINOR 6 |
Definition at line 153 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGA_SJTAG_MINOR 2 |
Definition at line 149 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), and JTAG_channel().
#define FPGAJTAG_DONE_BIT 5 |
#define FPGAJTAG_PGM_BIT 7 |
#define FPGAJTAG_RSTBTN_BIT 6 |
#define FPGAJTAG_TCK_BIT 3 |
Definition at line 123 of file fpgajtag.c.
Referenced by initPortC(), jtag_send(), and jtag_write_bits().
#define FPGAJTAG_TDI_BIT 1 |
#define FPGAJTAG_TDO_BIT 0 |
#define FPGAJTAG_TMS_BIT 2 |
Definition at line 122 of file fpgajtag.c.
Referenced by initPortC(), jtag_send(), and jtag_write_bits().
#define JTAG_AUX_FPGA 3 |
Definition at line 159 of file fpgajtag.c.
Referenced by JTAG_channel(), jtag_send(), jtag_write_bits(), read_done(), and set_pgm().
#define JTAG_MAIN_FPGA 1 |
Definition at line 157 of file fpgajtag.c.
Referenced by fpga_jtag_release(), JTAG_channel(), jtag_send(), jtag_write_bits(), read_done(), and set_pgm().
#define JTAG_MODE_BOUNDARY 3 |
#define JTAG_MODE_CLOSED 0 |
#define JTAG_MODE_EXTEST 5 |
#define JTAG_MODE_PGM 2 |
#define JTAG_MODE_RAW 6 |
#define JTAG_MODE_RDID 1 |
#define JTAG_MODE_SAMPLE 4 |
#define JTAG_NCHANNELS 4 |
Definition at line 160 of file fpgajtag.c.
Referenced by fpga_jtag_open(), JTAG_process_raw(), and JTAG_whatopen().
#define JTAG_RAW 0 |
#define JTAG_RAW_ACT 0x23 |
#define JTAG_RAW_DEACT 0x22 |
#define JTAG_RAW_PGMOFF 0x24 |
#define JTAG_RAW_PGMON 0x25 |
#define JTAG_RAW_SEND 0x10 |
#define JTAG_RAW_SETCHN 0x20 |
#define JTAG_RAW_WAIT 0x80 |
#define JTAG_SENSOR_FPGA 2 |
Definition at line 158 of file fpgajtag.c.
Referenced by JTAG_channel(), JTAG_openChannel(), jtag_send(), jtag_write_bits(), read_done(), set_pgm(), and set_pgm_mode().
#define PC_DOUT_INITIAL 0 |
#define XC3S1000_BITSIZE 3223488 |
Definition at line 130 of file fpgajtag.c.
#define XC3S1200E_BITSIZE 3841189 |
#define XC3S1200E_BOUNDARY_SIZE 772 |
loff_t fjtag_bitsize | ( | int | minor | ) |
loff_t fjtag_bytesize | ( | int | minor | ) |
static int __init fpga_jtag_init | ( | void | ) | [static] |
Definition at line 1165 of file fpgajtag.c.
References FPGA_JTAG_DRIVER_NAME, fpga_jtag_fops, FPGA_JTAG_MAJOR, FPGA_JTAG_MAXMINOR, fpga_jtag_name, fpga_state, initPortC(), KERN_ERR, minors, and printk.
static loff_t fpga_jtag_lseek | ( | struct file * | file, | |
loff_t | offset, | |||
int | orig | |||
) | [static] |
Definition at line 594 of file fpgajtag.c.
References D, FJTAG_RAW_RSIZE, JTAG_channel(), JTAG_channels, JTAG_MODE_RDID, JTAG_RAW, mode, printk, raw_fifo_r_rp, raw_fifo_r_wp, JTAG_channel_t::sizer, and JTAG_channel_t::sizew.
static int fpga_jtag_open | ( | struct inode * | inode, | |
struct file * | filp | |||
) | [static] |
Definition at line 348 of file fpgajtag.c.
References JTAG_channel_t::bitsr, bitstream_data, JTAG_channel_t::bitsw, D, JTAG_channel_t::dbuf, FJTAG_BUF_SIZE, FJTAG_IDSIZE, FJTAG_RAW_RSIZE, FJTAG_RAW_WSIZE, FPGA_AJTAG_BOUNDARY_MINOR, FPGA_AJTAG_MINOR, FPGA_JTAG_BOUNDARY_MINOR, FPGA_JTAG_MINOR, FPGA_JTAG_RESET_MINOR, FPGA_SJTAG_BOUNDARY_MINOR, FPGA_SJTAG_MINOR, fpga_state, FPGA_STATE_LOADED, FPGA_STATE_SDRAM_INIT, JTAG_channel(), JTAG_channels, JTAG_MODE_BOUNDARY, JTAG_MODE_CLOSED, JTAG_MODE_PGM, JTAG_MODE_RAW, JTAG_NCHANNELS, JTAG_openChannel(), JTAG_whatopen(), minors, JTAG_channel_t::mode, mode, printk, raw_chn, raw_fifo_r_rp, raw_fifo_r_wp, raw_fifo_w_rp, raw_fifo_w_wp, JTAG_channel_t::rp, JTAG_channel_t::sizer, JTAG_channel_t::sizew, JTAG_channel_t::wdirty, JTAG_channel_t::wp, XC3S1200E_BITSIZE, and XC3S1200E_BOUNDARY_SIZE.
ssize_t fpga_jtag_read | ( | struct file * | file, | |
char * | buf, | |||
size_t | count, | |||
loff_t * | off | |||
) | [static] |
Definition at line 525 of file fpgajtag.c.
References D, FPGA_AJTAG_BOUNDARY_MINOR, FPGA_AJTAG_MINOR, FPGA_JTAG_BOUNDARY_MINOR, FPGA_JTAG_MINOR, FPGA_JTAG_RESET_MINOR, FPGA_SJTAG_BOUNDARY_MINOR, FPGA_SJTAG_MINOR, JTAG_CAPTURE(), JTAG_channel(), JTAG_channels, JTAG_EXTEST(), JTAG_MODE_BOUNDARY, JTAG_MODE_EXTEST, JTAG_MODE_RDID, JTAG_MODE_SAMPLE, JTAG_readID(), mode, JTAG_channel_t::mode, printk, raw_fifo_r, raw_fifo_r_rp, raw_fifo_r_wp, raw_fifo_w, raw_fifo_w_wp, JTAG_channel_t::rp, rp, JTAG_channel_t::sizer, JTAG_channel_t::wdirty, and wp.
static int fpga_jtag_release | ( | struct inode * | inode, | |
struct file * | filp | |||
) | [static] |
Definition at line 430 of file fpgajtag.c.
References D, FPGA_AJTAG_BOUNDARY_MINOR, FPGA_AJTAG_MINOR, FPGA_JTAG_BOUNDARY_MINOR, FPGA_JTAG_MINOR, FPGA_JTAG_RESET_MINOR, FPGA_SJTAG_BOUNDARY_MINOR, FPGA_SJTAG_MINOR, fpga_state, FPGA_STATE_INITIALIZED, JTAG_channel(), JTAG_channels, JTAG_configure(), JTAG_EXTEST(), JTAG_MAIN_FPGA, JTAG_MODE_CLOSED, JTAG_resetChannel(), minors, JTAG_channel_t::mode, printk, rp, and wp.
static ssize_t fpga_jtag_write | ( | struct file * | file, | |
const char * | buf, | |||
size_t | count, | |||
loff_t * | off | |||
) | [static] |
Definition at line 470 of file fpgajtag.c.
References D, FPGA_AJTAG_BOUNDARY_MINOR, FPGA_AJTAG_MINOR, FPGA_JTAG_BOUNDARY_MINOR, FPGA_JTAG_MINOR, FPGA_JTAG_RESET_MINOR, FPGA_SJTAG_BOUNDARY_MINOR, FPGA_SJTAG_MINOR, JTAG_channel(), JTAG_channels, JTAG_EXTEST(), JTAG_MODE_EXTEST, JTAG_process_raw(), JTAG_channel_t::mode, printk, raw_fifo_w, raw_fifo_w_wp, JTAG_channel_t::sizew, JTAG_channel_t::wdirty, JTAG_channel_t::wp, and wp.
void initPortC | ( | void | ) |
Definition at line 639 of file fpgajtag.c.
References FPGAJTAG_DONE_BIT, FPGAJTAG_PGM_BIT, FPGAJTAG_RSTBTN_BIT, FPGAJTAG_TCK_BIT, FPGAJTAG_TDI_BIT, FPGAJTAG_TDO_BIT, FPGAJTAG_TMS_BIT, pc_dout, and PC_DOUT_INITIAL.
Referenced by fpga_jtag_init().
Definition at line 1085 of file fpgajtag.c.
References D, data_modified, jtag_send(), jtag_write_bits(), local_irq_restore, local_irq_save, and printk.
Referenced by fpga_jtag_read().
Definition at line 247 of file fpgajtag.c.
References FPGA_AJTAG_BOUNDARY_MINOR, FPGA_AJTAG_MINOR, FPGA_JTAG_BOUNDARY_MINOR, FPGA_JTAG_MINOR, FPGA_JTAG_RESET_MINOR, FPGA_SJTAG_BOUNDARY_MINOR, FPGA_SJTAG_MINOR, JTAG_AUX_FPGA, JTAG_MAIN_FPGA, JTAG_RAW, and JTAG_SENSOR_FPGA.
Referenced by fpga_jtag_lseek(), fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), and fpga_jtag_write().
Definition at line 868 of file fpgajtag.c.
References D, FJTAG_MAX_HEAD, JTAG_channels, jtag_send(), jtag_write_bits(), local_irq_restore, local_irq_save, printk, read_done(), rp, set_pgm(), set_pgm_mode(), udelay, wp, xa0, and XC3S1200E_BITSIZE.
Referenced by fpga_jtag_release().
Definition at line 1131 of file fpgajtag.c.
References D, jtag_send(), jtag_write_bits(), local_irq_restore, local_irq_save, and printk.
Referenced by fpga_jtag_read(), fpga_jtag_release(), and fpga_jtag_write().
Definition at line 989 of file fpgajtag.c.
References D, jtag_send(), JTAG_SENSOR_FPGA, printk, set_pgm(), set_pgm_mode(), and udelay.
Referenced by fpga_jtag_open().
int JTAG_process_raw | ( | void | ) |
Definition at line 296 of file fpgajtag.c.
References FJTAG_RAW_WSIZE, JTAG_NCHANNELS, JTAG_push_raw(), JTAG_RAW_ACT, JTAG_RAW_DEACT, JTAG_RAW_PGMOFF, JTAG_RAW_PGMON, JTAG_RAW_SEND, JTAG_RAW_SETCHN, JTAG_RAW_WAIT, jtag_send(), raw_chn, raw_fifo_w, raw_fifo_w_rp, raw_fifo_w_wp, read_done(), set_pgm(), set_pgm_mode(), and udelay.
Referenced by fpga_jtag_write().
void JTAG_push_raw | ( | int | b | ) |
Definition at line 292 of file fpgajtag.c.
References FJTAG_RAW_RSIZE, raw_fifo_r, and raw_fifo_r_wp.
Referenced by JTAG_process_raw().
Definition at line 1014 of file fpgajtag.c.
References D, data_modified, jtag_send(), jtag_write_bits(), local_irq_restore, local_irq_save, and printk.
Referenced by fpga_jtag_read().
Definition at line 1007 of file fpgajtag.c.
References D, jtag_send(), printk, and set_pgm_mode().
Referenced by fpga_jtag_release().
Definition at line 722 of file fpgajtag.c.
References D, data, FPGAJTAG_TCK_BIT, FPGAJTAG_TMS_BIT, JTAG_AUX_FPGA, JTAG_MAIN_FPGA, JTAG_SENSOR_FPGA, pc_dout, port_csp0_addr, printk, and udelay.
Referenced by JTAG_CAPTURE(), JTAG_configure(), JTAG_EXTEST(), JTAG_openChannel(), JTAG_process_raw(), JTAG_readID(), and JTAG_resetChannel().
int JTAG_whatopen | ( | void | ) |
Definition at line 340 of file fpgajtag.c.
References JTAG_channels, JTAG_NCHANNELS, and mode.
Referenced by fpga_jtag_open().
Definition at line 775 of file fpgajtag.c.
References D, data, FPGAJTAG_TCK_BIT, FPGAJTAG_TMS_BIT, JTAG_AUX_FPGA, JTAG_MAIN_FPGA, JTAG_SENSOR_FPGA, pc_dout, port_csp0_addr, printk, and udelay.
Referenced by JTAG_CAPTURE(), JTAG_configure(), JTAG_EXTEST(), and JTAG_readID().
MODULE_AUTHOR | ( | "Andrey Filippov <andrey@elphel.com>." | ) |
MODULE_DESCRIPTION | ( | FPGA_JTAG_DRIVER_NAME | ) |
module_init | ( | fpga_jtag_init | ) |
MODULE_LICENSE | ( | "GPL" | ) |
Definition at line 707 of file fpgajtag.c.
References data, JTAG_AUX_FPGA, JTAG_MAIN_FPGA, JTAG_SENSOR_FPGA, port_csp0_addr, and udelay.
Referenced by JTAG_configure(), and JTAG_process_raw().
Definition at line 689 of file fpgajtag.c.
References D, JTAG_AUX_FPGA, JTAG_MAIN_FPGA, JTAG_SENSOR_FPGA, pc_dout, port_csp0_addr, printk, and udelay.
Referenced by JTAG_configure(), JTAG_openChannel(), and JTAG_process_raw().
Definition at line 678 of file fpgajtag.c.
References D, JTAG_SENSOR_FPGA, port_csp0_addr, printk, and udelay.
Referenced by JTAG_configure(), JTAG_openChannel(), JTAG_process_raw(), and JTAG_resetChannel().
unsigned char bitstream_data[FJTAG_BUF_SIZE] [static] |
int data_modified = 0 [static] |
struct file_operations fpga_jtag_fops [static] |
Initial value:
{ owner: THIS_MODULE, open: fpga_jtag_open, release: fpga_jtag_release, llseek: fpga_jtag_lseek, read: fpga_jtag_read, write: fpga_jtag_write }
Definition at line 210 of file fpgajtag.c.
Referenced by fpga_jtag_init().
const char fpga_jtag_name[] = "fpga_jtag_loader" [static] |
struct JTAG_channel_t JTAG_channels[JTAG_NCHANNELS] [static] |
Definition at line 186 of file fpgajtag.c.
Referenced by fpga_jtag_lseek(), fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_release(), fpga_jtag_write(), JTAG_configure(), and JTAG_whatopen().
Definition at line 201 of file fpgajtag.c.
reg_gio_rw_pc_dout pc_dout [static] |
Definition at line 190 of file fpgajtag.c.
Referenced by initPortC(), jtag_send(), jtag_write_bits(), and set_pgm().
unsigned char* raw_fifo_r = &bitstream_data[FJTAG_RAW_WSIZE] [static] |
int raw_fifo_r_rp [static] |
Definition at line 266 of file fpgajtag.c.
Referenced by fpga_jtag_lseek(), fpga_jtag_open(), and fpga_jtag_read().
int raw_fifo_r_wp [static] |
Definition at line 265 of file fpgajtag.c.
Referenced by fpga_jtag_lseek(), fpga_jtag_open(), fpga_jtag_read(), and JTAG_push_raw().
unsigned char* raw_fifo_w = &bitstream_data[0] [static] |
Definition at line 184 of file fpgajtag.c.
Referenced by fpga_jtag_read(), fpga_jtag_write(), and JTAG_process_raw().
int raw_fifo_w_rp [static] |
int raw_fifo_w_wp [static] |
Definition at line 263 of file fpgajtag.c.
Referenced by fpga_jtag_open(), fpga_jtag_read(), fpga_jtag_write(), and JTAG_process_raw().