powerpc/mm: Split the various pgtable-* headers based on MMU type
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>
Tue, 10 Mar 2009 17:53:29 +0000 (17:53 +0000)
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>
Fri, 20 Mar 2009 04:56:57 +0000 (15:56 +1100)
commitc605782b1c3f1c18a55dc1a75b19ed0288f61ac3
tree2e6673146afcb692dd9c137241e29abe94631679
parent28794d34ecb6815a3fa0a4256027c9b081a17c5f
powerpc/mm: Split the various pgtable-* headers based on MMU type

This patch moves the definition of the PTE format for each MMU type
to separate files instead of all in one file. This improves overall
maintainability and will make it easier to add new types.

On 64-bit, additionally, I've separated the headers relative to the
format of the page table tree (3 vs. 4 levels for 64K vs 4K pages)
from the headers specific to the PTE format for hash based processors,
this will make it easier to add support for Book3 "E" 64-bit
implementations.

There are still some type-related ifdef's in the generic headers,
we might remove them in the long run, but this patch shouldn't result
in any code change, -hopefully- just definitions being moved around.

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
12 files changed:
arch/powerpc/include/asm/pgtable-ppc32.h
arch/powerpc/include/asm/pgtable-ppc64-4k.h [moved from arch/powerpc/include/asm/pgtable-4k.h with 57% similarity]
arch/powerpc/include/asm/pgtable-ppc64-64k.h [new file with mode: 0644]
arch/powerpc/include/asm/pgtable-ppc64.h
arch/powerpc/include/asm/pte-40x.h [new file with mode: 0644]
arch/powerpc/include/asm/pte-44x.h [new file with mode: 0644]
arch/powerpc/include/asm/pte-8xx.h [new file with mode: 0644]
arch/powerpc/include/asm/pte-fsl-booke.h [new file with mode: 0644]
arch/powerpc/include/asm/pte-hash32.h [new file with mode: 0644]
arch/powerpc/include/asm/pte-hash64-4k.h [new file with mode: 0644]
arch/powerpc/include/asm/pte-hash64-64k.h [moved from arch/powerpc/include/asm/pgtable-64k.h with 73% similarity]
arch/powerpc/include/asm/pte-hash64.h [new file with mode: 0644]