altos/usbtrng: Split out random number generating code to separate driver
[fw/altos] / src / drivers / ao_trng.c
1 /*
2  * Copyright © 2015 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; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <ao.h>
19 #include <ao_adc_fast.h>
20 #include <ao_crc.h>
21 #include <ao_trng.h>
22
23 static void
24 ao_trng_fetch(void)
25 {
26         static uint16_t *buffer[2];
27         uint32_t        kbytes = 1;
28         uint32_t        count;
29         int             usb_buf_id;
30         uint16_t        i;
31         uint16_t        *buf;
32         uint32_t        *rnd;
33
34         if (!buffer[0]) {
35                 buffer[0] = ao_usb_alloc();
36                 buffer[1] = ao_usb_alloc();
37                 if (!buffer[0])
38                         return;
39         }
40
41         ao_cmd_decimal();
42         if (ao_cmd_status == ao_cmd_success)
43                 kbytes = ao_cmd_lex_u32;
44         else
45                 ao_cmd_status = ao_cmd_success;
46         usb_buf_id = 0;
47         count = kbytes * (1024/AO_USB_IN_SIZE);
48
49         ao_crc_reset();
50
51         ao_led_on(AO_LED_TRNG_READ);
52         while (count--) {
53                 rnd = (uint32_t *) ao_adc_get(AO_USB_IN_SIZE);  /* one 16-bit value per output byte */
54                 buf = buffer[usb_buf_id];
55                 for (i = 0; i < AO_USB_IN_SIZE / sizeof (uint16_t); i++)
56                         *buf++ = ao_crc_in_32_out_16(*rnd++);
57                 ao_adc_ack(AO_USB_IN_SIZE);
58                 ao_led_toggle(AO_LED_TRNG_READ|AO_LED_TRNG_WRITE);
59                 ao_usb_write(buffer[usb_buf_id], AO_USB_IN_SIZE);
60                 ao_led_toggle(AO_LED_TRNG_READ|AO_LED_TRNG_WRITE);
61                 usb_buf_id = 1-usb_buf_id;
62         }
63         ao_led_off(AO_LED_TRNG_READ|AO_LED_TRNG_WRITE);
64         flush();
65 }
66
67 static const struct ao_cmds ao_trng_cmds[] = {
68         { ao_trng_fetch,        "f <kbytes>\0Fetch a block of numbers" },
69         { 0, NULL },
70 };
71
72 void
73 ao_trng_init(void)
74 {
75         ao_cmd_register(ao_trng_cmds);
76 }