Browse Source

Audit and eliminate redundant #include directives from src/jtag.

git-svn-id: svn://svn.berlios.de/openocd/trunk@1707 b42882b7-edfa-0310-969c-e2dbd0fdcd60
tags/v0.2.0
zwelch 15 years ago
parent
commit
004c7124c4
18 changed files with 10 additions and 153 deletions
  1. +0
    -15
      src/jtag/amt_jtagaccel.c
  2. +0
    -7
      src/jtag/arm-jtag-ew.c
  3. +1
    -7
      src/jtag/at91rm9200.c
  4. +0
    -11
      src/jtag/bitbang.c
  5. +0
    -10
      src/jtag/bitq.c
  6. +0
    -2
      src/jtag/dummy.c
  7. +0
    -8
      src/jtag/ep93xx.c
  8. +0
    -9
      src/jtag/ft2232.c
  9. +2
    -13
      src/jtag/gw16012.c
  10. +0
    -5
      src/jtag/jlink.c
  11. +0
    -8
      src/jtag/jtag.c
  12. +0
    -3
      src/jtag/jtag.h
  13. +1
    -21
      src/jtag/parport.c
  14. +0
    -10
      src/jtag/presto.c
  15. +4
    -9
      src/jtag/rlink/rlink.c
  16. +1
    -5
      src/jtag/usbprog.c
  17. +0
    -4
      src/jtag/vsllink.c
  18. +1
    -6
      src/jtag/zy1000.c

+ 0
- 15
src/jtag/amt_jtagaccel.c View File

@@ -21,25 +21,13 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"

/* system includes */

#ifdef _WIN32
#include "errno.h"
#endif /* _WIN32 */

#include <string.h>
#include <stdlib.h>

#if PARPORT_USE_PPDEV == 1
#include <linux/parport.h>
#include <linux/ppdev.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <unistd.h>
#else /* not PARPORT_USE_PPDEV */
#ifndef _WIN32
#include <sys/io.h>
@@ -49,12 +37,9 @@
#if PARPORT_USE_GIVEIO == 1
#if IS_CYGWIN == 1
#include <windows.h>
#include <errno.h>
#endif
#endif

#include "log.h"

/* configuration */
static u16 amt_jtagaccel_port;



+ 0
- 7
src/jtag/arm-jtag-ew.c View File

@@ -24,16 +24,9 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"
#include <usb.h>
#include <string.h>
#include <ctype.h>

/* system includes */

#include "log.h"

#define USB_VID 0x15ba
#define USB_PID 0x001e


+ 1
- 7
src/jtag/at91rm9200.c View File

@@ -21,17 +21,11 @@
#include "config.h"
#endif

#include "log.h"
#include "jtag.h"
#include "bitbang.h"

/* system includes */
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>


/* AT91RM9200 */
#define AT91C_BASE_SYS (0xfffff000)


+ 0
- 11
src/jtag/bitbang.c View File

@@ -25,18 +25,7 @@
#endif

#include "bitbang.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>


/**
* Function bitbang_stableclocks


+ 0
- 10
src/jtag/bitq.c View File

@@ -23,16 +23,6 @@

#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 */



+ 0
- 2
src/jtag/dummy.c View File

@@ -21,8 +21,6 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"
#include "bitbang.h"



+ 0
- 8
src/jtag/ep93xx.c View File

@@ -21,7 +21,6 @@
#include "config.h"
#endif

#include "log.h"
#include "jtag.h"
#include "bitbang.h"

@@ -33,14 +32,7 @@
#define SRST_BIT 32
#define VCC_BIT 64

/* system includes */
#include <string.h>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <sys/mman.h>
#include <unistd.h>
#include <fcntl.h>

static u8 output_value = 0x0;
static int dev_mem_fd;


+ 0
- 9
src/jtag/ft2232.c View File

@@ -33,23 +33,14 @@
#include "config.h"
#endif

#include "replacements.h"

#if IS_CYGWIN == 1
#include "windows.h"
#endif

/* project specific includes */
#include "log.h"
#include "types.h"
#include "jtag.h"
#include "configuration.h"
#include "time_support.h"

/* system includes */
#include <string.h>
#include <stdlib.h>
#include <unistd.h>

/* FT2232 access library includes */
#if BUILD_FT2232_FTD2XX == 1


+ 2
- 13
src/jtag/gw16012.c View File

@@ -21,10 +21,9 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"


#if 1
#define _DEBUG_GW16012_IO_
#endif
@@ -40,14 +39,8 @@

#else

#ifdef _WIN32
#include "errno.h"
#endif /* _WIN32 */

