1# Copyright (c) 2024 Renesas Electronics Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4config ETH_RENESAS_RA
5	bool "Renesas RA Ethernet"
6	default y
7	depends on DT_HAS_RENESAS_RA_ETHERNET_ENABLED
8	select USE_RA_FSP_ETHER
9	select MDIO
10	help
11	  Enable Renesas RA Ethernet Driver.
12
13if ETH_RENESAS_RA
14
15config ETH_RA_RX_THREAD_STACK_SIZE
16	int "Stack size for internal incoming packet handler"
17	default 1500
18	help
19	  Size of the stack used for internal thread which is ran for
20	  incoming packet processing.
21
22config ETH_RA_RX_THREAD_PRIORITY
23	int "Renesas RA Ethernet receive thread priority"
24	default 2
25
26config ETH_RENESAS_TX_BUF_NUM
27	int "Number of Transmit buffer"
28	default 4
29	range 1 8
30
31config ETH_RENESAS_RX_BUF_NUM
32	int "Number of Receive buffer"
33	default 4
34	range 1 8
35
36endif
37