blob: af2063ce08c6367c3fcc173632bbcf151ea7eebe [file] [log] [blame]
Austin Schuh41baf202022-01-01 14:33:40 -08001/*
2 * The MIT License (MIT)
3 *
4 * Copyright (c) 2021, Ha Thach (tinyusb.org)
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22 * THE SOFTWARE.
23 *
24 * This file is part of the TinyUSB stack.
25 */
26
27#ifndef BOARD_H_
28#define BOARD_H_
29
30#ifdef __cplusplus
31 extern "C" {
32#endif
33
34#define LED_PORT GPIOA
35#define LED_PIN GPIO_PIN_4
36#define LED_STATE_ON 1
37
38// Tamper push-button
39#define BUTTON_PORT GPIOC
40#define BUTTON_PIN GPIO_PIN_13
41#define BUTTON_STATE_ACTIVE 0
42
43// Need to change jumper setting J7 and J8 from RS-232 to STLink
44#define UART_DEV USART1
45#define UART_CLK_EN __HAL_RCC_USART1_CLK_ENABLE
46#define UART_GPIO_PORT GPIOB
47#define UART_GPIO_AF GPIO_AF4_USART1
48#define UART_TX_PIN GPIO_PIN_14
49#define UART_RX_PIN GPIO_PIN_15
50
51// VBUS Sense detection
52#define OTG_FS_VBUS_SENSE 1
53#define OTG_HS_VBUS_SENSE 0
54
55// USB HS External PHY Pin: CLK, STP, DIR, NXT, D0-D7
56#define ULPI_PINS \
57 {GPIOA, GPIO_PIN_3 }, {GPIOA, GPIO_PIN_5 }, {GPIOB, GPIO_PIN_0 }, {GPIOB, GPIO_PIN_1 }, \
58 {GPIOB, GPIO_PIN_5 }, {GPIOB, GPIO_PIN_10}, {GPIOB, GPIO_PIN_11}, {GPIOB, GPIO_PIN_12}, \
59 {GPIOB, GPIO_PIN_13}, {GPIOC, GPIO_PIN_0 }, {GPIOH, GPIO_PIN_4 }, {GPIOI, GPIO_PIN_11}
60
61//--------------------------------------------------------------------+
62// RCC Clock
63//--------------------------------------------------------------------+
64static inline void board_stm32h7_clock_init(void)
65{
66 RCC_ClkInitTypeDef RCC_ClkInitStruct;
67 RCC_OscInitTypeDef RCC_OscInitStruct;
68 RCC_PeriphCLKInitTypeDef PeriphClkInitStruct;
69
70 /*!< Supply configuration update enable */
71 HAL_PWREx_ConfigSupply(PWR_LDO_SUPPLY);
72
73 /* The voltage scaling allows optimizing the power consumption when the device is
74 clocked below the maximum system frequency, to update the voltage scaling value
75 regarding system frequency refer to product datasheet. */
76 __HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
77
78 while ((PWR->D3CR & (PWR_D3CR_VOSRDY)) != PWR_D3CR_VOSRDY) {}
79
80 /* Enable HSE Oscillator and activate PLL with HSE as source */
81 RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
82 RCC_OscInitStruct.HSEState = RCC_HSE_ON;
83 RCC_OscInitStruct.HSIState = RCC_HSI_OFF;
84 RCC_OscInitStruct.CSIState = RCC_CSI_OFF;
85 RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
86 RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
87
88 /* PLL1 for System Clock */
89 RCC_OscInitStruct.PLL.PLLM = 5;
90 RCC_OscInitStruct.PLL.PLLN = 160;
91 RCC_OscInitStruct.PLL.PLLFRACN = 0;
92 RCC_OscInitStruct.PLL.PLLP = 2;
93 RCC_OscInitStruct.PLL.PLLR = 2;
94 RCC_OscInitStruct.PLL.PLLQ = 4;
95
96 RCC_OscInitStruct.PLL.PLLVCOSEL = RCC_PLL1VCOMEDIUM;
97 RCC_OscInitStruct.PLL.PLLRGE = RCC_PLL1VCIRANGE_2;
98 HAL_RCC_OscConfig(&RCC_OscInitStruct);
99
100 /* PLL3 for USB Clock */
101 PeriphClkInitStruct.PLL3.PLL3M = 25;
102 PeriphClkInitStruct.PLL3.PLL3N = 336;
103 PeriphClkInitStruct.PLL3.PLL3FRACN = 0;
104 PeriphClkInitStruct.PLL3.PLL3P = 2;
105 PeriphClkInitStruct.PLL3.PLL3R = 2;
106 PeriphClkInitStruct.PLL3.PLL3Q = 7;
107
108 PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_USB;
109 PeriphClkInitStruct.UsbClockSelection = RCC_USBCLKSOURCE_PLL3;
110 HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
111
112 /* Select PLL as system clock source and configure bus clocks dividers */
113 RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_D1PCLK1 | RCC_CLOCKTYPE_PCLK1 | \
114 RCC_CLOCKTYPE_PCLK2 | RCC_CLOCKTYPE_D3PCLK1);
115
116 RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
117 RCC_ClkInitStruct.SYSCLKDivider = RCC_SYSCLK_DIV1;
118 RCC_ClkInitStruct.AHBCLKDivider = RCC_HCLK_DIV2;
119 RCC_ClkInitStruct.APB1CLKDivider = RCC_APB1_DIV2;
120 RCC_ClkInitStruct.APB2CLKDivider = RCC_APB2_DIV2;
121 RCC_ClkInitStruct.APB3CLKDivider = RCC_APB3_DIV1;
122 HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4);
123
124 /*activate CSI clock mondatory for I/O Compensation Cell*/
125 __HAL_RCC_CSI_ENABLE() ;
126
127 /* Enable SYSCFG clock mondatory for I/O Compensation Cell */
128 __HAL_RCC_SYSCFG_CLK_ENABLE() ;
129
130 /* Enables the I/O Compensation Cell */
131 HAL_EnableCompensationCell();
132}
133
134static inline void board_stm32h7_post_init(void)
135{
136 // For this board does nothing
137}
138
139#ifdef __cplusplus
140 }
141#endif
142
143#endif