1# Copyright (c) 2023 Meta Platforms, Inc. and its affiliates.
2#
3# SPDX-License-Identifier: Apache-2.0
4
5module = I3C_DW
6module-str = i3c-dw
7source "subsys/logging/Kconfig.template.log_config"
8
9menuconfig I3C_DW
10	bool "DW I3C support"
11	select I3C_IBI_WORKQUEUE if I3C_USE_IBI
12	depends on DT_HAS_SNPS_DESIGNWARE_I3C_ENABLED
13	depends on CLOCK_CONTROL
14	default y
15	help
16	  Enable the Synopsys Designware I3C driver
17
18if I3C_DW
19
20config I3C_DW_RW_TIMEOUT_MS
21	int "Set the Read/Write timeout in milliseconds"
22	default 100
23
24endif # I3C_DW
25