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