Commit c4bdac75 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/gr/ga102: initial support

v2:
- whitespace
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
Signed-off-by: default avatarGourav Samaiya <gsamaiya@nvidia.com>
parent 21e938d0
...@@ -190,6 +190,8 @@ ...@@ -190,6 +190,8 @@
#define TURING_A /* cl9097.h */ 0x0000c597 #define TURING_A /* cl9097.h */ 0x0000c597
#define AMPERE_B /* cl9097.h */ 0x0000c797
#define NV74_BSP 0x000074b0 #define NV74_BSP 0x000074b0
#define GT212_MSVLD 0x000085b1 #define GT212_MSVLD 0x000085b1
...@@ -234,6 +236,7 @@ ...@@ -234,6 +236,7 @@
#define PASCAL_COMPUTE_B 0x0000c1c0 #define PASCAL_COMPUTE_B 0x0000c1c0
#define VOLTA_COMPUTE_A 0x0000c3c0 #define VOLTA_COMPUTE_A 0x0000c3c0
#define TURING_COMPUTE_A 0x0000c5c0 #define TURING_COMPUTE_A 0x0000c5c0
#define AMPERE_COMPUTE_B 0x0000c7c0
#define NV74_CIPHER 0x000074c1 #define NV74_CIPHER 0x000074c1
#endif #endif
...@@ -54,4 +54,5 @@ int gp108_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct n ...@@ -54,4 +54,5 @@ int gp108_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct n
int gp10b_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **); int gp10b_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **);
int gv100_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **); int gv100_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **);
int tu102_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **); int tu102_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **);
int ga102_gr_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_gr **);
#endif #endif
...@@ -118,6 +118,7 @@ struct nvkm_acr_lsf_func { ...@@ -118,6 +118,7 @@ struct nvkm_acr_lsf_func {
#define NVKM_ACR_LSF_DMACTL_REQ_CTX 0x00000004 #define NVKM_ACR_LSF_DMACTL_REQ_CTX 0x00000004
#define NVKM_ACR_LSF_FORCE_PRIV_LOAD 0x00000008 #define NVKM_ACR_LSF_FORCE_PRIV_LOAD 0x00000008
u32 flags; u32 flags;
u32 bl_entry;
u32 bld_size; u32 bld_size;
void (*bld_write)(struct nvkm_acr *, u32 bld, struct nvkm_acr_lsfw *); void (*bld_write)(struct nvkm_acr *, u32 bld, struct nvkm_acr_lsfw *);
void (*bld_patch)(struct nvkm_acr *, u32 bld, s64 adjust); void (*bld_patch)(struct nvkm_acr *, u32 bld, s64 adjust);
...@@ -144,4 +145,10 @@ int ...@@ -144,4 +145,10 @@ int
nvkm_acr_lsfw_load_bl_inst_data_sig(struct nvkm_subdev *, struct nvkm_falcon *, nvkm_acr_lsfw_load_bl_inst_data_sig(struct nvkm_subdev *, struct nvkm_falcon *,
enum nvkm_acr_lsf_id, const char *path, enum nvkm_acr_lsf_id, const char *path,
int ver, const struct nvkm_acr_lsf_func *); int ver, const struct nvkm_acr_lsf_func *);
int
nvkm_acr_lsfw_load_bl_sig_net(struct nvkm_subdev *, struct nvkm_falcon *,
enum nvkm_acr_lsf_id, const char *path,
int ver, const struct nvkm_acr_lsf_func *,
const void *, u32, const void *, u32);
#endif #endif
...@@ -2618,6 +2618,7 @@ nv172_chipset = { ...@@ -2618,6 +2618,7 @@ nv172_chipset = {
.disp = { 0x00000001, ga102_disp_new }, .disp = { 0x00000001, ga102_disp_new },
.dma = { 0x00000001, gv100_dma_new }, .dma = { 0x00000001, gv100_dma_new },
.fifo = { 0x00000001, ga102_fifo_new }, .fifo = { 0x00000001, ga102_fifo_new },
.gr = { 0x00000001, ga102_gr_new },
.nvdec = { 0x00000001, ga102_nvdec_new }, .nvdec = { 0x00000001, ga102_nvdec_new },
.sec2 = { 0x00000001, ga102_sec2_new }, .sec2 = { 0x00000001, ga102_sec2_new },
}; };
...@@ -2647,6 +2648,7 @@ nv173_chipset = { ...@@ -2647,6 +2648,7 @@ nv173_chipset = {
.disp = { 0x00000001, ga102_disp_new }, .disp = { 0x00000001, ga102_disp_new },
.dma = { 0x00000001, gv100_dma_new }, .dma = { 0x00000001, gv100_dma_new },
.fifo = { 0x00000001, ga102_fifo_new }, .fifo = { 0x00000001, ga102_fifo_new },
.gr = { 0x00000001, ga102_gr_new },
.nvdec = { 0x00000001, ga102_nvdec_new }, .nvdec = { 0x00000001, ga102_nvdec_new },
.sec2 = { 0x00000001, ga102_sec2_new }, .sec2 = { 0x00000001, ga102_sec2_new },
}; };
...@@ -2676,6 +2678,7 @@ nv174_chipset = { ...@@ -2676,6 +2678,7 @@ nv174_chipset = {
.disp = { 0x00000001, ga102_disp_new }, .disp = { 0x00000001, ga102_disp_new },
.dma = { 0x00000001, gv100_dma_new }, .dma = { 0x00000001, gv100_dma_new },
.fifo = { 0x00000001, ga102_fifo_new }, .fifo = { 0x00000001, ga102_fifo_new },
.gr = { 0x00000001, ga102_gr_new },
.nvdec = { 0x00000001, ga102_nvdec_new }, .nvdec = { 0x00000001, ga102_nvdec_new },
.sec2 = { 0x00000001, ga102_sec2_new }, .sec2 = { 0x00000001, ga102_sec2_new },
}; };
...@@ -2705,6 +2708,7 @@ nv176_chipset = { ...@@ -2705,6 +2708,7 @@ nv176_chipset = {
.disp = { 0x00000001, ga102_disp_new }, .disp = { 0x00000001, ga102_disp_new },
.dma = { 0x00000001, gv100_dma_new }, .dma = { 0x00000001, gv100_dma_new },
.fifo = { 0x00000001, ga102_fifo_new }, .fifo = { 0x00000001, ga102_fifo_new },
.gr = { 0x00000001, ga102_gr_new },
.nvdec = { 0x00000001, ga102_nvdec_new }, .nvdec = { 0x00000001, ga102_nvdec_new },
.sec2 = { 0x00000001, ga102_sec2_new }, .sec2 = { 0x00000001, ga102_sec2_new },
}; };
...@@ -2734,6 +2738,7 @@ nv177_chipset = { ...@@ -2734,6 +2738,7 @@ nv177_chipset = {
.disp = { 0x00000001, ga102_disp_new }, .disp = { 0x00000001, ga102_disp_new },
.dma = { 0x00000001, gv100_dma_new }, .dma = { 0x00000001, gv100_dma_new },
.fifo = { 0x00000001, ga102_fifo_new }, .fifo = { 0x00000001, ga102_fifo_new },
.gr = { 0x00000001, ga102_gr_new },
.nvdec = { 0x00000001, ga102_nvdec_new }, .nvdec = { 0x00000001, ga102_nvdec_new },
.sec2 = { 0x00000001, ga102_sec2_new }, .sec2 = { 0x00000001, ga102_sec2_new },
}; };
......
...@@ -40,6 +40,7 @@ nvkm-y += nvkm/engine/gr/gp108.o ...@@ -40,6 +40,7 @@ nvkm-y += nvkm/engine/gr/gp108.o
nvkm-y += nvkm/engine/gr/gp10b.o nvkm-y += nvkm/engine/gr/gp10b.o
nvkm-y += nvkm/engine/gr/gv100.o nvkm-y += nvkm/engine/gr/gv100.o
nvkm-y += nvkm/engine/gr/tu102.o nvkm-y += nvkm/engine/gr/tu102.o
nvkm-y += nvkm/engine/gr/ga102.o
nvkm-y += nvkm/engine/gr/ctxnv40.o nvkm-y += nvkm/engine/gr/ctxnv40.o
nvkm-y += nvkm/engine/gr/ctxnv50.o nvkm-y += nvkm/engine/gr/ctxnv50.o
...@@ -63,3 +64,4 @@ nvkm-y += nvkm/engine/gr/ctxgp104.o ...@@ -63,3 +64,4 @@ nvkm-y += nvkm/engine/gr/ctxgp104.o
nvkm-y += nvkm/engine/gr/ctxgp107.o nvkm-y += nvkm/engine/gr/ctxgp107.o
nvkm-y += nvkm/engine/gr/ctxgv100.o nvkm-y += nvkm/engine/gr/ctxgv100.o
nvkm-y += nvkm/engine/gr/ctxtu102.o nvkm-y += nvkm/engine/gr/ctxtu102.o
nvkm-y += nvkm/engine/gr/ctxga102.o
/*
* Copyright 2019 Red Hat Inc.
*
* 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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.
*/
#include "ctxgf100.h"
static void
ga102_grctx_generate_sm_id(struct gf100_gr *gr, int gpc, int tpc, int sm)
{
struct nvkm_device *device = gr->base.engine.subdev.device;
tpc = gv100_gr_nonpes_aware_tpc(gr, gpc, tpc);
nvkm_wr32(device, TPC_UNIT(gpc, tpc, 0x608), sm);
}
static void
ga102_grctx_generate_unkn(struct gf100_gr *gr)
{
struct nvkm_device *device = gr->base.engine.subdev.device;
nvkm_mask(device, 0x41980c, 0x00000010, 0x00000010);
nvkm_mask(device, 0x41be08, 0x00000004, 0x00000004);
}
static void
ga102_grctx_generate_r419ea8(struct gf100_gr *gr)
{
struct nvkm_device *device = gr->base.engine.subdev.device;
nvkm_wr32(device, 0x419ea8, nvkm_rd32(device, 0x504728) | 0x08000000);
}
const struct gf100_grctx_func
ga102_grctx = {
.main = gf100_grctx_generate_main,
.unkn = ga102_grctx_generate_unkn,
.bundle = gm107_grctx_generate_bundle,
.bundle_size = 0x3000,
.bundle_min_gpm_fifo_depth = 0x180,
.bundle_token_limit = 0x1140,
.pagepool = gp100_grctx_generate_pagepool,
.pagepool_size = 0x20000,
.attrib_cb_size = gp102_grctx_generate_attrib_cb_size,
.attrib_cb = gv100_grctx_generate_attrib_cb,
.attrib = gv100_grctx_generate_attrib,
.attrib_nr_max = 0x800,
.attrib_nr = 0x4a1,
.alpha_nr_max = 0xc00,
.alpha_nr = 0x800,
.unknown_size = 0x80000,
.unknown = tu102_grctx_generate_unknown,
.gfxp_nr = 0xd28,
.sm_id = ga102_grctx_generate_sm_id,
.skip_pd_num_tpc_per_gpc = true,
.rop_mapping = gv100_grctx_generate_rop_mapping,
.r406500 = gm200_grctx_generate_r406500,
.r400088 = gv100_grctx_generate_r400088,
.r419ea8 = ga102_grctx_generate_r419ea8,
};
...@@ -1361,6 +1361,8 @@ gf100_grctx_generate_main(struct gf100_gr_chan *chan) ...@@ -1361,6 +1361,8 @@ gf100_grctx_generate_main(struct gf100_gr_chan *chan)
if (gr->func->init_419bd8) if (gr->func->init_419bd8)
gr->func->init_419bd8(gr); gr->func->init_419bd8(gr);
if (grctx->r419ea8)
grctx->r419ea8(gr);
gf100_gr_wait_idle(gr); gf100_gr_wait_idle(gr);
......
...@@ -69,6 +69,7 @@ struct gf100_grctx_func { ...@@ -69,6 +69,7 @@ struct gf100_grctx_func {
void (*r419a3c)(struct gf100_gr *); void (*r419a3c)(struct gf100_gr *);
void (*r408840)(struct gf100_gr *); void (*r408840)(struct gf100_gr *);
void (*r419c0c)(struct gf100_gr *); void (*r419c0c)(struct gf100_gr *);
void (*r419ea8)(struct gf100_gr *);
}; };
extern const struct gf100_grctx_func gf100_grctx; extern const struct gf100_grctx_func gf100_grctx;
...@@ -161,6 +162,8 @@ void gv100_grctx_generate_r400088(struct gf100_gr *, bool); ...@@ -161,6 +162,8 @@ void gv100_grctx_generate_r400088(struct gf100_gr *, bool);
void tu102_grctx_generate_unknown(struct gf100_gr_chan *, u64, u32); void tu102_grctx_generate_unknown(struct gf100_gr_chan *, u64, u32);
extern const struct gf100_grctx_func ga102_grctx;
/* context init value lists */ /* context init value lists */
extern const struct gf100_gr_pack gf100_grctx_pack_icmd[]; extern const struct gf100_gr_pack gf100_grctx_pack_icmd[];
......
This diff is collapsed.
...@@ -1995,6 +1995,9 @@ gf100_gr_oneinit(struct nvkm_gr *base) ...@@ -1995,6 +1995,9 @@ gf100_gr_oneinit(struct nvkm_gr *base)
enum nvkm_intr_type intr_type = NVKM_INTR_SUBDEV; enum nvkm_intr_type intr_type = NVKM_INTR_SUBDEV;
int ret, i, j; int ret, i, j;
if (gr->func->oneinit_intr)
intr = gr->func->oneinit_intr(gr, &intr_type);
ret = nvkm_inth_add(intr, intr_type, NVKM_INTR_PRIO_NORMAL, &gr->base.engine.subdev, ret = nvkm_inth_add(intr, intr_type, NVKM_INTR_PRIO_NORMAL, &gr->base.engine.subdev,
gf100_gr_intr, &gr->base.engine.subdev.inth); gf100_gr_intr, &gr->base.engine.subdev.inth);
if (ret) if (ret)
...@@ -2147,6 +2150,10 @@ gf100_gr_dtor(struct nvkm_gr *base) ...@@ -2147,6 +2150,10 @@ gf100_gr_dtor(struct nvkm_gr *base)
vfree(gr->method); vfree(gr->method);
vfree(gr->sw_ctx); vfree(gr->sw_ctx);
vfree(gr->sw_nonctx); vfree(gr->sw_nonctx);
vfree(gr->sw_nonctx1);
vfree(gr->sw_nonctx2);
vfree(gr->sw_nonctx3);
vfree(gr->sw_nonctx4);
return gr; return gr;
} }
...@@ -2324,6 +2331,8 @@ gf100_gr_reset(struct nvkm_gr *base) ...@@ -2324,6 +2331,8 @@ gf100_gr_reset(struct nvkm_gr *base)
subdev->func->fini(subdev, false); subdev->func->fini(subdev, false);
nvkm_mc_disable(device, subdev->type, subdev->inst); nvkm_mc_disable(device, subdev->type, subdev->inst);
if (gr->func->gpccs.reset)
gr->func->gpccs.reset(gr);
nvkm_mc_enable(device, subdev->type, subdev->inst); nvkm_mc_enable(device, subdev->type, subdev->inst);
return subdev->func->init(subdev); return subdev->func->init(subdev);
...@@ -2339,10 +2348,17 @@ gf100_gr_init(struct gf100_gr *gr) ...@@ -2339,10 +2348,17 @@ gf100_gr_init(struct gf100_gr *gr)
gr->func->init_gpc_mmu(gr); gr->func->init_gpc_mmu(gr);
if (gr->sw_nonctx) if (gr->sw_nonctx1) {
gf100_gr_mmio(gr, gr->sw_nonctx1);
gf100_gr_mmio(gr, gr->sw_nonctx2);
gf100_gr_mmio(gr, gr->sw_nonctx3);
gf100_gr_mmio(gr, gr->sw_nonctx4);
} else
if (gr->sw_nonctx) {
gf100_gr_mmio(gr, gr->sw_nonctx); gf100_gr_mmio(gr, gr->sw_nonctx);
else } else {
gf100_gr_mmio(gr, gr->func->mmio); gf100_gr_mmio(gr, gr->func->mmio);
}
gf100_gr_wait_idle(gr); gf100_gr_wait_idle(gr);
...@@ -2374,6 +2390,10 @@ gf100_gr_init(struct gf100_gr *gr) ...@@ -2374,6 +2390,10 @@ gf100_gr_init(struct gf100_gr *gr)
nvkm_wr32(device, 0x400124, 0x00000002); nvkm_wr32(device, 0x400124, 0x00000002);
gr->func->init_fecs_exceptions(gr); gr->func->init_fecs_exceptions(gr);
if (gr->func->init_40a790)
gr->func->init_40a790(gr);
if (gr->func->init_ds_hww_esr_2) if (gr->func->init_ds_hww_esr_2)
gr->func->init_ds_hww_esr_2(gr); gr->func->init_ds_hww_esr_2(gr);
......
...@@ -88,6 +88,10 @@ struct gf100_gr { ...@@ -88,6 +88,10 @@ struct gf100_gr {
* using hardcoded arrays. To be allocated with vzalloc(). * using hardcoded arrays. To be allocated with vzalloc().
*/ */
struct gf100_gr_pack *sw_nonctx; struct gf100_gr_pack *sw_nonctx;
struct gf100_gr_pack *sw_nonctx1;
struct gf100_gr_pack *sw_nonctx2;
struct gf100_gr_pack *sw_nonctx3;
struct gf100_gr_pack *sw_nonctx4;
struct gf100_gr_pack *sw_ctx; struct gf100_gr_pack *sw_ctx;
struct gf100_gr_pack *bundle; struct gf100_gr_pack *bundle;
struct gf100_gr_pack *bundle_veid; struct gf100_gr_pack *bundle_veid;
...@@ -143,6 +147,7 @@ struct gf100_gr_func_zbc { ...@@ -143,6 +147,7 @@ struct gf100_gr_func_zbc {
}; };
struct gf100_gr_func { struct gf100_gr_func {
struct nvkm_intr *(*oneinit_intr)(struct gf100_gr *, enum nvkm_intr_type *);
void (*oneinit_tiles)(struct gf100_gr *); void (*oneinit_tiles)(struct gf100_gr *);
int (*oneinit_sm_id)(struct gf100_gr *); int (*oneinit_sm_id)(struct gf100_gr *);
int (*init)(struct gf100_gr *); int (*init)(struct gf100_gr *);
...@@ -158,6 +163,7 @@ struct gf100_gr_func { ...@@ -158,6 +163,7 @@ struct gf100_gr_func {
void (*init_swdx_pes_mask)(struct gf100_gr *); void (*init_swdx_pes_mask)(struct gf100_gr *);
void (*init_fs)(struct gf100_gr *); void (*init_fs)(struct gf100_gr *);
void (*init_fecs_exceptions)(struct gf100_gr *); void (*init_fecs_exceptions)(struct gf100_gr *);
void (*init_40a790)(struct gf100_gr *);
void (*init_ds_hww_esr_2)(struct gf100_gr *); void (*init_ds_hww_esr_2)(struct gf100_gr *);
void (*init_40601c)(struct gf100_gr *); void (*init_40601c)(struct gf100_gr *);
void (*init_sked_hww_esr)(struct gf100_gr *); void (*init_sked_hww_esr)(struct gf100_gr *);
...@@ -181,6 +187,7 @@ struct gf100_gr_func { ...@@ -181,6 +187,7 @@ struct gf100_gr_func {
} fecs; } fecs;
struct { struct {
struct gf100_gr_ucode *ucode; struct gf100_gr_ucode *ucode;
void (*reset)(struct gf100_gr *);
} gpccs; } gpccs;
int (*rops)(struct gf100_gr *); int (*rops)(struct gf100_gr *);
int gpc_nr; int gpc_nr;
...@@ -246,6 +253,8 @@ extern const struct gf100_gr_func_zbc gp100_gr_zbc; ...@@ -246,6 +253,8 @@ extern const struct gf100_gr_func_zbc gp100_gr_zbc;
void gp102_gr_init_swdx_pes_mask(struct gf100_gr *); void gp102_gr_init_swdx_pes_mask(struct gf100_gr *);
extern const struct gf100_gr_func_zbc gp102_gr_zbc; extern const struct gf100_gr_func_zbc gp102_gr_zbc;
int gp102_gr_zbc_stencil_get(struct gf100_gr *, int, const u32, const u32);
void gp102_gr_zbc_clear_stencil(struct gf100_gr *, int);
extern const struct gf100_gr_func gp107_gr; extern const struct gf100_gr_func gp107_gr;
...@@ -258,6 +267,9 @@ void gv100_gr_init_4188a4(struct gf100_gr *); ...@@ -258,6 +267,9 @@ void gv100_gr_init_4188a4(struct gf100_gr *);
void gv100_gr_trap_mp(struct gf100_gr *, int, int); void gv100_gr_trap_mp(struct gf100_gr *, int, int);
int tu102_gr_av_to_init_veid(struct nvkm_blob *, struct gf100_gr_pack **); int tu102_gr_av_to_init_veid(struct nvkm_blob *, struct gf100_gr_pack **);
void tu102_gr_init_zcull(struct gf100_gr *);
void tu102_gr_init_fs(struct gf100_gr *);
void tu102_gr_init_fecs_exceptions(struct gf100_gr *);
#define gf100_gr_chan(p) container_of((p), struct gf100_gr_chan, object) #define gf100_gr_chan(p) container_of((p), struct gf100_gr_chan, object)
#include <core/object.h> #include <core/object.h>
...@@ -427,6 +439,8 @@ void gm20b_gr_acr_bld_patch(struct nvkm_acr *, u32, s64); ...@@ -427,6 +439,8 @@ void gm20b_gr_acr_bld_patch(struct nvkm_acr *, u32, s64);
extern const struct nvkm_acr_lsf_func gp108_gr_gpccs_acr; extern const struct nvkm_acr_lsf_func gp108_gr_gpccs_acr;
extern const struct nvkm_acr_lsf_func gp108_gr_fecs_acr; extern const struct nvkm_acr_lsf_func gp108_gr_fecs_acr;
void gp108_gr_acr_bld_write(struct nvkm_acr *, u32, struct nvkm_acr_lsfw *);
void gp108_gr_acr_bld_patch(struct nvkm_acr *, u32, s64);
int gf100_gr_new_(const struct gf100_gr_fwif *, struct nvkm_device *, enum nvkm_subdev_type, int, int gf100_gr_new_(const struct gf100_gr_fwif *, struct nvkm_device *, enum nvkm_subdev_type, int,
struct nvkm_gr **); struct nvkm_gr **);
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include <nvif/class.h> #include <nvif/class.h>
static void void
gp102_gr_zbc_clear_stencil(struct gf100_gr *gr, int zbc) gp102_gr_zbc_clear_stencil(struct gf100_gr *gr, int zbc)
{ {
struct nvkm_device *device = gr->base.engine.subdev.device; struct nvkm_device *device = gr->base.engine.subdev.device;
...@@ -40,7 +40,7 @@ gp102_gr_zbc_clear_stencil(struct gf100_gr *gr, int zbc) ...@@ -40,7 +40,7 @@ gp102_gr_zbc_clear_stencil(struct gf100_gr *gr, int zbc)
gr->zbc_stencil[zbc].format << ((znum % 4) * 7)); gr->zbc_stencil[zbc].format << ((znum % 4) * 7));
} }
static int int
gp102_gr_zbc_stencil_get(struct gf100_gr *gr, int format, gp102_gr_zbc_stencil_get(struct gf100_gr *gr, int format,
const u32 ds, const u32 l2) const u32 ds, const u32 l2)
{ {
......
...@@ -25,7 +25,7 @@ ...@@ -25,7 +25,7 @@
#include <nvfw/flcn.h> #include <nvfw/flcn.h>
static void void
gp108_gr_acr_bld_patch(struct nvkm_acr *acr, u32 bld, s64 adjust) gp108_gr_acr_bld_patch(struct nvkm_acr *acr, u32 bld, s64 adjust)
{ {
struct flcn_bl_dmem_desc_v2 hdr; struct flcn_bl_dmem_desc_v2 hdr;
...@@ -36,7 +36,7 @@ gp108_gr_acr_bld_patch(struct nvkm_acr *acr, u32 bld, s64 adjust) ...@@ -36,7 +36,7 @@ gp108_gr_acr_bld_patch(struct nvkm_acr *acr, u32 bld, s64 adjust)
flcn_bl_dmem_desc_v2_dump(&acr->subdev, &hdr); flcn_bl_dmem_desc_v2_dump(&acr->subdev, &hdr);
} }
static void void
gp108_gr_acr_bld_write(struct nvkm_acr *acr, u32 bld, gp108_gr_acr_bld_write(struct nvkm_acr *acr, u32 bld,
struct nvkm_acr_lsfw *lsfw) struct nvkm_acr_lsfw *lsfw)
{ {
......
...@@ -24,13 +24,13 @@ ...@@ -24,13 +24,13 @@
#include <nvif/class.h> #include <nvif/class.h>
static void void
tu102_gr_init_fecs_exceptions(struct gf100_gr *gr) tu102_gr_init_fecs_exceptions(struct gf100_gr *gr)
{ {
nvkm_wr32(gr->base.engine.subdev.device, 0x409c24, 0x006e0003); nvkm_wr32(gr->base.engine.subdev.device, 0x409c24, 0x006e0003);
} }
static void void
tu102_gr_init_fs(struct gf100_gr *gr) tu102_gr_init_fs(struct gf100_gr *gr)
{ {
struct nvkm_device *device = gr->base.engine.subdev.device; struct nvkm_device *device = gr->base.engine.subdev.device;
...@@ -49,7 +49,7 @@ tu102_gr_init_fs(struct gf100_gr *gr) ...@@ -49,7 +49,7 @@ tu102_gr_init_fs(struct gf100_gr *gr)
gf100_gr_init_num_tpc_per_gpc(gr, true, true); gf100_gr_init_num_tpc_per_gpc(gr, true, true);
} }
static void void
tu102_gr_init_zcull(struct gf100_gr *gr) tu102_gr_init_zcull(struct gf100_gr *gr)
{ {
struct nvkm_device *device = gr->base.engine.subdev.device; struct nvkm_device *device = gr->base.engine.subdev.device;
......
...@@ -321,3 +321,78 @@ nvkm_acr_lsfw_load_bl_inst_data_sig(struct nvkm_subdev *subdev, ...@@ -321,3 +321,78 @@ nvkm_acr_lsfw_load_bl_inst_data_sig(struct nvkm_subdev *subdev,
nvkm_firmware_put(bl); nvkm_firmware_put(bl);
return ret; return ret;
} }
int
nvkm_acr_lsfw_load_bl_sig_net(struct nvkm_subdev *subdev,
struct nvkm_falcon *falcon,
enum nvkm_acr_lsf_id id,
const char *path, int ver,
const struct nvkm_acr_lsf_func *func,
const void *inst_data, u32 inst_size,
const void *data_data, u32 data_size)
{
struct nvkm_acr *acr = subdev->device->acr;
struct nvkm_acr_lsfw *lsfw;
const struct firmware _inst = { .data = inst_data, .size = inst_size };
const struct firmware _data = { .data = data_data, .size = data_size };
const struct firmware *bl = NULL, *inst = &_inst, *data = &_data;
const struct {
int bin_magic;
int bin_version;
int bin_size;
int header_offset;
int header_size;
} *hdr;
u32 *bldata;
int ret;
if (IS_ERR((lsfw = nvkm_acr_lsfw_add(func, acr, falcon, id))))
return PTR_ERR(lsfw);
ret = nvkm_firmware_load_name(subdev, path, "bl", ver, &bl);
if (ret)
goto done;
hdr = (const void *)bl->data;
bldata = (void *)(bl->data + hdr->header_offset);
ret = nvkm_firmware_load_name(subdev, path, "sig", ver, &lsfw->sig);
if (ret)
goto done;
lsfw->bootloader_size = ALIGN(hdr->header_size, 256);
lsfw->bootloader_imem_offset = func->bl_entry;
lsfw->app_start_offset = lsfw->bootloader_size;
lsfw->app_imem_entry = 0;
lsfw->app_resident_code_offset = 0;
lsfw->app_resident_code_size = ALIGN(inst->size, 256);
lsfw->app_resident_data_offset = lsfw->app_resident_code_size;
lsfw->app_resident_data_size = ALIGN(data->size, 256);
lsfw->app_imem_offset = 0;
lsfw->app_dmem_offset = 0;
lsfw->app_size = lsfw->app_resident_code_size + lsfw->app_resident_data_size;
lsfw->img.size = lsfw->bootloader_size + lsfw->app_size;
if (!(lsfw->img.data = kzalloc(lsfw->img.size, GFP_KERNEL))) {
ret = -ENOMEM;
goto done;
}
memcpy(lsfw->img.data, bldata, lsfw->bootloader_size);
memcpy(lsfw->img.data + lsfw->app_start_offset +
lsfw->app_resident_code_offset, inst->data, inst->size);
memcpy(lsfw->img.data + lsfw->app_start_offset +
lsfw->app_resident_data_offset, data->data, data->size);
lsfw->ucode_size = ALIGN(lsfw->app_resident_data_offset, 256) +
lsfw->bootloader_size;
lsfw->data_size = lsfw->app_size + lsfw->bootloader_size -
lsfw->ucode_size;
done:
if (ret)
nvkm_acr_lsfw_del(lsfw);
nvkm_firmware_put(bl);
return ret;
}
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment