[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1291677875-30493-4-git-send-email-konrad.wilk@oracle.com>
Date: Mon, 6 Dec 2010 18:24:15 -0500
From: Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>
To: airlied@...ux.ie, tglx@...utronix.de, hpa@...or.com,
airlied@...hat.com, linux-kernel@...r.kernel.org, konrad@...nel.org
Cc: Jeremy Fitzhardinge <jeremy@...p.org>,
Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>
Subject: [PATCH 03/23] agp: Introduce two new macros: _agp_[alloc|free]_page.
This macro will be used in the agp_generic_[alloc|destroy]_page[s|]
functions. Currently it does exactly what it replaces and also
saves the DMA address in dma_addr[] using the page_to_phys() macro.
These two macros can be at any time replaced with an implementation that
can utilize the PCI API.
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@...cle.com>
---
arch/alpha/include/asm/agp.h | 14 ++++++++++++++
arch/ia64/include/asm/agp.h | 15 +++++++++++++++
arch/parisc/include/asm/agp.h | 15 +++++++++++++++
arch/powerpc/include/asm/agp.h | 15 +++++++++++++++
arch/sparc/include/asm/agp.h | 14 ++++++++++++++
arch/x86/include/asm/agp.h | 14 ++++++++++++++
6 files changed, 87 insertions(+), 0 deletions(-)
diff --git a/arch/alpha/include/asm/agp.h b/arch/alpha/include/asm/agp.h
index 0ee274c..41547e3 100644
--- a/arch/alpha/include/asm/agp.h
+++ b/arch/alpha/include/asm/agp.h
@@ -15,4 +15,18 @@
#define free_gatt_pages(bridge, order) \
free_pages((unsigned long)(bridge->gatt_table_real), (order))
+/* pages allocation. */
+#define _agp_alloc_page(bridge, dma_addr) \
+ ({ \
+ struct page *_page = NULL; \
+ _page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); \
+ if (_page) \
+ *dma_addr = page_to_phys(_page); \
+ _page; \
+ })
+#define _agp_free_page(bridge, page, dma_addr) \
+ ({ \
+ __free_page(page); \
+ *dma_addr = DMA_ERROR_CODE; \
+ })
#endif
diff --git a/arch/ia64/include/asm/agp.h b/arch/ia64/include/asm/agp.h
index 4e12b72..9107e97 100644
--- a/arch/ia64/include/asm/agp.h
+++ b/arch/ia64/include/asm/agp.h
@@ -23,4 +23,19 @@
#define free_gatt_pages(bridge, order) \
free_pages((unsigned long)(bridge->gatt_table_real), (order))
+/* pages allocation. */
+#define _agp_alloc_page(bridge, dma_addr) \
+ ({ \
+ struct page *_page = NULL; \
+ _page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); \
+ if (_page) \
+ *dma_addr = page_to_phys(_page); \
+ _page; \
+ })
+#define _agp_free_page(bridge, page, dma_addr) \
+ ({ \
+ __free_page(page); \
+ *dma_addr = DMA_ERROR_CODE; \
+ })
+
#endif /* _ASM_IA64_AGP_H */
diff --git a/arch/parisc/include/asm/agp.h b/arch/parisc/include/asm/agp.h
index 6e8fd98..1de4174 100644
--- a/arch/parisc/include/asm/agp.h
+++ b/arch/parisc/include/asm/agp.h
@@ -17,4 +17,19 @@
#define free_gatt_pages(bridge, order) \
free_pages((unsigned long)(bridge->gatt_table_real), (order))
+/* pages allocation. */
+#define _agp_alloc_page(bridge, dma_addr) \
+ ({ \
+ struct page *_page = NULL; \
+ _page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); \
+ if (_page) \
+ *dma_addr = page_to_phys(_page); \
+ _page; \
+ })
+#define _agp_free_page(bridge, page, dma_addr) \
+ ({ \
+ __free_page(page); \
+ *dma_addr = DMA_ERROR_CODE; \
+ })
+
#endif /* _ASM_PARISC_AGP_H */
diff --git a/arch/powerpc/include/asm/agp.h b/arch/powerpc/include/asm/agp.h
index 0996a43..cdfa8e7 100644
--- a/arch/powerpc/include/asm/agp.h
+++ b/arch/powerpc/include/asm/agp.h
@@ -14,5 +14,20 @@
#define free_gatt_pages(bridge, order) \
free_pages((unsigned long)(bridge->gatt_table_real), (order))
+/* pages allocation. */
+#define _agp_alloc_page(bridge, dma_addr) \
+ ({ \
+ struct page *_page = NULL; \
+ _page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); \
+ if (_page) \
+ *dma_addr = page_to_phys(_page); \
+ _page; \
+ })
+#define _agp_free_page(bridge, page, dma_addr) \
+ ({ \
+ __free_page(page); \
+ *dma_addr = DMA_ERROR_CODE; \
+ })
+
#endif /* __KERNEL__ */
#endif /* _ASM_POWERPC_AGP_H */
diff --git a/arch/sparc/include/asm/agp.h b/arch/sparc/include/asm/agp.h
index 2a83241..b0cd187 100644
--- a/arch/sparc/include/asm/agp.h
+++ b/arch/sparc/include/asm/agp.h
@@ -13,4 +13,18 @@
#define free_gatt_pages(bridge, order) \
free_pages((unsigned long)(bridge->gatt_table_real), (order))
+/* pages allocation. */
+#define _agp_alloc_page(bridge, dma_addr) \
+ ({ \
+ struct page *_page = NULL; \
+ _page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); \
+ if (_page) \
+ *dma_addr = page_to_phys(_page); \
+ _page; \
+ })
+#define _agp_free_page(bridge, page, dma_addr) \
+ ({ \
+ __free_page(page); \
+ *dma_addr = DMA_ERROR_CODE; \
+ })
#endif
diff --git a/arch/x86/include/asm/agp.h b/arch/x86/include/asm/agp.h
index cbc996d..72e7179 100644
--- a/arch/x86/include/asm/agp.h
+++ b/arch/x86/include/asm/agp.h
@@ -28,4 +28,18 @@
#define free_gatt_pages(bridge, order) \
free_pages((unsigned long)(bridge->gatt_table_real), (order))
+/* pages allocation. */
+#define _agp_alloc_page(bridge, dma_addr) \
+ ({ \
+ struct page *_page = NULL; \
+ _page = alloc_page(GFP_KERNEL | GFP_DMA32 | __GFP_ZERO); \
+ if (_page) \
+ *dma_addr = page_to_phys(_page); \
+ _page; \
+ })
+#define _agp_free_page(bridge, page, dma_addr) \
+ ({ \
+ __free_page(page); \
+ *dma_addr = DMA_ERROR_CODE; \
+ })
#endif /* _ASM_X86_AGP_H */
--
1.7.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists