Skip to content

Commit 390c109

Browse files
authored
Merge pull request #2271 from antoniovazquezblanco/stm32h750dk
stm32h750-dk support
2 parents 1eb6ce7 + 46b0ddc commit 390c109

File tree

4 files changed

+351
-0
lines changed

4 files changed

+351
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
set(MCU_VARIANT stm32h750xx)
2+
set(JLINK_DEVICE stm32h750xb_m7)
3+
4+
set(LD_FILE_GNU ${CMAKE_CURRENT_LIST_DIR}/${MCU_VARIANT}_flash_CM7.ld)
5+
set(LD_FILE_IAR ${ST_CMSIS}/Source/Templates/iar/linker/${MCU_VARIANT}_flash.icf)
6+
7+
function(update_board TARGET)
8+
target_compile_definitions(${TARGET} PUBLIC
9+
STM32H750xx
10+
HSE_VALUE=25000000
11+
CORE_CM7
12+
# default to PORT 0
13+
BOARD_TUD_RHPORT=0
14+
BOARD_TUD_MAX_SPEED=OPT_MODE_FULL_SPEED
15+
)
16+
endfunction()
Lines changed: 144 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,144 @@
1+
/*
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 GPIOJ
35+
#define LED_PIN GPIO_PIN_2
36+
#define LED_STATE_ON 1
37+
38+
// Blue push-button
39+
#define BUTTON_PORT GPIOC
40+
#define BUTTON_PIN GPIO_PIN_13
41+
#define BUTTON_STATE_ACTIVE 1
42+
43+
// UART
44+
#define UART_DEV USART3
45+
#define UART_CLK_EN __HAL_RCC_USART3_CLK_ENABLE
46+
#define UART_GPIO_PORT GPIOB
47+
#define UART_GPIO_AF GPIO_AF7_USART3
48+
#define UART_TX_PIN GPIO_PIN_10
49+
#define UART_RX_PIN GPIO_PIN_11
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+
//--------------------------------------------------------------------+
64+
static inline void SystemClock_Config(void)
65+
{
66+
RCC_ClkInitTypeDef RCC_ClkInitStruct = { 0 };
67+
RCC_OscInitTypeDef RCC_OscInitStruct = { 0 };
68+
RCC_PeriphCLKInitTypeDef PeriphClkInitStruct = { 0 };
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
74+
device is clocked below the maximum system frequency, to update the
75+
voltage scaling value regarding system frequency refer to product
76+
datasheet. */
77+
__HAL_PWR_VOLTAGESCALING_CONFIG(PWR_REGULATOR_VOLTAGE_SCALE1);
78+
79+
while ((PWR->D3CR & (PWR_D3CR_VOSRDY)) != PWR_D3CR_VOSRDY) {}
80+
81+
/* Enable HSE Oscillator and activate PLL with HSE as source */
82+
RCC_OscInitStruct.OscillatorType = RCC_OSCILLATORTYPE_HSE;
83+
RCC_OscInitStruct.HSEState = RCC_HSE_BYPASS;
84+
RCC_OscInitStruct.HSIState = RCC_HSI_OFF;
85+
RCC_OscInitStruct.CSIState = RCC_CSI_OFF;
86+
RCC_OscInitStruct.PLL.PLLState = RCC_PLL_ON;
87+
RCC_OscInitStruct.PLL.PLLSource = RCC_PLLSOURCE_HSE;
88+
89+
/* PLL1 for System Clock */
90+
RCC_OscInitStruct.PLL.PLLM = 5;
91+
RCC_OscInitStruct.PLL.PLLN = 160;
92+
RCC_OscInitStruct.PLL.PLLFRACN = 0;
93+
RCC_OscInitStruct.PLL.PLLP = 2;
94+
RCC_OscInitStruct.PLL.PLLR = 2;
95+
RCC_OscInitStruct.PLL.PLLQ = 4;
96+
97+
RCC_OscInitStruct.PLL.PLLVCOSEL = RCC_PLL1VCOMEDIUM;
98+
RCC_OscInitStruct.PLL.PLLRGE = RCC_PLL1VCIRANGE_2;
99+
HAL_RCC_OscConfig(&RCC_OscInitStruct);
100+
101+
/* PLL3 for USB Clock */
102+
PeriphClkInitStruct.PLL3.PLL3M = 25;
103+
PeriphClkInitStruct.PLL3.PLL3N = 336;
104+
PeriphClkInitStruct.PLL3.PLL3FRACN = 0;
105+
PeriphClkInitStruct.PLL3.PLL3P = 2;
106+
PeriphClkInitStruct.PLL3.PLL3R = 2;
107+
PeriphClkInitStruct.PLL3.PLL3Q = 7;
108+
109+
PeriphClkInitStruct.PeriphClockSelection = RCC_PERIPHCLK_USB;
110+
PeriphClkInitStruct.UsbClockSelection = RCC_USBCLKSOURCE_PLL3;
111+
HAL_RCCEx_PeriphCLKConfig(&PeriphClkInitStruct);
112+
113+
/* Select PLL as system clock source and configure bus clocks dividers */
114+
RCC_ClkInitStruct.ClockType = (RCC_CLOCKTYPE_SYSCLK | RCC_CLOCKTYPE_HCLK | RCC_CLOCKTYPE_D1PCLK1 | RCC_CLOCKTYPE_PCLK1 | \
115+
RCC_CLOCKTYPE_PCLK2 | RCC_CLOCKTYPE_D3PCLK1);
116+
117+
RCC_ClkInitStruct.SYSCLKSource = RCC_SYSCLKSOURCE_PLLCLK;
118+
RCC_ClkInitStruct.SYSCLKDivider = RCC_SYSCLK_DIV1;
119+
RCC_ClkInitStruct.AHBCLKDivider = RCC_HCLK_DIV2;
120+
RCC_ClkInitStruct.APB1CLKDivider = RCC_APB1_DIV2;
121+
RCC_ClkInitStruct.APB2CLKDivider = RCC_APB2_DIV2;
122+
RCC_ClkInitStruct.APB3CLKDivider = RCC_APB3_DIV1;
123+
HAL_RCC_ClockConfig(&RCC_ClkInitStruct, FLASH_LATENCY_4);
124+
125+
/*activate CSI clock mondatory for I/O Compensation Cell*/
126+
__HAL_RCC_CSI_ENABLE() ;
127+
128+
/* Enable SYSCFG clock mondatory for I/O Compensation Cell */
129+
__HAL_RCC_SYSCFG_CLK_ENABLE() ;
130+
131+
/* Enables the I/O Compensation Cell */
132+
HAL_EnableCompensationCell();
133+
}
134+
135+
static inline void board_stm32h7_post_init(void)
136+
{
137+
// For this board does nothing
138+
}
139+
140+
#ifdef __cplusplus
141+
}
142+
#endif
143+
144+
#endif
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# STM32H745I-DISCO uses OTG_FS
2+
# FIXME: Reset enumerates, un/replug USB plug does not enumerate
3+
4+
CFLAGS += -DSTM32H750xx -DCORE_CM7 -DHSE_VALUE=25000000
5+
6+
# Default is FulSpeed port
7+
PORT ?= 0
8+
9+
# GCC
10+
SRC_S_GCC += $(ST_CMSIS)/Source/Templates/gcc/startup_stm32h750xx.s
11+
LD_FILE_GCC = $(BOARD_PATH)/stm32h750xx_flash_CM7.ld
12+
13+
# IAR
14+
SRC_S_IAR += $(ST_CMSIS)/Source/Templates/iar/startup_stm32h750xx.s
15+
LD_FILE_IAR = $(ST_CMSIS)/Source/Templates/iar/linker/stm32h750xx_flash.icf
16+
17+
# For flash-jlink target
18+
JLINK_DEVICE = stm32h750xb_m7
19+
20+
# flash target using on-board stlink
21+
flash: flash-stlink
Lines changed: 170 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,170 @@
1+
/*
2+
******************************************************************************
3+
**
4+
5+
** File : LinkerScript.ld
6+
**
7+
**
8+
** Abstract : Linker script for STM32H7 series
9+
** 128Kbytes FLASH and 1Mbytes RAM
10+
**
11+
** Set heap size, stack size and stack location according
12+
** to application requirements.
13+
**
14+
** Set memory bank area and size if external memory is used.
15+
**
16+
** Target : STMicroelectronics STM32
17+
**
18+
** Distribution: The file is distributed �as is,� without any warranty
19+
** of any kind.
20+
**
21+
*****************************************************************************
22+
** @attention
23+
**
24+
** Copyright (c) 2019 STMicroelectronics.
25+
** All rights reserved.
26+
**
27+
** This software component is licensed by ST under BSD 3-Clause license,
28+
** the "License"; You may not use this file except in compliance with the
29+
** License. You may obtain a copy of the License at:
30+
** opensource.org/licenses/BSD-3-Clause
31+
**
32+
****************************************************************************
33+
*/
34+
35+
/* Entry Point */
36+
ENTRY(Reset_Handler)
37+
38+
/* Highest address of the user mode stack */
39+
_estack = 0x20020000; /* end of RAM */
40+
/* Generate a link error if heap and stack don't fit into RAM */
41+
_Min_Heap_Size = 0x200; /* required amount of heap */
42+
_Min_Stack_Size = 0x400; /* required amount of stack */
43+
44+
/* Specify the memory areas */
45+
MEMORY
46+
{
47+
FLASH (rx) : ORIGIN = 0x08000000, LENGTH = 128K
48+
RAM (xrw) : ORIGIN = 0x20000000, LENGTH = 1M
49+
ITCMRAM (xrw) : ORIGIN = 0x00000000, LENGTH = 64K
50+
}
51+
52+
/* Define output sections */
53+
SECTIONS
54+
{
55+
/* The startup code goes first into FLASH */
56+
.isr_vector :
57+
{
58+
. = ALIGN(4);
59+
KEEP(*(.isr_vector)) /* Startup code */
60+
. = ALIGN(4);
61+
} >FLASH
62+
63+
/* The program code and other data goes into FLASH */
64+
.text :
65+
{
66+
. = ALIGN(4);
67+
*(.text) /* .text sections (code) */
68+
*(.text*) /* .text* sections (code) */
69+
*(.glue_7) /* glue arm to thumb code */
70+
*(.glue_7t) /* glue thumb to arm code */
71+
*(.eh_frame)
72+
73+
KEEP (*(.init))
74+
KEEP (*(.fini))
75+
76+
. = ALIGN(4);
77+
_etext = .; /* define a global symbols at end of code */
78+
} >FLASH
79+
80+
/* Constant data goes into FLASH */
81+
.rodata :
82+
{
83+
. = ALIGN(4);
84+
*(.rodata) /* .rodata sections (constants, strings, etc.) */
85+
*(.rodata*) /* .rodata* sections (constants, strings, etc.) */
86+
. = ALIGN(4);
87+
} >FLASH
88+
89+
.ARM.extab : { *(.ARM.extab* .gnu.linkonce.armextab.*) } >FLASH
90+
.ARM : {
91+
__exidx_start = .;
92+
*(.ARM.exidx*)
93+
__exidx_end = .;
94+
} >FLASH
95+
96+
.preinit_array :
97+
{
98+
PROVIDE_HIDDEN (__preinit_array_start = .);
99+
KEEP (*(.preinit_array*))
100+
PROVIDE_HIDDEN (__preinit_array_end = .);
101+
} >FLASH
102+
.init_array :
103+
{
104+
PROVIDE_HIDDEN (__init_array_start = .);
105+
KEEP (*(SORT(.init_array.*)))
106+
KEEP (*(.init_array*))
107+
PROVIDE_HIDDEN (__init_array_end = .);
108+
} >FLASH
109+
.fini_array :
110+
{
111+
PROVIDE_HIDDEN (__fini_array_start = .);
112+
KEEP (*(SORT(.fini_array.*)))
113+
KEEP (*(.fini_array*))
114+
PROVIDE_HIDDEN (__fini_array_end = .);
115+
} >FLASH
116+
117+
/* used by the startup to initialize data */
118+
_sidata = LOADADDR(.data);
119+
120+
/* Initialized data sections goes into RAM, load LMA copy after code */
121+
.data :
122+
{
123+
. = ALIGN(4);
124+
_sdata = .; /* create a global symbol at data start */
125+
*(.data) /* .data sections */
126+
*(.data*) /* .data* sections */
127+
128+
. = ALIGN(4);
129+
_edata = .; /* define a global symbol at data end */
130+
} >RAM AT> FLASH
131+
132+
133+
/* Uninitialized data section */
134+
. = ALIGN(4);
135+
.bss :
136+
{
137+
/* This is used by the startup in order to initialize the .bss section */
138+
_sbss = .; /* define a global symbol at bss start */
139+
__bss_start__ = _sbss;
140+
*(.bss)
141+
*(.bss*)
142+
*(COMMON)
143+
144+
. = ALIGN(4);
145+
_ebss = .; /* define a global symbol at bss end */
146+
__bss_end__ = _ebss;
147+
} >RAM
148+
149+
/* User_heap_stack section, used to check that there is enough RAM left */
150+
._user_heap_stack :
151+
{
152+
. = ALIGN(8);
153+
PROVIDE ( end = . );
154+
PROVIDE ( _end = . );
155+
. = . + _Min_Heap_Size;
156+
. = . + _Min_Stack_Size;
157+
. = ALIGN(8);
158+
} >RAM
159+
160+
161+
/* Remove information from the standard libraries */
162+
/DISCARD/ :
163+
{
164+
libc.a ( * )
165+
libm.a ( * )
166+
libgcc.a ( * )
167+
}
168+
169+
.ARM.attributes 0 : { *(.ARM.attributes) }
170+
}

0 commit comments

Comments
 (0)