blob: 737362482b741e06c78252fbed32e491b634c755 [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
131int ft2232_spi_init(void)
132{
133 int f;
134 struct ftdi_context *ftdic = &ftdic_context;
135 unsigned char buf[512];
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000136 int ft2232_vid = FTDI_VID;
137 int ft2232_type = FTDI_FT4232H_PID;
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000138 enum ftdi_interface ft2232_interface = INTERFACE_B;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000139 char *arg;
Alex Badea0b94d052010-11-10 03:18:41 +0000140 double mpsse_clk;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000141
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000142 arg = extract_programmer_param("type");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000143 if (arg) {
144 if (!strcasecmp(arg, "2232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000145 ft2232_type = FTDI_FT2232H_PID;
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000146 else if (!strcasecmp(arg, "4232H"))
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000147 ft2232_type = FTDI_FT4232H_PID;
148 else if (!strcasecmp(arg, "jtagkey")) {
149 ft2232_type = AMONTEC_JTAGKEY_PID;
150 ft2232_interface = INTERFACE_A;
151 cs_bits = 0x18;
Uwe Hermann70145292010-07-29 19:57:55 +0000152 pindir = 0x1b;
Alex Badeacaf2d422010-11-10 03:26:57 +0000153 } else if (!strcasecmp(arg, "openmoko")) {
154 ft2232_vid = FIC_VID;
155 ft2232_type = OPENMOKO_DBGBOARD_PID;
156 ft2232_interface = INTERFACE_A;
157 } else {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000158 msg_perr("Error: Invalid device type specified.\n");
159 free(arg);
160 return 1;
161 }
162 }
163 free(arg);
Carl-Daniel Hailfinger2b6dcb32010-07-08 10:13:37 +0000164 arg = extract_programmer_param("port");
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000165 if (arg) {
Carl-Daniel Hailfinger9e3a6c42010-10-08 12:40:09 +0000166 switch (toupper((unsigned char)*arg)) {
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000167 case 'A':
168 ft2232_interface = INTERFACE_A;
169 break;
170 case 'B':
171 ft2232_interface = INTERFACE_B;
172 break;
173 default:
174 msg_perr("Error: Invalid port/interface specified.\n");
175 free(arg);
176 return 1;
177 }
178 }
179 free(arg);
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000180 msg_pdbg("Using device type %s %s ",
Uwe Hermann70145292010-07-29 19:57:55 +0000181 get_ft2232_vendorname(ft2232_vid, ft2232_type),
182 get_ft2232_devicename(ft2232_vid, ft2232_type));
Carl-Daniel Hailfinger744132a2010-07-06 09:55:48 +0000183 msg_pdbg("interface %s\n",
Uwe Hermann70145292010-07-29 19:57:55 +0000184 (ft2232_interface == INTERFACE_A) ? "A" : "B");
Paul Fox05dfbe62009-06-16 21:08:06 +0000185
186 if (ftdi_init(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000187 msg_perr("ftdi_init failed\n");
Uwe Hermannc67d0372009-10-01 18:40:02 +0000188 return EXIT_FAILURE; // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000189 }
190
Alex Badeab1b459c2010-11-10 03:22:39 +0000191 f = ftdi_usb_open(ftdic, ft2232_vid, ft2232_type);
Paul Fox05dfbe62009-06-16 21:08:06 +0000192
193 if (f < 0 && f != -5) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000194 msg_perr("Unable to open FTDI device: %d (%s)\n", f,
Paul Fox05dfbe62009-06-16 21:08:06 +0000195 ftdi_get_error_string(ftdic));
Uwe Hermannc67d0372009-10-01 18:40:02 +0000196 exit(-1); // TODO
Paul Fox05dfbe62009-06-16 21:08:06 +0000197 }
198
Alex Badea0b94d052010-11-10 03:18:41 +0000199 if (ftdic->type != TYPE_2232H && ftdic->type != TYPE_4232H) {
200 msg_pdbg("FTDI chip type %d is not high-speed\n",
201 ftdic->type);
202 clock_5x = 0;
203 }
204
Carl-Daniel Hailfingerfeea2722009-07-01 00:02:23 +0000205 if (ftdi_set_interface(ftdic, ft2232_interface) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000206 msg_perr("Unable to select interface: %s\n",
Paul Fox05dfbe62009-06-16 21:08:06 +0000207 ftdic->error_str);
208 }
209
210 if (ftdi_usb_reset(ftdic) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000211 msg_perr("Unable to reset FTDI device\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000212 }
213
214 if (ftdi_set_latency_timer(ftdic, 2) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000215 msg_perr("Unable to set latency timer\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000216 }
217
Uwe Hermann16ce40e2010-10-05 21:21:09 +0000218 if (ftdi_write_data_set_chunksize(ftdic, 256)) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000219 msg_perr("Unable to set chunk size\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000220 }
221
Uwe Hermannc67d0372009-10-01 18:40:02 +0000222 if (ftdi_set_bitmode(ftdic, 0x00, BITMODE_BITBANG_SPI) < 0) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000223 msg_perr("Unable to set bitmode to SPI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000224 }
225
Alex Badea0b94d052010-11-10 03:18:41 +0000226 if (clock_5x) {
227 msg_pdbg("Disable divide-by-5 front stage\n");
228 buf[0] = 0x8a; /* Disable divide-by-5. */
229 if (send_buf(ftdic, buf, 1))
230 return -1;
231 mpsse_clk = 60.0;
232 } else {
233 mpsse_clk = 12.0;
234 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000235
Sean Nelson34b5db72010-01-10 01:08:37 +0000236 msg_pdbg("Set clock divisor\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000237 buf[0] = 0x86; /* command "set divisor" */
238 /* valueL/valueH are (desired_divisor - 1) */
Uwe Hermannc67d0372009-10-01 18:40:02 +0000239 buf[1] = (DIVIDE_BY - 1) & 0xff;
240 buf[2] = ((DIVIDE_BY - 1) >> 8) & 0xff;
Paul Fox05dfbe62009-06-16 21:08:06 +0000241 if (send_buf(ftdic, buf, 3))
242 return -1;
243
Alex Badea0b94d052010-11-10 03:18:41 +0000244 msg_pdbg("MPSSE clock: %f MHz divisor: %d "
245 "SPI clock: %f MHz\n",
246 mpsse_clk, DIVIDE_BY,
247 (double)(mpsse_clk / (((DIVIDE_BY - 1) + 1) * 2)));
Paul Fox05dfbe62009-06-16 21:08:06 +0000248
Uwe Hermannc67d0372009-10-01 18:40:02 +0000249 /* Disconnect TDI/DO to TDO/DI for loopback. */
Sean Nelson34b5db72010-01-10 01:08:37 +0000250 msg_pdbg("No loopback of TDI/DO TDO/DI\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000251 buf[0] = 0x85;
252 if (send_buf(ftdic, buf, 1))
253 return -1;
254
Sean Nelson34b5db72010-01-10 01:08:37 +0000255 msg_pdbg("Set data bits\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000256 buf[0] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000257 buf[1] = cs_bits;
258 buf[2] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000259 if (send_buf(ftdic, buf, 3))
260 return -1;
261
Sean Nelson34b5db72010-01-10 01:08:37 +0000262 // msg_pdbg("\nft2232 chosen\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000263
264 buses_supported = CHIP_BUSTYPE_SPI;
265 spi_controller = SPI_CONTROLLER_FT2232;
266
267 return 0;
268}
269
Carl-Daniel Hailfingerd0478292009-07-10 21:08:55 +0000270int ft2232_spi_send_command(unsigned int writecnt, unsigned int readcnt,
Paul Fox05dfbe62009-06-16 21:08:06 +0000271 const unsigned char *writearr, unsigned char *readarr)
272{
273 struct ftdi_context *ftdic = &ftdic_context;
274 static unsigned char *buf = NULL;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000275 /* failed is special. We use bitwise ops, but it is essentially bool. */
276 int i = 0, ret = 0, failed = 0;
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000277 int bufsize;
278 static int oldbufsize = 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000279
Carl-Daniel Hailfinger142e30f2009-07-14 10:26:56 +0000280 if (writecnt > 65536 || readcnt > 65536)
281 return SPI_INVALID_LENGTH;
282
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000283 /* buf is not used for the response from the chip. */
284 bufsize = max(writecnt + 9, 260 + 9);
285 /* Never shrink. realloc() calls are expensive. */
286 if (bufsize > oldbufsize) {
287 buf = realloc(buf, bufsize);
288 if (!buf) {
Sean Nelson34b5db72010-01-10 01:08:37 +0000289 msg_perr("Out of memory!\n");
Carl-Daniel Hailfingerb7e01452009-11-25 16:58:17 +0000290 exit(1);
291 }
292 oldbufsize = bufsize;
Paul Fox05dfbe62009-06-16 21:08:06 +0000293 }
294
Uwe Hermannc67d0372009-10-01 18:40:02 +0000295 /*
296 * Minimize USB transfers by packing as many commands as possible
297 * together. If we're not expecting to read, we can assert CS#, write,
298 * and deassert CS# all in one shot. If reading, we do three separate
Stefan Reinauerab044b22009-09-16 08:26:59 +0000299 * operations.
300 */
Sean Nelson34b5db72010-01-10 01:08:37 +0000301 msg_pspew("Assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000302 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000303 buf[i++] = 0 & ~cs_bits; /* assertive */
304 buf[i++] = pindir;
Paul Fox05dfbe62009-06-16 21:08:06 +0000305
306 if (writecnt) {
307 buf[i++] = 0x11;
308 buf[i++] = (writecnt - 1) & 0xff;
309 buf[i++] = ((writecnt - 1) >> 8) & 0xff;
Uwe Hermannc67d0372009-10-01 18:40:02 +0000310 memcpy(buf + i, writearr, writecnt);
Paul Fox05dfbe62009-06-16 21:08:06 +0000311 i += writecnt;
312 }
313
Uwe Hermannc67d0372009-10-01 18:40:02 +0000314 /*
315 * Optionally terminate this batch of commands with a
Paul Fox05dfbe62009-06-16 21:08:06 +0000316 * read command, then do the fetch of the results.
317 */
318 if (readcnt) {
319 buf[i++] = 0x20;
320 buf[i++] = (readcnt - 1) & 0xff;
321 buf[i++] = ((readcnt - 1) >> 8) & 0xff;
322 ret = send_buf(ftdic, buf, i);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000323 failed = ret;
324 /* We can't abort here, we still have to deassert CS#. */
325 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000326 msg_perr("send_buf failed before read: %i\n",
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000327 ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000328 i = 0;
Stefan Reinauerab044b22009-09-16 08:26:59 +0000329 if (ret == 0) {
Uwe Hermannc67d0372009-10-01 18:40:02 +0000330 /*
331 * FIXME: This is unreliable. There's no guarantee that
332 * we read the response directly after sending the read
333 * command. We may be scheduled out etc.
Stefan Reinauerab044b22009-09-16 08:26:59 +0000334 */
335 ret = get_buf(ftdic, readarr, readcnt);
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000336 failed |= ret;
337 /* We can't abort here either. */
338 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000339 msg_perr("get_buf failed: %i\n", ret);
Stefan Reinauerab044b22009-09-16 08:26:59 +0000340 }
Paul Fox05dfbe62009-06-16 21:08:06 +0000341 }
342
Sean Nelson34b5db72010-01-10 01:08:37 +0000343 msg_pspew("De-assert CS#\n");
Paul Fox05dfbe62009-06-16 21:08:06 +0000344 buf[i++] = SET_BITS_LOW;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000345 buf[i++] = cs_bits;
346 buf[i++] = pindir;
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000347 ret = send_buf(ftdic, buf, i);
348 failed |= ret;
349 if (ret)
Sean Nelson34b5db72010-01-10 01:08:37 +0000350 msg_perr("send_buf failed at end: %i\n", ret);
Paul Fox05dfbe62009-06-16 21:08:06 +0000351
Carl-Daniel Hailfingera2441ce2009-11-22 01:33:40 +0000352 return failed ? -1 : 0;
Paul Fox05dfbe62009-06-16 21:08:06 +0000353}
354
355int ft2232_spi_read(struct flashchip *flash, uint8_t *buf, int start, int len)
356{
357 /* Maximum read length is 64k bytes. */
358 return spi_read_chunked(flash, buf, start, len, 64 * 1024);
359}
360
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000361int ft2232_spi_write_256(struct flashchip *flash, uint8_t *buf, int start, int len)
Paul Fox05dfbe62009-06-16 21:08:06 +0000362{
Carl-Daniel Hailfinger9a795d82010-07-14 16:19:05 +0000363 return spi_write_chunked(flash, buf, start, len, 256);
Paul Fox05dfbe62009-06-16 21:08:06 +0000364}
365
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000366void print_supported_usbdevs(const struct usbdev_status *devs)
367{
Uwe Hermann70145292010-07-29 19:57:55 +0000368 int i;
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000369
Carl-Daniel Hailfingera73fb492010-10-06 23:48:34 +0000370 msg_pinfo("USB devices:\n");
Uwe Hermann70145292010-07-29 19:57:55 +0000371 for (i = 0; devs[i].vendor_name != NULL; i++) {
372 msg_pinfo("%s %s [%04x:%04x]%s\n", devs[i].vendor_name,
373 devs[i].device_name, devs[i].vendor_id,
374 devs[i].device_id,
375 (devs[i].status == NT) ? " (untested)" : "");
376 }
Jörg Fischer6529b9f2010-07-29 15:54:53 +0000377}
378
Paul Fox05dfbe62009-06-16 21:08:06 +0000379#endif