diff options
author | Oded Gabbay <oded.gabbay@gmail.com> | 2020-05-11 10:29:27 +0300 |
---|---|---|
committer | Oded Gabbay <oded.gabbay@gmail.com> | 2020-05-19 14:48:41 +0300 |
commit | ac0ae6a96aa58eeba4aed97b12ef1dea8c5bf399 (patch) | |
tree | d5285f4d57b1e88aaea03219aa0843fcd9244597 /drivers/misc/habanalabs/Makefile | |
parent | 466c7822b054ffe5bb425c8f98d08676501836e8 (diff) | |
download | linux-ac0ae6a96aa58eeba4aed97b12ef1dea8c5bf399.tar.gz linux-ac0ae6a96aa58eeba4aed97b12ef1dea8c5bf399.tar.bz2 linux-ac0ae6a96aa58eeba4aed97b12ef1dea8c5bf399.zip |
habanalabs: add gaudi asic-dependent code
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>
Diffstat (limited to 'drivers/misc/habanalabs/Makefile')
-rw-r--r-- | drivers/misc/habanalabs/Makefile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/misc/habanalabs/Makefile b/drivers/misc/habanalabs/Makefile index 482f6227dbba..421ebd903069 100644 --- a/drivers/misc/habanalabs/Makefile +++ b/drivers/misc/habanalabs/Makefile @@ -13,3 +13,6 @@ habanalabs-$(CONFIG_DEBUG_FS) += debugfs.o include $(src)/goya/Makefile habanalabs-y += $(HL_GOYA_FILES) + +include $(src)/gaudi/Makefile +habanalabs-y += $(HL_GAUDI_FILES) |