summaryrefslogtreecommitdiffstats
path: root/bsps/arm
diff options
context:
space:
mode:
authorRobin Mueller <robin.mueller.m@gmail.com>2021-07-16 14:32:03 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2021-07-20 07:37:42 +0200
commitb24e81423ee3c74e5bbdc658bf83a8f550552ab5 (patch)
tree6cb06e72f475cceb6cf585b64391373b909f63d2 /bsps/arm
parentbsp/leon3: Remove <leon.h> include form <bsp.h> (diff)
downloadrtems-b24e81423ee3c74e5bbdc658bf83a8f550552ab5.tar.bz2
STM32H7 ethernet pin corrections
These patches were submitted a few months ago, but it was found out that the default-by-family: [] were missing in the GPIO .yml lines. This was fixed in this patch. This patch accounts for different pins for the ETH peripheral on STM32H7 devices. For example, the Nucleo H743ZI has slightly different pins than other STM32H7 boards.
Diffstat (limited to 'bsps/arm')
-rw-r--r--bsps/arm/stm32h7/start/stm32h7-hal-eth.c22
1 files changed, 21 insertions, 1 deletions
diff --git a/bsps/arm/stm32h7/start/stm32h7-hal-eth.c b/bsps/arm/stm32h7/start/stm32h7-hal-eth.c
index 46475f4316..b9dac6d7f9 100644
--- a/bsps/arm/stm32h7/start/stm32h7-hal-eth.c
+++ b/bsps/arm/stm32h7/start/stm32h7-hal-eth.c
@@ -31,10 +31,12 @@
#include <stm32h7/hal.h>
+#include <bspopts.h>
+
static const stm32h7_gpio_config gpiog = {
.regs = GPIOG,
.config = {
- .Pin = GPIO_PIN_11 | GPIO_PIN_12 | GPIO_PIN_13,
+ .Pin = STM32H7_ETH_GPIOG_PINS,
.Mode = GPIO_MODE_AF_PP,
.Pull = GPIO_NOPULL,
.Speed = GPIO_SPEED_FREQ_LOW,
@@ -64,6 +66,21 @@ static const stm32h7_gpio_config gpioa = {
}
};
+#ifdef STM32H7_ETH_GPIOB_PINS
+
+static const stm32h7_gpio_config gpiob = {
+ .regs = GPIOB,
+ .config = {
+ .Pin = STM32H7_ETH_GPIOB_PINS,
+ .Mode = GPIO_MODE_AF_PP,
+ .Pull = GPIO_NOPULL,
+ .Speed = GPIO_SPEED_FREQ_LOW,
+ .Alternate = GPIO_AF11_ETH
+ }
+};
+
+#endif
+
void
HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
{
@@ -73,4 +90,7 @@ HAL_ETH_MspInit(ETH_HandleTypeDef *heth)
stm32h7_gpio_init(&gpiog);
stm32h7_gpio_init(&gpioc);
stm32h7_gpio_init(&gpioa);
+#ifdef STM32H7_ETH_GPIOB_PINS
+ stm32h7_gpio_init(&gpiob);
+#endif
}