Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243580
b: refs/heads/master
c: fa3f82c
h: refs/heads/master
v: v3
  • Loading branch information
Benjamin Herrenschmidt committed Apr 1, 2011
1 parent b3a1e53 commit ace5efa
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 963e5d3b76d657f1ebcf3561446d2ba1872bbfa2
refs/heads/master: fa3f82c8bb7acbe049ea71f258b3ae0a33d9d40b
1 change: 1 addition & 0 deletions trunk/arch/powerpc/include/asm/smp.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ extern void cpu_die(void);

extern void smp_send_debugger_break(int cpu);
extern void smp_message_recv(int);
extern void start_secondary_resume(void);

DECLARE_PER_CPU(unsigned int, cpu_pvr);

Expand Down
9 changes: 9 additions & 0 deletions trunk/arch/powerpc/kernel/head_32.S
Original file line number Diff line number Diff line change
Expand Up @@ -890,6 +890,15 @@ __secondary_start:
mtspr SPRN_SRR1,r4
SYNC
RFI

_GLOBAL(start_secondary_resume)
/* Reset stack */
rlwinm r1,r1,0,0,(31-THREAD_SHIFT) /* current_thread_info() */
addi r1,r1,THREAD_SIZE-STACK_FRAME_OVERHEAD
li r3,0
std r3,0(r1) /* Zero the stack frame pointer */
bl start_secondary
b .
#endif /* CONFIG_SMP */

#ifdef CONFIG_KVM_BOOK3S_HANDLER
Expand Down
9 changes: 7 additions & 2 deletions trunk/arch/powerpc/kernel/smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -502,7 +502,7 @@ static struct device_node *cpu_to_l2cache(int cpu)
}

/* Activate a secondary processor. */
int __devinit start_secondary(void *unused)
void __devinit start_secondary(void *unused)
{
unsigned int cpu = smp_processor_id();
struct device_node *l2_cache;
Expand Down Expand Up @@ -558,7 +558,8 @@ int __devinit start_secondary(void *unused)
local_irq_enable();

cpu_idle();
return 0;

BUG();
}

int setup_profiling_timer(unsigned int multiplier)
Expand Down Expand Up @@ -660,5 +661,9 @@ void cpu_die(void)
{
if (ppc_md.cpu_die)
ppc_md.cpu_die();

/* If we return, we re-enter start_secondary */
start_secondary_resume();
}

#endif
2 changes: 0 additions & 2 deletions trunk/arch/powerpc/platforms/pseries/offline_states.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,4 @@ static inline void set_default_offline_state(int cpu)
#endif

extern enum cpu_state_vals get_preferred_offline_state(int cpu);
extern int start_secondary(void);
extern void start_secondary_resume(void);
#endif

0 comments on commit ace5efa

Please sign in to comment.