mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-23 18:16:01 +03:00
Reorganize HAL initialization to remove inheritance and construct the gpu_ops struct at compile time. This patch only covers the gr_ctx sub-module of the gpu_ops struct. Perform HAL function assignments in hal_gxxxx.c through the population of a chip-specific copy of gpu_ops. Jira NVGPU-74 Change-Id: I783d8e8919d8694ad2aa0d285e4c5a2b62580f48 Signed-off-by: Sunny He <suhe@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1527417 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
68 lines
1.6 KiB
C
68 lines
1.6 KiB
C
/*
|
|
* drivers/video/tegra/host/gm20b/gr_ctx_gm20b.c
|
|
*
|
|
* GM20B Graphics Context
|
|
*
|
|
* Copyright (c) 2015-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.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
|
|
*/
|
|
|
|
#include "gk20a/gk20a.h"
|
|
#include "gr_ctx_gm20b.h"
|
|
|
|
int gr_gm20b_get_netlist_name(struct gk20a *g, int index, char *name)
|
|
{
|
|
switch (index) {
|
|
#ifdef GM20B_NETLIST_IMAGE_FW_NAME
|
|
case NETLIST_FINAL:
|
|
sprintf(name, GM20B_NETLIST_IMAGE_FW_NAME);
|
|
return 0;
|
|
#endif
|
|
#ifdef GK20A_NETLIST_IMAGE_A
|
|
case NETLIST_SLOT_A:
|
|
sprintf(name, GK20A_NETLIST_IMAGE_A);
|
|
return 0;
|
|
#endif
|
|
#ifdef GK20A_NETLIST_IMAGE_B
|
|
case NETLIST_SLOT_B:
|
|
sprintf(name, GK20A_NETLIST_IMAGE_B);
|
|
return 0;
|
|
#endif
|
|
#ifdef GK20A_NETLIST_IMAGE_C
|
|
case NETLIST_SLOT_C:
|
|
sprintf(name, GK20A_NETLIST_IMAGE_C);
|
|
return 0;
|
|
#endif
|
|
#ifdef GK20A_NETLIST_IMAGE_D
|
|
case NETLIST_SLOT_D:
|
|
sprintf(name, GK20A_NETLIST_IMAGE_D);
|
|
return 0;
|
|
#endif
|
|
default:
|
|
return -1;
|
|
}
|
|
|
|
return -1;
|
|
}
|
|
|
|
bool gr_gm20b_is_firmware_defined(void)
|
|
{
|
|
#ifdef GM20B_NETLIST_IMAGE_FW_NAME
|
|
return true;
|
|
#else
|
|
return false;
|
|
#endif
|
|
}
|