From ceb402dc9e903d2f3f6bc8125dfed9d82b83d2d1 Mon Sep 17 00:00:00 2001 From: Hsiangkai Wang Date: Tue, 5 Feb 2013 09:34:18 +0800 Subject: aice: add Andes AICE support Andes AICE uses USB to transfer packets between OpenOCD and AICE. It uses high-level USB commands to control targets instead of using JTAG signals. I define an interface as aice_port_api_s. It contains all basic operations needed by target-dependent code. Change-Id: I117bc4f938fab2732e44c509ea68b30172d6fdb9 Signed-off-by: Hsiangkai Wang Reviewed-on: http://openocd.zylin.com/1256 Tested-by: jenkins Reviewed-by: Spencer Oliver --- src/jtag/aice/Makefile.am | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/jtag/aice/Makefile.am (limited to 'src/jtag/aice/Makefile.am') diff --git a/src/jtag/aice/Makefile.am b/src/jtag/aice/Makefile.am new file mode 100644 index 00000000..38c441e1 --- /dev/null +++ b/src/jtag/aice/Makefile.am @@ -0,0 +1,27 @@ +include $(top_srcdir)/common.mk + +AM_CPPFLAGS += -I$(top_srcdir)/src/jtag/drivers + +noinst_LTLIBRARIES = libocdaice.la + +libocdaice_la_SOURCES = \ + $(AICEFILES) + +AICEFILES = + +if AICE +AICEFILES += aice_transport.c +AICEFILES += aice_interface.c +AICEFILES += aice_port.c +AICEFILES += aice_usb.c +AICEFILES += aice_pipe.c +endif + +noinst_HEADERS = \ + aice_transport.h \ + aice_interface.h \ + aice_port.h \ + aice_usb.h \ + aice_pipe.h + +MAINTAINERCLEANFILES = $(srcdir)/Makefile.in -- cgit v1.2.3-18-g5258