#endif /* __FreeBSD__, __FreeBSD_kernel__ */

#include <string.h>
#include <stdlib.h>

#if PARPORT_USE_PPDEV == 1
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
@@ -67,14 +60,10 @@
#endif
#endif

#if PARPORT_USE_GIVEIO == 1
#if IS_CYGWIN == 1
#if PARPORT_USE_GIVEIO == 1 && IS_CYGWIN == 1
#include <windows.h>
#include <errno.h>
#endif
#endif

#include "log.h"

/* configuration */
u16 gw16012_port;


+ 0
- 5
src/jtag/jlink.c View File

@@ -25,15 +25,10 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"

#include <usb.h>
#include <string.h>
#include <errno.h>

#include "log.h"

#define VID 0x1366
#define PID 0x0101


+ 0
- 8
src/jtag/jtag.c View File

@@ -28,16 +28,8 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"

#include "command.h"
#include "log.h"

#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif


+ 0
- 3
src/jtag/jtag.h View File

@@ -23,12 +23,9 @@
#ifndef JTAG_H
#define JTAG_H

#include "types.h"
#include "binarybuffer.h"
#include "log.h"

#include "command.h"


#ifdef _DEBUG_JTAG_IO_
#define DEBUG_JTAG_IO(expr ...) LOG_DEBUG(expr)


+ 1
- 21
src/jtag/parport.c View File

@@ -24,32 +24,17 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"
#include "bitbang.h"

/* system includes */
/* -ino: 060521-1036 */
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)

#include <machine/sysarch.h>
#include <machine/cpufunc.h>
#define ioperm(startport,length,enable)\
i386_set_ioperm((startport), (length), (enable))

#else

#ifdef _WIN32
#include "errno.h"
#endif /* _WIN32 */

#endif /* __FreeBSD__ */

#include <string.h>
#include <stdlib.h>
#include <stdio.h>

#if PARPORT_USE_PPDEV == 1
#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
#include <dev/ppbus/ppi.h>
@@ -60,7 +45,6 @@
#include <linux/parport.h>
#include <linux/ppdev.h>
#endif
#include <fcntl.h>
#include <sys/ioctl.h>
#else /* not PARPORT_USE_PPDEV */
#ifndef _WIN32
@@ -68,14 +52,10 @@
#endif
#endif

#if PARPORT_USE_GIVEIO == 1
#if IS_CYGWIN == 1
#if PARPORT_USE_GIVEIO == 1 && IS_CYGWIN == 1
#include <windows.h>
#include <errno.h>
#endif
#endif

#include "log.h"

/* parallel port cable description
*/


+ 0
- 10
src/jtag/presto.c View File

@@ -25,20 +25,10 @@
#include "windows.h"
#endif

#include "replacements.h"

/* project specific includes */
#include "log.h"
#include "types.h"
#include "jtag.h"
#include "configuration.h"
#include "time_support.h"
#include "bitq.h"

/* system includes */
#include <string.h>
#include <stdlib.h>
#include <unistd.h>

/* PRESTO access library includes */
#if BUILD_PRESTO_FTD2XX == 1


+ 4
- 9
src/jtag/rlink/rlink.c View File

@@ -27,22 +27,17 @@
#include "config.h"
#endif

/* system includes */
#include <errno.h>
#include <string.h>
#include <usb.h>
#include <stdint.h>

/* project specific includes */
#include "log.h"
#include "types.h"
#include "jtag.h"
#include "configuration.h"
#include "rlink.h"
#include "st7.h"
#include "ep1_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. */
#undef AUTOMATIC_BUSY_LED


+ 1
- 5
src/jtag/usbprog.c View File

@@ -34,14 +34,10 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"
#include <usb.h>

/* system includes */
#include <usb.h>

#include "log.h"

#define VID 0x1781
#define PID 0x0c63


+ 0
- 4
src/jtag/vsllink.c View File

@@ -26,14 +26,10 @@
#include "config.h"
#endif

#include "replacements.h"

#include "jtag.h"

#include <usb.h>
#include <string.h>

#include "log.h"

//#define _VSLLINK_IN_DEBUG_MODE_



+ 1
- 6
src/jtag/zy1000.c View File

@@ -20,17 +20,12 @@
#include "config.h"
#endif


#include "log.h"
#include "jtag.h"
#include "embeddedice.h"
#include "bitbang.h"
#include "../target/embeddedice.h"


#include <cyg/hal/hal_io.h> // low level i/o
#include <cyg/hal/hal_diag.h>

#include <stdlib.h>

#define ZYLIN_VERSION "1.51"
#define ZYLIN_DATE __DATE__


Loading…
Cancel
Save