blob: c4af29befbd9130b51f93f68896629b04e6c8993 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/*
* linux/include/asm-arm/arch-ebsa110/system.h
*
* Copyright (C) 1996-2000 Russell King.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#ifndef __ASM_ARCH_SYSTEM_H
#define __ASM_ARCH_SYSTEM_H
/*
* EBSA110 idling methodology:
*
* We can not execute the "wait for interrupt" instruction since that
* will stop our MCLK signal (which provides the clock for the glue
* logic, and therefore the timer interrupt).
*
* Instead, we spin, waiting for either hlt_counter or need_resched
* to be set. If we have been spinning for 2cs, then we drop the
* core clock down to the memory clock.
*/
static void arch_idle(void)
{
unsigned long start_idle;
start_idle = jiffies;
do {
if (current->need_resched || hlt_counter)
goto slow_out;
} while (time_before(jiffies, start_idle + HZ/50));
cpu_do_idle(IDLE_CLOCK_SLOW);
while (!current->need_resched && !hlt_counter) {
/* do nothing slowly */
}
cpu_do_idle(IDLE_CLOCK_FAST);
slow_out:
}
#define arch_reset(mode) cpu_reset(0x80000000)
#endif
|