-
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: 217951 b: refs/heads/master c: 0ade638 h: refs/heads/master i: 217949: 7106f3c 217947: 1cd0b61 217943: 02a8047 217935: 32c5c45 217919: 699dbe4 v: v3
- Loading branch information
Daniel Vetter
authored and
Chris Wilson
committed
Sep 8, 2010
1 parent
6ca3f84
commit a36bc49
Showing
5 changed files
with
39 additions
and
26 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: e2404e7c3fe6f46e161edf085c6d9bea06ebe488 | ||
refs/heads/master: 0ade638655f0ef4d807295c14a4c97544bd6b9ca |
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,18 @@ | ||
/* Common header for intel-gtt.ko and i915.ko */ | ||
|
||
#ifndef _DRM_INTEL_GTT_H | ||
#define _DRM_INTEL_GTT_H | ||
extern int intel_max_stolen; /* from AGP driver */ | ||
|
||
struct intel_gtt { | ||
/* Number of stolen gtt entries at the beginning. */ | ||
unsigned int gtt_stolen_entries; | ||
/* Total number of gtt entries. */ | ||
unsigned int gtt_total_entries; | ||
/* Part of the gtt that is mappable by the cpu, for those chips where | ||
* this is not the full gtt. */ | ||
unsigned int gtt_mappable_entries; | ||
}; | ||
|
||
#endif | ||
|