1# Copyright (c) 2023 ITE Corporation.
2# SPDX-License-Identifier: Apache-2.0
3
4config UDC_IT82XX2
5	bool "IT82XX2 USB device controller driver"
6	default y
7	depends on DT_HAS_ITE_IT82XX2_USB_ENABLED
8	select PINCTRL
9	help
10	  IT82xx2 USB device controller driver.
11
12if UDC_IT82XX2
13
14config UDC_IT82xx2_EVENT_COUNT
15	int "UDC IT82xx2 event count"
16	range 4 64
17	default 8
18	help
19	  IT82xx2 event count.
20
21config UDC_IT82xx2_STACK_SIZE
22	int "IT82xx2 UDC driver internal thread stack size"
23	default 1024
24	help
25	  Size of the stack used in the driver for IT82xx2 USBD ISR event
26	  handling.
27
28endif # UDC_IT82XX2
29