aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2016-11-08 19:37:56 -0500
committerBen Skeggs <bskeggs@redhat.com>2016-11-16 18:50:36 -0500
commit41c7be6913e94d7363329d0f36058b672cdf1bd3 (patch)
treefb1905cc4a81972c4123ce7b2de2940313f7684b
parent2f524aa0b72965b28eb7f648d6faaeb2719c7582 (diff)
drm/nouveau/pmu/gp100: initial implementation
Just enough to hookup preinit reset(), which DEVINIT will depend on later. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r--drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h1
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/engine/device/base.c1
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/subdev/pmu/Kbuild1
-rw-r--r--drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp100.c35
4 files changed, 38 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h b/drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h
index e61923d5e49c..2d798a12b1cf 100644
--- a/drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h
+++ b/drivers/gpu/drm/nouveau/include/nvkm/subdev/pmu.h
@@ -35,6 +35,7 @@ int gk110_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
35int gk208_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **); 35int gk208_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
36int gk20a_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **); 36int gk20a_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
37int gm107_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **); 37int gm107_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
38int gp100_pmu_new(struct nvkm_device *, int, struct nvkm_pmu **);
38 39
39/* interface to MEMX process running on PMU */ 40/* interface to MEMX process running on PMU */
40struct nvkm_memx; 41struct nvkm_memx;
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
index e3a936aa0f81..f751a79f2b25 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
@@ -2167,6 +2167,7 @@ nv130_chipset = {
2167 .mmu = gf100_mmu_new, 2167 .mmu = gf100_mmu_new,
2168 .secboot = gm200_secboot_new, 2168 .secboot = gm200_secboot_new,
2169 .pci = gp100_pci_new, 2169 .pci = gp100_pci_new,
2170 .pmu = gp100_pmu_new,
2170 .timer = gk20a_timer_new, 2171 .timer = gk20a_timer_new,
2171 .top = gk104_top_new, 2172 .top = gk104_top_new,
2172 .ce[0] = gp100_ce_new, 2173 .ce[0] = gp100_ce_new,
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/Kbuild b/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/Kbuild
index 88b643b8664e..2dc520ea467f 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/Kbuild
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/Kbuild
@@ -8,3 +8,4 @@ nvkm-y += nvkm/subdev/pmu/gk110.o
8nvkm-y += nvkm/subdev/pmu/gk208.o 8nvkm-y += nvkm/subdev/pmu/gk208.o
9nvkm-y += nvkm/subdev/pmu/gk20a.o 9nvkm-y += nvkm/subdev/pmu/gk20a.o
10nvkm-y += nvkm/subdev/pmu/gm107.o 10nvkm-y += nvkm/subdev/pmu/gm107.o
11nvkm-y += nvkm/subdev/pmu/gp100.o
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp100.c b/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp100.c
new file mode 100644
index 000000000000..6c41c20c85a7
--- /dev/null
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/gp100.c
@@ -0,0 +1,35 @@
1/*
2 * Copyright 2016 Red Hat Inc.
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 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.
21 *
22 * Authors: Ben Skeggs <bskeggs@redhat.com>
23 */
24#include "priv.h"
25
26static const struct nvkm_pmu_func
27gp100_pmu = {
28 .reset = gt215_pmu_reset,
29};
30
31int
32gp100_pmu_new(struct nvkm_device *device, int index, struct nvkm_pmu **ppmu)
33{
34 return nvkm_pmu_new_(&gp100_pmu, device, index, ppmu);
35}