mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-24 10:11:26 +03:00
Add code to register context devices from device tree, allocate them out and manage their refcounts. Bug 3724727 Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com> Change-Id: I1e50462fc07247faf4cb217f4ab75fb610b10024
29 lines
449 B
Makefile
29 lines
449 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
srctree.host1x := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST))))
|
|
|
|
ccflags-y := -I$(srctree.host1x)/include
|
|
|
|
host1x-next-y = \
|
|
bus.o \
|
|
syncpt.o \
|
|
dev.o \
|
|
intr.o \
|
|
cdma.o \
|
|
channel.o \
|
|
job.o \
|
|
debug.o \
|
|
mipi.o \
|
|
fence.o \
|
|
hw/host1x01.o \
|
|
hw/host1x02.o \
|
|
hw/host1x04.o \
|
|
hw/host1x05.o \
|
|
hw/host1x06.o \
|
|
hw/host1x07.o
|
|
|
|
host1x-next-$(CONFIG_IOMMU_API) += \
|
|
context.o
|
|
|
|
obj-m := host1x-next.o
|