mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-21 06:50:25 +00:00
media: iris: implement video firmware load/unload
Load/unload the firmware into/from memory via the MDT loader. The firmware is loaded as part of core initialization and unloaded as part of core de-initialization. Tested-by: Stefan Schmidt <stefan.schmidt@linaro.org> # x1e80100 (Dell XPS 13 9345) Reviewed-by: Stefan Schmidt <stefan.schmidt@linaro.org> Tested-by: Neil Armstrong <neil.armstrong@linaro.org> # on SM8550-QRD Tested-by: Neil Armstrong <neil.armstrong@linaro.org> # on SM8550-HDK Signed-off-by: Dikshita Agarwal <quic_dikshita@quicinc.com> Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
This commit is contained in:
parent
d7378f84e9
commit
d19b163356
7 changed files with 158 additions and 0 deletions
|
@ -3,6 +3,8 @@ config VIDEO_QCOM_IRIS
|
||||||
depends on VIDEO_DEV
|
depends on VIDEO_DEV
|
||||||
depends on ARCH_QCOM || COMPILE_TEST
|
depends on ARCH_QCOM || COMPILE_TEST
|
||||||
select V4L2_MEM2MEM_DEV
|
select V4L2_MEM2MEM_DEV
|
||||||
|
select QCOM_MDT_LOADER if ARCH_QCOM
|
||||||
|
select QCOM_SCM
|
||||||
help
|
help
|
||||||
This is a V4L2 driver for Qualcomm iris video accelerator
|
This is a V4L2 driver for Qualcomm iris video accelerator
|
||||||
hardware. It accelerates decoding operations on various
|
hardware. It accelerates decoding operations on various
|
||||||
|
|
|
@ -1,4 +1,5 @@
|
||||||
iris-objs += iris_core.o \
|
iris-objs += iris_core.o \
|
||||||
|
iris_firmware.o \
|
||||||
iris_hfi_gen1_command.o \
|
iris_hfi_gen1_command.o \
|
||||||
iris_hfi_gen2_command.o \
|
iris_hfi_gen2_command.o \
|
||||||
iris_hfi_queue.o \
|
iris_hfi_queue.o \
|
||||||
|
|
|
@ -4,11 +4,13 @@
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "iris_core.h"
|
#include "iris_core.h"
|
||||||
|
#include "iris_firmware.h"
|
||||||
#include "iris_state.h"
|
#include "iris_state.h"
|
||||||
|
|
||||||
void iris_core_deinit(struct iris_core *core)
|
void iris_core_deinit(struct iris_core *core)
|
||||||
{
|
{
|
||||||
mutex_lock(&core->lock);
|
mutex_lock(&core->lock);
|
||||||
|
iris_fw_unload(core);
|
||||||
iris_hfi_queues_deinit(core);
|
iris_hfi_queues_deinit(core);
|
||||||
core->state = IRIS_CORE_DEINIT;
|
core->state = IRIS_CORE_DEINIT;
|
||||||
mutex_unlock(&core->lock);
|
mutex_unlock(&core->lock);
|
||||||
|
@ -33,10 +35,16 @@ int iris_core_init(struct iris_core *core)
|
||||||
if (ret)
|
if (ret)
|
||||||
goto error;
|
goto error;
|
||||||
|
|
||||||
|
ret = iris_fw_load(core);
|
||||||
|
if (ret)
|
||||||
|
goto error_queue_deinit;
|
||||||
|
|
||||||
mutex_unlock(&core->lock);
|
mutex_unlock(&core->lock);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
|
error_queue_deinit:
|
||||||
|
iris_hfi_queues_deinit(core);
|
||||||
error:
|
error:
|
||||||
core->state = IRIS_CORE_DEINIT;
|
core->state = IRIS_CORE_DEINIT;
|
||||||
exit:
|
exit:
|
||||||
|
|
111
drivers/media/platform/qcom/iris/iris_firmware.c
Normal file
111
drivers/media/platform/qcom/iris/iris_firmware.c
Normal file
|
@ -0,0 +1,111 @@
|
||||||
|
// SPDX-License-Identifier: GPL-2.0-only
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include <linux/firmware.h>
|
||||||
|
#include <linux/firmware/qcom/qcom_scm.h>
|
||||||
|
#include <linux/of_address.h>
|
||||||
|
#include <linux/of_reserved_mem.h>
|
||||||
|
#include <linux/soc/qcom/mdt_loader.h>
|
||||||
|
|
||||||
|
#include "iris_core.h"
|
||||||
|
#include "iris_firmware.h"
|
||||||
|
|
||||||
|
#define MAX_FIRMWARE_NAME_SIZE 128
|
||||||
|
|
||||||
|
static int iris_load_fw_to_memory(struct iris_core *core, const char *fw_name)
|
||||||
|
{
|
||||||
|
u32 pas_id = core->iris_platform_data->pas_id;
|
||||||
|
const struct firmware *firmware = NULL;
|
||||||
|
struct device *dev = core->dev;
|
||||||
|
struct reserved_mem *rmem;
|
||||||
|
struct device_node *node;
|
||||||
|
phys_addr_t mem_phys;
|
||||||
|
size_t res_size;
|
||||||
|
ssize_t fw_size;
|
||||||
|
void *mem_virt;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
if (strlen(fw_name) >= MAX_FIRMWARE_NAME_SIZE - 4)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
node = of_parse_phandle(dev->of_node, "memory-region", 0);
|
||||||
|
if (!node)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
rmem = of_reserved_mem_lookup(node);
|
||||||
|
of_node_put(node);
|
||||||
|
if (!rmem)
|
||||||
|
return -EINVAL;
|
||||||
|
|
||||||
|
mem_phys = rmem->base;
|
||||||
|
res_size = rmem->size;
|
||||||
|
|
||||||
|
ret = request_firmware(&firmware, fw_name, dev);
|
||||||
|
if (ret)
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
fw_size = qcom_mdt_get_size(firmware);
|
||||||
|
if (fw_size < 0 || res_size < (size_t)fw_size) {
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto err_release_fw;
|
||||||
|
}
|
||||||
|
|
||||||
|
mem_virt = memremap(mem_phys, res_size, MEMREMAP_WC);
|
||||||
|
if (!mem_virt)
|
||||||
|
goto err_release_fw;
|
||||||
|
|
||||||
|
ret = qcom_mdt_load(dev, firmware, fw_name,
|
||||||
|
pas_id, mem_virt, mem_phys, res_size, NULL);
|
||||||
|
if (ret)
|
||||||
|
goto err_mem_unmap;
|
||||||
|
|
||||||
|
ret = qcom_scm_pas_auth_and_reset(pas_id);
|
||||||
|
if (ret)
|
||||||
|
goto err_mem_unmap;
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
|
||||||
|
err_mem_unmap:
|
||||||
|
memunmap(mem_virt);
|
||||||
|
err_release_fw:
|
||||||
|
release_firmware(firmware);
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int iris_fw_load(struct iris_core *core)
|
||||||
|
{
|
||||||
|
struct tz_cp_config *cp_config = core->iris_platform_data->tz_cp_config_data;
|
||||||
|
const char *fwpath = NULL;
|
||||||
|
int ret;
|
||||||
|
|
||||||
|
ret = of_property_read_string_index(core->dev->of_node, "firmware-name", 0,
|
||||||
|
&fwpath);
|
||||||
|
if (ret)
|
||||||
|
fwpath = core->iris_platform_data->fwname;
|
||||||
|
|
||||||
|
ret = iris_load_fw_to_memory(core, fwpath);
|
||||||
|
if (ret) {
|
||||||
|
dev_err(core->dev, "firmware download failed\n");
|
||||||
|
return -ENOMEM;
|
||||||
|
}
|
||||||
|
|
||||||
|
ret = qcom_scm_mem_protect_video_var(cp_config->cp_start,
|
||||||
|
cp_config->cp_size,
|
||||||
|
cp_config->cp_nonpixel_start,
|
||||||
|
cp_config->cp_nonpixel_size);
|
||||||
|
if (ret) {
|
||||||
|
dev_err(core->dev, "protect memory failed\n");
|
||||||
|
qcom_scm_pas_shutdown(core->iris_platform_data->pas_id);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
int iris_fw_unload(struct iris_core *core)
|
||||||
|
{
|
||||||
|
return qcom_scm_pas_shutdown(core->iris_platform_data->pas_id);
|
||||||
|
}
|
14
drivers/media/platform/qcom/iris/iris_firmware.h
Normal file
14
drivers/media/platform/qcom/iris/iris_firmware.h
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
||||||
|
/*
|
||||||
|
* Copyright (c) 2022-2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef __IRIS_FIRMWARE_H__
|
||||||
|
#define __IRIS_FIRMWARE_H__
|
||||||
|
|
||||||
|
struct iris_core;
|
||||||
|
|
||||||
|
int iris_fw_load(struct iris_core *core);
|
||||||
|
int iris_fw_unload(struct iris_core *core);
|
||||||
|
|
||||||
|
#endif
|
|
@ -6,6 +6,8 @@
|
||||||
#ifndef __IRIS_PLATFORM_COMMON_H__
|
#ifndef __IRIS_PLATFORM_COMMON_H__
|
||||||
#define __IRIS_PLATFORM_COMMON_H__
|
#define __IRIS_PLATFORM_COMMON_H__
|
||||||
|
|
||||||
|
#define IRIS_PAS_ID 9
|
||||||
|
|
||||||
extern struct iris_platform_data sm8550_data;
|
extern struct iris_platform_data sm8550_data;
|
||||||
|
|
||||||
enum platform_clk_type {
|
enum platform_clk_type {
|
||||||
|
@ -19,6 +21,13 @@ struct platform_clk_data {
|
||||||
const char *clk_name;
|
const char *clk_name;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct tz_cp_config {
|
||||||
|
u32 cp_start;
|
||||||
|
u32 cp_size;
|
||||||
|
u32 cp_nonpixel_start;
|
||||||
|
u32 cp_nonpixel_size;
|
||||||
|
};
|
||||||
|
|
||||||
struct iris_platform_data {
|
struct iris_platform_data {
|
||||||
struct iris_inst *(*get_instance)(void);
|
struct iris_inst *(*get_instance)(void);
|
||||||
const struct icc_info *icc_tbl;
|
const struct icc_info *icc_tbl;
|
||||||
|
@ -32,6 +41,9 @@ struct iris_platform_data {
|
||||||
const char * const *clk_rst_tbl;
|
const char * const *clk_rst_tbl;
|
||||||
unsigned int clk_rst_tbl_size;
|
unsigned int clk_rst_tbl_size;
|
||||||
u64 dma_mask;
|
u64 dma_mask;
|
||||||
|
const char *fwname;
|
||||||
|
u32 pas_id;
|
||||||
|
struct tz_cp_config *tz_cp_config_data;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,6 +24,13 @@ static const struct platform_clk_data sm8550_clk_table[] = {
|
||||||
{IRIS_HW_CLK, "vcodec0_core" },
|
{IRIS_HW_CLK, "vcodec0_core" },
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static struct tz_cp_config tz_cp_config_sm8550 = {
|
||||||
|
.cp_start = 0,
|
||||||
|
.cp_size = 0x25800000,
|
||||||
|
.cp_nonpixel_start = 0x01000000,
|
||||||
|
.cp_nonpixel_size = 0x24800000,
|
||||||
|
};
|
||||||
|
|
||||||
struct iris_platform_data sm8550_data = {
|
struct iris_platform_data sm8550_data = {
|
||||||
.get_instance = iris_hfi_gen2_get_instance,
|
.get_instance = iris_hfi_gen2_get_instance,
|
||||||
.icc_tbl = sm8550_icc_table,
|
.icc_tbl = sm8550_icc_table,
|
||||||
|
@ -38,4 +45,7 @@ struct iris_platform_data sm8550_data = {
|
||||||
.clk_tbl_size = ARRAY_SIZE(sm8550_clk_table),
|
.clk_tbl_size = ARRAY_SIZE(sm8550_clk_table),
|
||||||
/* Upper bound of DMA address range */
|
/* Upper bound of DMA address range */
|
||||||
.dma_mask = 0xe0000000 - 1,
|
.dma_mask = 0xe0000000 - 1,
|
||||||
|
.fwname = "qcom/vpu/vpu30_p4.mbn",
|
||||||
|
.pas_id = IRIS_PAS_ID,
|
||||||
|
.tz_cp_config_data = &tz_cp_config_sm8550,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Reference in a new issue