altos/usbtrng-v2.0: Use stmf042 hardware CRC unit
[fw/altos] / src / usbtrng-v2.0 / 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; 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
22 static void
23 ao_trng_fetch(void)
24 {
25         static uint16_t *buffer[2];
26         static uint32_t adc_in[AO_USB_IN_SIZE/2];       /* twice as many as we need */
27         uint32_t        kbytes = 1;
28         uint32_t        count;
29         int             usb_buf_id;
30         int             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_GREEN);
52         while (count--) {
53                 ao_adc_read((uint16_t *) adc_in, AO_USB_IN_SIZE);
54                 rnd = adc_in;
55                 buf = buffer[usb_buf_id];
56                 for (i = 0; i < 32; i++)
57                         *buf++ = ao_crc_in_32_out_16(*rnd++);
58                 ao_led_toggle(AO_LED_GREEN|AO_LED_RED);
59                 ao_usb_write(buffer[usb_buf_id], AO_USB_IN_SIZE);
60                 ao_led_toggle(AO_LED_GREEN|AO_LED_RED);
61                 usb_buf_id = 1-usb_buf_id;
62         }
63         ao_led_off(AO_LED_GREEN|AO_LED_RED);
64         ao_usb_flush();
65 }
66
67 static const struct ao_cmds usbtrng_cmds[] = {
68         { ao_trng_fetch,        "f <kbytes>\0Fetch a block of numbers" },
69         { 0, NULL },
70 };
71
72 void main(void)
73 {
74         ao_led_init(LEDS_AVAILABLE);
75         ao_led_on(AO_LED_RED);
76         ao_clock_init();
77         ao_task_init();
78         ao_timer_init();
79         ao_dma_init();
80         ao_adc_init();
81         ao_crc_init();
82
83         ao_cmd_init();
84
85         ao_usb_init();
86
87         ao_cmd_register(usbtrng_cmds);
88         ao_led_off(AO_LED_RED);
89
90         ao_start_scheduler();
91 }