2010-08-25 00:18:41 +04:00
|
|
|
/* Common header for intel-gtt.ko and i915.ko */
|
|
|
|
|
|
|
|
#ifndef _DRM_INTEL_GTT_H
|
|
|
|
#define _DRM_INTEL_GTT_H
|
2010-11-23 17:24:24 +03:00
|
|
|
|
2012-11-04 21:21:27 +04:00
|
|
|
struct intel_gtt {
|
2010-11-23 17:24:24 +03:00
|
|
|
/* Size of memory reserved for graphics by the BIOS */
|
|
|
|
unsigned int stolen_size;
|
2010-08-25 00:18:41 +04: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-06 13:18:58 +03:00
|
|
|
/* Whether i915 needs to use the dmar apis or not. */
|
|
|
|
unsigned int needs_dmar : 1;
|
2011-10-18 02:51:55 +04:00
|
|
|
/* Whether we idle the gpu before mapping/unmapping */
|
|
|
|
unsigned int do_idle_maps : 1;
|
2012-02-09 20:15:44 +04:00
|
|
|
/* Share the scratch page dma with ppgtts. */
|
|
|
|
dma_addr_t scratch_page_dma;
|
2012-11-04 21:21:27 +04:00
|
|
|
struct page *scratch_page;
|
2012-02-09 20:15:45 +04:00
|
|
|
/* for ppgtt PDE access */
|
|
|
|
u32 __iomem *gtt;
|
2012-06-07 17:55:57 +04:00
|
|
|
/* needed for ioremap in drm/i915 */
|
|
|
|
phys_addr_t gma_bus_addr;
|
2010-11-23 17:24:24 +03:00
|
|
|
} *intel_gtt_get(void);
|
2010-09-06 22:08:44 +04:00
|
|
|
|
2012-06-08 17:55:40 +04:00
|
|
|
int intel_gmch_probe(struct pci_dev *bridge_pdev, struct pci_dev *gpu_pdev,
|
|
|
|
struct agp_bridge_data *bridge);
|
|
|
|
void intel_gmch_remove(void);
|
|
|
|
|
2012-06-07 17:56:03 +04:00
|
|
|
bool intel_enable_gtt(void);
|
|
|
|
|
2010-11-05 20:12:18 +03:00
|
|
|
void intel_gtt_chipset_flush(void);
|
2012-06-01 18:20:22 +04:00
|
|
|
void intel_gtt_insert_sg_entries(struct sg_table *st,
|
2010-11-06 13:18:58 +03:00
|
|
|
unsigned int pg_start,
|
|
|
|
unsigned int flags);
|
2012-06-01 18:20:22 +04:00
|
|
|
void intel_gtt_clear_range(unsigned int first_entry, unsigned int num_entries);
|
2010-11-05 20:04:52 +03:00
|
|
|
|
|
|
|
/* Special gtt memory types */
|
|
|
|
#define AGP_DCACHE_MEMORY 1
|
|
|
|
#define AGP_PHYS_MEMORY 2
|
|
|
|
|
|
|
|
/* flag for GFDT type */
|
|
|
|
#define AGP_USER_CACHED_MEMORY_GFDT (1 << 3)
|
|
|
|
|
2012-04-02 12:08:35 +04:00
|
|
|
#ifdef CONFIG_INTEL_IOMMU
|
|
|
|
extern int intel_iommu_gfx_mapped;
|
|
|
|
#endif
|
|
|
|
|
2010-08-25 00:18:41 +04:00
|
|
|
#endif
|