1# NXP PHY TJA1103 driver configuration options
2
3# Copyright 2024 NXP
4# SPDX-License-Identifier: Apache-2.0
5
6menuconfig PHY_TJA1103
7	bool "TJA1103 PHY driver"
8	default y
9	depends on DT_HAS_NXP_TJA1103_ENABLED
10	depends on MDIO
11	help
12	  Enable TJA1103 PHY driver.
13
14if PHY_TJA1103
15
16config PHY_TJA1103_IRQ_THREAD_STACK_SIZE
17	int "Stack size for a thread that processes TJA1103 IRQ"
18	default 2048
19	help
20	  Size of the stack used for internal thread which is ran to
21	  process raised INT IRQ.
22
23config PHY_TJA1103_IRQ_THREAD_PRIO
24	int "Priority for internal incoming packet handler"
25	default 2
26	help
27	  Priority level for internal thread which is ran for TJA1103
28	  INT IRQ processing.
29
30endif # PHY_TJA1103
31