diff options
Diffstat (limited to 'arch/powerpc/include/asm/mmu-book3e.h')
| -rw-r--r-- | arch/powerpc/include/asm/mmu-book3e.h | 4 | 
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/mmu-book3e.h b/arch/powerpc/include/asm/mmu-book3e.h index 74695816205..87a1d787c5b 100644 --- a/arch/powerpc/include/asm/mmu-book3e.h +++ b/arch/powerpc/include/asm/mmu-book3e.h @@ -193,6 +193,10 @@ struct mmu_psize_def  {  	unsigned int	shift;	/* number of bits */  	unsigned int	enc;	/* PTE encoding */ +	unsigned int    ind;    /* Corresponding indirect page size shift */ +	unsigned int	flags; +#define MMU_PAGE_SIZE_DIRECT	0x1	/* Supported as a direct size */ +#define MMU_PAGE_SIZE_INDIRECT	0x2	/* Supported as an indirect size */  };  extern struct mmu_psize_def mmu_psize_defs[MMU_PAGE_COUNT];  |