Commit 47d3d9f4 authored by Erwan Gouriou's avatar Erwan Gouriou Committed by Carles Cufi
Browse files

boards: Add support for stm32h750b_dk



Basic support added:
- gpio
- uart

Signed-off-by: default avatarErwan Gouriou <erwan.gouriou@st.com>
parent c1880895
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
# STM32H735G Discovery board configuration

# Copyright (c) 2023 STMicroelectronics
# SPDX-License-Identifier: Apache-2.0

config BOARD_STM32H750B_DK
	bool "STM32H750B Discovery Kit"
	depends on SOC_STM32H750XX
+11 −0
Original line number Diff line number Diff line
# STM32H750B DK board configuration

# Copyright (c) 2023 STMicroelectronics
# SPDX-License-Identifier: Apache-2.0

if BOARD_STM32H750B_DK

config BOARD
	default "stm32h750b_dk"

endif # BOARD_STM32H750B_DK
+36 −0
Original line number Diff line number Diff line
/*
 * Copyright (c) 2023 STMicroelectronics
 *
 * SPDX-License-Identifier: Apache-2.0
 */

/ {
	arduino_header: connector {
		compatible = "arduino-header-r3";
		#gpio-cells = <2>;
		gpio-map-mask = <0xffffffff 0xffffffc0>;
		gpio-map-pass-thru = <0 0x3f>;
		gpio-map = <0 0 &gpioc 0 0>,	/* A0 */
			   <1 0 &gpiof 8 0>,	/* A1 */
			   <2 0 &gpioa 0 0>,	/* A2 */
			   <3 0 &gpioa 1 0>,	/* A3 */
			   <4 0 &gpioc 2 0>,	/* A4 */
			   <5 0 &gpioc 3 0>,	/* A5 */
			   <6 0 &gpiob 7 0>,	/* D0 */
			   <7 0 &gpiob 6 0>,	/* D1 */
			   <8 0 &gpiog 3 0>,	/* D2 */
			   <9 0 &gpioa 6 0>,	/* D3 */
			   <10 0 &gpiok 1 0>,	/* D4 */
			   <11 0 &gpioa 8 0>,	/* D5 */
			   <12 0 &gpioe 6 0>,	/* D6 */
			   <13 0 &gpioi 8 0>,	/* D7 */
			   <14 0 &gpioe 3 0>,	/* D8 */
			   <15 0 &gpioh 15 0>,	/* D9 */
			   <16 0 &gpiob 4 0>,	/* D10 */
			   <17 0 &gpiob 15 0>,	/* D11 */
			   <18 0 &gpioi 2 0>,	/* D12 */
			   <19 0 &gpiod 3 0>,	/* D13 */
			   <20 0 &gpiod 13 0>,	/* D14 */
			   <21 0 &gpiod 12 0>;	/* D15 */
	};
};
+7 −0
Original line number Diff line number Diff line
# SPDX-License-Identifier: Apache-2.0

board_runner_args(jlink "--device=STM32H735IG" "--speed=4000")
board_runner_args(openocd --target-handle=_CHIPNAME.cpu0)

include(${ZEPHYR_BASE}/boards/common/openocd.board.cmake)
include(${ZEPHYR_BASE}/boards/common/jlink.board.cmake)
+58.7 KiB
Loading image diff...
Loading