altos/telelco: Show box voltage with pad knob instead of firing button
[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         uint16_t        t;
33         uint32_t        *rnd = (uint32_t *) ao_adc_ring;
34
35         if (!buffer[0]) {
36                 buffer[0] = ao_usb_alloc();
37                 buffer[1] = ao_usb_alloc();
38                 if (!buffer[0])
39                         return;
40         }
41
42         ao_cmd_decimal();
43         if (ao_cmd_status == ao_cmd_success)
44                 kbytes = ao_cmd_lex_u32;
45         else
46                 ao_cmd_status = ao_cmd_success;
47         usb_buf_id = 0;
48         count = kbytes * (1024/AO_USB_IN_SIZE);
49
50         ao_crc_reset();
51
52         ao_led_on(AO_LED_TRNG_READ);
53         while (count--) {
54                 t = ao_adc_get(AO_USB_IN_SIZE) >> 1;    /* one 16-bit value per output byte */
55                 buf = buffer[usb_buf_id];
56                 for (i = 0; i < AO_USB_IN_SIZE / sizeof (uint16_t); i++) {
57                         *buf++ = ao_crc_in_32_out_16(rnd[t]);
58                         t = (t + 1) & ((AO_ADC_RING_SIZE>>1) - 1);
59                 }
60                 ao_adc_ack(AO_USB_IN_SIZE);
61                 ao_led_toggle(AO_LED_TRNG_READ|AO_LED_TRNG_WRITE);
62                 ao_usb_write(buffer[usb_buf_id], AO_USB_IN_SIZE);
63                 ao_led_toggle(AO_LED_TRNG_READ|AO_LED_TRNG_WRITE);
64                 usb_buf_id = 1-usb_buf_id;
65         }
66         ao_led_off(AO_LED_TRNG_READ|AO_LED_TRNG_WRITE);
67         flush();
68 }
69
70 static const struct ao_cmds ao_trng_cmds[] = {
71         { ao_trng_fetch,        "f <kbytes>\0Fetch a block of numbers" },
72         { 0, NULL },
73 };
74
75 void
76 ao_trng_init(void)
77 {
78         ao_cmd_register(ao_trng_cmds);
79 }