-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 307556 b: refs/heads/master c: c420b2d h: refs/heads/master v: v3
- Loading branch information
Ben Skeggs
committed
May 24, 2012
1 parent
e154238
commit 243d391
Showing
31 changed files
with
1,375 additions
and
1,387 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a226c32a386bca0426e500954b79e3fd46afc0d9 | ||
refs/heads/master: c420b2dc8dc3cdd507214f4df5c5f96f08812cbe |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
#ifndef __NOUVEAU_FIFO_H__ | ||
#define __NOUVEAU_FIFO_H__ | ||
|
||
struct nouveau_fifo_priv { | ||
struct nouveau_exec_engine base; | ||
u32 channels; | ||
}; | ||
|
||
struct nouveau_fifo_chan { | ||
}; | ||
|
||
bool nv04_fifo_cache_pull(struct drm_device *, bool); | ||
void nv04_fifo_context_del(struct nouveau_channel *, int); | ||
int nv04_fifo_fini(struct drm_device *, int, bool); | ||
int nv04_fifo_init(struct drm_device *, int); | ||
void nv04_fifo_isr(struct drm_device *); | ||
void nv04_fifo_destroy(struct drm_device *, int); | ||
|
||
void nv50_fifo_playlist_update(struct drm_device *); | ||
void nv50_fifo_destroy(struct drm_device *, int); | ||
void nv50_fifo_tlb_flush(struct drm_device *, int); | ||
|
||
int nv04_fifo_create(struct drm_device *); | ||
int nv10_fifo_create(struct drm_device *); | ||
int nv17_fifo_create(struct drm_device *); | ||
int nv40_fifo_create(struct drm_device *); | ||
int nv50_fifo_create(struct drm_device *); | ||
int nv84_fifo_create(struct drm_device *); | ||
int nvc0_fifo_create(struct drm_device *); | ||
int nve0_fifo_create(struct drm_device *); | ||
|
||
#endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.