bac6035cd8dbde1b09fdb929debc5fc4b67a8c80
[fw/altos] / src / drivers / ao_trng_send.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_send.h>
22
23 static void
24 ao_trng_send(void)
25 {
26         static uint16_t *buffer[2];
27         int             usb_buf_id;
28         uint16_t        i;
29         uint16_t        *buf;
30         uint16_t        t;
31         uint32_t        *rnd = (uint32_t *) ao_adc_ring;
32
33         if (!buffer[0]) {
34                 buffer[0] = ao_usb_alloc();
35                 buffer[1] = ao_usb_alloc();
36                 if (!buffer[0])
37                         return;
38         }
39
40         usb_buf_id = 0;
41
42         ao_crc_reset();
43
44         for (;;) {
45                 ao_led_on(AO_LED_TRNG_ACTIVE);
46                 t = ao_adc_get(AO_USB_IN_SIZE) >> 1;    /* one 16-bit value per output byte */
47                 buf = buffer[usb_buf_id];
48                 for (i = 0; i < AO_USB_IN_SIZE / sizeof (uint16_t); i++) {
49                         *buf++ = ao_crc_in_32_out_16(rnd[t]);
50                         t = (t + 1) & ((AO_ADC_RING_SIZE>>1) - 1);
51                 }
52                 ao_adc_ack(AO_USB_IN_SIZE);
53                 ao_led_off(AO_LED_TRNG_ACTIVE);
54                 ao_usb_write(buffer[usb_buf_id], AO_USB_IN_SIZE);
55                 usb_buf_id = 1-usb_buf_id;
56         }
57 }
58
59 static struct ao_task ao_trng_send_task;
60
61 void
62 ao_trng_send_init(void)
63 {
64         ao_add_task(&ao_trng_send_task, ao_trng_send, "trng_send");
65 }