]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - include/asm-sparc64/agp.h
Merge branch 'core/printk' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux...
[karo-tx-linux.git] / include / asm-sparc64 / agp.h
index ba05bdf9a211db17909d773b559738167ea826b5..e9fcf0e781ea11cd1644dc9dc3e96aa6519fa0e6 100644 (file)
@@ -5,7 +5,16 @@
 
 #define map_page_into_agp(page) 
 #define unmap_page_from_agp(page) 
-#define flush_agp_mappings() 
 #define flush_agp_cache() mb()
 
+/* Convert a physical address to an address suitable for the GART. */
+#define phys_to_gart(x) (x)
+#define gart_to_phys(x) (x)
+
+/* GATT allocation. Returns/accepts GATT kernel virtual address. */
+#define alloc_gatt_pages(order)                \
+       ((char *)__get_free_pages(GFP_KERNEL, (order)))
+#define free_gatt_pages(table, order)  \
+       free_pages((unsigned long)(table), (order))
+
 #endif