1# Copyright (c) 2022 Intel Corporation
2#
3# SPDX-License-Identifier: Apache-2.0
4
5zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/i3c.h)
6
7zephyr_library()
8
9zephyr_library_sources(
10  i3c_ccc.c
11  i3c_common.c
12)
13
14zephyr_library_sources_ifdef(
15  CONFIG_USERSPACE
16  i3c_handlers.c
17)
18
19zephyr_library_sources_ifdef(
20  CONFIG_I3C_IBI_WORKQUEUE
21  i3c_ibi_workq.c
22)
23
24zephyr_library_sources_ifdef(
25  CONFIG_I3C_MCUX
26  i3c_mcux.c
27)
28
29zephyr_library_sources_ifdef(
30  CONFIG_I3C_CADENCE
31  i3c_cdns.c
32)
33
34zephyr_library_sources_ifdef(
35  CONFIG_I3C_TEST
36  i3c_test.c
37)
38