aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/gpu/drm/nouveau/nouveau_drv.h
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2011-08-11 00:58:06 -0400
committerBen Skeggs <bskeggs@redhat.com>2011-12-21 04:01:10 -0500
commit8f27c54342dffbfbafbddd6e43f011e6cb16d285 (patch)
treecc8e98935b7d9f070585defb128800edc5f5d51a /drivers/gpu/drm/nouveau/nouveau_drv.h
parent771e1035b9bfdb0c3f0e34bd281d73b721a10adb (diff)
drm/nouveau/vdec: implement stub modules for the known engines
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'drivers/gpu/drm/nouveau/nouveau_drv.h')
-rw-r--r--drivers/gpu/drm/nouveau/nouveau_drv.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/gpu/drm/nouveau/nouveau_drv.h b/drivers/gpu/drm/nouveau/nouveau_drv.h
index 999bcb6a20b8..2c8ebf6248a0 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drv.h
+++ b/drivers/gpu/drm/nouveau/nouveau_drv.h
@@ -163,6 +163,9 @@ enum nouveau_flags {
163#define NVOBJ_ENGINE_COPY0 3 163#define NVOBJ_ENGINE_COPY0 3
164#define NVOBJ_ENGINE_COPY1 4 164#define NVOBJ_ENGINE_COPY1 4
165#define NVOBJ_ENGINE_MPEG 5 165#define NVOBJ_ENGINE_MPEG 5
166#define NVOBJ_ENGINE_PPP NVOBJ_ENGINE_MPEG
167#define NVOBJ_ENGINE_BSP 6
168#define NVOBJ_ENGINE_VP 7
166#define NVOBJ_ENGINE_DISPLAY 15 169#define NVOBJ_ENGINE_DISPLAY 15
167#define NVOBJ_ENGINE_NR 16 170#define NVOBJ_ENGINE_NR 16
168 171
@@ -1226,6 +1229,9 @@ extern int nvc0_graph_isr_chid(struct drm_device *dev, u64 inst);
1226/* nv84_crypt.c */ 1229/* nv84_crypt.c */
1227extern int nv84_crypt_create(struct drm_device *); 1230extern int nv84_crypt_create(struct drm_device *);
1228 1231
1232/* nv98_crypt.c */
1233extern int nv98_crypt_create(struct drm_device *dev);
1234
1229/* nva3_copy.c */ 1235/* nva3_copy.c */
1230extern int nva3_copy_create(struct drm_device *dev); 1236extern int nva3_copy_create(struct drm_device *dev);
1231 1237
@@ -1238,6 +1244,17 @@ extern int nv31_mpeg_create(struct drm_device *dev);
1238/* nv50_mpeg.c */ 1244/* nv50_mpeg.c */
1239extern int nv50_mpeg_create(struct drm_device *dev); 1245extern int nv50_mpeg_create(struct drm_device *dev);
1240 1246
1247/* nv84_bsp.c */
1248/* nv98_bsp.c */
1249extern int nv84_bsp_create(struct drm_device *dev);
1250
1251/* nv84_vp.c */
1252/* nv98_vp.c */
1253extern int nv84_vp_create(struct drm_device *dev);
1254
1255/* nv98_ppp.c */
1256extern int nv98_ppp_create(struct drm_device *dev);
1257
1241/* nv04_instmem.c */ 1258/* nv04_instmem.c */
1242extern int nv04_instmem_init(struct drm_device *); 1259extern int nv04_instmem_init(struct drm_device *);
1243extern void nv04_instmem_takedown(struct drm_device *); 1260extern void nv04_instmem_takedown(struct drm_device *);