mirror of
https://github.com/mit-han-lab/tinyengine.git
synced 2025-05-10 17:31:24 +08:00
248 lines
8.5 KiB
C
248 lines
8.5 KiB
C
/**
|
|
******************************************************************************
|
|
* @file stm32f7xx_hal_msp.c
|
|
******************************************************************************
|
|
* @attention
|
|
*
|
|
* <h2><center>© COPYRIGHT(c) 2017 STMicroelectronics</center></h2>
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without modification,
|
|
* are permitted provided that the following conditions are met:
|
|
* 1. Redistributions of source code must retain the above copyright notice,
|
|
* this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright notice,
|
|
* this list of conditions and the following disclaimer in the documentation
|
|
* and/or other materials provided with the distribution.
|
|
* 3. Neither the name of STMicroelectronics nor the names of its contributors
|
|
* may be used to endorse or promote products derived from this software
|
|
* without specific prior written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
* DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
|
|
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
|
|
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
******************************************************************************
|
|
*/
|
|
|
|
/* ----------------------------------------------------------------------
|
|
* Project: TinyEngine
|
|
* Title: stm32f7xx_hal_msp.c
|
|
*
|
|
* Reference papers:
|
|
* - MCUNet: Tiny Deep Learning on IoT Device, NeurIPS 2020
|
|
* - MCUNetV2: Memory-Efficient Patch-based Inference for Tiny Deep Learning, NeurIPS 2021
|
|
* - MCUNetV3: On-Device Training Under 256KB Memory, NeurIPS 2022
|
|
* Contact authors:
|
|
* - Wei-Ming Chen, wmchen@mit.edu
|
|
* - Wei-Chen Wang, wweichen@mit.edu
|
|
* - Ji Lin, jilin@mit.edu
|
|
* - Ligeng Zhu, ligeng@mit.edu
|
|
* - Song Han, songhan@mit.edu
|
|
*
|
|
* Target ISA: ARMv7E-M
|
|
* -------------------------------------------------------------------- */
|
|
|
|
#include "camera_i2c.h"
|
|
#include "camera_spi.h"
|
|
#include "main.h"
|
|
#include "stm32746g_discovery.h"
|
|
#include "stm32746g_discovery_lcd.h"
|
|
#include "stm32f7xx_hal.h"
|
|
void HAL_I2C_MspInit(I2C_HandleTypeDef *hi2c) {
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
RCC_PeriphCLKInitTypeDef RCC_PeriphCLKInitStruct;
|
|
|
|
RCC_PeriphCLKInitStruct.PeriphClockSelection = RCC_PERIPHCLK_I2Cx;
|
|
RCC_PeriphCLKInitStruct.I2c1ClockSelection = RCC_I2CxCLKSOURCE_SYSCLK;
|
|
HAL_RCCEx_PeriphCLKConfig(&RCC_PeriphCLKInitStruct);
|
|
|
|
I2Cx_SCL_GPIO_CLK_ENABLE();
|
|
I2Cx_SDA_GPIO_CLK_ENABLE();
|
|
|
|
I2Cx_CLK_ENABLE();
|
|
|
|
GPIO_InitStruct.Pin = I2Cx_SCL_PIN;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FAST;
|
|
GPIO_InitStruct.Alternate = I2Cx_SCL_SDA_AF;
|
|
HAL_GPIO_Init(I2Cx_SCL_GPIO_PORT, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = I2Cx_SDA_PIN;
|
|
GPIO_InitStruct.Alternate = I2Cx_SCL_SDA_AF;
|
|
HAL_GPIO_Init(I2Cx_SDA_GPIO_PORT, &GPIO_InitStruct);
|
|
}
|
|
void HAL_I2C_MspDeInit(I2C_HandleTypeDef *hi2c) {
|
|
|
|
I2Cx_FORCE_RESET();
|
|
I2Cx_RELEASE_RESET();
|
|
|
|
HAL_GPIO_DeInit(I2Cx_SCL_GPIO_PORT, I2Cx_SCL_PIN);
|
|
|
|
HAL_GPIO_DeInit(I2Cx_SDA_GPIO_PORT, I2Cx_SDA_PIN);
|
|
}
|
|
void HAL_SPI_MspInit(SPI_HandleTypeDef *hspi) {
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
|
|
if (hspi->Instance == SPIx) {
|
|
|
|
SPIx_SCK_GPIO_CLK_ENABLE();
|
|
SPIx_MISO_GPIO_CLK_ENABLE();
|
|
SPIx_MOSI_GPIO_CLK_ENABLE();
|
|
|
|
SPIx_CLK_ENABLE();
|
|
|
|
GPIO_InitStruct.Pin = SPIx_SCK_PIN;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_PULLDOWN;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_LOW;
|
|
GPIO_InitStruct.Alternate = SPIx_SCK_AF;
|
|
HAL_GPIO_Init(SPIx_SCK_GPIO_PORT, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = SPIx_MISO_PIN;
|
|
GPIO_InitStruct.Alternate = SPIx_MISO_AF;
|
|
HAL_GPIO_Init(SPIx_MISO_GPIO_PORT, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = SPIx_MOSI_PIN;
|
|
GPIO_InitStruct.Alternate = SPIx_MOSI_AF;
|
|
HAL_GPIO_Init(SPIx_MOSI_GPIO_PORT, &GPIO_InitStruct);
|
|
}
|
|
}
|
|
void HAL_SPI_MspDeInit(SPI_HandleTypeDef *hspi) {
|
|
if (hspi->Instance == SPIx) {
|
|
|
|
SPIx_FORCE_RESET();
|
|
SPIx_RELEASE_RESET();
|
|
|
|
HAL_GPIO_DeInit(SPIx_SCK_GPIO_PORT, SPIx_SCK_PIN);
|
|
|
|
HAL_GPIO_DeInit(SPIx_MISO_GPIO_PORT, SPIx_MISO_PIN);
|
|
|
|
HAL_GPIO_DeInit(SPIx_MOSI_GPIO_PORT, SPIx_MOSI_PIN);
|
|
}
|
|
}
|
|
|
|
void HAL_UART_MspInit(UART_HandleTypeDef *huart) {
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
if (huart->Instance == USART1) {
|
|
|
|
__HAL_RCC_USART1_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOB_CLK_ENABLE();
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
|
|
GPIO_InitStruct.Pin = VCP_RX_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
|
|
HAL_GPIO_Init(VCP_RX_GPIO_Port, &GPIO_InitStruct);
|
|
|
|
GPIO_InitStruct.Pin = VCP_TX_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_LOW;
|
|
GPIO_InitStruct.Alternate = GPIO_AF7_USART1;
|
|
HAL_GPIO_Init(VCP_TX_GPIO_Port, &GPIO_InitStruct);
|
|
|
|
} else if (huart->Instance == USART6) {
|
|
|
|
__HAL_RCC_USART6_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOC_CLK_ENABLE();
|
|
|
|
GPIO_InitStruct.Pin = ARDUINO_RX_D0_Pin | ARDUINO_TX_D1_Pin;
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FREQ_VERY_HIGH;
|
|
GPIO_InitStruct.Alternate = GPIO_AF8_USART6;
|
|
HAL_GPIO_Init(GPIOC, &GPIO_InitStruct);
|
|
}
|
|
}
|
|
void HAL_UART_MspDeInit(UART_HandleTypeDef *huart) {
|
|
|
|
if (huart->Instance == USART1) {
|
|
|
|
__HAL_RCC_USART1_CLK_DISABLE();
|
|
|
|
HAL_GPIO_DeInit(VCP_RX_GPIO_Port, VCP_RX_Pin);
|
|
|
|
HAL_GPIO_DeInit(VCP_TX_GPIO_Port, VCP_TX_Pin);
|
|
|
|
} else if (huart->Instance == USART6) {
|
|
|
|
__HAL_RCC_USART6_CLK_DISABLE();
|
|
|
|
HAL_GPIO_DeInit(GPIOC, ARDUINO_RX_D0_Pin | ARDUINO_TX_D1_Pin);
|
|
}
|
|
}
|
|
void HAL_LTDC_MspInit(LTDC_HandleTypeDef *hltdc) {
|
|
GPIO_InitTypeDef GPIO_Init_Structure;
|
|
|
|
__HAL_RCC_LTDC_CLK_ENABLE();
|
|
|
|
__HAL_RCC_GPIOE_CLK_ENABLE();
|
|
__HAL_RCC_GPIOG_CLK_ENABLE();
|
|
__HAL_RCC_GPIOI_CLK_ENABLE();
|
|
__HAL_RCC_GPIOJ_CLK_ENABLE();
|
|
__HAL_RCC_GPIOK_CLK_ENABLE();
|
|
|
|
GPIO_Init_Structure.Pin = GPIO_PIN_4;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_Init_Structure.Pull = GPIO_NOPULL;
|
|
GPIO_Init_Structure.Speed = GPIO_SPEED_FAST;
|
|
GPIO_Init_Structure.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOE, &GPIO_Init_Structure);
|
|
|
|
GPIO_Init_Structure.Pin = GPIO_PIN_12;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_Init_Structure.Alternate = GPIO_AF9_LTDC;
|
|
HAL_GPIO_Init(GPIOG, &GPIO_Init_Structure);
|
|
|
|
GPIO_Init_Structure.Pin = GPIO_PIN_8 | GPIO_PIN_9 | GPIO_PIN_10 |
|
|
GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_Init_Structure.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOI, &GPIO_Init_Structure);
|
|
|
|
GPIO_Init_Structure.Pin =
|
|
GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_3 | GPIO_PIN_4 |
|
|
GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7 | GPIO_PIN_8 | GPIO_PIN_9 |
|
|
GPIO_PIN_10 | GPIO_PIN_11 | GPIO_PIN_13 | GPIO_PIN_14 | GPIO_PIN_15;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_Init_Structure.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOJ, &GPIO_Init_Structure);
|
|
|
|
GPIO_Init_Structure.Pin = GPIO_PIN_0 | GPIO_PIN_1 | GPIO_PIN_2 | GPIO_PIN_4 |
|
|
GPIO_PIN_5 | GPIO_PIN_6 | GPIO_PIN_7;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_AF_PP;
|
|
GPIO_Init_Structure.Alternate = GPIO_AF14_LTDC;
|
|
HAL_GPIO_Init(GPIOK, &GPIO_Init_Structure);
|
|
|
|
GPIO_Init_Structure.Pin = GPIO_PIN_12;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_OUTPUT_PP;
|
|
HAL_GPIO_Init(GPIOI, &GPIO_Init_Structure);
|
|
|
|
GPIO_Init_Structure.Pin = GPIO_PIN_3;
|
|
GPIO_Init_Structure.Mode = GPIO_MODE_OUTPUT_PP;
|
|
HAL_GPIO_Init(GPIOK, &GPIO_Init_Structure);
|
|
|
|
HAL_GPIO_WritePin(LCD_DISP_GPIO_PORT, LCD_DISP_PIN, GPIO_PIN_SET);
|
|
|
|
HAL_GPIO_WritePin(LCD_BL_CTRL_GPIO_PORT, LCD_BL_CTRL_PIN, GPIO_PIN_SET);
|
|
}
|
|
void HAL_LTDC_MspDeInit(LTDC_HandleTypeDef *hltdc) {
|
|
|
|
__HAL_RCC_LTDC_FORCE_RESET();
|
|
|
|
__HAL_RCC_LTDC_RELEASE_RESET();
|
|
}
|