diff options
-rw-r--r-- | drivers/gpu/drm/nouveau/include/nvkm/subdev/secboot.h | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/subdev/secboot/Kbuild | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/nvkm/subdev/secboot/gp10b.c | 93 |
3 files changed, 95 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/secboot.h b/drivers/gpu/drm/nouveau/include/nvkm/subdev/secboot.h index a2d54d81e338..59f3ba551681 100644 --- a/drivers/gpu/drm/nouveau/include/nvkm/subdev/secboot.h +++ b/drivers/gpu/drm/nouveau/include/nvkm/subdev/secboot.h | |||
@@ -60,5 +60,6 @@ int nvkm_secboot_reset(struct nvkm_secboot *, unsigned long); | |||
60 | int gm200_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); | 60 | int gm200_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); |
61 | int gm20b_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); | 61 | int gm20b_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); |
62 | int gp102_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); | 62 | int gp102_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); |
63 | int gp10b_secboot_new(struct nvkm_device *, int, struct nvkm_secboot **); | ||
63 | 64 | ||
64 | #endif | 65 | #endif |
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/Kbuild b/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/Kbuild index ac7f50ae53c6..e698f4836521 100644 --- a/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/Kbuild +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/Kbuild | |||
@@ -11,3 +11,4 @@ nvkm-y += nvkm/subdev/secboot/acr_r375.o | |||
11 | nvkm-y += nvkm/subdev/secboot/gm200.o | 11 | nvkm-y += nvkm/subdev/secboot/gm200.o |
12 | nvkm-y += nvkm/subdev/secboot/gm20b.o | 12 | nvkm-y += nvkm/subdev/secboot/gm20b.o |
13 | nvkm-y += nvkm/subdev/secboot/gp102.o | 13 | nvkm-y += nvkm/subdev/secboot/gp102.o |
14 | nvkm-y += nvkm/subdev/secboot/gp10b.o | ||
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/gp10b.c b/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/gp10b.c new file mode 100644 index 000000000000..632e9545e292 --- /dev/null +++ b/drivers/gpu/drm/nouveau/nvkm/subdev/secboot/gp10b.c | |||
@@ -0,0 +1,93 @@ | |||
1 | /* | ||
2 | * Copyright (c) 2017, NVIDIA CORPORATION. All rights reserved. | ||
3 | * | ||
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: | ||
10 | * | ||
11 | * The above copyright notice and this permission notice shall be included in | ||
12 | * all copies or substantial portions of the Software. | ||
13 | * | ||
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 AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
18 | * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
19 | * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER | ||
20 | * DEALINGS IN THE SOFTWARE. | ||
21 | */ | ||
22 | |||
23 | #include "acr.h" | ||
24 | #include "gm200.h" | ||
25 | |||
26 | #define TEGRA186_MC_BASE 0x02c10000 | ||
27 | |||
28 | static int | ||
29 | gp10b_secboot_oneinit(struct nvkm_secboot *sb) | ||
30 | { | ||
31 | struct gm200_secboot *gsb = gm200_secboot(sb); | ||
32 | int ret; | ||
33 | |||
34 | ret = gm20b_secboot_tegra_read_wpr(gsb, TEGRA186_MC_BASE); | ||
35 | if (ret) | ||
36 | return ret; | ||
37 | |||
38 | return gm200_secboot_oneinit(sb); | ||
39 | } | ||
40 | |||
41 | static const struct nvkm_secboot_func | ||
42 | gp10b_secboot = { | ||
43 | .dtor = gm200_secboot_dtor, | ||
44 | .oneinit = gp10b_secboot_oneinit, | ||
45 | .fini = gm200_secboot_fini, | ||
46 | .run_blob = gm200_secboot_run_blob, | ||
47 | }; | ||
48 | |||
49 | int | ||
50 | gp10b_secboot_new(struct nvkm_device *device, int index, | ||
51 | struct nvkm_secboot **psb) | ||
52 | { | ||
53 | int ret; | ||
54 | struct gm200_secboot *gsb; | ||
55 | struct nvkm_acr *acr; | ||
56 | |||
57 | acr = acr_r352_new(BIT(NVKM_SECBOOT_FALCON_FECS) | | ||
58 | BIT(NVKM_SECBOOT_FALCON_GPCCS) | | ||
59 | BIT(NVKM_SECBOOT_FALCON_PMU)); | ||
60 | if (IS_ERR(acr)) | ||
61 | return PTR_ERR(acr); | ||
62 | |||
63 | gsb = kzalloc(sizeof(*gsb), GFP_KERNEL); | ||
64 | if (!gsb) { | ||
65 | psb = NULL; | ||
66 | return -ENOMEM; | ||
67 | } | ||
68 | *psb = &gsb->base; | ||
69 | |||
70 | ret = nvkm_secboot_ctor(&gp10b_secboot, acr, device, index, &gsb->base); | ||
71 | if (ret) | ||
72 | return ret; | ||
73 | |||
74 | return 0; | ||
75 | } | ||
76 | |||
77 | MODULE_FIRMWARE("nvidia/gp10b/acr/bl.bin"); | ||
78 | MODULE_FIRMWARE("nvidia/gp10b/acr/ucode_load.bin"); | ||
79 | MODULE_FIRMWARE("nvidia/gp10b/gr/fecs_bl.bin"); | ||
80 | MODULE_FIRMWARE("nvidia/gp10b/gr/fecs_inst.bin"); | ||
81 | MODULE_FIRMWARE("nvidia/gp10b/gr/fecs_data.bin"); | ||
82 | MODULE_FIRMWARE("nvidia/gp10b/gr/fecs_sig.bin"); | ||
83 | MODULE_FIRMWARE("nvidia/gp10b/gr/gpccs_bl.bin"); | ||
84 | MODULE_FIRMWARE("nvidia/gp10b/gr/gpccs_inst.bin"); | ||
85 | MODULE_FIRMWARE("nvidia/gp10b/gr/gpccs_data.bin"); | ||
86 | MODULE_FIRMWARE("nvidia/gp10b/gr/gpccs_sig.bin"); | ||
87 | MODULE_FIRMWARE("nvidia/gp10b/gr/sw_ctx.bin"); | ||
88 | MODULE_FIRMWARE("nvidia/gp10b/gr/sw_nonctx.bin"); | ||
89 | MODULE_FIRMWARE("nvidia/gp10b/gr/sw_bundle_init.bin"); | ||
90 | MODULE_FIRMWARE("nvidia/gp10b/gr/sw_method_init.bin"); | ||
91 | MODULE_FIRMWARE("nvidia/gp10b/pmu/desc.bin"); | ||
92 | MODULE_FIRMWARE("nvidia/gp10b/pmu/image.bin"); | ||
93 | MODULE_FIRMWARE("nvidia/gp10b/pmu/sig.bin"); | ||