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_SHELL
21  i3c_shell.c
22)
23
24zephyr_library_sources_ifdef(
25  CONFIG_I3C_IBI_WORKQUEUE
26  i3c_ibi_workq.c
27)
28
29zephyr_library_sources_ifdef(
30  CONFIG_I3C_MCUX
31  i3c_mcux.c
32)
33
34zephyr_library_sources_ifdef(
35  CONFIG_I3C_CADENCE
36  i3c_cdns.c
37)
38
39zephyr_library_sources_ifdef(
40  CONFIG_I3C_NPCX
41  i3c_npcx.c
42)
43
44zephyr_library_sources_ifdef(
45  CONFIG_I3C_TEST
46  i3c_test.c
47)
48