]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/drm/intel-gtt.h
drm/i915: drop prealloc_start from i915_dma gtt init
[mirror_ubuntu-bionic-kernel.git] / include / drm / intel-gtt.h
CommitLineData
0ade6386
DV
1/* Common header for intel-gtt.ko and i915.ko */
2
3#ifndef _DRM_INTEL_GTT_H
4#define _DRM_INTEL_GTT_H
5extern int intel_max_stolen; /* from AGP driver */
6
7struct intel_gtt {
8 /* Number of stolen gtt entries at the beginning. */
9 unsigned int gtt_stolen_entries;
10 /* Total number of gtt entries. */
11 unsigned int gtt_total_entries;
12 /* Part of the gtt that is mappable by the cpu, for those chips where
13 * this is not the full gtt. */
14 unsigned int gtt_mappable_entries;
15};
16
17#endif
18