1 /***************************************************************************
2 * Copyright (C) 2005 by Dominic Rath *
3 * Dominic.Rath@gmx.de *
5 * Copyright (C) 2008 by Spencer Oliver *
6 * spen@spen-soft.co.uk *
8 * This program is free software; you can redistribute it and/or modify *
9 * it under the terms of the GNU General Public License as published by *
10 * the Free Software Foundation; either version 2 of the License, or *
11 * (at your option) any later version. *
13 * This program is distributed in the hope that it will be useful, *
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
16 * GNU General Public License for more details. *
18 * You should have received a copy of the GNU General Public License *
19 * along with this program; if not, write to the *
20 * Free Software Foundation, Inc., *
21 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. *
22 ***************************************************************************/
28 #include <jtag/interface.h>
31 /* -ino: 060521-1036 */
32 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
33 #include <machine/sysarch.h>
34 #include <machine/cpufunc.h>
35 #define ioperm(startport, length, enable)\
36 i386_set_ioperm((startport), (length), (enable))
37 #endif /* __FreeBSD__ */
39 #if PARPORT_USE_PPDEV == 1
40 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
41 #include <dev/ppbus/ppi.h>
42 #include <dev/ppbus/ppbconf.h>
43 #define PPRSTATUS PPIGSTATUS
44 #define PPWDATA PPISDATA
46 #include <linux/parport.h>
47 #include <linux/ppdev.h>
49 #include <sys/ioctl.h>
50 #else /* not PARPORT_USE_PPDEV */
56 #if PARPORT_USE_GIVEIO == 1 && IS_CYGWIN == 1
60 /* parallel port cable description
64 uint8_t TDO_MASK
; /* status port bit containing current TDO value */
65 uint8_t TRST_MASK
; /* data port bit for TRST */
66 uint8_t TMS_MASK
; /* data port bit for TMS */
67 uint8_t TCK_MASK
; /* data port bit for TCK */
68 uint8_t TDI_MASK
; /* data port bit for TDI */
69 uint8_t SRST_MASK
; /* data port bit for SRST */
70 uint8_t OUTPUT_INVERT
; /* data port bits that should be inverted */
71 uint8_t INPUT_INVERT
; /* status port that should be inverted */
72 uint8_t PORT_INIT
; /* initialize data port with this value */
73 uint8_t PORT_EXIT
; /* de-initialize data port with this value */
74 uint8_t LED_MASK
; /* data port bit for LED */
77 static struct cable cables
[] = {
78 /* name tdo trst tms tck tdi srst o_inv i_inv init exit led */
79 { "wiggler", 0x80, 0x10, 0x02, 0x04, 0x08, 0x01, 0x01, 0x80, 0x80, 0x80, 0x00 },
80 { "wiggler2", 0x80, 0x10, 0x02, 0x04, 0x08, 0x01, 0x01, 0x80, 0x80, 0x00, 0x20 },
81 { "wiggler_ntrst_inverted", 0x80, 0x10, 0x02, 0x04, 0x08, 0x01, 0x11, 0x80, 0x80, 0x80, 0x00 },
82 { "old_amt_wiggler", 0x80, 0x01, 0x02, 0x04, 0x08, 0x10, 0x11, 0x80, 0x80, 0x80, 0x00 },
83 { "arm-jtag", 0x80, 0x01, 0x02, 0x04, 0x08, 0x10, 0x01, 0x80, 0x80, 0x80, 0x00 },
84 { "chameleon", 0x80, 0x00, 0x04, 0x01, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00 },
85 { "dlc5", 0x10, 0x00, 0x04, 0x02, 0x01, 0x00, 0x00, 0x00, 0x10, 0x10, 0x00 },
86 { "triton", 0x80, 0x08, 0x04, 0x01, 0x02, 0x00, 0x00, 0x80, 0x00, 0x00, 0x00 },
87 { "lattice", 0x40, 0x10, 0x04, 0x02, 0x01, 0x08, 0x00, 0x00, 0x18, 0x18, 0x00 },
88 { "flashlink", 0x20, 0x10, 0x02, 0x01, 0x04, 0x20, 0x30, 0x20, 0x00, 0x00, 0x00 },
89 /* Altium Universal JTAG cable. Set the cable to Xilinx Mode and wire to target as follows:
94 SOFT TCK - Target TRST
95 SOFT TDI - Target SRST
97 { "altium", 0x10, 0x20, 0x04, 0x02, 0x01, 0x80, 0x00, 0x00, 0x10, 0x00, 0x08 },
98 { "aspo", 0x10, 0x01, 0x04, 0x08, 0x02, 0x10, 0x17, 0x00, 0x17, 0x17, 0x00 },
99 { NULL
, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }
103 static char *parport_cable
;
104 static uint16_t parport_port
;
105 static bool parport_exit
;
106 static uint32_t parport_toggling_time_ns
= 1000;
107 static int wait_states
;
109 /* interface variables
111 static struct cable
*cable
;
112 static uint8_t dataport_value
;
114 #if PARPORT_USE_PPDEV == 1
115 static int device_handle
;
117 static unsigned long dataport
;
118 static unsigned long statusport
;
121 static int parport_read(void)
125 #if PARPORT_USE_PPDEV == 1
126 ioctl(device_handle
, PPRSTATUS
, &data
);
128 data
= inb(statusport
);
131 if ((data
^ cable
->INPUT_INVERT
) & cable
->TDO_MASK
)
137 static inline void parport_write_data(void)
140 output
= dataport_value
^ cable
->OUTPUT_INVERT
;
142 #if PARPORT_USE_PPDEV == 1
143 ioctl(device_handle
, PPWDATA
, &output
);
145 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
146 outb(dataport
, output
);
148 outb(output
, dataport
);
153 static void parport_write(int tck
, int tms
, int tdi
)
155 int i
= wait_states
+ 1;
158 dataport_value
|= cable
->TCK_MASK
;
160 dataport_value
&= ~cable
->TCK_MASK
;
163 dataport_value
|= cable
->TMS_MASK
;
165 dataport_value
&= ~cable
->TMS_MASK
;
168 dataport_value
|= cable
->TDI_MASK
;
170 dataport_value
&= ~cable
->TDI_MASK
;
173 parport_write_data();
176 /* (1) assert or (0) deassert reset lines */
177 static void parport_reset(int trst
, int srst
)
179 LOG_DEBUG("trst: %i, srst: %i", trst
, srst
);
182 dataport_value
|= cable
->TRST_MASK
;
184 dataport_value
&= ~cable
->TRST_MASK
;
187 dataport_value
|= cable
->SRST_MASK
;
189 dataport_value
&= ~cable
->SRST_MASK
;
191 parport_write_data();
194 /* turn LED on parport adapter on (1) or off (0) */
195 static void parport_led(int on
)
198 dataport_value
|= cable
->LED_MASK
;
200 dataport_value
&= ~cable
->LED_MASK
;
202 parport_write_data();
205 static int parport_speed(int speed
)
211 static int parport_khz(int khz
, int *jtag_speed
)
214 LOG_DEBUG("RCLK not supported");
218 *jtag_speed
= 499999 / (khz
* parport_toggling_time_ns
);
222 static int parport_speed_div(int speed
, int *khz
)
224 uint32_t denominator
= (speed
+ 1) * parport_toggling_time_ns
;
226 *khz
= (499999 + denominator
) / denominator
;
230 #if PARPORT_USE_GIVEIO == 1
231 static int parport_get_giveio_access(void)
234 OSVERSIONINFO version
;
236 version
.dwOSVersionInfoSize
= sizeof version
;
237 if (!GetVersionEx(&version
)) {
241 if (version
.dwPlatformId
!= VER_PLATFORM_WIN32_NT
)
244 h
= CreateFile("\\\\.\\giveio", GENERIC_READ
, 0, NULL
, OPEN_EXISTING
, FILE_ATTRIBUTE_NORMAL
, NULL
);
245 if (h
== INVALID_HANDLE_VALUE
) {
256 static struct bitbang_interface parport_bitbang
= {
257 .read
= &parport_read
,
258 .write
= &parport_write
,
259 .reset
= &parport_reset
,
260 .blink
= &parport_led
,
263 static int parport_init(void)
265 struct cable
*cur_cable
;
266 #if PARPORT_USE_PPDEV == 1
272 if (parport_cable
== NULL
) {
273 parport_cable
= strdup("wiggler");
274 LOG_WARNING("No parport cable specified, using default 'wiggler'");
277 while (cur_cable
->name
) {
278 if (strcmp(cur_cable
->name
, parport_cable
) == 0) {
286 LOG_ERROR("No matching cable found for %s", parport_cable
);
287 return ERROR_JTAG_INIT_FAILED
;
290 dataport_value
= cable
->PORT_INIT
;
292 #if PARPORT_USE_PPDEV == 1
293 if (device_handle
> 0) {
294 LOG_ERROR("device is already opened");
295 return ERROR_JTAG_INIT_FAILED
;
298 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
299 LOG_DEBUG("opening /dev/ppi%d...", parport_port
);
301 snprintf(buffer
, 256, "/dev/ppi%d", parport_port
);
302 device_handle
= open(buffer
, O_WRONLY
);
303 #else /* not __FreeBSD__, __FreeBSD_kernel__ */
304 LOG_DEBUG("opening /dev/parport%d...", parport_port
);
306 snprintf(buffer
, 256, "/dev/parport%d", parport_port
);
307 device_handle
= open(buffer
, O_WRONLY
);
308 #endif /* __FreeBSD__, __FreeBSD_kernel__ */
310 if (device_handle
< 0) {
312 LOG_ERROR("cannot open device. check it exists and that user read and write rights are set. errno=%d", err
);
313 return ERROR_JTAG_INIT_FAILED
;
316 LOG_DEBUG("...open");
318 #if !defined(__FreeBSD__) && !defined(__FreeBSD_kernel__)
319 int i
= ioctl(device_handle
, PPCLAIM
);
322 LOG_ERROR("cannot claim device");
323 return ERROR_JTAG_INIT_FAILED
;
326 i
= PARPORT_MODE_COMPAT
;
327 i
= ioctl(device_handle
, PPSETMODE
, &i
);
329 LOG_ERROR(" cannot set compatible mode to device");
330 return ERROR_JTAG_INIT_FAILED
;
333 i
= IEEE1284_MODE_COMPAT
;
334 i
= ioctl(device_handle
, PPNEGOT
, &i
);
336 LOG_ERROR("cannot set compatible 1284 mode to device");
337 return ERROR_JTAG_INIT_FAILED
;
339 #endif /* not __FreeBSD__, __FreeBSD_kernel__ */
341 #else /* not PARPORT_USE_PPDEV */
342 if (parport_port
== 0) {
343 parport_port
= 0x378;
344 LOG_WARNING("No parport port specified, using default '0x378' (LPT1)");
347 dataport
= parport_port
;
348 statusport
= parport_port
+ 1;
350 LOG_DEBUG("requesting privileges for parallel port 0x%lx...", dataport
);
351 #if PARPORT_USE_GIVEIO == 1
352 if (parport_get_giveio_access() != 0) {
353 #else /* PARPORT_USE_GIVEIO */
354 if (ioperm(dataport
, 3, 1) != 0) {
355 #endif /* PARPORT_USE_GIVEIO */
356 LOG_ERROR("missing privileges for direct i/o");
357 return ERROR_JTAG_INIT_FAILED
;
359 LOG_DEBUG("...privileges granted");
361 /* make sure parallel port is in right mode (clear tristate and interrupt */
362 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
363 outb(parport_port
+ 2, 0x0);
365 outb(0x0, parport_port
+ 2);
368 #endif /* PARPORT_USE_PPDEV */
371 parport_write(0, 0, 0);
374 bitbang_interface
= &parport_bitbang
;
379 static int parport_quit(void)
384 dataport_value
= cable
->PORT_EXIT
;
385 parport_write_data();
390 parport_cable
= NULL
;
396 COMMAND_HANDLER(parport_handle_parport_port_command
)
399 /* only if the port wasn't overwritten by cmdline */
400 if (parport_port
== 0)
401 COMMAND_PARSE_NUMBER(u16
, CMD_ARGV
[0], parport_port
);
403 LOG_ERROR("The parport port was already configured!");
408 command_print(CMD_CTX
, "parport port = 0x%" PRIx16
"", parport_port
);
413 COMMAND_HANDLER(parport_handle_parport_cable_command
)
418 /* only if the cable name wasn't overwritten by cmdline */
419 if (parport_cable
== 0) {
420 /* REVISIT first verify that it's listed in cables[] ... */
421 parport_cable
= malloc(strlen(CMD_ARGV
[0]) + sizeof(char));
422 strcpy(parport_cable
, CMD_ARGV
[0]);
425 /* REVISIT it's probably worth returning the current value ... */
430 COMMAND_HANDLER(parport_handle_write_on_exit_command
)
433 return ERROR_COMMAND_SYNTAX_ERROR
;
435 COMMAND_PARSE_ON_OFF(CMD_ARGV
[0], parport_exit
);
440 COMMAND_HANDLER(parport_handle_parport_toggling_time_command
)
444 int retval
= parse_u32(CMD_ARGV
[0], &ns
);
446 if (ERROR_OK
!= retval
)
450 LOG_ERROR("0 ns is not a valid parport toggling time");
454 parport_toggling_time_ns
= ns
;
455 retval
= jtag_get_speed(&wait_states
);
456 if (retval
!= ERROR_OK
) {
457 /* if jtag_get_speed fails then the clock_mode
458 * has not been configured, this happens if parport_toggling_time is
459 * called before the adapter speed is set */
460 LOG_INFO("no parport speed set - defaulting to zero wait states");
465 command_print(CMD_CTX
, "parport toggling time = %" PRIu32
" ns",
466 parport_toggling_time_ns
);
471 static const struct command_registration parport_command_handlers
[] = {
473 .name
= "parport_port",
474 .handler
= parport_handle_parport_port_command
,
475 .mode
= COMMAND_CONFIG
,
476 .help
= "Display the address of the I/O port (e.g. 0x378) "
477 "or the number of the '/dev/parport' device used. "
478 "If a parameter is provided, first change that port.",
479 .usage
= "[port_number]",
482 .name
= "parport_cable",
483 .handler
= parport_handle_parport_cable_command
,
484 .mode
= COMMAND_CONFIG
,
485 .help
= "Set the layout of the parallel port cable "
486 "used to connect to the target.",
487 /* REVISIT there's no way to list layouts we know ... */
491 .name
= "parport_write_on_exit",
492 .handler
= parport_handle_write_on_exit_command
,
493 .mode
= COMMAND_CONFIG
,
494 .help
= "Configure the parallel driver to write "
495 "a known value to the parallel interface on exit.",
496 .usage
= "('on'|'off')",
499 .name
= "parport_toggling_time",
500 .handler
= parport_handle_parport_toggling_time_command
,
501 .mode
= COMMAND_CONFIG
,
502 .help
= "Displays or assigns how many nanoseconds it "
503 "takes for the hardware to toggle TCK.",
504 .usage
= "[nanoseconds]",
506 COMMAND_REGISTRATION_DONE
509 struct jtag_interface parport_interface
= {
511 .supported
= DEBUG_CAP_TMS_SEQ
,
512 .commands
= parport_command_handlers
,
514 .init
= parport_init
,
515 .quit
= parport_quit
,
517 .speed_div
= parport_speed_div
,
518 .speed
= parport_speed
,
519 .execute_queue
= bitbang_execute_queue
,