0362f1b46af98560dc220181e36afa64392b9f3d
[fw/altos] / ao-tools / ao-usbtrng / ao-usbtrng.c
1 /*
2  * Copyright © 2014 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
17  */
18
19 #include <err.h>
20 #include <fcntl.h>
21 #include <gelf.h>
22 #include <stdio.h>
23 #include <stdint.h>
24 #include <stdlib.h>
25 #include <sysexits.h>
26 #include <unistd.h>
27 #include <getopt.h>
28 #include <string.h>
29 #include <stdbool.h>
30 #include "ao-elf.h"
31 #include "ccdbg.h"
32 #include "cc-usb.h"
33 #include "cc.h"
34 #include "ao-verbose.h"
35
36 static const struct option options[] = {
37         { .name = "tty", .has_arg = 1, .val = 'T' },
38         { .name = "device", .has_arg = 1, .val = 'D' },
39         { .name = "verbose", .has_arg = 0, .val = 'v' },
40         { 0, 0, 0, 0},
41 };
42
43 static void usage(char *program)
44 {
45         fprintf(stderr, "usage: %s [--verbose] [--device=<AltOS-device>] [-tty=<tty>] [<kbytes>]\n", program);
46         exit(1);
47 }
48
49 void
50 done(struct cc_usb *cc, int code)
51 {
52         cc_usb_close(cc);
53         exit (code);
54 }
55
56 int
57 main (int argc, char **argv)
58 {
59         char                    *device = NULL;
60         char                    *filename;
61         int                     i;
62         int                     c;
63         struct cc_usb           *cc = NULL;
64         char                    *tty = NULL;
65         int                     verbose = 0;
66         int                     ret = 0;
67         int                     kbytes = 0; /* 0 == continuous */
68         int                     written;
69         uint8_t                 bits[1024];
70
71         while ((c = getopt_long(argc, argv, "vT:D:", options, NULL)) != -1) {
72                 switch (c) {
73                 case 'T':
74                         tty = optarg;
75                         break;
76                 case 'D':
77                         device = optarg;
78                         break;
79                 case 'v':
80                         verbose++;
81                         break;
82                 default:
83                         usage(argv[0]);
84                         break;
85                 }
86         }
87
88         if (optind < argc)
89                 kbytes = atoi(argv[optind]);
90
91         ao_verbose = verbose;
92
93         if (verbose > 1)
94                 ccdbg_add_debug(CC_DEBUG_BITBANG);
95
96         if (!tty)
97                 tty = cc_usbdevs_find_by_arg(device, "usbtrng");
98         if (!tty)
99                 tty = getenv("ALTOS_TTY");
100         if (!tty)
101                 tty="/dev/ttyACM0";
102
103         cc = cc_usb_open(tty);
104
105         if (!cc)
106                 exit(1);
107
108         if (kbytes) {
109                 cc_usb_printf(cc, "f %d\n", kbytes);
110
111                 while (kbytes--) {
112                         for (i = 0; i < 1024; i++)
113                                 bits[i] = cc_usb_getchar(cc);
114                         write(1, bits, 1024);
115                 }
116         } else { /* 0 == continuous */
117                 written = 0;
118                 while (written >= 0) {
119                         cc_usb_printf(cc, "f 1\n");
120                         for (i = 0; i < 1024; i++)
121                                 bits[i] = cc_usb_getchar(cc);
122                         written = write(1, bits, 1024);
123                 }
124         }
125
126         done(cc, ret);
127 }