blob: f37a69866585c691bad99640090caa5c587e9154 [file] [log] [blame]
Paul Fox05dfbe62009-06-16 21:08:06 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (C) 2009 Paul Fox <pgf@laptop.org>
Carl-Daniel Hailfinger5824fbf2010-05-21 23:09:42 +00005 * Copyright (C) 2009, 2010 Carl-Daniel Hailfinger
Paul Fox05dfbe62009-06-16 21:08:06 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
Carl-Daniel Hailfinger71127722010-05-31 15:27:27 +000021#if CONFIG_FT2232_SPI == 1
Carl-Daniel Hailfinger3426ef62009-08-19 13:27:58 +000022
Paul Fox05dfbe62009-06-16 21:08:06 +000023#include <stdio.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000024#include <string.h>
25#include <stdlib.h>
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +000026#include <ctype.h>
Paul Fox05dfbe62009-06-16 21:08:06 +000027#include "flash.h"
Sean Nelson14ba6682010-02-26 05:48:29 +000028#include "chipdrivers.h"
Carl-Daniel Hailfinger5b997c32010-07-27 22:41:39 +000029#include "programmer.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000030#include "spi.h"
Paul Fox05dfbe62009-06-16 21:08:06 +000031#include <ftdi.h>
32
Uwe Hermann70145292010-07-29 19:57:55 +000033#define FTDI_VID 0x0403
34#define FTDI_FT2232H_PID 0x6010
35#define FTDI_FT4232H_PID 0x6011
36#define AMONTEC_JTAGKEY_PID 0xCFF8
Jörg Fischer6529b9f2010-07-29 15:54:53 +000037
Alex Badeacaf2d422010-11-10 03:26:57 +000038#define FIC_VID 0x1457
39#define OPENMOKO_DBGBOARD_PID 0x5118
40
Jörg Fischer6529b9f2010-07-29 15:54:53 +000041const struct usbdev_status devs_ft2232spi[] = {
Uwe Hermann70145292010-07-29 19:57:55 +000042 {FTDI_VID, FTDI_FT2232H_PID, OK, "FTDI", "FT2232H"},
43 {FTDI_VID, FTDI_FT4232H_PID, OK, "FTDI", "FT4232H"},
44 {FTDI_VID, AMONTEC_JTAGKEY_PID, OK, "Amontec", "JTAGkey"},
Alex Badeacaf2d422010-11-10 03:26:57 +000045 {FIC_VID, OPENMOKO_DBGBOARD_PID, OK,
46 "First International Computer, Inc.",
47 "OpenMoko Neo1973 Debug board (V2+)"},
Uwe Hermann70145292010-07-29 19:57:55 +000048 {},
Jörg Fischer6529b9f2010-07-29 15:54:53 +000049};
50
Uwe Hermannc67d0372009-10-01 18:40:02 +000051/*
52 * The 'H' chips can run internally at either 12MHz or 60MHz.
53 * The non-H chips can only run at 12MHz.
54 */
Alex Badea0b94d052010-11-10 03:18:41 +000055static uint8_t clock_5x = 1;
Paul Fox05dfbe62009-06-16 21:08:06 +000056
Uwe Hermannc67d0372009-10-01 18:40:02 +000057/*
58 * In either case, the divisor is a simple integer clock divider.
Alex Badea0b94d052010-11-10 03:18:41 +000059 * If clock_5x is set, this divisor divides 30MHz, else it divides 6MHz.
Uwe Hermannc67d0372009-10-01 18:40:02 +000060 */
61#define DIVIDE_BY 3 /* e.g. '3' will give either 10MHz or 2MHz SPI clock. */
Paul Fox05dfbe62009-06-16 21:08:06 +000062
Uwe Hermannc67d0372009-10-01 18:40:02 +000063#define BITMODE_BITBANG_NORMAL 1
64#define BITMODE_BITBANG_SPI 2
Paul Fox05dfbe62009-06-16 21:08:06 +000065
Jörg Fischer6529b9f2010-07-29 15:54:53 +000066/* Set data bits low-byte command:
67 * value: 0x08 CS=high, DI=low, DO=low, SK=low
68 * dir: 0x0b CS=output, DI=input, DO=output, SK=output
69 *
70 * JTAGkey(2) needs to enable its output via Bit4 / GPIOL0
71 * value: 0x18 OE=high, CS=high, DI=low, DO=low, SK=low
72 * dir: 0x1b OE=output, CS=output, DI=input, DO=output, SK=output
Jörg Fischer6529b9f2010-07-29 15:54:53 +000073 */
Uwe Hermann70145292010-07-29 19:57:55 +000074static uint8_t cs_bits = 0x08;
75static uint8_t pindir = 0x0b;
Paul Fox05dfbe62009-06-16 21:08:06 +000076static struct ftdi_context ftdic_context;
77
Jörg Fischer6529b9f2010-07-29 15:54:53 +000078static const char *get_ft2232_devicename(int ft2232_vid, int ft2232_type)
79{
80 int i;
Uwe Hermann70145292010-07-29 19:57:55 +000081 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
Jörg Fischer6529b9f2010-07-29 15:54:53 +000082 if ((devs_ft2232spi[i].device_id == ft2232_type)
83 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
84 return devs_ft2232spi[i].device_name;
85 }
86 return "unknown device";
87}
88
89static const char *get_ft2232_vendorname(int ft2232_vid, int ft2232_type)
90{
91 int i;
Uwe Hermann70145292010-07-29 19:57:55 +000092 for (i = 0; devs_ft2232spi[i].vendor_name != NULL; i++) {
93 if ((devs_ft2232spi[i].device_id == ft2232_type)
94 && (devs_ft2232spi[i].vendor_id == ft2232_vid))
95 return devs_ft2232spi[i].vendor_name;
96 }
97 return "unknown vendor";
Jörg Fischer6529b9f2010-07-29 15:54:53 +000098}
99
Uwe Hermann70145292010-07-29 19:57:55 +0000100static int send_buf(struct ftdi_context *ftdic, const unsigned char *buf,
101 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000102{
103 int r;
104 r = ftdi_write_data(ftdic, (unsigned char *) buf, size);
105 if (r < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000106 msg_perr("ftdi_write_data: %d, %s\n", r,
Paul Fox05dfbe62009-06-16 21:08:06 +0000107 ftdi_get_error_string(ftdic));
108 return 1;
109 }
110 return 0;
111}
112
Uwe Hermann70145292010-07-29 19:57:55 +0000113static int get_buf(struct ftdi_context *ftdic, const unsigned char *buf,
114 int size)
Paul Fox05dfbe62009-06-16 21:08:06 +0000115{
116 int r;
Alex Badeab9556e02010-11-10 03:10:41 +0000117
118 while (size > 0) {
119 r = ftdi_read_data(ftdic, (unsigned char *) buf, size);
120 if (r < 0) {
121 msg_perr("ftdi_read_data: %d, %s\n", r,
122 ftdi_get_error_string(ftdic));
123 return 1;
124 }
125 buf += r;
126 size -= r;
Paul Fox05dfbe62009-06-16 21:08:06 +0000127 }
128 return 0;
129}
130
Michael Karcherb9dbe482011-05-11 17:07:07 +0000131static int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
132 const unsigned char *writearr, unsigned char *readarr);
133
134static const struct spi_programmer spi_programmer_ft2232 = {
135 .type = SPI_CONTROLLER_FT2232,
136 .max_data_read = 64 * 1024,
137 .max_data_write = 256,
138 .command = ft2232_spi_send_command,
139 .multicommand = default_spi_send_multicommand,
140 .read = default_spi_read,
141 .write_256 = default_spi_write_256,
142};
143
Paul Fox05dfbe62009-06-16 21:08:06 +0000144int ft2232_spi_init(void)
145{
146 int f;
147 struct ftdi_context *ftdic = &ftdic_context;
148 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000149 int ft2232_vid = FTDI_VID;
150 int ft2232_type = FTDI_FT4232H_PID;
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000151 enum ftdi_interface ft2232_interface = INTERFACE_B;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000152 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000153 double mpsse_clk;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000154
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000155 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000156 if (arg) {
157 if (!strcasecmp(arg, "2232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000158 ft2232_type = FTDI_FT2232H_PID;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000159 else if (!strcasecmp(arg, "4232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000160 ft2232_type = FTDI_FT4232H_PID;
161 else if (!strcasecmp(arg, "jtagkey")) {
162 ft2232_type = AMONTEC_JTAGKEY_PID;
163 ft2232_interface = INTERFACE_A;
164 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000165 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000166 } else if (!strcasecmp(arg, "openmoko")) {
167 ft2232_vid = FIC_VID;
168 ft2232_type = OPENMOKO_DBGBOARD_PID;
169 ft2232_interface = INTERFACE_A;
170 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000171 msg_perr("Error: Invalid device type specified.\n");
172 free(arg);
173 return 1;
174 }
175 }
176 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000177 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000178 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000179 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000180 case 'A':
181 ft2232_interface = INTERFACE_A;
182 break;
183 case 'B':
184 ft2232_interface = INTERFACE_B;
185 break;
186 default:
187 msg_perr("Error: Invalid port/interface specified.\n");
188 free(arg);
189 return 1;
190 }
191 }
192 free(arg);
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000193 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000194 get_ft2232_vendorname(ft2232_vid, ft2232_type),
195 get_ft2232_devicename(ft2232_vid, ft2232_type));
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000196 msg_pdbg("interface %s\n",
Uwe Hermann70145292010-07-29 19:57:55 +0000197 (ft2232_interface == INTERFACE_A) ? "A" : "B");
Paul Fox05dfbe62009-06-16 21:08:06 +0000198
199 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000200 msg_perr("ftdi_init failed\n");
Uwe Hermannc67d0372009-10-01 18:40:02 +0000201 return EXIT_FAILURE; // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000202 }
203
Alex Badeab1b459c2010-11-10 03:22:39 +0000204 f = ftdi_usb_open(ftdic, ft2232_vid, ft2232_type);
Paul Fox05dfbe62009-06-16 21:08:06 +0000205
206 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000207 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000208 ftdi_get_error_string(ftdic));
Uwe Hermannc67d0372009-10-01 18:40:02 +0000209 exit(-1); // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000210 }
211
Alex Badea0b94d052010-11-10 03:18:41 +0000212 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H) {
213 msg_pdbg("FTDI chip type %d is not high-speed\n",
214 ftdic->type);
215 clock_5x = 0;
216 }
217
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000218 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000219 msg_perr("Unable to select interface: %s\n",
Paul Fox05dfbe62009-06-16 21:08:06 +0000220 ftdic->error_str);
221 }
222
223 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000224 msg_perr("Unable to reset FTDI device\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000225 }
226
227 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000228 msg_perr("Unable to set latency timer\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000229 }
230
Uwe Hermann16ce40e2010-10-05 21:21:09 +0000231 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000232 msg_perr("Unable to set chunk size\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000233 }
234
Uwe Hermannc67d0372009-10-01 18:40:02 +0000235 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000236 msg_perr("Unable to set bitmode to SPI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000237 }
238
Alex Badea0b94d052010-11-10 03:18:41 +0000239 if (clock_5x) {
240 msg_pdbg("Disable divide-by-5 front stage\n");
241 buf[0] = 0x8a; /* Disable divide-by-5. */
242 if (send_buf(ftdic, buf, 1))
243 return -1;
244 mpsse_clk = 60.0;
245 } else {
246 mpsse_clk = 12.0;
247 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000248
Sean Nelson34b5db72010-01-10 01:08:37 +0000249 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000250 buf[0] = 0x86; /* command "set divisor" */
251 /* valueL/valueH are (desired_divisor - 1) */
Uwe Hermannc67d0372009-10-01 18:40:02 +0000252 buf[1] = (DIVIDE_BY - 1) & 0xff;
253 buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff;
Paul Fox05dfbe62009-06-16 21:08:06 +0000254 if (send_buf(ftdic, buf, 3))
255 return -1;
256
Alex Badea0b94d052010-11-10 03:18:41 +0000257 msg_pdbg("MPSSE clock: %f MHz divisor: %d "
258 "SPI clock: %f MHz\n",
259 mpsse_clk, DIVIDE_BY,
260 (double)(mpsse_clk / (((DIVIDE_BY - 1) + 1) * 2)));
Paul Fox05dfbe62009-06-16 21:08:06 +0000261
Uwe Hermannc67d0372009-10-01 18:40:02 +0000262 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000263 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000264 buf[0] = 0x85;
265 if (send_buf(ftdic, buf, 1))
266 return -1;
267
Sean Nelson34b5db72010-01-10 01:08:37 +0000268 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000269 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000270 buf[1] = cs_bits;
271 buf[2] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000272 if (send_buf(ftdic, buf, 3))
273 return -1;
274
Sean Nelson34b5db72010-01-10 01:08:37 +0000275 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000276
Michael Karcherb9dbe482011-05-11 17:07:07 +0000277 register_spi_programmer(&spi_programmer_ft2232);
Paul Fox05dfbe62009-06-16 21:08:06 +0000278
279 return 0;
280}
281
Michael Karcherb9dbe482011-05-11 17:07:07 +0000282static int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Paul Fox05dfbe62009-06-16 21:08:06 +0000283 const unsigned char *writearr, unsigned char *readarr)
284{
285 struct ftdi_context *ftdic = &ftdic_context;
286 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000287 /* failed is special. We use bitwise ops, but it is essentially bool. */
288 int i = 0, ret = 0, failed = 0;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000289 int bufsize;
290 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000291
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000292 if (writecnt > 65536 || readcnt > 65536)
293 return SPI_INVALID_LENGTH;
294
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000295 /* buf is not used for the response from the chip. */
296 bufsize = max(writecnt + 9, 260 + 9);
297 /* Never shrink. realloc() calls are expensive. */
298 if (bufsize > oldbufsize) {
299 buf = realloc(buf, bufsize);
300 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000301 msg_perr("Out of memory!\n");
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000302 exit(1);
303 }
304 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000305 }
306
Uwe Hermannc67d0372009-10-01 18:40:02 +0000307 /*
308 * Minimize USB transfers by packing as many commands as possible
309 * together. If we're not expecting to read, we can assert CS#, write,
310 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000311 * operations.
312 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000313 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000314 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000315 buf[i++] = 0 & ~cs_bits; /* assertive */
316 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000317
318 if (writecnt) {
319 buf[i++] = 0x11;
320 buf[i++] = (writecnt - 1) & 0xff;
321 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000322 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000323 i += writecnt;
324 }
325
Uwe Hermannc67d0372009-10-01 18:40:02 +0000326 /*
327 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000328 * read command, then do the fetch of the results.
329 */
330 if (readcnt) {
331 buf[i++] = 0x20;
332 buf[i++] = (readcnt - 1) & 0xff;
333 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
334 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000335 failed = ret;
336 /* We can't abort here, we still have to deassert CS#. */
337 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000338 msg_perr("send_buf failed before read: %i\n",
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000339 ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000340 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000341 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000342 /*
343 * FIXME: This is unreliable. There's no guarantee that
344 * we read the response directly after sending the read
345 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000346 */
347 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000348 failed |= ret;
349 /* We can't abort here either. */
350 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000351 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000352 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000353 }
354
Sean Nelson34b5db72010-01-10 01:08:37 +0000355 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000356 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000357 buf[i++] = cs_bits;
358 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000359 ret = send_buf(ftdic, buf, i);
360 failed |= ret;
361 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000362 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000363
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000364 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000365}
366
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000367void print_supported_usbdevs(const struct usbdev_status *devs)
368{
Uwe Hermann70145292010-07-29 19:57:55 +0000369 int i;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000370
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000371 msg_pinfo("USB devices:\n");
Uwe Hermann70145292010-07-29 19:57:55 +0000372 for (i = 0; devs[i].vendor_name != NULL; i++) {
373 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
374 devs[i].device_name, devs[i].vendor_id,
375 devs[i].device_id,
376 (devs[i].status == NT) ? " (untested)" : "");
377 }
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000378}
379
Paul Fox05dfbe62009-06-16 21:08:06 +0000380#endif