omap-hotplug.c 1.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
/*
 * OMAP4 SMP cpu-hotplug support
 *
 * Copyright (C) 2010 Texas Instruments, Inc.
 * Author:
 *      Santosh Shilimkar <santosh.shilimkar@ti.com>
 *
 * Platform file needed for the OMAP4 SMP. This file is based on arm
 * realview smp platform.
 * Copyright (c) 2002 ARM Limited.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/smp.h>
20
#include <linux/io.h>
21 22

#include <asm/cacheflush.h>
23
#include "omap-wakeupgen.h"
24 25

#include "common.h"
26

27 28
#include "powerdomain.h"

29 30
int platform_cpu_kill(unsigned int cpu)
{
31
	return 1;
32 33 34 35 36 37
}

/*
 * platform-specific code to shutdown a CPU
 * Called with IRQs disabled
 */
38
void __ref platform_cpu_die(unsigned int cpu)
39
{
40 41
	unsigned int boot_cpu = 0;
	void __iomem *base = omap_get_wakeupgen_base();
42

43 44 45 46 47 48
	flush_cache_all();
	dsb();

	/*
	 * we're ready for shutdown now, so do it
	 */
49 50 51 52 53 54 55
	if (omap_secure_apis_support()) {
		if (omap_modify_auxcoreboot0(0x0, 0x200) != 0x0)
			pr_err("Secure clear status failed\n");
	} else {
		__raw_writel(0, base + OMAP_AUX_CORE_BOOT_0);
	}

56 57 58

	for (;;) {
		/*
59
		 * Enter into low power state
60
		 */
61
		omap4_hotplug_cpu(cpu, PWRDM_POWER_OFF);
62 63 64 65 66 67 68 69

		if (omap_secure_apis_support())
			boot_cpu = omap_read_auxcoreboot0();
		else
			boot_cpu =
				__raw_readl(base + OMAP_AUX_CORE_BOOT_0) >> 5;

		if (boot_cpu == smp_processor_id()) {
70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
			/*
			 * OK, proper wakeup, we're done
			 */
			break;
		}
		pr_debug("CPU%u: spurious wakeup call\n", cpu);
	}
}

int platform_cpu_disable(unsigned int cpu)
{
	/*
	 * we don't allow CPU 0 to be shutdown (it is still too special
	 * e.g. clock tick interrupts)
	 */
	return cpu == 0 ? -EPERM : 0;
}