mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-03 03:31:56 +00:00
This commit is to enable Ethernet drivers support on Renesas RA MCU, first target support is the Renesas RA8 series Signed-off-by: Duy Nguyen <duy.nguyen.xa@renesas.com>
37 lines
780 B
Plaintext
37 lines
780 B
Plaintext
# Copyright (c) 2024 Renesas Electronics Corporation
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
config ETH_RENESAS_RA
|
|
bool "Renesas RA Ethernet"
|
|
default y
|
|
depends on DT_HAS_RENESAS_RA_ETHERNET_ENABLED
|
|
select USE_RA_FSP_ETHER
|
|
select MDIO
|
|
help
|
|
Enable Renesas RA Ethernet Driver.
|
|
|
|
if ETH_RENESAS_RA
|
|
|
|
config ETH_RA_RX_THREAD_STACK_SIZE
|
|
int "Stack size for internal incoming packet handler"
|
|
default 1500
|
|
help
|
|
Size of the stack used for internal thread which is ran for
|
|
incoming packet processing.
|
|
|
|
config ETH_RA_RX_THREAD_PRIORITY
|
|
int "Renesas RA Ethernet receive thread priority"
|
|
default 2
|
|
|
|
config ETH_RENESAS_TX_BUF_NUM
|
|
int "Number of Transmit buffer"
|
|
default 4
|
|
range 1 8
|
|
|
|
config ETH_RENESAS_RX_BUF_NUM
|
|
int "Number of Receive buffer"
|
|
default 4
|
|
range 1 8
|
|
|
|
endif
|