blob: 1747aa095f41d84c02635184a1957d5e643965ab [file] [log] [blame]
Daniel Vetter0ade6382010-08-24 22:18:41 +02001/* Common header for intel-gtt.ko and i915.ko */
2
3#ifndef _DRM_INTEL_GTT_H
4#define _DRM_INTEL_GTT_H
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00005
Ben Widawskye76e9ae2012-11-04 09:21:27 -08006struct intel_gtt {
Chris Wilsonc64f7ba2010-11-23 14:24:24 +00007 /* Size of memory reserved for graphics by the BIOS */
8 unsigned int stolen_size;
Daniel Vetter0ade6382010-08-24 22:18:41 +02009 /* Total number of gtt entries. */
10 unsigned int gtt_total_entries;
11 /* Part of the gtt that is mappable by the cpu, for those chips where
12 * this is not the full gtt. */
13 unsigned int gtt_mappable_entries;
Daniel Vetter40807752010-11-06 11:18:58 +010014 /* Whether i915 needs to use the dmar apis or not. */
15 unsigned int needs_dmar : 1;
Daniel Vetter50a4c4a2012-02-09 17:15:44 +010016 /* Share the scratch page dma with ppgtts. */
17 dma_addr_t scratch_page_dma;
Ben Widawskye76e9ae2012-11-04 09:21:27 -080018 struct page *scratch_page;
Daniel Vetterdd2757f2012-06-07 15:55:57 +020019 /* needed for ioremap in drm/i915 */
20 phys_addr_t gma_bus_addr;
Chris Wilsonc64f7ba2010-11-23 14:24:24 +000021} *intel_gtt_get(void);
Daniel Vetter19966752010-09-06 20:08:44 +020022
Daniel Vetter14be93d2012-06-08 15:55:40 +020023int intel_gmch_probe(struct pci_dev *bridge_pdev, struct pci_dev *gpu_pdev,
24 struct agp_bridge_data *bridge);
25void intel_gmch_remove(void);
26
Daniel Vetter8ecd1a62012-06-07 15:56:03 +020027bool intel_enable_gtt(void);
28
Daniel Vetter40ce6572010-11-05 18:12:18 +010029void intel_gtt_chipset_flush(void);
Chris Wilson9da3da62012-06-01 15:20:22 +010030void intel_gtt_insert_sg_entries(struct sg_table *st,
Daniel Vetter40807752010-11-06 11:18:58 +010031 unsigned int pg_start,
32 unsigned int flags);
Chris Wilson9da3da62012-06-01 15:20:22 +010033void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries);
Daniel Vetter23ed9922010-11-05 18:04:52 +010034
35/* Special gtt memory types */
36#define AGP_DCACHE_MEMORY 1
37#define AGP_PHYS_MEMORY 2
38
Daniel Vetter23ed9922010-11-05 18:04:52 +010039/* flag for GFDT type */
40#define AGP_USER_CACHED_MEMORY_GFDT (1 << 3)
41
Daniel Vetter650dc072012-04-02 10:08:35 +020042#ifdef CONFIG_INTEL_IOMMU
43extern int intel_iommu_gfx_mapped;
44#endif
45
Daniel Vetter0ade6382010-08-24 22:18:41 +020046#endif