swh:1:snp:32555a3fd8878f019c2ebd6c964bc1edcaeff337
Raw File
Tip revision: 3c0eee3fe6a3a1c745379547c7e7c904aa64f6d5 authored by Linus Torvalds on 05 January 2011, 00:50:19 UTC
Linux 2.6.37
Tip revision: 3c0eee3
intel-gtt.h
/* Common header for intel-gtt.ko and i915.ko */

#ifndef _DRM_INTEL_GTT_H
#define	_DRM_INTEL_GTT_H
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

back to top