Given that VPU generation can be used by multiple platforms, driver should use VPU IP generation in names instead of a platform. Change naming for sources files. Use 37XX format, where: 3 - major VPU IP generation version 7 - minor VPU IP generation version XX - postfix indicating this is an architecture and not marketing name Signed-off-by: Jacek Lawrynowicz <jacek.lawrynowicz@linux.intel.com> Reviewed-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com> Signed-off-by: Stanislaw Gruszka <stanislaw.gruszka@linux.intel.com> Reviewed-by: Jeffrey Hugo <quic_jhugo@quicinc.com> Link: https://patchwork.freedesktop.org/patch/msgid/20230731161258.2987564-2-stanislaw.gruszka@linux.intel.com
19 lines
329 B
Makefile
19 lines
329 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
# Copyright (C) 2023 Intel Corporation
|
|
|
|
intel_vpu-y := \
|
|
ivpu_debugfs.o \
|
|
ivpu_drv.o \
|
|
ivpu_fw.o \
|
|
ivpu_fw_log.o \
|
|
ivpu_gem.o \
|
|
ivpu_hw_37xx.o \
|
|
ivpu_ipc.o \
|
|
ivpu_job.o \
|
|
ivpu_jsm_msg.o \
|
|
ivpu_mmu.o \
|
|
ivpu_mmu_context.o \
|
|
ivpu_pm.o
|
|
|
|
obj-$(CONFIG_DRM_ACCEL_IVPU) += intel_vpu.o
|