2010-08-25 04:18:41 +08:00
|
|
|
/* Common header for intel-gtt.ko and i915.ko */
|
|
|
|
|
|
|
|
#ifndef _DRM_INTEL_GTT_H
|
|
|
|
#define _DRM_INTEL_GTT_H
|
2010-11-23 22:24:24 +08:00
|
|
|
|
|
|
|
const struct intel_gtt {
|
|
|
|
/* Size of memory reserved for graphics by the BIOS */
|
|
|
|
unsigned int stolen_size;
|
2010-08-25 04:18:41 +08:00
|
|
|
/* 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;
|
2010-11-23 22:24:24 +08:00
|
|
|
} *intel_gtt_get(void);
|
2010-09-07 02:08:44 +08:00
|
|
|
|
2010-08-25 04:18:41 +08:00
|
|
|
#endif
|
|
|
|
|