zephyr/drivers/i3c/CMakeLists.txt
Ryan McClelland 672a401f20 i3c: add cdns i3c driver
This gives initial support to the cadence i3c controller

Signed-off-by: Ryan McClelland <ryanmcclelland@meta.com>
2022-12-12 15:51:16 -05:00

31 lines
429 B
CMake

# Copyright (c) 2022 Intel Corporation
#
# SPDX-License-Identifier: Apache-2.0
zephyr_library()
zephyr_library_sources(
i3c_ccc.c
i3c_common.c
)
zephyr_library_sources_ifdef(
CONFIG_USERSPACE
i3c_handlers.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_IBI_WORKQUEUE
i3c_ibi_workq.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_MCUX
i3c_mcux.c
)
zephyr_library_sources_ifdef(
CONFIG_I3C_CADENCE
i3c_cdns.c
)