diff options
| author | Tom Rini <[email protected]> | 2026-06-03 10:49:11 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2026-06-03 10:49:11 -0600 |
| commit | 31af00bdc6a3ab5d4ada83e08407f2ce289f0ec6 (patch) | |
| tree | 6de4950787e0c4d5d0a85c95a31a0065602210b1 /net | |
| parent | e255cf65a95e288c5baeeae8047c407edc5a7888 (diff) | |
| parent | dafa6a36037b516bed3c4f578c69e0c5c8017acb (diff) | |
Merge tag 'net-next-20260603' of https://source.denx.de/u-boot/custodians/u-boot-net into next
Pull request net-next-20260603
- eth, phy: Convert several drivers to use the dev APIs
- Guard SYS_RX_ETH_BUFFER with NET
- phy: Kconfig: use bool instead of tristate
Diffstat (limited to 'net')
| -rw-r--r-- | net/Kconfig | 21 |
1 files changed, 12 insertions, 9 deletions
diff --git a/net/Kconfig b/net/Kconfig index e712a0dd2ac..6be392c1564 100644 --- a/net/Kconfig +++ b/net/Kconfig @@ -279,13 +279,16 @@ config TFTP_BLOCKSIZE almost-MTU block sizes. You can also activate CONFIG_IP_DEFRAG to set a larger block. -endif # if NET - config SYS_RX_ETH_BUFFER - int "Number of receive packet buffers" - default 4 - help - Defines the number of Ethernet receive buffers. On some Ethernet - controllers it is recommended to set this value to 8 or even higher, - since all buffers can be full shortly after enabling the interface on - high Ethernet traffic. + int "Number of receive packet buffers" + default 8 if FSL_ENETC + default 4 + help + Defines the number of Ethernet receive buffers. On some Ethernet + controllers (e.g. FSL_ENETC) it is recommended to set this value to 8 + or even higher, since all buffers can be full shortly after enabling + the interface on high Ethernet traffic. + + FSL_ENETC requires this value to be a multiple of 8. + +endif # if NET |
