75305275a7
These smp_operations structures are not over-written, so add "const" qualifier and replace __initdata with __initconst. Also, add "static" where it is possible. Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Acked-by: Krzysztof Kozlowski <k.kozlowski@samsung.com> Acked-by: Maxime Ripard <maxime.ripard@free-electrons.com> Acked-by: Moritz Fischer <moritz.fischer@ettus.com> Acked-by: Stephen Boyd <sboyd@codeaurora.org> # qcom part Acked-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Patrice Chotard <patrice.chotard@st.com> Acked-by: Heiko Stuebner <heiko@sntech.de> Acked-by: Wei Xu <xuwei5@hisilicon.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Acked-by: Sebastian Hesselbarth <sebastian.hesselbarth@gmail.com> Acked-by: Gregory CLEMENT <gregory.clement@free-electrons.com> Acked-by: Shawn Guo <shawnguo@kernel.org> Acked-by: Matthias Brugger <matthias.bgg@gmail.com> Acked-by: Thierry Reding <treding@nvidia.com> Acked-by: Nicolas Pitre <nico@linaro.org> Acked-by: Liviu Dudau <Liviu.Dudau@arm.com> Acked-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
50 lines
1.4 KiB
C
50 lines
1.4 KiB
C
/*
|
|
* SMP operations for Alpine platform.
|
|
*
|
|
* Copyright (C) 2015 Annapurna Labs Ltd.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*/
|
|
|
|
#include <linux/init.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/io.h>
|
|
#include <linux/of.h>
|
|
|
|
#include <asm/smp_plat.h>
|
|
|
|
#include "alpine_cpu_pm.h"
|
|
|
|
static int alpine_boot_secondary(unsigned int cpu, struct task_struct *idle)
|
|
{
|
|
phys_addr_t addr;
|
|
|
|
addr = virt_to_phys(secondary_startup);
|
|
|
|
if (addr > (phys_addr_t)(uint32_t)(-1)) {
|
|
pr_err("FAIL: resume address over 32bit (%pa)", &addr);
|
|
return -EINVAL;
|
|
}
|
|
|
|
return alpine_cpu_wakeup(cpu_logical_map(cpu), (uint32_t)addr);
|
|
}
|
|
|
|
static void __init alpine_smp_prepare_cpus(unsigned int max_cpus)
|
|
{
|
|
alpine_cpu_pm_init();
|
|
}
|
|
|
|
static const struct smp_operations alpine_smp_ops __initconst = {
|
|
.smp_prepare_cpus = alpine_smp_prepare_cpus,
|
|
.smp_boot_secondary = alpine_boot_secondary,
|
|
};
|
|
CPU_METHOD_OF_DECLARE(alpine_smp, "al,alpine-smp", &alpine_smp_ops);
|