mirror of
https://github.com/torvalds/linux.git
synced 2025-01-01 15:51:46 +00:00
ac0ae6a96a
Add the ASIC-dependent code for GAUDI. Supply (almost) all of the function callbacks that the driver's common code need to initialize, finalize and submit workloads to the GAUDI ASIC. It also contains the code to initialize the F/W of the GAUDI ASIC and to receive events from the F/W. Signed-off-by: Oded Gabbay <oded.gabbay@gmail.com>
19 lines
481 B
Makefile
19 lines
481 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Makefile for HabanaLabs AI accelerators driver
|
|
#
|
|
|
|
obj-m := habanalabs.o
|
|
|
|
habanalabs-y := habanalabs_drv.o device.o context.o asid.o habanalabs_ioctl.o \
|
|
command_buffer.o hw_queue.o irq.o sysfs.o hwmon.o memory.o \
|
|
command_submission.o mmu.o firmware_if.o pci.o
|
|
|
|
habanalabs-$(CONFIG_DEBUG_FS) += debugfs.o
|
|
|
|
include $(src)/goya/Makefile
|
|
habanalabs-y += $(HL_GOYA_FILES)
|
|
|
|
include $(src)/gaudi/Makefile
|
|
habanalabs-y += $(HL_GAUDI_FILES)
|