mirror of
git://nv-tegra.nvidia.com/linux-nvgpu.git
synced 2025-12-24 02:22:34 +03:00
Added new function to add require sw initionaltions. before enabling gr hw. Added nvgpu_netlist_init_ctx_vars and nvgpu_gr_falcon_init_support as part of this function: int nvgpu_gr_prepare_sw(struct gk20a *g) Moved following structure defs from gr_gk20a.h to gr_falcon.h and renamed appropriately: gk20a_ctxsw_ucode_segment -> nvgpu_ctxsw_ucode_segment gk20a_ctxsw_ucode_segments -> nvgpu_ctxsw_ucode_segments Moved following struct to gr_falcon_priv.h: gk20a_ctxsw_ucode_info -> nvgpu_ctxsw_ucode_info Moved following data from struct gk20a to new structure in gr_falcon_priv.h struct nvgpu_gr_falcon: struct nvgpu_mutex ctxsw_disable_lock; int ctxsw_disable_count; struct gk20a_ctxsw_ucode_info ctxsw_ucode_info; Also moved following data from gr_gk20.h to struct nvgpu_gr_falcon: struct nvgpu_mutex fecs_mutex; bool skip_ucode_init; wait_ucode_status GR_IS_UCODE related enums eUcodeHandshakeInit enums Now add a pointer to this new data structure from struct gr_gk20a to access gr_falcon related data and modified code to reflect this change: struct nvgpu_gr_falcon *falcon; Added following functions to access gr_falcon data: struct nvgpu_mutex *nvgpu_gr_falcon_get_fecs_mutex( struct nvgpu_gr_falcon *falcon); struct nvgpu_ctxsw_ucode_segments *nvgpu_gr_falcon_get_fecs_ucode_segments( struct nvgpu_gr_falcon *falcon); struct nvgpu_ctxsw_ucode_segments *nvgpu_gr_falcon_get_gpccs_ucode_segments( struct nvgpu_gr_falcon *falcon); void *nvgpu_gr_falcon_get_surface_desc_cpu_va( struct nvgpu_gr_falcon *falcon); JIRA NVGPU-1881 Change-Id: I9100891989b0d6b57c49f2bf00ad839a72bc7c7e Signed-off-by: Seshendra Gadagottu <sgadagottu@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/2091358 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
123 lines
3.3 KiB
C
123 lines
3.3 KiB
C
/*
|
|
* Copyright (c) 2019, NVIDIA CORPORATION. All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
* to deal in the Software without restriction, including without limitation
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
* DEALINGS IN THE SOFTWARE.
|
|
*/
|
|
|
|
#ifndef GR_FALCON_PRIV_H
|
|
#define GR_FALOCN_PRIV_H
|
|
|
|
#include <nvgpu/types.h>
|
|
#include <nvgpu/nvgpu_mem.h>
|
|
|
|
struct nvgpu_ctxsw_ucode_segments;
|
|
|
|
struct nvgpu_fecs_method_op {
|
|
struct {
|
|
u32 addr;
|
|
u32 data;
|
|
} method;
|
|
|
|
struct {
|
|
u32 id;
|
|
u32 data;
|
|
u32 clr;
|
|
u32 *ret;
|
|
u32 ok;
|
|
u32 fail;
|
|
} mailbox;
|
|
|
|
struct {
|
|
u32 ok;
|
|
u32 fail;
|
|
} cond;
|
|
|
|
};
|
|
|
|
struct nvgpu_ctxsw_bootloader_desc {
|
|
u32 start_offset;
|
|
u32 size;
|
|
u32 imem_offset;
|
|
u32 entry_point;
|
|
};
|
|
|
|
struct nvgpu_ctxsw_ucode_info {
|
|
u64 *p_va;
|
|
struct nvgpu_mem inst_blk_desc;
|
|
struct nvgpu_mem surface_desc;
|
|
struct nvgpu_ctxsw_ucode_segments fecs;
|
|
struct nvgpu_ctxsw_ucode_segments gpccs;
|
|
};
|
|
|
|
struct nvgpu_gr_falcon {
|
|
struct nvgpu_ctxsw_ucode_info ctxsw_ucode_info;
|
|
struct nvgpu_mutex ctxsw_disable_mutex;
|
|
int ctxsw_disable_count;
|
|
struct nvgpu_mutex fecs_mutex; /* protect fecs method */
|
|
bool skip_ucode_init;
|
|
};
|
|
|
|
enum wait_ucode_status {
|
|
WAIT_UCODE_LOOP,
|
|
WAIT_UCODE_TIMEOUT,
|
|
WAIT_UCODE_ERROR,
|
|
WAIT_UCODE_OK
|
|
};
|
|
|
|
enum {
|
|
GR_IS_UCODE_OP_EQUAL,
|
|
GR_IS_UCODE_OP_NOT_EQUAL,
|
|
GR_IS_UCODE_OP_AND,
|
|
GR_IS_UCODE_OP_LESSER,
|
|
GR_IS_UCODE_OP_LESSER_EQUAL,
|
|
GR_IS_UCODE_OP_SKIP
|
|
};
|
|
|
|
enum {
|
|
eUcodeHandshakeInitComplete = 1,
|
|
eUcodeHandshakeMethodFinished
|
|
};
|
|
|
|
/* sums over the ucode files as sequences of u32, computed to the
|
|
* boot_signature field in the structure above */
|
|
|
|
/* T18X FECS remains same as T21X,
|
|
* so FALCON_UCODE_SIG_T21X_FECS_WITH_RESERVED used
|
|
* for T18X*/
|
|
#define FALCON_UCODE_SIG_T18X_GPCCS_WITH_RESERVED 0x68edab34U
|
|
#define FALCON_UCODE_SIG_T21X_FECS_WITH_DMEM_SIZE 0x9121ab5cU
|
|
#define FALCON_UCODE_SIG_T21X_FECS_WITH_RESERVED 0x9125ab5cU
|
|
#define FALCON_UCODE_SIG_T12X_FECS_WITH_RESERVED 0x8a621f78U
|
|
#define FALCON_UCODE_SIG_T12X_FECS_WITHOUT_RESERVED 0x67e5344bU
|
|
#define FALCON_UCODE_SIG_T12X_FECS_OLDER 0x56da09fU
|
|
|
|
#define FALCON_UCODE_SIG_T21X_GPCCS_WITH_RESERVED 0x3d3d65e2U
|
|
#define FALCON_UCODE_SIG_T12X_GPCCS_WITH_RESERVED 0x303465d5U
|
|
#define FALCON_UCODE_SIG_T12X_GPCCS_WITHOUT_RESERVED 0x3fdd33d3U
|
|
#define FALCON_UCODE_SIG_T12X_GPCCS_OLDER 0x53d7877U
|
|
|
|
#define FALCON_UCODE_SIG_T21X_FECS_WITHOUT_RESERVED 0x93671b7dU
|
|
#define FALCON_UCODE_SIG_T21X_FECS_WITHOUT_RESERVED2 0x4d6cbc10U
|
|
|
|
#define FALCON_UCODE_SIG_T21X_GPCCS_WITHOUT_RESERVED 0x393161daU
|
|
|
|
|
|
#endif /* GR_FALOCN_PRIV_H */
|
|
|