2022-07-18 22:21:12 +02:00
|
|
|
# Copyright (c) 2022 Intel Corporation
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
2023-05-25 00:27:04 +02:00
|
|
|
zephyr_syscall_header(${ZEPHYR_BASE}/include/zephyr/drivers/i3c.h)
|
|
|
|
|
2022-07-18 22:21:12 +02:00
|
|
|
zephyr_library()
|
|
|
|
|
|
|
|
zephyr_library_sources(
|
|
|
|
i3c_ccc.c
|
|
|
|
i3c_common.c
|
|
|
|
)
|
|
|
|
|
|
|
|
zephyr_library_sources_ifdef(
|
|
|
|
CONFIG_USERSPACE
|
|
|
|
i3c_handlers.c
|
|
|
|
)
|
2022-07-12 20:11:04 +02:00
|
|
|
|
|
|
|
zephyr_library_sources_ifdef(
|
|
|
|
CONFIG_I3C_IBI_WORKQUEUE
|
|
|
|
i3c_ibi_workq.c
|
|
|
|
)
|
2022-05-27 21:22:42 +02:00
|
|
|
|
|
|
|
zephyr_library_sources_ifdef(
|
|
|
|
CONFIG_I3C_MCUX
|
|
|
|
i3c_mcux.c
|
|
|
|
)
|
2022-11-01 06:03:47 +01:00
|
|
|
|
|
|
|
zephyr_library_sources_ifdef(
|
|
|
|
CONFIG_I3C_CADENCE
|
|
|
|
i3c_cdns.c
|
|
|
|
)
|
2023-11-11 10:26:59 +01:00
|
|
|
|
|
|
|
zephyr_library_sources_ifdef(
|
|
|
|
CONFIG_I3C_TEST
|
|
|
|
i3c_test.c
|
|
|
|
)
|