b633648c5a
Nobody is maintaining SMTC anymore and there also seems to be no userbase. Which is a pity - the SMTC technology primarily developed by Kevin D. Kissell <kevink@paralogos.com> is an ingenious demonstration for the MT ASE's power and elegance. Based on Markos Chandras <Markos.Chandras@imgtec.com> patch https://patchwork.linux-mips.org/patch/6719/ which while very similar did no longer apply cleanly when I tried to merge it plus some additional post-SMTC cleanup - SMTC was a feature as tricky to remove as it was to merge once upon a time. Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
22 lines
554 B
C
22 lines
554 B
C
/*
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
|
* License. See the file "COPYING" in the main directory of this archive
|
|
* for more details.
|
|
*
|
|
* Chris Dearman (chris@mips.com)
|
|
* Copyright (C) 2007 Mips Technologies, Inc.
|
|
*/
|
|
#ifndef __ASM_MACH_MIPS_KERNEL_ENTRY_INIT_H
|
|
#define __ASM_MACH_MIPS_KERNEL_ENTRY_INIT_H
|
|
|
|
.macro kernel_entry_setup
|
|
.endm
|
|
|
|
/*
|
|
* Do SMP slave processor setup necessary before we can safely execute C code.
|
|
*/
|
|
.macro smp_slave_setup
|
|
.endm
|
|
|
|
#endif /* __ASM_MACH_MIPS_KERNEL_ENTRY_INIT_H */
|