#ifndef _ASM_IA64_AGP_H1#define _ASM_IA64_AGP_H23/*4* IA-64 specific AGP definitions.5*6* Copyright (C) 2002-2003 Hewlett-Packard Co7* David Mosberger-Tang <[email protected]>8*/910/*11* To avoid memory-attribute aliasing issues, we require that the AGPGART engine operate12* in coherent mode, which lets us map the AGP memory as normal (write-back) memory13* (unlike x86, where it gets mapped "write-coalescing").14*/15#define map_page_into_agp(page) /* nothing */16#define unmap_page_from_agp(page) /* nothing */17#define flush_agp_cache() mb()1819/* GATT allocation. Returns/accepts GATT kernel virtual address. */20#define alloc_gatt_pages(order) \21((char *)__get_free_pages(GFP_KERNEL, (order)))22#define free_gatt_pages(table, order) \23free_pages((unsigned long)(table), (order))2425#endif /* _ASM_IA64_AGP_H */262728