1 // SPDX-License-Identifier: GPL-2.0 1 2 /* 3 * mp.c: OpenBoot Prom Multiprocessor support 4 * these on a UP or else you will halt 5 * 6 * Copyright (C) 1995 David S. Miller (davem@c 7 */ 8 9 #include <linux/types.h> 10 #include <linux/kernel.h> 11 #include <linux/sched.h> 12 13 #include <asm/openprom.h> 14 #include <asm/oplib.h> 15 16 extern void restore_current(void); 17 18 /* Start cpu with prom-tree node 'cpunode' usi 19 * by 'ctable_reg' in context 'ctx' at program 20 * 21 * XXX Have to look into what the return value 22 */ 23 int 24 prom_startcpu(int cpunode, struct linux_prom_r 25 { 26 int ret; 27 unsigned long flags; 28 29 spin_lock_irqsave(&prom_lock, flags); 30 switch(prom_vers) { 31 case PROM_V0: 32 case PROM_V2: 33 default: 34 ret = -1; 35 break; 36 case PROM_V3: 37 ret = (*(romvec->v3_cpustart)) 38 break; 39 } 40 restore_current(); 41 spin_unlock_irqrestore(&prom_lock, fla 42 43 return ret; 44 } 45
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.