mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-22 09:11:26 +03:00
Add AON echo driver. This driver creates data_channel file in sysfs which is used to communicate between CCPLEX and AON. Bug 4296173 Change-Id: Id790fc4076205e16509611f7fa07ffc073491227 Signed-off-by: Gautham Srinivasan <gauthams@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2954202 Reviewed-by: Jonathan Hunter <jonathanh@nvidia.com> Reviewed-by: Brad Griffis <bgriffis@nvidia.com> GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com>
25 lines
550 B
Makefile
25 lines
550 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
#
|
|
# Always On Sensor Processing Engine code.
|
|
#
|
|
GCOV_PROFILE := y
|
|
|
|
LINUXINCLUDE += -I$(srctree.nvidia-oot)/drivers/platform/tegra/aon/include
|
|
|
|
ccflags-y += -Werror
|
|
|
|
obj-m += tegra234-aon.o
|
|
obj-m += tegra-aon-ivc-echo.o
|
|
|
|
tegra234-aon-objs += \
|
|
tegra-aon-hsp.o \
|
|
../tegra-ivc.o \
|
|
tegra-aon-mail.o \
|
|
tegra-aon-module.o \
|
|
aon-hsp-mbox-client.o
|
|
|
|
ifeq ($(CONFIG_DEBUG_FS), y)
|
|
tegra234-aon-objs += tegra-aon-debug.o
|
|
endif
|