34a8a981bb866406e76a690b355c6e7548be5764
[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         uint32_t        *rnd;
31
32         if (!buffer[0]) {
33                 buffer[0] = ao_usb_alloc();
34                 buffer[1] = ao_usb_alloc();
35                 if (!buffer[0])
36                         return;
37         }
38
39         usb_buf_id = 0;
40
41         ao_crc_reset();
42
43         for (;;) {
44                 ao_led_on(AO_LED_TRNG_ACTIVE);
45                 rnd = (uint32_t *) ao_adc_get(AO_USB_IN_SIZE);  /* one 16-bit value per output byte */
46                 buf = buffer[usb_buf_id];
47                 for (i = 0; i < AO_USB_IN_SIZE / sizeof (uint16_t); i++)
48                         *buf++ = ao_crc_in_32_out_16(*rnd++);
49                 ao_adc_ack(AO_USB_IN_SIZE);
50                 ao_led_off(AO_LED_TRNG_ACTIVE);
51                 ao_usb_write(buffer[usb_buf_id], AO_USB_IN_SIZE);
52                 usb_buf_id = 1-usb_buf_id;
53         }
54 }
55
56 static struct ao_task ao_trng_send_task;
57
58 void
59 ao_trng_send_init(void)
60 {
61         ao_add_task(&ao_trng_send_task, ao_trng_send, "trng_send");
62 }