aboutsummaryrefslogtreecommitdiff
path: root/hw/iommu.c
diff options
context:
space:
mode:
authorblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-01 14:51:25 +0000
committerblueswir1 <blueswir1@c046a42c-6fe2-441c-8c8c-71466251a162>2007-12-01 14:51:25 +0000
commit498fbd8aadbe6ba330f939ae9576e53579361dcf (patch)
tree55de043c64f55c1974b8e0b57dad670bfeec22b3 /hw/iommu.c
parentc52428fcb1b3381f6ef3c64a26dfd55c5c874da6 (diff)
Allow IOMMU tables above 2G
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3753 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/iommu.c')
-rw-r--r--hw/iommu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/iommu.c b/hw/iommu.c
index 784a780c8f..271c4d473d 100644
--- a/hw/iommu.c
+++ b/hw/iommu.c
@@ -96,7 +96,7 @@ do { printf("IOMMU: " fmt , ##args); } while (0)
#define IOMMU_MID 0x00000008
/* The format of an iopte in the page tables */
-#define IOPTE_PAGE 0x07ffff00 /* Physical page number (PA[30:12]) */
+#define IOPTE_PAGE 0xffffff00 /* Physical page number (PA[35:12]) */
#define IOPTE_CACHE 0x00000080 /* Cached (in vme IOCACHE or
Viking/MXCC) */
#define IOPTE_WRITE 0x00000004 /* Writeable */