The only difference between the hotplug implementation for Realview and Versatile Express are the bit in the auxiliary control register to disable coherency. Combine the two implentations accounting for that difference. Rename the functions to try to discourage cargo-cult copying of this code. Tested-by: Sudeep Holla <sudeep.holla@arm.com> Acked-by: Sudeep Holla <sudeep.holla@arm.com> Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
16 lines
577 B
C
16 lines
577 B
C
/*
|
|
* linux/arch/arm/plat-versatile/include/plat/platsmp.h
|
|
*
|
|
* Copyright (C) 2011 ARM Ltd.
|
|
* All Rights Reserved
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
extern void versatile_secondary_startup(void);
|
|
extern void versatile_secondary_init(unsigned int cpu);
|
|
extern int versatile_boot_secondary(unsigned int cpu, struct task_struct *idle);
|
|
void versatile_immitation_cpu_die(unsigned int cpu, unsigned int actrl_mask);
|