2 * Copyright 2019 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
24 #include <subdev/mmu.h>
26 #include <nvfw/flcn.h>
29 gp108_acr_hsfw_bld(struct nvkm_acr
*acr
, struct nvkm_acr_hsf
*hsf
)
31 struct flcn_bl_dmem_desc_v2 hsdesc
= {
32 .ctx_dma
= FALCON_DMAIDX_VIRT
,
33 .code_dma_base
= hsf
->vma
->addr
,
34 .non_sec_code_off
= hsf
->non_sec_addr
,
35 .non_sec_code_size
= hsf
->non_sec_size
,
36 .sec_code_off
= hsf
->sec_addr
,
37 .sec_code_size
= hsf
->sec_size
,
38 .code_entry_point
= 0,
39 .data_dma_base
= hsf
->vma
->addr
+ hsf
->data_addr
,
40 .data_size
= hsf
->data_size
,
45 flcn_bl_dmem_desc_v2_dump(&acr
->subdev
, &hsdesc
);
47 nvkm_falcon_load_dmem(hsf
->falcon
, &hsdesc
, 0, sizeof(hsdesc
), 0);
50 const struct nvkm_acr_hsf_func
51 gp108_acr_unload_0
= {
52 .load
= gm200_acr_unload_load
,
53 .boot
= gm200_acr_unload_boot
,
54 .bld
= gp108_acr_hsfw_bld
,
57 MODULE_FIRMWARE("nvidia/gp108/acr/unload_bl.bin");
58 MODULE_FIRMWARE("nvidia/gp108/acr/ucode_unload.bin");
60 MODULE_FIRMWARE("nvidia/gv100/acr/unload_bl.bin");
61 MODULE_FIRMWARE("nvidia/gv100/acr/ucode_unload.bin");
63 static const struct nvkm_acr_hsf_fwif
64 gp108_acr_unload_fwif
[] = {
65 { 0, nvkm_acr_hsfw_load
, &gp108_acr_unload_0
},
69 static const struct nvkm_acr_hsf_func
71 .load
= gp102_acr_load_load
,
72 .boot
= gm200_acr_load_boot
,
73 .bld
= gp108_acr_hsfw_bld
,
76 MODULE_FIRMWARE("nvidia/gp108/acr/bl.bin");
77 MODULE_FIRMWARE("nvidia/gp108/acr/ucode_load.bin");
79 MODULE_FIRMWARE("nvidia/gv100/acr/bl.bin");
80 MODULE_FIRMWARE("nvidia/gv100/acr/ucode_load.bin");
82 static const struct nvkm_acr_hsf_fwif
83 gp108_acr_load_fwif
[] = {
84 { 0, nvkm_acr_hsfw_load
, &gp108_acr_load_0
},
88 static const struct nvkm_acr_func
90 .load
= gp108_acr_load_fwif
,
91 .unload
= gp108_acr_unload_fwif
,
92 .wpr_parse
= gp102_acr_wpr_parse
,
93 .wpr_layout
= gp102_acr_wpr_layout
,
94 .wpr_alloc
= gp102_acr_wpr_alloc
,
95 .wpr_build
= gp102_acr_wpr_build
,
96 .wpr_patch
= gp102_acr_wpr_patch
,
97 .wpr_check
= gm200_acr_wpr_check
,
98 .init
= gm200_acr_init
,
101 static const struct nvkm_acr_fwif
103 { 0, gp102_acr_load
, &gp108_acr
},
108 gp108_acr_new(struct nvkm_device
*device
, int index
, struct nvkm_acr
**pacr
)
110 return nvkm_acr_new_(gp108_acr_fwif
, device
, index
, pacr
);