~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/mips/kernel/smp-up.c

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /*
  2  * This file is subject to the terms and conditions of the GNU General Public
  3  * License.  See the file "COPYING" in the main directory of this archive
  4  * for more details.
  5  *
  6  * Copyright (C) 2006, 07 by Ralf Baechle (ralf@linux-mips.org)
  7  *
  8  * Symmetric Uniprocessor (TM) Support
  9  */
 10 #include <linux/kernel.h>
 11 #include <linux/sched.h>
 12 
 13 /*
 14  * Send inter-processor interrupt
 15  */
 16 static void up_send_ipi_single(int cpu, unsigned int action)
 17 {
 18         panic(KERN_ERR "%s called", __func__);
 19 }
 20 
 21 static inline void up_send_ipi_mask(const struct cpumask *mask,
 22                                     unsigned int action)
 23 {
 24         panic(KERN_ERR "%s called", __func__);
 25 }
 26 
 27 /*
 28  *  After we've done initial boot, this function is called to allow the
 29  *  board code to clean up state, if needed
 30  */
 31 static void up_init_secondary(void)
 32 {
 33 }
 34 
 35 static void up_smp_finish(void)
 36 {
 37 }
 38 
 39 /*
 40  * Firmware CPU startup hook
 41  */
 42 static int up_boot_secondary(int cpu, struct task_struct *idle)
 43 {
 44         return 0;
 45 }
 46 
 47 static void __init up_smp_setup(void)
 48 {
 49 }
 50 
 51 static void __init up_prepare_cpus(unsigned int max_cpus)
 52 {
 53 }
 54 
 55 #ifdef CONFIG_HOTPLUG_CPU
 56 static int up_cpu_disable(void)
 57 {
 58         return -ENOSYS;
 59 }
 60 
 61 static void up_cpu_die(unsigned int cpu)
 62 {
 63         BUG();
 64 }
 65 #endif
 66 
 67 const struct plat_smp_ops up_smp_ops = {
 68         .send_ipi_single        = up_send_ipi_single,
 69         .send_ipi_mask          = up_send_ipi_mask,
 70         .init_secondary         = up_init_secondary,
 71         .smp_finish             = up_smp_finish,
 72         .boot_secondary         = up_boot_secondary,
 73         .smp_setup              = up_smp_setup,
 74         .prepare_cpus           = up_prepare_cpus,
 75 #ifdef CONFIG_HOTPLUG_CPU
 76         .cpu_disable            = up_cpu_disable,
 77         .cpu_die                = up_cpu_die,
 78 #endif
 79 };
 80 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php