diff options
| author | Thomas Huth | 2018-08-21 13:27:48 +0200 |
|---|---|---|
| committer | David Gibson | 2018-08-28 03:31:23 +0200 |
| commit | a69dc537cc1a6d3c3cb35d30197ed45914a150c3 (patch) | |
| tree | cae8ed879c9c3edaa5e71b35969f9722166931d9 /target/ppc/cpu.h | |
| parent | Merge remote-tracking branch 'remotes/armbru/tags/pull-error-2018-08-27-v2' i... (diff) | |
| download | qemu-a69dc537cc1a6d3c3cb35d30197ed45914a150c3.tar.gz qemu-a69dc537cc1a6d3c3cb35d30197ed45914a150c3.tar.xz qemu-a69dc537cc1a6d3c3cb35d30197ed45914a150c3.zip | |
ppc: Remove deprecated ppcemb target
There is no known available OS for ppc around anymore that uses page
sizes below 4k, so it does not make much sense that we keep wasting
our time on building and testing the ppcemb-softmmu target. It has
been deprecated since two releases, and nobody complained, so let's
remove this now.
Signed-off-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Diffstat (limited to 'target/ppc/cpu.h')
| -rw-r--r-- | target/ppc/cpu.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/target/ppc/cpu.h b/target/ppc/cpu.h index ec149349e2..b5b8f6f440 100644 --- a/target/ppc/cpu.h +++ b/target/ppc/cpu.h @@ -52,23 +52,7 @@ #else /* defined (TARGET_PPC64) */ /* PowerPC 32 definitions */ #define TARGET_LONG_BITS 32 - -#if defined(TARGET_PPCEMB) -/* Specific definitions for PowerPC embedded */ -/* BookE have 36 bits physical address space */ -#if defined(CONFIG_USER_ONLY) -/* It looks like a lot of Linux programs assume page size - * is 4kB long. This is evil, but we have to deal with it... - */ -#define TARGET_PAGE_BITS 12 -#else /* defined(CONFIG_USER_ONLY) */ -/* Pages can be 1 kB small */ -#define TARGET_PAGE_BITS 10 -#endif /* defined(CONFIG_USER_ONLY) */ -#else /* defined(TARGET_PPCEMB) */ -/* "standard" PowerPC 32 definitions */ #define TARGET_PAGE_BITS 12 -#endif /* defined(TARGET_PPCEMB) */ #define TARGET_PHYS_ADDR_SPACE_BITS 36 #define TARGET_VIRT_ADDR_SPACE_BITS 32 |
