]> www.infradead.org Git - users/borneoa/openocd-next.git/commitdiff
adapter: Deprecate Amontec JTAG Accelerator driver
authorMarc Schink <dev@zapb.de>
Wed, 9 Oct 2024 09:13:42 +0000 (11:13 +0200)
committerAntonio Borneo <borneo.antonio@gmail.com>
Fri, 13 Jun 2025 16:26:38 +0000 (16:26 +0000)
The adapter is not available for years now and Amontec is not even a
company anymore. The poor hardware availability and the lack of users
prevents testing, maintenance and adaptations to future changes.

Mark the adapter as deprecated as a first step to give potential users
the opportunity to upgrade the hardware until the next OpenOCD release.

Change-Id: Idd9fb75588246bc39e12ea17a71435ed77f0f50b
Signed-off-by: Marc Schink <dev@zapb.de>
Reviewed-on: https://review.openocd.org/c/openocd/+/8349
Reviewed-by: Antonio Borneo <borneo.antonio@gmail.com>
Tested-by: jenkins
configure.ac
doc/openocd.texi
src/jtag/drivers/amt_jtagaccel.c

index 3e1d9a2baa457656ccb573bccf6f9a120e2eea48..9561f2ba0633762324387f0ee120a5e7a907d007 100644 (file)
@@ -857,6 +857,12 @@ AS_IF([test "x$use_internal_jimtcl" = "xyes"], [
   AC_MSG_WARN([Using the internal jimtcl is deprecated and will not be possible in the future.])
 ])
 
+AS_IF([test "x$enable_amtjtagaccel" != "xno"], [
+  echo
+  echo
+  AC_MSG_WARN([Amontec JTAG-Accelerator adapter is deprecated and support will be removed in the next release!])
+])
+
 echo
 echo
 echo OpenOCD configuration summary
index bd6b3704a84ec1a85722ff910822d8279603e481..04fa77bd405da5ecf5c7448a913f5ca76353c39a 100644 (file)
@@ -2508,6 +2508,8 @@ enabled when OpenOCD is configured, in order to be made
 available at run time.
 
 @deffn {Interface Driver} {amt_jtagaccel}
+@b{Note: This adapter is deprecated and support will be removed in the next release!}
+
 Amontec Chameleon in its JTAG Accelerator configuration,
 connected to a PC's EPP mode parallel port.
 This defines some driver-specific commands:
index 633c20413a768d96bc96f479682a21620af88e3d..d3f8bb61eb89c91de2ad0d69126aa8985a40330c 100644 (file)
@@ -419,6 +419,8 @@ static int amt_jtagaccel_init(void)
 #endif
        uint8_t ar_status;
 
+       LOG_WARNING("This adapter is deprecated and support will be removed in the next release!");
+
 #if PARPORT_USE_PPDEV == 1
        if (device_handle > 0) {
                LOG_ERROR("device is already opened");