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