Select one of the symbols to view example projects that use it.
 
Outline
#define OPENOCD_TARGET_OPENRISC_OR1K_TAP_H
#include "config.h"
#include <helper/list.h>
#include "or1k.h"
or1k_tap_vjtag_register();
or1k_tap_xilinx_bscan_register();
or1k_tap_mohor_register();
tap_list;
or1k_tap_ip
Files
loading...
SourceVuDevelopment ToolsOpenOCDsrc/target/openrisc/or1k_tap.h
 
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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* SPDX-License-Identifier: GPL-2.0-or-later */ /*************************************************************************** * Copyright (C) 2012 by Franck Jullien * * elec4fun@gmail.com * ***************************************************************************//* ... */ #ifndef OPENOCD_TARGET_OPENRISC_OR1K_TAP_H #define OPENOCD_TARGET_OPENRISC_OR1K_TAP_H #ifdef HAVE_CONFIG_H #include "config.h" #endif #include <helper/list.h> #include "or1k.h" int or1k_tap_vjtag_register(void); int or1k_tap_xilinx_bscan_register(void); int or1k_tap_mohor_register(void); /* Linear list over all available or1k taps */ extern struct list_head tap_list; struct or1k_tap_ip { struct list_head list; int (*init)(struct or1k_jtag *jtag_info); const char *name; ...}; /* ... */ #endif /* OPENOCD_TARGET_OPENRISC_OR1K_TAP_H */
Details
Show:
from
Types: Columns:
Click anywhere in the source to view detailed information here...