Files
linux-nv-oot/drivers/gpu/host1x/Makefile
Mikko Perttunen 7b4206605d gpu: host1x: Add context device management code
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
2023-04-03 12:36:25 +00:00

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