-
Notifications
You must be signed in to change notification settings - Fork 7.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ethernet: Add support stm32n6570_dk #87562
Open
marwaiehm-st
wants to merge
3
commits into
zephyrproject-rtos:main
Choose a base branch
from
marwaiehm-st:upstream_eth_disco_n6
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+71
−6
Open
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# STM32N6570 DISCOVERY board configuration | ||
|
||
# Copyright (c) 2025 STMicroelectronics | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
if BOARD_STM32N6570_DK | ||
|
||
if NETWORKING | ||
|
||
config NET_L2_ETHERNET | ||
default y | ||
|
||
endif # NETWORKING | ||
|
||
endif # BOARD_STM32N6570_DK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,9 +66,6 @@ static const struct device *eth_stm32_phy_dev = DEVICE_DT_GET(DT_INST_PHANDLE(0, | |
#define ETH_RXBUFNB ETH_RX_DESC_CNT | ||
#define ETH_TXBUFNB ETH_TX_DESC_CNT | ||
|
||
#define ETH_MEDIA_INTERFACE_MII HAL_ETH_MII_MODE | ||
#define ETH_MEDIA_INTERFACE_RMII HAL_ETH_RMII_MODE | ||
|
||
/* Only one tx_buffer is sufficient to pass only 1 dma_buffer */ | ||
#define ETH_TXBUF_DEF_NB 1U | ||
#else | ||
|
@@ -78,11 +75,25 @@ static const struct device *eth_stm32_phy_dev = DEVICE_DT_GET(DT_INST_PHANDLE(0, | |
|
||
#endif /* DT_HAS_COMPAT_STATUS_OKAY(st_stm32h7_ethernet) */ | ||
|
||
#if defined(CONFIG_ETH_STM32_HAL_API_V1) | ||
#define HAL_ETH_MII_MODE ETH_MEDIA_INTERFACE_MII | ||
#define HAL_ETH_RMII_MODE ETH_MEDIA_INTERFACE_RMII | ||
#endif | ||
|
||
#define MAC_NODE DT_NODELABEL(mac) | ||
|
||
#if DT_HAS_COMPAT_STATUS_OKAY(st_stm32n6_ethernet) | ||
#define STM32_ETH_PHY_MODE(node_id) \ | ||
((DT_ENUM_HAS_VALUE(node_id, phy_connection_type, mii) ? HAL_ETH_MII_MODE : \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, rmii) ? HAL_ETH_RMII_MODE : \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, gmii) ? HAL_ETH_GMII_MODE : \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, rgmii) ? HAL_ETH_RGMII_MODE : \ | ||
HAL_ETH_RMII_MODE))))) | ||
#else | ||
#define STM32_ETH_PHY_MODE(node_id) \ | ||
(DT_ENUM_HAS_VALUE(node_id, phy_connection_type, mii) ? \ | ||
ETH_MEDIA_INTERFACE_MII : ETH_MEDIA_INTERFACE_RMII) | ||
HAL_ETH_MII_MODE : HAL_ETH_RMII_MODE) | ||
#endif | ||
|
||
#define ETH_DMA_TX_TIMEOUT_MS 20U /* transmit timeout in milliseconds */ | ||
|
||
|
@@ -1138,7 +1149,12 @@ static void set_mac_config(const struct device *dev, struct phy_link_state *stat | |
mac_config.DuplexMode = | ||
PHY_LINK_IS_FULL_DUPLEX(state->speed) ? ETH_FULLDUPLEX_MODE : ETH_HALFDUPLEX_MODE; | ||
|
||
mac_config.Speed = PHY_LINK_IS_SPEED_100M(state->speed) ? ETH_SPEED_100M : ETH_SPEED_10M; | ||
mac_config.Speed = | ||
#if DT_HAS_COMPAT_STATUS_OKAY(st_stm32n6_ethernet) | ||
PHY_LINK_IS_SPEED_1000M(state->speed) ? ETH_SPEED_1000M : | ||
#endif | ||
PHY_LINK_IS_SPEED_100M(state->speed) ? ETH_SPEED_100M : ETH_SPEED_10M; | ||
|
||
|
||
hal_ret = HAL_ETH_SetMACConfig(heth, &mac_config); | ||
if (hal_ret != HAL_OK) { | ||
|
@@ -1477,7 +1493,9 @@ static const struct eth_stm32_hal_dev_cfg eth0_config = { | |
}; | ||
|
||
BUILD_ASSERT(DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, mii) || | ||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, rmii), | ||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, rmii) || | ||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, rgmii) || | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. maybe use a |
||
DT_ENUM_HAS_VALUE(MAC_NODE, phy_connection_type, gmii), | ||
"Unsupported PHY connection type selected"); | ||
|
||
static struct eth_stm32_hal_dev_data eth0_data = { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shouldn't we use
ETH_MEDIA_INTERFACE_FOO
values now?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We used ETH_MEDIA_INTERFACE_FOO to support the api v1, but here we have only stm32n6.
We can add the definition of
ETH_MEDIA_INTERFACE_FOO
for RGMII and GMII, if it makes the code compatibleThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
That would be cleaner indeed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Or we remove the
ETH_MEDIA_INTERFACE_FOO
, but we should be able to use only one macro version.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can remove the definition of
ETH_MEDIA_INTERFACE_FOO
and using directlyHAL_ETH_XMII
for API V2, but for API V1 we can only useETH_MEDIA_INTERFACE_FOO
.In case of removing the definition "ETH_MEDIA_INTERFACE_FOO", we should add definition for HAL_ETH_XMII_MODE to support API v1.