Audit and eliminate redundant #include directives from src/jtag.
git-svn-id: svn://svn.berlios.de/openocd/trunk@1707 b42882b7-edfa-0310-969c-e2dbd0fdcd60
This commit is contained in:
parent
8a5b25790f
commit
004c7124c4
|
@ -21,25 +21,13 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include "errno.h"
|
|
||||||
#endif /* _WIN32 */
|
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#if PARPORT_USE_PPDEV == 1
|
#if PARPORT_USE_PPDEV == 1
|
||||||
#include <linux/parport.h>
|
#include <linux/parport.h>
|
||||||
#include <linux/ppdev.h>
|
#include <linux/ppdev.h>
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#include <unistd.h>
|
|
||||||
#else /* not PARPORT_USE_PPDEV */
|
#else /* not PARPORT_USE_PPDEV */
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
#include <sys/io.h>
|
#include <sys/io.h>
|
||||||
|
@ -49,12 +37,9 @@
|
||||||
#if PARPORT_USE_GIVEIO == 1
|
#if PARPORT_USE_GIVEIO == 1
|
||||||
#if IS_CYGWIN == 1
|
#if IS_CYGWIN == 1
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <errno.h>
|
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
/* configuration */
|
/* configuration */
|
||||||
static u16 amt_jtagaccel_port;
|
static u16 amt_jtagaccel_port;
|
||||||
|
|
||||||
|
|
|
@ -24,16 +24,9 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
#include <string.h>
|
|
||||||
#include <ctype.h>
|
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
#define USB_VID 0x15ba
|
#define USB_VID 0x15ba
|
||||||
#define USB_PID 0x001e
|
#define USB_PID 0x001e
|
||||||
|
|
|
@ -21,17 +21,11 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "bitbang.h"
|
#include "bitbang.h"
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
|
|
||||||
/* AT91RM9200 */
|
/* AT91RM9200 */
|
||||||
#define AT91C_BASE_SYS (0xfffff000)
|
#define AT91C_BASE_SYS (0xfffff000)
|
||||||
|
|
|
@ -25,18 +25,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "bitbang.h"
|
#include "bitbang.h"
|
||||||
|
|
||||||
/* project specific includes */
|
|
||||||
#include "log.h"
|
|
||||||
#include "types.h"
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "configuration.h"
|
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Function bitbang_stableclocks
|
* Function bitbang_stableclocks
|
||||||
|
|
|
@ -23,16 +23,6 @@
|
||||||
|
|
||||||
#include "bitq.h"
|
#include "bitq.h"
|
||||||
|
|
||||||
/* project specific includes */
|
|
||||||
#include "log.h"
|
|
||||||
#include "types.h"
|
|
||||||
#include "jtag.h"
|
|
||||||
#include "configuration.h"
|
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
bitq_interface_t* bitq_interface; /* low level bit queue interface */
|
bitq_interface_t* bitq_interface; /* low level bit queue interface */
|
||||||
|
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "bitbang.h"
|
#include "bitbang.h"
|
||||||
|
|
||||||
|
|
|
@ -21,7 +21,6 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "bitbang.h"
|
#include "bitbang.h"
|
||||||
|
|
||||||
|
@ -33,14 +32,7 @@
|
||||||
#define SRST_BIT 32
|
#define SRST_BIT 32
|
||||||
#define VCC_BIT 64
|
#define VCC_BIT 64
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
#include <time.h>
|
|
||||||
#include <sys/mman.h>
|
#include <sys/mman.h>
|
||||||
#include <unistd.h>
|
|
||||||
#include <fcntl.h>
|
|
||||||
|
|
||||||
static u8 output_value = 0x0;
|
static u8 output_value = 0x0;
|
||||||
static int dev_mem_fd;
|
static int dev_mem_fd;
|
||||||
|
|
|
@ -33,23 +33,14 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#if IS_CYGWIN == 1
|
#if IS_CYGWIN == 1
|
||||||
#include "windows.h"
|
#include "windows.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* project specific includes */
|
/* project specific includes */
|
||||||
#include "log.h"
|
|
||||||
#include "types.h"
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "configuration.h"
|
|
||||||
#include "time_support.h"
|
#include "time_support.h"
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
/* FT2232 access library includes */
|
/* FT2232 access library includes */
|
||||||
#if BUILD_FT2232_FTD2XX == 1
|
#if BUILD_FT2232_FTD2XX == 1
|
||||||
|
|
|
@ -21,10 +21,9 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
|
|
||||||
|
|
||||||
#if 1
|
#if 1
|
||||||
#define _DEBUG_GW16012_IO_
|
#define _DEBUG_GW16012_IO_
|
||||||
#endif
|
#endif
|
||||||
|
@ -40,14 +39,8 @@
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include "errno.h"
|
|
||||||
#endif /* _WIN32 */
|
|
||||||
|
|
||||||
#endif /* __FreeBSD__, __FreeBSD_kernel__ */
|
#endif /* __FreeBSD__, __FreeBSD_kernel__ */
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#if PARPORT_USE_PPDEV == 1
|
#if PARPORT_USE_PPDEV == 1
|
||||||
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||||
|
@ -67,14 +60,10 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if PARPORT_USE_GIVEIO == 1
|
#if PARPORT_USE_GIVEIO == 1 && IS_CYGWIN == 1
|
||||||
#if IS_CYGWIN == 1
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <errno.h>
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
/* configuration */
|
/* configuration */
|
||||||
u16 gw16012_port;
|
u16 gw16012_port;
|
||||||
|
|
|
@ -25,15 +25,10 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
|
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
#include <string.h>
|
|
||||||
#include <errno.h>
|
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
#define VID 0x1366
|
#define VID 0x1366
|
||||||
#define PID 0x0101
|
#define PID 0x0101
|
||||||
|
|
|
@ -28,16 +28,8 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
|
|
||||||
#include "command.h"
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
#ifdef HAVE_STRINGS_H
|
#ifdef HAVE_STRINGS_H
|
||||||
#include <strings.h>
|
#include <strings.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -23,12 +23,9 @@
|
||||||
#ifndef JTAG_H
|
#ifndef JTAG_H
|
||||||
#define JTAG_H
|
#define JTAG_H
|
||||||
|
|
||||||
#include "types.h"
|
|
||||||
#include "binarybuffer.h"
|
#include "binarybuffer.h"
|
||||||
#include "log.h"
|
#include "log.h"
|
||||||
|
|
||||||
#include "command.h"
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef _DEBUG_JTAG_IO_
|
#ifdef _DEBUG_JTAG_IO_
|
||||||
#define DEBUG_JTAG_IO(expr ...) LOG_DEBUG(expr)
|
#define DEBUG_JTAG_IO(expr ...) LOG_DEBUG(expr)
|
||||||
|
|
|
@ -24,32 +24,17 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "bitbang.h"
|
#include "bitbang.h"
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
/* -ino: 060521-1036 */
|
/* -ino: 060521-1036 */
|
||||||
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||||
|
|
||||||
#include <machine/sysarch.h>
|
#include <machine/sysarch.h>
|
||||||
#include <machine/cpufunc.h>
|
#include <machine/cpufunc.h>
|
||||||
#define ioperm(startport,length,enable)\
|
#define ioperm(startport,length,enable)\
|
||||||
i386_set_ioperm((startport), (length), (enable))
|
i386_set_ioperm((startport), (length), (enable))
|
||||||
|
|
||||||
#else
|
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#include "errno.h"
|
|
||||||
#endif /* _WIN32 */
|
|
||||||
|
|
||||||
#endif /* __FreeBSD__ */
|
#endif /* __FreeBSD__ */
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <stdio.h>
|
|
||||||
|
|
||||||
#if PARPORT_USE_PPDEV == 1
|
#if PARPORT_USE_PPDEV == 1
|
||||||
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||||
#include <dev/ppbus/ppi.h>
|
#include <dev/ppbus/ppi.h>
|
||||||
|
@ -60,7 +45,6 @@
|
||||||
#include <linux/parport.h>
|
#include <linux/parport.h>
|
||||||
#include <linux/ppdev.h>
|
#include <linux/ppdev.h>
|
||||||
#endif
|
#endif
|
||||||
#include <fcntl.h>
|
|
||||||
#include <sys/ioctl.h>
|
#include <sys/ioctl.h>
|
||||||
#else /* not PARPORT_USE_PPDEV */
|
#else /* not PARPORT_USE_PPDEV */
|
||||||
#ifndef _WIN32
|
#ifndef _WIN32
|
||||||
|
@ -68,14 +52,10 @@
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if PARPORT_USE_GIVEIO == 1
|
#if PARPORT_USE_GIVEIO == 1 && IS_CYGWIN == 1
|
||||||
#if IS_CYGWIN == 1
|
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#include <errno.h>
|
|
||||||
#endif
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
/* parallel port cable description
|
/* parallel port cable description
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -25,20 +25,10 @@
|
||||||
#include "windows.h"
|
#include "windows.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
/* project specific includes */
|
|
||||||
#include "log.h"
|
|
||||||
#include "types.h"
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "configuration.h"
|
|
||||||
#include "time_support.h"
|
#include "time_support.h"
|
||||||
#include "bitq.h"
|
#include "bitq.h"
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <string.h>
|
|
||||||
#include <stdlib.h>
|
|
||||||
#include <unistd.h>
|
|
||||||
|
|
||||||
/* PRESTO access library includes */
|
/* PRESTO access library includes */
|
||||||
#if BUILD_PRESTO_FTD2XX == 1
|
#if BUILD_PRESTO_FTD2XX == 1
|
||||||
|
|
|
@ -27,22 +27,17 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
#include <errno.h>
|
|
||||||
#include <string.h>
|
|
||||||
#include <usb.h>
|
|
||||||
#include <stdint.h>
|
|
||||||
|
|
||||||
/* project specific includes */
|
/* project specific includes */
|
||||||
#include "log.h"
|
|
||||||
#include "types.h"
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
#include "configuration.h"
|
|
||||||
#include "rlink.h"
|
#include "rlink.h"
|
||||||
#include "st7.h"
|
#include "st7.h"
|
||||||
#include "ep1_cmd.h"
|
#include "ep1_cmd.h"
|
||||||
#include "dtc_cmd.h"
|
#include "dtc_cmd.h"
|
||||||
|
|
||||||
|
/* system includes */
|
||||||
|
#include <usb.h>
|
||||||
|
#include <stdint.h>
|
||||||
|
|
||||||
|
|
||||||
/* This feature is made useless by running the DTC all the time. When automatic, the LED is on whenever the DTC is running. Otherwise, USB messages are sent to turn it on and off. */
|
/* This feature is made useless by running the DTC all the time. When automatic, the LED is on whenever the DTC is running. Otherwise, USB messages are sent to turn it on and off. */
|
||||||
#undef AUTOMATIC_BUSY_LED
|
#undef AUTOMATIC_BUSY_LED
|
||||||
|
|
|
@ -34,14 +34,10 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
|
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
|
|
||||||
/* system includes */
|
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
#define VID 0x1781
|
#define VID 0x1781
|
||||||
#define PID 0x0c63
|
#define PID 0x0c63
|
||||||
|
|
|
@ -26,14 +26,10 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#include "replacements.h"
|
|
||||||
|
|
||||||
#include "jtag.h"
|
#include "jtag.h"
|
||||||
|
|
||||||
#include <usb.h>
|
#include <usb.h>
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include "log.h"
|
|
||||||
|
|
||||||
//#define _VSLLINK_IN_DEBUG_MODE_
|
//#define _VSLLINK_IN_DEBUG_MODE_
|
||||||
|
|
||||||
|
|
|
@ -20,17 +20,12 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#include "embeddedice.h"
|
||||||
#include "log.h"
|
|
||||||
#include "jtag.h"
|
|
||||||
#include "bitbang.h"
|
#include "bitbang.h"
|
||||||
#include "../target/embeddedice.h"
|
|
||||||
|
|
||||||
|
|
||||||
#include <cyg/hal/hal_io.h> // low level i/o
|
#include <cyg/hal/hal_io.h> // low level i/o
|
||||||
#include <cyg/hal/hal_diag.h>
|
#include <cyg/hal/hal_diag.h>
|
||||||
|
|
||||||
#include <stdlib.h>
|
|
||||||
|
|
||||||
#define ZYLIN_VERSION "1.51"
|
#define ZYLIN_VERSION "1.51"
|
||||||
#define ZYLIN_DATE __DATE__
|
#define ZYLIN_DATE __DATE__
|
||||||
|
|
Loading…
Reference in New Issue