OpenCores
URL https://opencores.org/ocsvn/neorv32/neorv32/trunk

Subversion Repositories neorv32

[/] [neorv32/] [trunk/] [sw/] [example/] [demo_trng/] [main.c] - Blame information for rev 2

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 zero_gravi
// #################################################################################################
2
// # << NEORV32 - TRNG Demo Program >>                                                             #
3
// # ********************************************************************************************* #
4
// # BSD 3-Clause License                                                                          #
5
// #                                                                                               #
6
// # Copyright (c) 2020, Stephan Nolting. All rights reserved.                                     #
7
// #                                                                                               #
8
// # Redistribution and use in source and binary forms, with or without modification, are          #
9
// # permitted provided that the following conditions are met:                                     #
10
// #                                                                                               #
11
// # 1. Redistributions of source code must retain the above copyright notice, this list of        #
12
// #    conditions and the following disclaimer.                                                   #
13
// #                                                                                               #
14
// # 2. Redistributions in binary form must reproduce the above copyright notice, this list of     #
15
// #    conditions and the following disclaimer in the documentation and/or other materials        #
16
// #    provided with the distribution.                                                            #
17
// #                                                                                               #
18
// # 3. Neither the name of the copyright holder nor the names of its contributors may be used to  #
19
// #    endorse or promote products derived from this software without specific prior written      #
20
// #    permission.                                                                                #
21
// #                                                                                               #
22
// # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS   #
23
// # OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF               #
24
// # MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE    #
25
// # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,     #
26
// # EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE #
27
// # GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED    #
28
// # AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING     #
29
// # NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED  #
30
// # OF THE POSSIBILITY OF SUCH DAMAGE.                                                            #
31
// # ********************************************************************************************* #
32
// # The NEORV32 Processor - https://github.com/stnolting/neorv32              (c) Stephan Nolting #
33
// #################################################################################################
34
 
35
 
36
/**********************************************************************//**
37
 * @file demo_trng/main.c
38
 * @author Stephan Nolting
39
 * @brief TRNG demo program.
40
 **************************************************************************/
41
 
42
#include <neorv32.h>
43
 
44
 
45
/**********************************************************************//**
46
 * @name User configuration
47
 **************************************************************************/
48
/**@{*/
49
/** UART BAUD rate */
50
#define BAUD_RATE 19200
51
/**@}*/
52
 
53
 
54
 
55
/**********************************************************************//**
56
 * This program generates a simple dimming sequence for PWM channel 0,1,2.
57
 *
58
 * @note This program requires the UART and the TRNG to be synthesized.
59
 *
60
 * @return Irrelevant.
61
 **************************************************************************/
62
int main(void) {
63
 
64
  uint8_t lucky_numbers_5of50[5];
65
  uint8_t lucky_numbers_2of10[2];
66
 
67
  uint8_t i, j, tmp;
68
  uint16_t trng_data;
69
  unsigned int num_samples;
70
 
71
  // check if UART unit is implemented at all
72
  if (neorv32_uart_available() == 0) {
73
    return 0;
74
  }
75
 
76
 
77
  // capture all exceptions and give debug info via UART
78
  // this is not required, but keeps us safe
79
  neorv32_rte_enable_debug_mode();
80
 
81
 
82
  // init UART at default baud rate, no rx interrupt, no tx interrupt
83
  neorv32_uart_setup(BAUD_RATE, 0, 0);
84
 
85
  // intro
86
  neorv32_uart_printf("\n--- TRNG Demo ---\n\n");
87
 
88
  // check if TRNG unit is implemented at all
89
  if (neorv32_trng_available() == 0) {
90
    neorv32_uart_printf("No TRNG implemented.");
91
    return 0;
92
  }
93
 
94
  // configure TRNG with defaul GARO tap mask
95
  neorv32_uart_printf("Configuring TRNG...\n");
96
  uint16_t trng_tap_config = neorv32_trng_find_tap_mask();
97
  neorv32_uart_printf("TRNG: Using tap mask: 0x%x ", (uint32_t)trng_tap_config);
98
  neorv32_trng_setup(trng_tap_config);
99
 
100
  while(1) {
101
 
102
    // main menu
103
    neorv32_uart_printf("\nCommands:\n"
104
                        " n: Print 8-bit random numbers (abort by pressing any key)\n"
105
                        " l: Print your lucky numbers\n");
106
 
107
    neorv32_uart_printf("CMD:> ");
108
    char cmd = neorv32_uart_getc();
109
    neorv32_uart_putc(cmd); // echo
110
    neorv32_uart_printf("\n");
111
 
112
    // output RND data
113
    if (cmd == 'n') {
114
      num_samples = 0;
115
      while(1) {
116
        if (neorv32_trng_get(&trng_data)) {
117
          neorv32_uart_printf("\nTRNG error!\n");
118
          break;
119
        }
120
        neorv32_uart_printf("%u ", (uint32_t)(trng_data & 0xFF));
121
        num_samples++;
122
        if (neorv32_uart_char_received()) { // abort when key pressed
123
          neorv32_uart_printf("\nPrinted samples: %u", num_samples);
124
          break;
125
        }
126
      }
127
    }
128
 
129
    // print lucky numbers
130
    if (cmd == 'l') {
131
      // reset array
132
      for (i=0; i<5; i++) {
133
        lucky_numbers_5of50[i] = 0;
134
      }
135
      lucky_numbers_2of10[0] = 0;
136
      lucky_numbers_2of10[1] = 0;
137
 
138
      // get numbers
139
      i = 0;
140
      while (i<5) {
141
        if (neorv32_trng_get(&trng_data)) {
142
          neorv32_uart_printf("\nTRNG error!\n");
143
          break;
144
        }
145
        // valid range?
146
        tmp = (uint8_t)(trng_data & 0xff);
147
        if ((tmp == 0) || (tmp > 50)) {
148
          continue;
149
        }
150
        // already sampled?
151
        for (j=0; j<5; j++) {
152
          if (lucky_numbers_5of50[j] == tmp) {
153
            continue;
154
          }
155
        }
156
        lucky_numbers_5of50[i] = tmp;
157
        i++;
158
      }
159
 
160
      // get numbers part 2
161
      i = 0;
162
      while (i<2) {
163
        if (neorv32_trng_get(&trng_data)) {
164
          neorv32_uart_printf("\nTRNG error!\n");
165
          break;
166
        }
167
        // valid range?
168
        tmp = (uint8_t)(trng_data & 0xff);
169
        if ((tmp == 0) || (tmp > 10)) {
170
          continue;
171
        }
172
        // already sampled?
173
        for (j=0; j<2; j++) {
174
          if (lucky_numbers_2of10[j] == tmp) {
175
            continue;
176
          }
177
        }
178
        lucky_numbers_2of10[i] = tmp;
179
        i++;
180
      }
181
 
182
      // output
183
      neorv32_uart_printf("\n");
184
      for (j=0; j<5; j++) {
185
        if (i==4) {
186
          neorv32_uart_printf("%u", (uint32_t)lucky_numbers_5of50[j]);
187
        }
188
        else {
189
          neorv32_uart_printf("%u, ", (uint32_t)lucky_numbers_5of50[j]);
190
        }
191
      }
192
      neorv32_uart_printf("\nLucky numbers: %u, %u\n", (uint32_t)lucky_numbers_2of10[0], (uint32_t)lucky_numbers_2of10[1]);
193
 
194
    }
195
  }
196
 
197
  return 0;
198
}
199
 

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.