diff options
author | Becky Bruce <beckyb@kernel.crashing.org> | 2010-06-17 11:37:21 -0500 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2010-07-16 10:55:09 -0500 |
commit | 4e63df300f05df2eb3ee87deed043a718ffc6a4e (patch) | |
tree | ef7238884c0159a6ba6b0f2888ec25d1ea6a5183 /arch/powerpc/include/asm | |
parent | f51cdaf19141151ce2b40d562a468605340f2315 (diff) | |
download | u-boot-imx-4e63df300f05df2eb3ee87deed043a718ffc6a4e.zip u-boot-imx-4e63df300f05df2eb3ee87deed043a718ffc6a4e.tar.gz u-boot-imx-4e63df300f05df2eb3ee87deed043a718ffc6a4e.tar.bz2 |
mpc85xx: tlb.c cleanups
Extract the operation to read a tlb into a function - we will need
this later to print out the tlbs, and there's no point in duplicating
the code. Create a TSIZE_TO_BYTES macro to deal with the conversion
from the MAS field to an actual size instead of duplicating this in code.
There are a few misc other minor cleanups.
Signed-off-by: Becky Bruce <beckyb@kernel.crashing.org>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm')
-rw-r--r-- | arch/powerpc/include/asm/mmu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/powerpc/include/asm/mmu.h b/arch/powerpc/include/asm/mmu.h index 5166507..d4c7b75 100644 --- a/arch/powerpc/include/asm/mmu.h +++ b/arch/powerpc/include/asm/mmu.h @@ -402,6 +402,7 @@ extern void print_bats(void); #define MAS1_TID(x) ((x << 16) & 0x3FFF0000) #define MAS1_TS 0x00001000 #define MAS1_TSIZE(x) ((x << 8) & 0x00000F00) +#define TSIZE_TO_BYTES(x) ((phys_addr_t)(1UL << ((tsize * 2) + 10))) #define MAS2_EPN 0xFFFFF000 #define MAS2_X0 0x00000040 |