diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-10-28 19:38:58 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-10-28 19:38:58 +0000 |
commit | e696942cfc6d970d9a774815cc81bf1d771c857b (patch) | |
tree | 810516e157f08970fc6e9b2b5c07d1c6f176726d /src/arch/ppc/lib/cpu.c | |
parent | 8d09e231fed1395b82227ce374dca4be32e77845 (diff) |
Drop remainder of PPC port
Signed-off-by: Stefan Reinauer <stepan@coresystems.de>
Acked-by: Ronald G. Minnich <rminnich@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4884 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/arch/ppc/lib/cpu.c')
-rw-r--r-- | src/arch/ppc/lib/cpu.c | 69 |
1 files changed, 0 insertions, 69 deletions
diff --git a/src/arch/ppc/lib/cpu.c b/src/arch/ppc/lib/cpu.c deleted file mode 100644 index 95840c0cca..0000000000 --- a/src/arch/ppc/lib/cpu.c +++ /dev/null @@ -1,69 +0,0 @@ -#include <console/console.h> -#include <arch/io.h> -#include <string.h> -#include <device/device.h> -#include <cpu/cpu.h> -#include <cpu/ppc/cpuid.h> -#include "ppc.h" -#include "ppcreg.h" - -#if 0 -static void set_cpu_ops(struct device *cpu) -{ - struct cpu_driver *driver; - cpu->ops = 0; - for (driver = cpu_drivers; driver < ecpu_drivers; driver++) { - struct cpu_device_id *id; - for(id = driver->id_table; id->pvr != 0; id++) { - if (cpu->device == id->pvr) - { - goto found; - } - } - } - die("Unknown cpu"); - return; - found: - cpu->ops = driver->ops; -} -#endif - -void cpu_initialize(void) -{ - /* Because we busy wait at the printk spinlock. - * It is important to keep the number of printed messages - * from secondary cpus to a minimum, when debugging is - * disabled. - */ - struct device *cpu; - struct cpu_info *info; - info = cpu_info(); - - printk_notice("Initializing CPU #%d\n", info->index); - - cpu = info->cpu; - if (!cpu) { - die("CPU: missing cpu device structure"); - } - - /* Find what type of cpu we are dealing with */ - cpu->vendor = 0; /* PPC cpus do not have a vendor field */ - cpu->device = ppc_getpvr(); - display_cpuid(cpu); - -#if 0 - /* Lookup the cpu's operations */ - set_cpu_ops(cpu); - - /* Initialize the cpu */ - if (cpu->ops && cpu->ops->init) { - cpu->enabled = 1; - cpu->initialized = 1; - cpu->ops->init(); - } -#endif - /* Turn on caching if we haven't already */ - - printk_info("CPU #%d initialized\n", info->index); - return; -} |