summaryrefslogtreecommitdiffstats
path: root/include/drm/intel-gtt.h
blob: b3aa7ab72d0910b7540e23b6d437788506f3948f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* 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;
};

struct intel_gtt *intel_gtt_get(void);

#endif