2015-11-21 09:27:08 +00:00
|
|
|
#include "../../../gfx.h"
|
2016-06-16 10:34:03 +00:00
|
|
|
#undef Red
|
|
|
|
#undef Green
|
|
|
|
#undef Blue
|
2015-07-11 06:13:05 +00:00
|
|
|
#include "stm32f7xx_hal.h"
|
|
|
|
|
2015-10-23 08:24:49 +00:00
|
|
|
#if GFX_USE_OS_CHIBIOS
|
|
|
|
#define HAL_GPIO_Init(port, ptr) palSetGroupMode(port, (ptr)->Pin, 0, (ptr)->Mode|((ptr)->Speed<<3)|((ptr)->Pull<<5)|((ptr)->Alternate<<7))
|
|
|
|
#else
|
|
|
|
systemticks_t gfxSystemTicks(void)
|
|
|
|
{
|
|
|
|
return HAL_GetTick();
|
|
|
|
}
|
2015-07-11 06:13:05 +00:00
|
|
|
|
2015-10-23 08:24:49 +00:00
|
|
|
systemticks_t gfxMillisecondsToTicks(delaytime_t ms)
|
|
|
|
{
|
|
|
|
return ms;
|
|
|
|
}
|
2015-10-05 15:13:11 +00:00
|
|
|
#endif
|
2015-07-11 06:13:05 +00:00
|
|
|
|
|
|
|
static void SystemClock_Config(void);
|
|
|
|
|
|
|
|
void Raw32OSInit(void) {
|
2015-11-05 07:09:11 +00:00
|
|
|
/* Enable the CPU Cache's */
|
|
|
|
SCB_EnableICache(); // Enable I-Cache
|
|
|
|
SCB_EnableDCache(); // Enable D-Cache
|
|
|
|
|
2015-07-11 06:13:05 +00:00
|
|
|
|
|
|
|
/* STM32F7xx HAL library initialization:
|
|
|
|
- Configure the Flash ART accelerator on ITCM interface
|
|
|
|
- Configure the Systick to generate an interrupt each 1 msec
|
|
|
|
- Set NVIC Group Priority to 4
|
|
|
|
- Global MSP (MCU Support Package) initialization
|
|
|
|
*/
|
|
|
|
HAL_Init();
|
|
|
|
|
|
|
|
/* Configure the system clock to 216 MHz */
|
|
|
|
SystemClock_Config();
|
|
|
|
|
2015-10-05 15:13:11 +00:00
|
|
|
#if !GFX_USE_OS_CHIBIOS
|
2015-07-11 06:13:05 +00:00
|
|
|
// LED - for testing
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct;
|
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_1;
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_PP;
|
|
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_FAST;
|
|
|
|
__GPIOI_CLK_ENABLE();
|
|
|
|
HAL_GPIO_Init(GPIOI, &GPIO_InitStruct);
|
2015-10-05 15:13:11 +00:00
|
|
|
#endif
|
2015-07-11 06:13:05 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief System Clock Configuration
|
|
|
|
* The system Clock is configured as follow :
|
|
|
|
* System Clock source = PLL (HSE)
|
|
|
|
* SYSCLK(Hz) = 200000000 / 216000000
|
|
|
|
* HCLK(Hz) = 200000000 / 216000000
|
|
|
|
* AHB Prescaler = 1
|
|
|
|
* APB1 Prescaler = 4
|
|
|
|
* APB2 Prescaler = 2
|
|
|
|
* HSE Frequency(Hz) = 25000000
|
|
|
|
* PLL_M = 25
|
|
|
|
* PLL_N = 400 / 432
|
|
|
|
* PLL_P = 2
|
|
|
|
* PLL_Q = 8 / 9
|
|
|
|
* VDD(V) = 3.3
|
|
|
|
* Main regulator output voltage = Scale1 mode
|
|
|
|
* Flash Latency(WS) = 6 / 7
|
|
|
|
* @param None
|
|
|
|
* @retval None
|
|
|
|
*/
|
|
|
|
void SystemClock_Config(void)
|
|
|
|
{
|
2015-07-21 13:04:49 +00:00
|
|
|
RCC_OscInitTypeDef RCC_OscInitStruct;
|
|
|
|
RCC_ClkInitTypeDef RCC_ClkInitStruct;
|
|
|
|
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct;
|
|
|
|
|
|
|
|
__PWR_CLK_ENABLE();
|
|
|
|
|
|
|
|
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
|
|
|
|
|
|
|
|
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSI|RCC_OSCILLATORTYPE_HSE;
|
|
|
|
RCC_OscInitStruct.HSEState = RCC_HSE_ON;
|
|
|
|
RCC_OscInitStruct.HSIState = RCC_HSI_ON;
|
|
|
|
RCC_OscInitStruct.HSICalibrationValue = 16;
|
|
|
|
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
|
|
|
|
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
|
|
|
|
RCC_OscInitStruct.PLL.PLLM = 12;
|
|
|
|
RCC_OscInitStruct.PLL.PLLN = 192;
|
|
|
|
RCC_OscInitStruct.PLL.PLLP = RCC_PLLP_DIV2;
|
|
|
|
RCC_OscInitStruct.PLL.PLLQ = 2;
|
|
|
|
HAL_RCC_OscConfig(&RCC_OscInitStruct);
|
|
|
|
|
|
|
|
HAL_PWREx_ActivateOverDrive();
|
|
|
|
|
|
|
|
RCC_ClkInitStruct.ClockType = RCC_CLOCKTYPE_HCLK|RCC_CLOCKTYPE_SYSCLK
|
|
|
|
|RCC_CLOCKTYPE_PCLK1|RCC_CLOCKTYPE_PCLK2;
|
|
|
|
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
|
|
|
|
RCC_ClkInitStruct.AHBCLKDivider = RCC_SYSCLK_DIV1;
|
|
|
|
RCC_ClkInitStruct.APB1CLKDivider = RCC_HCLK_DIV4;
|
|
|
|
RCC_ClkInitStruct.APB2CLKDivider = RCC_HCLK_DIV2;
|
|
|
|
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_6);
|
|
|
|
|
|
|
|
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_I2C1;
|
|
|
|
PeriphClkInitStruct.I2c1ClockSelection = RCC_I2C1CLKSOURCE_PCLK1;
|
|
|
|
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
|
|
|
|
|
|
|
|
HAL_SYSTICK_Config(HAL_RCC_GetHCLKFreq()/1000);
|
|
|
|
|
|
|
|
HAL_SYSTICK_CLKSourceConfig(SYSTICK_CLKSOURCE_HCLK);
|
2015-07-11 06:13:05 +00:00
|
|
|
}
|