blob: 84ac523b0ce08675ecd102a2beeda2b66ce92f11 [file] [log] [blame]
Ralf Baechle39b8d522008-04-28 17:14:26 +01001/*
Steven J. Hill5792bf62014-01-01 16:35:32 +01002 * 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.
Ralf Baechle39b8d522008-04-28 17:14:26 +01005 *
Steven J. Hill5792bf62014-01-01 16:35:32 +01006 * Copyright (C) 2007 MIPS Technologies, Inc. All rights reserved.
7 * Copyright (C) 2013 Imagination Technologies Ltd.
Ralf Baechle39b8d522008-04-28 17:14:26 +01008 *
Steven J. Hill5792bf62014-01-01 16:35:32 +01009 * Arbitrary Monitor Interface
Ralf Baechle39b8d522008-04-28 17:14:26 +010010 */
Ralf Baechle39b8d522008-04-28 17:14:26 +010011#include <linux/kernel.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010012#include <linux/smp.h>
13
David Daney9e867862008-09-20 10:16:36 -070014#include <asm/addrspace.h>
David Daney9e867862008-09-20 10:16:36 -070015#include <asm/mipsmtregs.h>
Steven J. Hill5792bf62014-01-01 16:35:32 +010016#include <asm/mips-boards/launch.h>
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050017#include <asm/vpe.h>
Ralf Baechle39b8d522008-04-28 17:14:26 +010018
19int amon_cpu_avail(int cpu)
20{
Thomas Bogendoerfer938b2b12008-05-29 22:05:07 +020021 struct cpulaunch *launch = (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH);
Ralf Baechle39b8d522008-04-28 17:14:26 +010022
23 if (cpu < 0 || cpu >= NCPULAUNCH) {
24 pr_debug("avail: cpu%d is out of range\n", cpu);
25 return 0;
26 }
27
28 launch += cpu;
29 if (!(launch->flags & LAUNCH_FREADY)) {
30 pr_debug("avail: cpu%d is not ready\n", cpu);
31 return 0;
32 }
33 if (launch->flags & (LAUNCH_FGO|LAUNCH_FGONE)) {
34 pr_debug("avail: too late.. cpu%d is already gone\n", cpu);
35 return 0;
36 }
37
38 return 1;
39}
40
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050041int amon_cpu_start(int cpu,
Ralf Baechle39b8d522008-04-28 17:14:26 +010042 unsigned long pc, unsigned long sp,
43 unsigned long gp, unsigned long a0)
44{
45 volatile struct cpulaunch *launch =
Thomas Bogendoerfer938b2b12008-05-29 22:05:07 +020046 (struct cpulaunch *)CKSEG0ADDR(CPULAUNCH);
Ralf Baechle39b8d522008-04-28 17:14:26 +010047
48 if (!amon_cpu_avail(cpu))
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050049 return -1;
Ralf Baechle39b8d522008-04-28 17:14:26 +010050 if (cpu == smp_processor_id()) {
51 pr_debug("launch: I am cpu%d!\n", cpu);
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050052 return -1;
Ralf Baechle39b8d522008-04-28 17:14:26 +010053 }
54 launch += cpu;
55
56 pr_debug("launch: starting cpu%d\n", cpu);
57
58 launch->pc = pc;
59 launch->gp = gp;
60 launch->sp = sp;
61 launch->a0 = a0;
62
Ralf Baechle70342282013-01-22 12:59:30 +010063 smp_wmb(); /* Target must see parameters before go */
Ralf Baechle39b8d522008-04-28 17:14:26 +010064 launch->flags |= LAUNCH_FGO;
Ralf Baechle70342282013-01-22 12:59:30 +010065 smp_wmb(); /* Target must see go before we poll */
Chris Dearman2ee0a422009-07-10 02:06:38 -070066
Ralf Baechle39b8d522008-04-28 17:14:26 +010067 while ((launch->flags & LAUNCH_FGONE) == 0)
68 ;
Ralf Baechle70342282013-01-22 12:59:30 +010069 smp_rmb(); /* Target will be updating flags soon */
Ralf Baechle39b8d522008-04-28 17:14:26 +010070 pr_debug("launch: cpu%d gone!\n", cpu);
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050071
72 return 0;
Ralf Baechle39b8d522008-04-28 17:14:26 +010073}
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050074
Deng-Cheng Zhu031365b2014-02-28 10:23:03 -080075#ifdef CONFIG_MIPS_VPE_LOADER_CMP
Deng-Cheng Zhu13361132013-10-30 15:52:10 -050076int vpe_run(struct vpe *v)
77{
78 struct vpe_notifications *n;
79
80 if (amon_cpu_start(aprp_cpu_index(), v->__start, 0, 0, 0) < 0)
81 return -1;
82
83 list_for_each_entry(n, &v->notify, list)
84 n->start(VPE_MODULE_MINOR);
85
86 return 0;
87}
88#endif