Commit 498fbd8aadbe6ba330f939ae9576e53579361dcf
1 parent
c52428fc
Allow IOMMU tables above 2G
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3753 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/iommu.c
... | ... | @@ -96,7 +96,7 @@ do { printf("IOMMU: " fmt , ##args); } while (0) |
96 | 96 | #define IOMMU_MID 0x00000008 |
97 | 97 | |
98 | 98 | /* The format of an iopte in the page tables */ |
99 | -#define IOPTE_PAGE 0x07ffff00 /* Physical page number (PA[30:12]) */ | |
99 | +#define IOPTE_PAGE 0xffffff00 /* Physical page number (PA[35:12]) */ | |
100 | 100 | #define IOPTE_CACHE 0x00000080 /* Cached (in vme IOCACHE or |
101 | 101 | Viking/MXCC) */ |
102 | 102 | #define IOPTE_WRITE 0x00000004 /* Writeable */ | ... | ... |