summaryrefslogtreecommitdiffstats
path: root/include/asm-ppc64/tce.h
diff options
context:
space:
mode:
authorOlof Johansson2005-09-20 05:46:44 +0200
committerPaul Mackerras2005-09-21 11:21:07 +0200
commitd0035c62d9145a2ce3057c8182a7ff0b4921a41c (patch)
tree0a55703d5e71668f61439649f4963daba55401c3 /include/asm-ppc64/tce.h
parent[PATCH] ppc64: Updated Olof iommu updates 1/3 (diff)
downloadkernel-qcow2-linux-d0035c62d9145a2ce3057c8182a7ff0b4921a41c.tar.gz
kernel-qcow2-linux-d0035c62d9145a2ce3057c8182a7ff0b4921a41c.tar.xz
kernel-qcow2-linux-d0035c62d9145a2ce3057c8182a7ff0b4921a41c.zip
[PATCH] ppc64: Updated Olof iommu updates 2/3
There are potential cases in the future where the IOMMU might be mapping smaller pages than the regular MMU is using. Keep the allocator working on MMU pagesizes, but the low-level mapping functions need to map more than one TCE entry per page to deal with this. Signed-off-by: Olof Johansson <olof@lixom.net> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-ppc64/tce.h')
-rw-r--r--include/asm-ppc64/tce.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/include/asm-ppc64/tce.h b/include/asm-ppc64/tce.h
index 636504c62c88..d40b6b42ab35 100644
--- a/include/asm-ppc64/tce.h
+++ b/include/asm-ppc64/tce.h
@@ -28,6 +28,13 @@
#define TCE_VB 0
#define TCE_PCI 1
+/* TCE page size is 4096 bytes (1 << 12) */
+
+#define TCE_SHIFT 12
+#define TCE_PAGE_SIZE (1 << TCE_SHIFT)
+#define TCE_PAGE_FACTOR (PAGE_SHIFT - TCE_SHIFT)
+
+
/* tce_entry
* Used by pSeries (SMP) and iSeries/pSeries LPAR, but there it's
* abstracted so layout is irrelevant.