mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 09:57:08 +03:00
Add nvgpu_firmware data structure, and return it instead of Linux struct firmare from nvgpu_request_firmware. Also add abstraction for releasing firmware: nvgpu_release_firmware. JIRA NVGPU-16 Change-Id: I6dae8262957c0d4506f710289e3a43a6c1729fc7 Signed-off-by: Terje Bergstrom <tbergstrom@nvidia.com> Reviewed-on: http://git-master/r/1463538 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
82 lines
2.0 KiB
C
82 lines
2.0 KiB
C
/*
|
|
* Copyright (c) 2016-2017, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms and conditions of the GNU General Public License,
|
|
* version 2, as published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/uaccess.h>
|
|
|
|
#include <nvgpu/kmem.h>
|
|
|
|
#include "gk20a/gk20a.h"
|
|
#include "boardobj.h"
|
|
#include "ctrl/ctrlboardobj.h"
|
|
|
|
u32 boardobj_construct_super(struct gk20a *g, struct boardobj **ppboardobj,
|
|
u16 size, void *args)
|
|
{
|
|
struct boardobj *pboardobj = NULL;
|
|
struct boardobj *devtmp = (struct boardobj *)args;
|
|
|
|
gk20a_dbg_info(" ");
|
|
|
|
if (devtmp == NULL)
|
|
return -EINVAL;
|
|
|
|
if (*ppboardobj == NULL) {
|
|
*ppboardobj = nvgpu_kzalloc(g, size);
|
|
if (*ppboardobj == NULL)
|
|
return -ENOMEM;
|
|
}
|
|
|
|
pboardobj = *ppboardobj;
|
|
pboardobj->g = g;
|
|
pboardobj->type = devtmp->type;
|
|
pboardobj->idx = CTRL_BOARDOBJ_IDX_INVALID;
|
|
pboardobj->type_mask = BIT(pboardobj->type) | devtmp->type_mask;
|
|
|
|
pboardobj->implements = boardobj_implements_super;
|
|
pboardobj->destruct = boardobj_destruct_super;
|
|
pboardobj->pmudatainit = boardobj_pmudatainit_super;
|
|
|
|
return 0;
|
|
}
|
|
|
|
u32 boardobj_destruct_super(struct boardobj *pboardobj)
|
|
{
|
|
gk20a_dbg_info("");
|
|
if (pboardobj == NULL)
|
|
return -EINVAL;
|
|
nvgpu_kfree(pboardobj->g, pboardobj);
|
|
return 0;
|
|
}
|
|
|
|
bool boardobj_implements_super(struct gk20a *g, struct boardobj *pboardobj,
|
|
u8 type)
|
|
{
|
|
gk20a_dbg_info("");
|
|
|
|
return (0 != (pboardobj->type_mask & BIT(type)));
|
|
}
|
|
|
|
u32 boardobj_pmudatainit_super(struct gk20a *g, struct boardobj *pboardobj,
|
|
struct nv_pmu_boardobj *pmudata)
|
|
{
|
|
gk20a_dbg_info("");
|
|
if (pboardobj == NULL)
|
|
return -EINVAL;
|
|
if (pmudata == NULL)
|
|
return -EINVAL;
|
|
pmudata->type = pboardobj->type;
|
|
gk20a_dbg_info(" Done");
|
|
return 0;
|
|
}
|