~ubuntu-branches/ubuntu/quantal/linux-lowlatency/quantal-proposed

« back to all changes in this revision

Viewing changes to include/drm/intel-gtt.h

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft, Andy Whitcroft
  • Date: 2012-06-21 09:16:38 UTC
  • Revision ID: package-import@ubuntu.com-20120621091638-gubhv4nox8xez1ct
Tags: 3.5.0-1.1
[ Andy Whitcroft]

* Rebuild lowlatency against Ubuntu-3.5.0-1.1
* All new configuration system to allow configuration deltas to be
  exposed via debian.lowlatency/config-delta

Show diffs side-by-side

added added

removed removed

Lines of Context:
15
15
        unsigned int needs_dmar : 1;
16
16
        /* Whether we idle the gpu before mapping/unmapping */
17
17
        unsigned int do_idle_maps : 1;
 
18
        /* Share the scratch page dma with ppgtts. */
 
19
        dma_addr_t scratch_page_dma;
 
20
        /* for ppgtt PDE access */
 
21
        u32 __iomem *gtt;
18
22
} *intel_gtt_get(void);
19
23
 
20
24
void intel_gtt_chipset_flush(void);
40
44
/* flag for GFDT type */
41
45
#define AGP_USER_CACHED_MEMORY_GFDT (1 << 3)
42
46
 
 
47
#ifdef CONFIG_INTEL_IOMMU
 
48
extern int intel_iommu_gfx_mapped;
 
49
#endif
 
50
 
43
51
#endif