diff options
author | Ben Skeggs <bskeggs@redhat.com> | 2012-10-31 21:09:53 -0400 |
---|---|---|
committer | Ben Skeggs <bskeggs@redhat.com> | 2012-11-28 18:57:43 -0500 |
commit | 206c38a9f1905d3054778f26289591376829d5ad (patch) | |
tree | 0d91fa663cb1c53494a8c33b318f675c363e5e14 | |
parent | b6caea505879c4a606cf364442fd1f06f6c40e30 (diff) |
drm/nouveau/core: add some missing subdev/engine disable flags
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
-rw-r--r-- | drivers/gpu/drm/nouveau/core/include/core/class.h | 1 | ||||
-rw-r--r-- | drivers/gpu/drm/nouveau/core/subdev/device/base.c | 13 |
2 files changed, 10 insertions, 4 deletions
diff --git a/drivers/gpu/drm/nouveau/core/include/core/class.h b/drivers/gpu/drm/nouveau/core/include/core/class.h index d604579edd3b..784e47aff640 100644 --- a/drivers/gpu/drm/nouveau/core/include/core/class.h +++ b/drivers/gpu/drm/nouveau/core/include/core/class.h | |||
@@ -23,6 +23,7 @@ | |||
23 | #define NV_DEVICE_DISABLE_COPY0 0x0000008000000000ULL | 23 | #define NV_DEVICE_DISABLE_COPY0 0x0000008000000000ULL |
24 | #define NV_DEVICE_DISABLE_COPY1 0x0000010000000000ULL | 24 | #define NV_DEVICE_DISABLE_COPY1 0x0000010000000000ULL |
25 | #define NV_DEVICE_DISABLE_UNK1C1 0x0000020000000000ULL | 25 | #define NV_DEVICE_DISABLE_UNK1C1 0x0000020000000000ULL |
26 | #define NV_DEVICE_DISABLE_VENC 0x0000040000000000ULL | ||
26 | 27 | ||
27 | struct nv_device_class { | 28 | struct nv_device_class { |
28 | u64 device; /* device identifier, ~0 for client default */ | 29 | u64 device; /* device identifier, ~0 for client default */ |
diff --git a/drivers/gpu/drm/nouveau/core/subdev/device/base.c b/drivers/gpu/drm/nouveau/core/subdev/device/base.c index 3a07020bf087..4778501efa38 100644 --- a/drivers/gpu/drm/nouveau/core/subdev/device/base.c +++ b/drivers/gpu/drm/nouveau/core/subdev/device/base.c | |||
@@ -61,19 +61,24 @@ struct nouveau_devobj { | |||
61 | 61 | ||
62 | static const u64 disable_map[] = { | 62 | static const u64 disable_map[] = { |
63 | [NVDEV_SUBDEV_VBIOS] = NV_DEVICE_DISABLE_VBIOS, | 63 | [NVDEV_SUBDEV_VBIOS] = NV_DEVICE_DISABLE_VBIOS, |
64 | [NVDEV_SUBDEV_DEVINIT] = NV_DEVICE_DISABLE_CORE, | ||
64 | [NVDEV_SUBDEV_GPIO] = NV_DEVICE_DISABLE_CORE, | 65 | [NVDEV_SUBDEV_GPIO] = NV_DEVICE_DISABLE_CORE, |
65 | [NVDEV_SUBDEV_I2C] = NV_DEVICE_DISABLE_CORE, | 66 | [NVDEV_SUBDEV_I2C] = NV_DEVICE_DISABLE_CORE, |
66 | [NVDEV_SUBDEV_DEVINIT] = NV_DEVICE_DISABLE_CORE, | 67 | [NVDEV_SUBDEV_CLOCK] = NV_DEVICE_DISABLE_CORE, |
68 | [NVDEV_SUBDEV_MXM] = NV_DEVICE_DISABLE_CORE, | ||
67 | [NVDEV_SUBDEV_MC] = NV_DEVICE_DISABLE_CORE, | 69 | [NVDEV_SUBDEV_MC] = NV_DEVICE_DISABLE_CORE, |
68 | [NVDEV_SUBDEV_TIMER] = NV_DEVICE_DISABLE_CORE, | 70 | [NVDEV_SUBDEV_TIMER] = NV_DEVICE_DISABLE_CORE, |
69 | [NVDEV_SUBDEV_FB] = NV_DEVICE_DISABLE_CORE, | 71 | [NVDEV_SUBDEV_FB] = NV_DEVICE_DISABLE_CORE, |
70 | [NVDEV_SUBDEV_VM] = NV_DEVICE_DISABLE_CORE, | 72 | [NVDEV_SUBDEV_LTCG] = NV_DEVICE_DISABLE_CORE, |
73 | [NVDEV_SUBDEV_IBUS] = NV_DEVICE_DISABLE_CORE, | ||
71 | [NVDEV_SUBDEV_INSTMEM] = NV_DEVICE_DISABLE_CORE, | 74 | [NVDEV_SUBDEV_INSTMEM] = NV_DEVICE_DISABLE_CORE, |
75 | [NVDEV_SUBDEV_VM] = NV_DEVICE_DISABLE_CORE, | ||
72 | [NVDEV_SUBDEV_BAR] = NV_DEVICE_DISABLE_CORE, | 76 | [NVDEV_SUBDEV_BAR] = NV_DEVICE_DISABLE_CORE, |
73 | [NVDEV_SUBDEV_VOLT] = NV_DEVICE_DISABLE_CORE, | 77 | [NVDEV_SUBDEV_VOLT] = NV_DEVICE_DISABLE_CORE, |
74 | [NVDEV_SUBDEV_CLOCK] = NV_DEVICE_DISABLE_CORE, | ||
75 | [NVDEV_SUBDEV_THERM] = NV_DEVICE_DISABLE_CORE, | 78 | [NVDEV_SUBDEV_THERM] = NV_DEVICE_DISABLE_CORE, |
76 | [NVDEV_ENGINE_DMAOBJ] = NV_DEVICE_DISABLE_CORE, | 79 | [NVDEV_ENGINE_DMAOBJ] = NV_DEVICE_DISABLE_CORE, |
80 | [NVDEV_ENGINE_FIFO] = NV_DEVICE_DISABLE_FIFO, | ||
81 | [NVDEV_ENGINE_SW] = NV_DEVICE_DISABLE_FIFO, | ||
77 | [NVDEV_ENGINE_GR] = NV_DEVICE_DISABLE_GRAPH, | 82 | [NVDEV_ENGINE_GR] = NV_DEVICE_DISABLE_GRAPH, |
78 | [NVDEV_ENGINE_MPEG] = NV_DEVICE_DISABLE_MPEG, | 83 | [NVDEV_ENGINE_MPEG] = NV_DEVICE_DISABLE_MPEG, |
79 | [NVDEV_ENGINE_ME] = NV_DEVICE_DISABLE_ME, | 84 | [NVDEV_ENGINE_ME] = NV_DEVICE_DISABLE_ME, |
@@ -84,7 +89,7 @@ static const u64 disable_map[] = { | |||
84 | [NVDEV_ENGINE_COPY0] = NV_DEVICE_DISABLE_COPY0, | 89 | [NVDEV_ENGINE_COPY0] = NV_DEVICE_DISABLE_COPY0, |
85 | [NVDEV_ENGINE_COPY1] = NV_DEVICE_DISABLE_COPY1, | 90 | [NVDEV_ENGINE_COPY1] = NV_DEVICE_DISABLE_COPY1, |
86 | [NVDEV_ENGINE_UNK1C1] = NV_DEVICE_DISABLE_UNK1C1, | 91 | [NVDEV_ENGINE_UNK1C1] = NV_DEVICE_DISABLE_UNK1C1, |
87 | [NVDEV_ENGINE_FIFO] = NV_DEVICE_DISABLE_FIFO, | 92 | [NVDEV_ENGINE_VENC] = NV_DEVICE_DISABLE_VENC, |
88 | [NVDEV_ENGINE_DISP] = NV_DEVICE_DISABLE_DISP, | 93 | [NVDEV_ENGINE_DISP] = NV_DEVICE_DISABLE_DISP, |
89 | [NVDEV_SUBDEV_NR] = 0, | 94 | [NVDEV_SUBDEV_NR] = 0, |
90 | }; | 95 | }; |