2b196bbba9efd4440980482933c2181a1052db67
[platform/upstream/connectedhomeip.git] / third_party / openthread / repo / examples / platforms / efr32mg1 / entropy.c
1 /*
2  *  Copyright (c) 2020, The OpenThread Authors.
3  *  All rights reserved.
4  *
5  *  Redistribution and use in source and binary forms, with or without
6  *  modification, are permitted provided that the following conditions are met:
7  *  1. Redistributions of source code must retain the above copyright
8  *     notice, this list of conditions and the following disclaimer.
9  *  2. Redistributions in binary form must reproduce the above copyright
10  *     notice, this list of conditions and the following disclaimer in the
11  *     documentation and/or other materials provided with the distribution.
12  *  3. Neither the name of the copyright holder nor the
13  *     names of its contributors may be used to endorse or promote products
14  *     derived from this software without specific prior written permission.
15  *
16  *  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
17  *  AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18  *  IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19  *  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
20  *  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
21  *  CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
22  *  SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
23  *  INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
24  *  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
25  *  ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
26  *  POSSIBILITY OF SUCH DAMAGE.
27  */
28
29 /**
30  * @file
31  *   This file implements an entropy source based on ADC.
32  *
33  */
34
35 #include <openthread/platform/entropy.h>
36
37 #include "utils/code_utils.h"
38
39 #include "em_adc.h"
40 #include "em_cmu.h"
41
42 enum
43 {
44     EFR32_ADC_REF_CLOCK = 7000000,
45 };
46
47 void efr32RandomInit(void)
48 {
49     /* Enable ADC Clock */
50     CMU_ClockEnable(cmuClock_ADC0, true);
51     ADC_Init_TypeDef       init       = ADC_INIT_DEFAULT;
52     ADC_InitSingle_TypeDef singleInit = ADC_INITSINGLE_DEFAULT;
53
54     /* Initialize the ADC with the required values */
55     init.timebase = ADC_TimebaseCalc(0);
56     init.prescale = ADC_PrescaleCalc(EFR32_ADC_REF_CLOCK, 0);
57     ADC_Init(ADC0, &init);
58
59     /* Initialize for single conversion specific to RNG */
60     singleInit.reference = adcRefVEntropy;
61     singleInit.diff      = true;
62     singleInit.posSel    = adcPosSelVSS;
63     singleInit.negSel    = adcNegSelVSS;
64     ADC_InitSingle(ADC0, &singleInit);
65
66     /* Set VINATT to maximum value and clear FIFO */
67     ADC0->SINGLECTRLX |= _ADC_SINGLECTRLX_VINATT_MASK;
68     ADC0->SINGLEFIFOCLEAR = ADC_SINGLEFIFOCLEAR_SINGLEFIFOCLEAR;
69 }
70
71 static uint32_t randomUint32Get(void)
72 {
73     uint8_t  tmp;
74     uint32_t random = 0;
75
76     for (int i = 0; i < 4; i++)
77     {
78         tmp = 0;
79
80         for (int j = 0; j < 3; j++)
81         {
82             ADC_Start(ADC0, adcStartSingle);
83
84             while ((ADC0->IF & ADC_IF_SINGLE) == 0)
85                 ;
86
87             tmp |= ((ADC_DataSingleGet(ADC0) & 0x07) << (j * 3));
88         }
89
90         random |= (tmp & 0xff) << (i * 8);
91     }
92
93     return random;
94 }
95
96 otError otPlatEntropyGet(uint8_t *aOutput, uint16_t aOutputLength)
97 {
98     otError error = OT_ERROR_NONE;
99
100     otEXPECT_ACTION(aOutput, error = OT_ERROR_INVALID_ARGS);
101
102     for (uint16_t length = 0; length < aOutputLength; length++)
103     {
104         aOutput[length] = (uint8_t)randomUint32Get();
105     }
106
107 exit:
108     return error;
109 }