75f7074c329a9087271d1976c68ac329ed5cbb3e
[platform/upstream/connectedhomeip.git] / examples / platform / efr32 / efr32mg12 / BRD4161A / init_board.c
1 /*
2  *
3  *    Copyright (c) 2020 Project CHIP Authors
4  *    All rights reserved.
5  *
6  *    Licensed under the Apache License, Version 2.0 (the "License");
7  *    you may not use this file except in compliance with the License.
8  *    You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  */
18 /*******************************************************************************
19  * @file
20  * @brief init_board.c
21  *******************************************************************************
22  * # License
23  * <b>Copyright 2018 Silicon Laboratories Inc. www.silabs.com</b>
24  *******************************************************************************
25  *
26  * The licensor of this software is Silicon Laboratories Inc. Your use of this
27  * software is governed by the terms of Silicon Labs Master Software License
28  * Agreement (MSLA) available at
29  * www.silabs.com/about-us/legal/master-software-license-agreement. This
30  * software is distributed to you in Source Code format and is governed by the
31  * sections of the MSLA applicable to Source Code.
32  *
33  ******************************************************************************/
34
35 #if defined(HAL_CONFIG)
36 #include "bsphalconfig.h"
37 #include "hal-config.h"
38 #else
39 #include "bspconfig.h"
40 #endif
41
42 #include "board_features.h"
43 #include "em_cmu.h"
44
45 #include "em_cmu.h"
46
47 #include "em_usart.h"
48 #include "mx25flash_spi.h"
49
50 #include "bsp.h"
51
52 void initBoard(void)
53 {
54
55     // Enable clock for CRYOTIMER
56     CMU_ClockEnable(cmuClock_CRYOTIMER, true);
57 #if ((HAL_VCOM_ENABLE == 1) || (HAL_USART3_ENABLE == 1) || (HAL_USART1_ENABLE == 1) || (HAL_USART0_ENABLE == 1))
58 #if defined(FEATURE_EXP_HEADER_USART3)
59     // Enable clock for USART3
60     CMU_ClockEnable(cmuClock_USART3, true);
61 #elif defined(FEATURE_EXP_HEADER_USART1)
62     // Enable clock for USART1
63     CMU_ClockEnable(cmuClock_USART1, true);
64 #else
65     // Enable clock for USART0
66     CMU_ClockEnable(cmuClock_USART0, true);
67 #endif
68 #endif //(HAL_VCOM_ENABLE == 1)
69 #if ((HAL_I2CSENSOR_ENABLE == 1) || (HAL_VCOM_ENABLE == 1) || (HAL_SPIDISPLAY_ENABLE == 1) || (HAL_USART3_ENABLE == 1) ||          \
70      (HAL_USART1_ENABLE == 1) || (HAL_USART0_ENABLE == 1))
71     // Enable clock for PRS
72     CMU_ClockEnable(cmuClock_PRS, true);
73     // Enable GPIO clock source
74     CMU_ClockEnable(cmuClock_GPIO, true);
75 #endif /* ((HAL_I2CSENSOR_ENABLE == 1)                                                                                             \
76            || (HAL_VCOM_ENABLE == 1)                                                                                               \
77            || (HAL_SPIDISPLAY_ENABLE == 1)                                                                                         \
78            || (HAL_USART3_ENABLE == 1)                                                                                             \
79            || (HAL_USART1_ENABLE == 1)                                                                                             \
80            || (HAL_USART0_ENABLE == 1)) */
81
82     // Put the SPI flash into Deep Power Down mode for those radio boards where it is available
83     MX25_init();
84     MX25_DP();
85     // We must disable SPI communication
86     MX25_deinit();
87 }
88
89 void initVcomEnable(void)
90 {
91 #if defined(HAL_VCOM_ENABLE)
92     // Enable VCOM if requested
93     GPIO_PinModeSet(BSP_VCOM_ENABLE_PORT, BSP_VCOM_ENABLE_PIN, gpioModePushPull, HAL_VCOM_ENABLE);
94 #endif // HAL_VCOM_ENABLE
95 }