Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 98974
b: refs/heads/master
c: 773922e
h: refs/heads/master
v: v3
  • Loading branch information
Heiko Carstens committed Jul 14, 2008
1 parent 5a80aa6 commit d8b7aa3
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 64 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: 9d92a7e1b0d095c8be96ce5e592c6c5541684631
refs/heads/master: 773922e1dab93a62e60cfb34afadb0f66d5f12e9
32 changes: 2 additions & 30 deletions trunk/arch/s390/kernel/process.c
Original file line number Diff line number Diff line change
Expand Up @@ -75,60 +75,32 @@ unsigned long thread_saved_pc(struct task_struct *tsk)
return sf->gprs[8];
}

/*
* Need to know about CPUs going idle?
*/
static ATOMIC_NOTIFIER_HEAD(idle_chain);
DEFINE_PER_CPU(struct s390_idle_data, s390_idle);

int register_idle_notifier(struct notifier_block *nb)
{
return atomic_notifier_chain_register(&idle_chain, nb);
}
EXPORT_SYMBOL(register_idle_notifier);

int unregister_idle_notifier(struct notifier_block *nb)
{
return atomic_notifier_chain_unregister(&idle_chain, nb);
}
EXPORT_SYMBOL(unregister_idle_notifier);

static int s390_idle_enter(void)
{
struct s390_idle_data *idle;
int nr_calls = 0;
void *hcpu;
int rc;

hcpu = (void *)(long)smp_processor_id();
rc = __atomic_notifier_call_chain(&idle_chain, S390_CPU_IDLE, hcpu, -1,
&nr_calls);
if (rc == NOTIFY_BAD) {
nr_calls--;
__atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
hcpu, nr_calls, NULL);
return rc;
}
idle = &__get_cpu_var(s390_idle);
spin_lock(&idle->lock);
idle->idle_count++;
idle->in_idle = 1;
idle->idle_enter = get_clock();
spin_unlock(&idle->lock);
vtime_stop_cpu_timer();
return NOTIFY_OK;
}

void s390_idle_leave(void)
{
struct s390_idle_data *idle;

vtime_start_cpu_timer();
idle = &__get_cpu_var(s390_idle);
spin_lock(&idle->lock);
idle->idle_time += get_clock() - idle->idle_enter;
idle->in_idle = 0;
spin_unlock(&idle->lock);
atomic_notifier_call_chain(&idle_chain, S390_CPU_NOT_IDLE,
(void *)(long) smp_processor_id());
}

extern void s390_handle_mcck(void);
Expand Down
25 changes: 2 additions & 23 deletions trunk/arch/s390/kernel/vtime.c
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ static inline void set_vtimer(__u64 expires)
}
#endif

static void start_cpu_timer(void)
void vtime_start_cpu_timer(void)
{
struct vtimer_queue *vt_list;

Expand All @@ -150,7 +150,7 @@ static void start_cpu_timer(void)
set_vtimer(vt_list->idle);
}

static void stop_cpu_timer(void)
void vtime_stop_cpu_timer(void)
{
struct vtimer_queue *vt_list;

Expand Down Expand Up @@ -536,34 +536,13 @@ void init_cpu_vtimer(void)

}

static int vtimer_idle_notify(struct notifier_block *self,
unsigned long action, void *hcpu)
{
switch (action) {
case S390_CPU_IDLE:
stop_cpu_timer();
break;
case S390_CPU_NOT_IDLE:
start_cpu_timer();
break;
}
return NOTIFY_OK;
}

static struct notifier_block vtimer_idle_nb = {
.notifier_call = vtimer_idle_notify,
};

void __init vtime_init(void)
{
/* request the cpu timer external interrupt */
if (register_early_external_interrupt(0x1005, do_cpu_timer_interrupt,
&ext_int_info_timer) != 0)
panic("Couldn't request external interrupt 0x1005");

if (register_idle_notifier(&vtimer_idle_nb))
panic("Couldn't register idle notifier");

/* Enable cpu timer interrupts on the boot cpu. */
init_cpu_vtimer();
}
Expand Down
10 changes: 0 additions & 10 deletions trunk/include/asm-s390/processor.h
Original file line number Diff line number Diff line change
Expand Up @@ -336,16 +336,6 @@ extern void (*s390_base_mcck_handler_fn)(void);
extern void (*s390_base_pgm_handler_fn)(void);
extern void (*s390_base_ext_handler_fn)(void);

/*
* CPU idle notifier chain.
*/
#define S390_CPU_IDLE 0
#define S390_CPU_NOT_IDLE 1

struct notifier_block;
int register_idle_notifier(struct notifier_block *nb);
int unregister_idle_notifier(struct notifier_block *nb);

#define ARCH_LOW_ADDRESS_LIMIT 0x7fffffffUL

#endif
Expand Down
12 changes: 12 additions & 0 deletions trunk/include/asm-s390/timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,18 @@ extern int del_virt_timer(struct vtimer_list *timer);
extern void init_cpu_vtimer(void);
extern void vtime_init(void);

#ifdef CONFIG_VIRT_TIMER

extern void vtime_start_cpu_timer(void);
extern void vtime_stop_cpu_timer(void);

#else

static inline void vtime_start_cpu_timer(void) { }
static inline void vtime_stop_cpu_timer(void) { }

#endif /* CONFIG_VIRT_TIMER */

#endif /* __KERNEL__ */

#endif /* _ASM_S390_TIMER_H */

0 comments on commit d8b7aa3

Please sign in to comment.